move engine dialog from a widget to an actual dialog; emit Session::AudioEngineSetupR...
[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/box.h>
30 #include <gtkmm/radiobutton.h>
31 #include <gtkmm/filechooserbutton.h>
32 #include <gtkmm/scrolledwindow.h>
33 #include <gtkmm/treeview.h>
34 #include <gtkmm/treestore.h>
35 #include <gtkmm/checkbutton.h>
36 #include <gtkmm/table.h>
37 #include <gtkmm/frame.h>
38 #include <gtkmm/spinbutton.h>
39 #include <gtkmm/liststore.h>
40 #include <gtkmm/combobox.h>
41
42 #include "ardour/utils.h"
43
44 class EngineControl;
45
46 class ArdourStartup : public Gtk::Assistant {
47   public:
48         ArdourStartup (bool require_new, const std::string& session_name, const std::string& session_path, const std::string& template_name);
49         ~ArdourStartup ();
50
51         bool ready_without_display () const;
52
53         std::string session_name (bool& should_be_new);
54         std::string session_folder ();
55
56         bool use_session_template();
57         std::string session_template_name();
58
59         // advanced session options
60
61         bool create_master_bus() const;
62         int master_channel_count() const;
63
64         bool connect_inputs() const;
65         bool limit_inputs_used_for_connection() const;
66         int input_limit_count() const;
67
68         bool connect_outputs() const;
69         bool limit_outputs_used_for_connection() const;
70         int output_limit_count() const;
71
72         bool connect_outs_to_master() const;
73         bool connect_outs_to_physical() const;
74
75         gint response () const {
76                 return  _response;
77         }
78
79   private:
80         gint _response;
81         bool config_modified;
82         bool new_user;
83         bool need_session_info;
84         bool new_only;
85         std::string _provided_session_name;
86         std::string _provided_session_path;
87
88         std::string been_here_before_path () const;
89
90         void on_apply ();
91         void on_cancel ();
92         bool on_delete_event (GdkEventAny*);
93         void on_prepare (Gtk::Widget*);
94
95         static ArdourStartup *the_startup;
96
97         Glib::RefPtr<Gdk::Pixbuf> icon_pixbuf;
98
99         void setup_new_user_page ();
100         Glib::RefPtr<Gdk::Pixbuf> splash_pixbuf;
101         Gtk::DrawingArea splash_area;
102         bool splash_expose (GdkEventExpose* ev);
103
104         void setup_first_time_config_page ();
105         void config_changed ();
106
107         /* first page */
108         Gtk::FileChooserButton* default_dir_chooser;
109         void default_dir_changed();
110         void setup_first_page ();
111
112         /* initial choice page */
113
114         void setup_initial_choice_page ();
115         Gtk::VBox ic_vbox;
116         Gtk::RadioButton ic_new_session_button;
117         Gtk::RadioButton ic_existing_session_button;
118         bool initial_button_clicked(GdkEventButton*);
119         void initial_button_activated();
120
121         /* monitoring choices */
122
123         Gtk::VBox mon_vbox;
124         Gtk::Label monitor_label;
125         Gtk::RadioButton monitor_via_hardware_button;
126         Gtk::RadioButton monitor_via_ardour_button;
127         void setup_monitoring_choice_page ();
128
129         /* monitor section choices */
130
131         Gtk::VBox mon_sec_vbox;
132         Gtk::Label monitor_section_label;
133         Gtk::RadioButton use_monitor_section_button;
134         Gtk::RadioButton no_monitor_section_button;
135         void setup_monitor_section_choice_page ();
136
137         /* session page (could be new or existing) */
138
139         void setup_session_page ();
140         Gtk::VBox session_vbox;
141         Gtk::HBox session_hbox;
142
143         /* recent sessions */
144
145         void setup_existing_session_page ();
146
147         struct RecentSessionsSorter {
148             bool operator() (std::pair<std::string,std::string> a, std::pair<std::string,std::string> b) const {
149                     return cmp_nocase(a.first, b.first) == -1;
150             }
151         };
152
153         struct RecentSessionModelColumns : public Gtk::TreeModel::ColumnRecord {
154             RecentSessionModelColumns() {
155                     add (visible_name);
156                     add (tip);
157                     add (fullpath);
158             }
159             Gtk::TreeModelColumn<std::string> visible_name;
160             Gtk::TreeModelColumn<std::string> tip;
161             Gtk::TreeModelColumn<std::string> fullpath;
162         };
163
164         RecentSessionModelColumns    recent_session_columns;
165         Gtk::TreeView                recent_session_display;
166         Glib::RefPtr<Gtk::TreeStore> recent_session_model;
167         Gtk::ScrolledWindow          recent_scroller;
168         Gtk::FileChooserButton       existing_session_chooser;
169         int redisplay_recent_sessions ();
170         void recent_session_row_selected ();
171         void recent_row_activated (const Gtk::TreePath& path, Gtk::TreeViewColumn* col);
172
173         void existing_session_selected ();
174
175         /* new sessions */
176
177         void setup_new_session_page ();
178         Gtk::Entry new_name_entry;
179         Gtk::FileChooserButton new_folder_chooser;
180         Gtk::FileChooserButton session_template_chooser;
181
182         struct SessionTemplateColumns : public Gtk::TreeModel::ColumnRecord {
183                 SessionTemplateColumns () {
184                         add (name);
185                         add (path);
186                 }
187
188                 Gtk::TreeModelColumn<std::string> name;
189                 Gtk::TreeModelColumn<std::string> path;
190         };
191
192         SessionTemplateColumns session_template_columns;
193         Glib::RefPtr<Gtk::ListStore>  template_model;
194         Gtk::ComboBox template_chooser;
195
196         Gtk::VBox session_new_vbox;
197         Gtk::VBox session_existing_vbox;
198         Gtk::CheckButton more_new_session_options_button;
199         Gtk::RadioButtonGroup session_template_group;
200         Gtk::RadioButton use_session_as_template_button;
201         Gtk::RadioButton use_template_button;
202         std::string load_template_override;
203
204         void more_new_session_options_button_clicked();
205         void new_name_changed ();
206         void populate_session_templates ();
207
208         /* more options for new sessions */
209
210         Gtk::VBox more_options_vbox;
211
212         Gtk::Label chan_count_label_1;
213         Gtk::Label chan_count_label_3;
214         Gtk::Label chan_count_label_4;
215         Gtk::Table advanced_table;
216         Gtk::HBox input_port_limit_hbox;
217         Gtk::VBox input_port_vbox;
218         Gtk::Table input_table;
219         Gtk::HBox input_hbox;
220
221         Gtk::Label bus_label;
222         Gtk::Frame bus_frame;
223         Gtk::Table bus_table;
224         Gtk::HBox bus_hbox;
225
226         Gtk::Label input_label;
227         Gtk::Frame input_frame;
228         Gtk::HBox output_port_limit_hbox;
229         Gtk::VBox output_port_vbox;
230         Gtk::VBox output_conn_vbox;
231         Gtk::VBox output_vbox;
232         Gtk::HBox output_hbox;
233
234         Gtk::Label output_label;
235         Gtk::Frame output_frame;
236         Gtk::VBox advanced_vbox;
237         Gtk::Label advanced_label;
238
239         Gtk::CheckButton _create_master_bus;
240         Gtk::SpinButton _master_bus_channel_count;
241
242         Gtk::CheckButton _connect_inputs;
243         Gtk::CheckButton _limit_input_ports;
244         Gtk::SpinButton _input_limit_count;
245
246         Gtk::CheckButton _connect_outputs;
247         Gtk::CheckButton _limit_output_ports;
248         Gtk::SpinButton _output_limit_count;
249
250         Gtk::RadioButtonGroup connect_outputs_group;
251         Gtk::RadioButton _connect_outputs_to_master;
252         Gtk::RadioButton _connect_outputs_to_physical;
253
254         Gtk::Adjustment _output_limit_count_adj;
255         Gtk::Adjustment _input_limit_count_adj;
256         Gtk::Adjustment _master_bus_channel_count_adj;
257
258         void connect_inputs_clicked ();
259         void connect_outputs_clicked ();
260         void limit_inputs_clicked ();
261         void limit_outputs_clicked ();
262         void master_bus_button_clicked ();
263         void setup_more_options_page ();
264
265         /* final page */
266
267         void setup_final_page ();
268         Gtk::Label final_page;
269
270         /* always there */
271
272         Glib::RefPtr<Pango::Layout> layout;
273
274         /* page indices */
275
276         gint audio_page_index;
277         gint new_user_page_index;
278         gint default_folder_page_index;
279         gint monitoring_page_index;
280         gint monitor_section_page_index;
281         gint session_page_index;
282         gint initial_choice_index;
283         gint final_page_index;
284         gint session_options_page_index;
285
286         void move_along_now ();
287
288         bool _existing_session_chooser_used; ///< set to true when the existing session chooser has been used
289         void setup_prerelease_page ();
290
291         Gtk::Label info_scroller_label;
292         std::string::size_type info_scroller_count;
293         bool info_scroller_update();
294         sigc::connection info_scroller_connection;
295         void updates_button_clicked ();
296 };
297
298 #endif /* __gtk2_ardour_startup_h__ */