Merge branch 'master' of https://github.com/nmains/ardour
[ardour.git] / gtk2_ardour / engine_dialog.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_engine_dialog_h__
21 #define __gtk2_ardour_engine_dialog_h__
22
23 #include <map>
24 #include <vector>
25 #include <string>
26
27 #include <gtkmm/checkbutton.h>
28 #include <gtkmm/spinbutton.h>
29 #include <gtkmm/comboboxtext.h>
30 #include <gtkmm/table.h>
31 #include <gtkmm/expander.h>
32 #include <gtkmm/box.h>
33 #include <gtkmm/buttonbox.h>
34 #include <gtkmm/button.h>
35
36 #include "pbd/signals.h"
37
38 #include "ardour_dialog.h"
39
40 class EngineControl : public ArdourDialog, public PBD::ScopedConnectionList {
41   public:
42     EngineControl ();
43     ~EngineControl ();
44     
45     static bool need_setup ();
46     
47     XMLNode& get_state ();
48     void set_state (const XMLNode&);
49     
50     void set_desired_sample_rate (uint32_t);
51     
52   private:
53     Gtk::Notebook notebook;
54
55     /* core fields used by all backends */
56
57     Gtk::Table basic_packer;
58     Gtk::HBox basic_hbox;
59     Gtk::VBox basic_vbox;
60
61     Gtk::ComboBoxText backend_combo;
62     Gtk::ComboBoxText driver_combo;
63     Gtk::ComboBoxText device_combo;
64     Gtk::ComboBoxText sample_rate_combo;
65     Gtk::ComboBoxText buffer_size_combo;
66     Gtk::Label        buffer_size_duration_label;
67     Gtk::Adjustment input_latency_adjustment;
68     Gtk::SpinButton input_latency;
69     Gtk::Adjustment output_latency_adjustment;
70     Gtk::SpinButton output_latency;
71     Gtk::Adjustment input_channels_adjustment;
72     Gtk::SpinButton input_channels;
73     Gtk::Adjustment output_channels_adjustment;
74     Gtk::SpinButton output_channels;
75     Gtk::Adjustment ports_adjustment;
76     Gtk::SpinButton ports_spinner;
77
78     Gtk::Label      have_control_text;
79     Gtk::Button     control_app_button;
80
81     Gtk::Button     connect_disconnect_button;
82
83     /* latency measurement */
84
85     Gtk::ComboBoxText lm_output_channel_combo;
86     Gtk::ComboBoxText lm_input_channel_combo;
87     Gtk::Label        lm_start_stop_label;
88     Gtk::ToggleButton lm_measure_button;
89     Gtk::Button       lm_use_button;
90     Gtk::Label        lm_title;
91     Gtk::Label        lm_results;
92     Gtk::Table        lm_table;
93     Gtk::VBox         lm_vbox;
94     bool              have_lm_results;
95
96     Gtk::Button* cancel_button;
97     Gtk::Button* ok_button;
98     Gtk::Button* apply_button;
99
100     /* MIDI Tab */
101
102     Gtk::VBox midi_vbox;
103     Gtk::Button midi_refresh_button;
104     Gtk::Table midi_device_table;
105
106     /* MIDI ... JACK */
107     
108     Gtk::CheckButton aj_button;
109     
110     uint32_t ignore_changes;
111     uint32_t _desired_sample_rate;
112     bool     no_push;
113     bool     started_at_least_once;
114
115     void driver_changed ();
116     void backend_changed ();
117     void sample_rate_changed ();
118     void buffer_size_changed ();
119     void parameter_changed ();
120
121     void setup_midi_tab_for_backend ();
122     void setup_midi_tab_for_jack ();
123     void refresh_midi_display ();
124     
125     std::string rate_as_string (float);
126     std::string bufsize_as_string (uint32_t);
127
128     float get_rate() const;
129     uint32_t get_buffer_size() const;
130     uint32_t get_input_channels() const;
131     uint32_t get_output_channels() const;
132     uint32_t get_input_latency() const;
133     uint32_t get_output_latency() const;
134     std::string get_device_name() const;
135     std::string get_driver() const;
136     std::string get_backend() const;
137
138     void device_changed ();
139     void list_devices ();
140     void show_buffer_duration ();
141
142     struct State {
143         std::string backend;
144         std::string driver;
145         std::string device;
146         float sample_rate;
147         uint32_t buffer_size;
148         uint32_t input_latency;
149         uint32_t output_latency;
150         uint32_t input_channels;
151         uint32_t output_channels;
152         bool active;
153
154         State() 
155                 : input_latency (0)
156                 , output_latency (0)
157                 , input_channels (0)
158                 , output_channels (0)
159                 , active (false) {}
160
161     };
162     
163     typedef std::list<State> StateList;
164
165     StateList states;
166
167     State* get_matching_state (const std::string& backend,
168                                const std::string& driver,
169                                const std::string& device);
170     State* get_saved_state_for_currently_displayed_backend_and_device ();
171     void maybe_display_saved_state ();
172     State* save_state ();
173     void store_state (State&);
174
175     bool  _have_control;
176
177     static bool print_channel_count (Gtk::SpinButton*);
178
179     void build_notebook ();
180     void build_full_control_notebook ();
181     void build_no_control_notebook ();
182
183     void on_response (int);
184     void control_app_button_clicked ();
185     void use_latency_button_clicked ();
186     void manage_control_app_sensitivity ();
187     int push_state_to_backend (bool start);
188     void post_push ();
189     void update_sensitivity ();
190
191     /* latency measurement */
192     void latency_button_toggled ();
193     bool check_latency_measurement ();
194     sigc::connection latency_timeout;
195     void enable_latency_tab ();
196     void disable_latency_tab ();
197     void start_latency_detection ();
198     void end_latency_detection ();
199     
200     void on_switch_page (GtkNotebookPage*, guint page_num);
201     bool on_delete_event (GdkEventAny*);
202
203     void engine_running ();
204     void engine_stopped ();
205     PBD::ScopedConnection running_connection;
206     PBD::ScopedConnection stopped_connection;
207
208     void connect_disconnect_click ();
209 };
210
211 #endif /* __gtk2_ardour_engine_dialog_h__ */