OSC: Changed gainVCA to gainfader as VCA is already used.
[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_new_user_page ();
73         Glib::RefPtr<Gdk::Pixbuf> splash_pixbuf;
74         Gtk::DrawingArea splash_area;
75         bool splash_expose (GdkEventExpose* ev);
76
77         void setup_first_time_config_page ();
78         void config_changed ();
79
80         /* first page */
81         Gtk::FileChooserButton* default_dir_chooser;
82         void default_dir_changed();
83         void setup_first_page ();
84         Gtk::FileChooserButton new_folder_chooser;
85
86         /* monitoring choices */
87
88         Gtk::VBox mon_vbox;
89         Gtk::Label monitor_label;
90         Gtk::RadioButton monitor_via_hardware_button;
91         Gtk::RadioButton monitor_via_ardour_button;
92         void setup_monitoring_choice_page ();
93
94         /* monitor section choices */
95
96         Gtk::VBox mon_sec_vbox;
97         Gtk::Label monitor_section_label;
98         Gtk::RadioButton use_monitor_section_button;
99         Gtk::RadioButton no_monitor_section_button;
100         void setup_monitor_section_choice_page ();
101
102         /* final page */
103
104         void setup_final_page ();
105         Gtk::Button plugin_disco_button;
106
107         /* always there */
108
109         Glib::RefPtr<Pango::Layout> layout;
110
111         /* page indices */
112
113         gint audio_page_index;
114         gint new_user_page_index;
115         gint default_folder_page_index;
116         gint monitoring_page_index;
117         gint monitor_section_page_index;
118         gint final_page_index;
119
120         void move_along_now ();
121 };
122
123 #endif /* __gtk2_ardour_startup_h__ */