set a theme color for VCA axes in the editor
[ardour.git] / gtk2_ardour / startup.h
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __gtk2_ardour_startup_h__
21 #define __gtk2_ardour_startup_h__
22
23 #include <string>
24
25 #include <gdkmm/pixbuf.h>
26 #include <gtkmm/assistant.h>
27 #include <gtkmm/label.h>
28 #include <gtkmm/drawingarea.h>
29 #include <gtkmm/expander.h>
30 #include <gtkmm/box.h>
31 #include <gtkmm/radiobutton.h>
32 #include <gtkmm/filechooserbutton.h>
33 #include <gtkmm/scrolledwindow.h>
34 #include <gtkmm/treeview.h>
35 #include <gtkmm/treestore.h>
36 #include <gtkmm/checkbutton.h>
37 #include <gtkmm/table.h>
38 #include <gtkmm/frame.h>
39 #include <gtkmm/spinbutton.h>
40 #include <gtkmm/liststore.h>
41 #include <gtkmm/combobox.h>
42
43 #include "ardour/utils.h"
44
45 class EngineControl;
46
47 class ArdourStartup : public Gtk::Assistant {
48   public:
49          ArdourStartup ();
50         ~ArdourStartup ();
51
52         static bool required ();
53
54         gint response () const {
55                 return  _response;
56         }
57
58   private:
59         gint _response;
60         bool config_modified;
61         bool new_user;
62
63         void on_apply ();
64         void on_cancel ();
65         bool on_delete_event (GdkEventAny*);
66         void discover_plugins ();
67
68         static ArdourStartup *the_startup;
69
70         Glib::RefPtr<Gdk::Pixbuf> icon_pixbuf;
71
72         void setup_prerelease_page ();
73         void setup_new_user_page ();
74         Glib::RefPtr<Gdk::Pixbuf> splash_pixbuf;
75         Gtk::DrawingArea splash_area;
76         bool splash_expose (GdkEventExpose* ev);
77
78         void setup_first_time_config_page ();
79         void config_changed ();
80
81         /* first page */
82         Gtk::FileChooserButton* default_dir_chooser;
83         void default_dir_changed();
84         void setup_first_page ();
85         Gtk::FileChooserButton new_folder_chooser;
86
87         /* monitoring choices */
88
89         Gtk::VBox mon_vbox;
90         Gtk::Label monitor_label;
91         Gtk::RadioButton monitor_via_hardware_button;
92         Gtk::RadioButton monitor_via_ardour_button;
93         void setup_monitoring_choice_page ();
94
95         /* monitor section choices */
96
97         Gtk::VBox mon_sec_vbox;
98         Gtk::Label monitor_section_label;
99         Gtk::RadioButton use_monitor_section_button;
100         Gtk::RadioButton no_monitor_section_button;
101         void setup_monitor_section_choice_page ();
102
103         /* final page */
104
105         void setup_final_page ();
106         Gtk::Button plugin_disco_button;
107
108         /* always there */
109
110         Glib::RefPtr<Pango::Layout> layout;
111
112         /* page indices */
113
114         gint audio_page_index;
115         gint new_user_page_index;
116         gint default_folder_page_index;
117         gint monitoring_page_index;
118         gint monitor_section_page_index;
119         gint final_page_index;
120
121         void move_along_now ();
122 };
123
124 #endif /* __gtk2_ardour_startup_h__ */