various fixes to MidiRegionView selection handling, key handling, drawing of ghost...
[ardour2.git] / gtk2_ardour / startup.h
blob76183b5b5a6885bf054ff0d432e310c8f1740c94
1 /*
2 Copyright (C) 2010 Paul Davis
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.
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.
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.
20 #ifndef __gtk2_ardour_startup_h__
21 #define __gtk2_ardour_startup_h__
23 #include <string>
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>
42 #include "ardour/utils.h"
44 class EngineControl;
46 class ArdourStartup : public Gtk::Assistant {
47 public:
48 ArdourStartup ();
49 ~ArdourStartup ();
51 void set_new_only (bool);
52 void set_load_template( std::string load_template );
54 std::string session_name (bool& should_be_new);
55 std::string session_folder ();
57 bool use_session_template();
58 std::string session_template_name();
60 EngineControl* engine_control() { return engine_dialog; }
62 // advanced session options
64 bool create_master_bus() const;
65 int master_channel_count() const;
67 bool connect_inputs() const;
68 bool limit_inputs_used_for_connection() const;
69 int input_limit_count() const;
71 bool connect_outputs() const;
72 bool limit_outputs_used_for_connection() const;
73 int output_limit_count() const;
75 bool connect_outs_to_master() const;
76 bool connect_outs_to_physical() const;
78 gint response () const {
79 return _response;
82 private:
83 gint _response;
84 bool config_modified;
85 bool new_user;
86 bool new_only;
88 void on_apply ();
89 void on_cancel ();
90 bool on_delete_event (GdkEventAny*);
91 void on_prepare (Gtk::Widget*);
93 static ArdourStartup *the_startup;
95 Glib::RefPtr<Gdk::Pixbuf> icon_pixbuf;
97 void setup_new_user_page ();
98 Glib::RefPtr<Gdk::Pixbuf> splash_pixbuf;
99 Gtk::DrawingArea splash_area;
100 bool splash_expose (GdkEventExpose* ev);
102 void setup_first_time_config_page ();
103 void config_changed ();
105 /* first page */
106 Gtk::FileChooserButton* default_dir_chooser;
107 void default_dir_changed();
108 void setup_first_page ();
110 /* initial choice page */
112 void setup_initial_choice_page ();
113 Gtk::VBox ic_vbox;
114 Gtk::RadioButton ic_new_session_button;
115 Gtk::RadioButton ic_existing_session_button;
116 bool initial_button_press(GdkEventButton *);
117 void initial_button_activated();
119 /* monitoring choices */
121 Gtk::VBox mon_vbox;
122 Gtk::Label monitor_label;
123 Gtk::RadioButton monitor_via_hardware_button;
124 Gtk::RadioButton monitor_via_ardour_button;
125 void setup_monitoring_choice_page ();
127 /* monitor section choices */
129 Gtk::VBox mon_sec_vbox;
130 Gtk::Label monitor_section_label;
131 Gtk::RadioButton use_monitor_section_button;
132 Gtk::RadioButton no_monitor_section_button;
133 void setup_monitor_section_choice_page ();
135 /* session page (could be new or existing) */
137 void setup_session_page ();
138 Gtk::VBox session_vbox;
139 Gtk::HBox session_hbox;
141 /* recent sessions */
143 void setup_existing_session_page ();
145 struct RecentSessionsSorter {
146 bool operator() (std::pair<std::string,std::string> a, std::pair<std::string,std::string> b) const {
147 return cmp_nocase(a.first, b.first) == -1;
151 struct RecentSessionModelColumns : public Gtk::TreeModel::ColumnRecord {
152 RecentSessionModelColumns() {
153 add (visible_name);
154 add (fullpath);
156 Gtk::TreeModelColumn<std::string> visible_name;
157 Gtk::TreeModelColumn<std::string> fullpath;
160 RecentSessionModelColumns recent_session_columns;
161 Gtk::TreeView recent_session_display;
162 Glib::RefPtr<Gtk::TreeStore> recent_session_model;
163 Gtk::ScrolledWindow recent_scroller;
164 Gtk::FileChooserButton existing_session_chooser;
165 int redisplay_recent_sessions ();
166 void recent_session_row_selected ();
167 void recent_row_activated (const Gtk::TreePath& path, Gtk::TreeViewColumn* col);
169 void existing_session_selected ();
171 /* audio setup page */
173 void setup_audio_page ();
174 EngineControl* engine_dialog;
176 /* new sessions */
178 void setup_new_session_page ();
179 Gtk::Entry new_name_entry;
180 Gtk::FileChooserButton new_folder_chooser;
181 Gtk::FileChooserButton session_template_chooser;
182 void new_name_mapped ();
184 struct SessionTemplateColumns : public Gtk::TreeModel::ColumnRecord {
185 SessionTemplateColumns () {
186 add (name);
187 add (path);
190 Gtk::TreeModelColumn<std::string> name;
191 Gtk::TreeModelColumn<std::string> path;
194 SessionTemplateColumns session_template_columns;
195 Glib::RefPtr<Gtk::ListStore> template_model;
196 Gtk::ComboBox template_chooser;
198 Gtk::VBox session_new_vbox;
199 Gtk::VBox session_existing_vbox;
200 Gtk::CheckButton more_new_session_options_button;
201 Gtk::RadioButtonGroup session_template_group;
202 Gtk::RadioButton use_session_as_template_button;
203 Gtk::RadioButton use_template_button;
204 std::string load_template_override;
206 void more_new_session_options_button_clicked();
207 void new_name_changed ();
208 void populate_session_templates ();
210 /* more options for new sessions */
212 Gtk::VBox more_options_vbox;
214 Gtk::Label chan_count_label_1;
215 Gtk::Label chan_count_label_3;
216 Gtk::Label chan_count_label_4;
217 Gtk::Table advanced_table;
218 Gtk::HBox input_port_limit_hbox;
219 Gtk::VBox input_port_vbox;
220 Gtk::Table input_table;
221 Gtk::HBox input_hbox;
223 Gtk::Label bus_label;
224 Gtk::Frame bus_frame;
225 Gtk::Table bus_table;
226 Gtk::HBox bus_hbox;
228 Gtk::Label input_label;
229 Gtk::Frame input_frame;
230 Gtk::HBox output_port_limit_hbox;
231 Gtk::VBox output_port_vbox;
232 Gtk::VBox output_conn_vbox;
233 Gtk::VBox output_vbox;
234 Gtk::HBox output_hbox;
236 Gtk::Label output_label;
237 Gtk::Frame output_frame;
238 Gtk::VBox advanced_vbox;
239 Gtk::Label advanced_label;
241 Gtk::CheckButton _create_master_bus;
242 Gtk::SpinButton _master_bus_channel_count;
244 Gtk::CheckButton _connect_inputs;
245 Gtk::CheckButton _limit_input_ports;
246 Gtk::SpinButton _input_limit_count;
248 Gtk::CheckButton _connect_outputs;
249 Gtk::CheckButton _limit_output_ports;
250 Gtk::SpinButton _output_limit_count;
252 Gtk::RadioButtonGroup connect_outputs_group;
253 Gtk::RadioButton _connect_outputs_to_master;
254 Gtk::RadioButton _connect_outputs_to_physical;
256 Gtk::Adjustment _output_limit_count_adj;
257 Gtk::Adjustment _input_limit_count_adj;
258 Gtk::Adjustment _master_bus_channel_count_adj;
260 void connect_inputs_clicked ();
261 void connect_outputs_clicked ();
262 void limit_inputs_clicked ();
263 void limit_outputs_clicked ();
264 void master_bus_button_clicked ();
265 void setup_more_options_page ();
267 /* final page */
269 void setup_final_page ();
270 Gtk::Label final_page;
272 /* always there */
274 Glib::RefPtr<Pango::Layout> layout;
276 /* page indices */
278 gint audio_page_index;
279 gint new_user_page_index;
280 gint default_folder_page_index;
281 gint monitoring_page_index;
282 gint monitor_section_page_index;
283 gint session_page_index;
284 gint initial_choice_index;
285 gint final_page_index;
286 gint session_options_page_index;
288 void move_along_now ();
290 bool _existing_session_chooser_used; ///< set to true when the existing session chooser has been used
291 void setup_alpha_page ();
294 #endif /* __gtk2_ardour_startup_h__ */