fix duplicate, and clarify its behaviour in smart mode; includes a fix for TimeSelect...
[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/notebook.h>
30 #include <gtkmm/comboboxtext.h>
31 #include <gtkmm/table.h>
32 #include <gtkmm/expander.h>
33 #include <gtkmm/box.h>
34 #include <gtkmm/buttonbox.h>
35 #include <gtkmm/button.h>
36
37 class EngineControl : public Gtk::VBox {
38   public:
39         EngineControl ();
40         ~EngineControl ();
41
42         static bool need_setup ();
43         int setup_engine ();
44
45         bool was_used() const { return _used; }
46         XMLNode& get_state ();
47         void set_state (const XMLNode&);
48
49   private:
50         Gtk::Adjustment periods_adjustment;
51         Gtk::SpinButton periods_spinner;
52         Gtk::Adjustment ports_adjustment;
53         Gtk::SpinButton ports_spinner;
54         Gtk::Adjustment input_latency_adjustment;
55         Gtk::SpinButton input_latency;
56         Gtk::Adjustment output_latency_adjustment;
57         Gtk::SpinButton output_latency;
58         Gtk::Label latency_label;
59
60         Gtk::CheckButton realtime_button;
61         Gtk::CheckButton no_memory_lock_button;
62         Gtk::CheckButton unlock_memory_button;
63         Gtk::CheckButton soft_mode_button;
64         Gtk::CheckButton monitor_button;
65         Gtk::CheckButton force16bit_button;
66         Gtk::CheckButton hw_monitor_button;
67         Gtk::CheckButton hw_meter_button;
68         Gtk::CheckButton verbose_output_button;
69
70         Gtk::Button start_button;
71         Gtk::Button stop_button;
72         Gtk::HButtonBox button_box;
73
74         Gtk::ComboBoxText sample_rate_combo;
75         Gtk::ComboBoxText period_size_combo;
76
77         Gtk::ComboBoxText preset_combo;
78         Gtk::ComboBoxText serverpath_combo;
79         Gtk::ComboBoxText driver_combo;
80         Gtk::ComboBoxText interface_combo;
81         Gtk::ComboBoxText timeout_combo;
82         Gtk::ComboBoxText dither_mode_combo;
83         Gtk::ComboBoxText audio_mode_combo;
84         Gtk::ComboBoxText input_device_combo;
85         Gtk::ComboBoxText output_device_combo;
86         Gtk::ComboBoxText midi_driver_combo;
87
88         Gtk::Table basic_packer;
89         Gtk::Table options_packer;
90         Gtk::Table device_packer;
91         Gtk::HBox basic_hbox;
92         Gtk::HBox options_hbox;
93         Gtk::HBox device_hbox;
94         Gtk::Notebook notebook;
95
96         bool _used;
97
98         static bool engine_running ();
99
100         void driver_changed ();
101         void build_command_line (std::vector<std::string>&);
102
103         std::map<std::string,std::vector<std::string> > devices;
104         std::vector<std::string> backend_devs;
105         void enumerate_devices (const std::string& driver);
106
107 #ifdef __APPLE__
108         std::vector<std::string> enumerate_coreaudio_devices ();
109 #else
110         std::vector<std::string> enumerate_alsa_devices ();
111         std::vector<std::string> enumerate_oss_devices ();
112         std::vector<std::string> enumerate_netjack_devices ();
113         std::vector<std::string> enumerate_freebob_devices ();
114         std::vector<std::string> enumerate_ffado_devices ();
115         std::vector<std::string> enumerate_dummy_devices ();
116 #endif
117
118         void redisplay_latency ();
119         uint32_t get_rate();
120         void audio_mode_changed ();
121         std::vector<std::string> server_strings;
122         void find_jack_servers (std::vector<std::string>&);
123         std::string get_device_name (const std::string& driver, const std::string& human_readable_name);
124 };
125
126 #endif /* __gtk2_ardour_engine_dialog_h__ */