Use central method to check for engine for processor operations
[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 {
49 public:
50         ArdourStartup ();
51         ~ArdourStartup ();
52
53         static bool required ();
54
55         gint response () const {
56                 return  _response;
57         }
58
59 private:
60         gint _response;
61         bool config_modified;
62         bool new_user;
63
64         void on_apply ();
65         void on_cancel ();
66         bool on_delete_event (GdkEventAny*);
67         void discover_plugins ();
68
69         static ArdourStartup *the_startup;
70
71         Glib::RefPtr<Gdk::Pixbuf> icon_pixbuf;
72
73         void setup_prerelease_page ();
74         void setup_new_user_page ();
75         Glib::RefPtr<Gdk::Pixbuf> splash_pixbuf;
76         Gtk::DrawingArea splash_area;
77         bool splash_expose (GdkEventExpose* ev);
78
79         void setup_first_time_config_page ();
80         void config_changed ();
81
82         /* first page */
83         Gtk::FileChooserButton* default_dir_chooser;
84         void default_dir_changed();
85         void setup_first_page ();
86         Gtk::FileChooserButton new_folder_chooser;
87
88         /* monitoring choices */
89
90         Gtk::VBox mon_vbox;
91         Gtk::Label monitor_label;
92         Gtk::RadioButton monitor_via_hardware_button;
93         Gtk::RadioButton monitor_via_ardour_button;
94         void setup_monitoring_choice_page ();
95
96         /* monitor section choices */
97
98         Gtk::VBox mon_sec_vbox;
99         Gtk::Label monitor_section_label;
100         Gtk::RadioButton use_monitor_section_button;
101         Gtk::RadioButton no_monitor_section_button;
102         void setup_monitor_section_choice_page ();
103
104         /* final page */
105
106         void setup_final_page ();
107         Gtk::Button plugin_disco_button;
108
109         /* always there */
110
111         Glib::RefPtr<Pango::Layout> layout;
112
113         /* page indices */
114
115         gint audio_page_index;
116         gint new_user_page_index;
117         gint default_folder_page_index;
118         gint monitoring_page_index;
119         gint monitor_section_page_index;
120         gint final_page_index;
121
122         void move_along_now ();
123 };
124
125 #endif /* __gtk2_ardour_startup_h__ */