Make send automation work (#4734).
[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 engine_running ();
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 priority_adjustment;
53         Gtk::SpinButton priority_spinner;
54         Gtk::Adjustment ports_adjustment;
55         Gtk::SpinButton ports_spinner;
56         Gtk::Adjustment input_latency_adjustment;
57         Gtk::SpinButton input_latency;
58         Gtk::Adjustment output_latency_adjustment;
59         Gtk::SpinButton output_latency;
60         Gtk::Label latency_label;
61
62         Gtk::CheckButton realtime_button;
63         Gtk::CheckButton no_memory_lock_button;
64         Gtk::CheckButton unlock_memory_button;
65         Gtk::CheckButton soft_mode_button;
66         Gtk::CheckButton monitor_button;
67         Gtk::CheckButton force16bit_button;
68         Gtk::CheckButton hw_monitor_button;
69         Gtk::CheckButton hw_meter_button;
70         Gtk::CheckButton verbose_output_button;
71
72         Gtk::Button start_button;
73         Gtk::Button stop_button;
74         Gtk::HButtonBox button_box;
75
76         Gtk::ComboBoxText sample_rate_combo;
77         Gtk::ComboBoxText period_size_combo;
78
79         Gtk::ComboBoxText preset_combo;
80         Gtk::ComboBoxText serverpath_combo;
81         Gtk::ComboBoxText driver_combo;
82         Gtk::ComboBoxText interface_combo;
83         Gtk::ComboBoxText timeout_combo;
84         Gtk::ComboBoxText dither_mode_combo;
85         Gtk::ComboBoxText audio_mode_combo;
86         Gtk::ComboBoxText input_device_combo;
87         Gtk::ComboBoxText output_device_combo;
88         Gtk::ComboBoxText midi_driver_combo;
89
90         Gtk::Table basic_packer;
91         Gtk::Table options_packer;
92         Gtk::Table device_packer;
93         Gtk::HBox basic_hbox;
94         Gtk::HBox options_hbox;
95         Gtk::HBox device_hbox;
96         Gtk::Notebook notebook;
97
98         bool _used;
99
100         void realtime_changed ();
101         void driver_changed ();
102         void build_command_line (std::vector<std::string>&);
103
104         std::map<std::string,std::vector<std::string> > devices;
105         std::vector<std::string> backend_devs;
106         void enumerate_devices (const std::string& driver);
107
108 #ifdef __APPLE__
109         std::vector<std::string> enumerate_coreaudio_devices ();
110 #else
111         std::vector<std::string> enumerate_alsa_devices ();
112         std::vector<std::string> enumerate_oss_devices ();
113         std::vector<std::string> enumerate_netjack_devices ();
114         std::vector<std::string> enumerate_freebob_devices ();
115         std::vector<std::string> enumerate_ffado_devices ();
116         std::vector<std::string> enumerate_dummy_devices ();
117 #endif
118
119         void redisplay_latency ();
120         uint32_t get_rate();
121         void audio_mode_changed ();
122         std::vector<std::string> server_strings;
123         void find_jack_servers (std::vector<std::string>&);
124         std::string get_device_name (const std::string& driver, const std::string& human_readable_name);
125 };
126
127 #endif /* __gtk2_ardour_engine_dialog_h__ */