better fix for send/redirect renaming, plus (sorry) small comment change in public_ed...
[ardour2.git] / gtk2_ardour / engine_dialog.h
blob6dad930474a00bb716a5f722ad7e76e0e7fb170a
1 #ifndef __gtk2_ardour_engine_dialog_h__
2 #define __gtk2_ardour_engine_dialog_h__
4 #include <map>
5 #include <vector>
6 #include <string>
8 #include <gtkmm/checkbutton.h>
9 #include <gtkmm/spinbutton.h>
10 #include <gtkmm/notebook.h>
11 #include <gtkmm/comboboxtext.h>
12 #include <gtkmm/table.h>
13 #include <gtkmm/expander.h>
14 #include <gtkmm/box.h>
15 #include <gtkmm/buttonbox.h>
16 #include <gtkmm/button.h>
18 class EngineControl : public Gtk::VBox {
19 public:
20 EngineControl ();
21 ~EngineControl ();
23 static bool engine_running ();
24 int setup_engine ();
25 void discover_servers ();
27 bool interface_chosen () const { return _interface_chosen; }
28 void unset_interface_chosen() { _interface_chosen = false; }
29 bool was_used() const { return _used; }
30 XMLNode& get_state ();
31 void set_state (const XMLNode&);
34 private:
35 Gtk::Adjustment periods_adjustment;
36 Gtk::SpinButton periods_spinner;
37 Gtk::Adjustment priority_adjustment;
38 Gtk::SpinButton priority_spinner;
39 Gtk::Adjustment ports_adjustment;
40 Gtk::SpinButton ports_spinner;
41 Gtk::SpinButton input_channels;
42 Gtk::SpinButton output_channels;
43 Gtk::SpinButton input_latency;
44 Gtk::SpinButton output_latency;
45 Gtk::Label latency_label;
47 Gtk::CheckButton realtime_button;
48 Gtk::CheckButton no_memory_lock_button;
49 Gtk::CheckButton unlock_memory_button;
50 Gtk::CheckButton soft_mode_button;
51 Gtk::CheckButton monitor_button;
52 Gtk::CheckButton force16bit_button;
53 Gtk::CheckButton hw_monitor_button;
54 Gtk::CheckButton hw_meter_button;
55 Gtk::CheckButton verbose_output_button;
57 Gtk::Button start_button;
58 Gtk::Button stop_button;
59 Gtk::HButtonBox button_box;
61 Gtk::ComboBoxText sample_rate_combo;
62 Gtk::ComboBoxText period_size_combo;
64 Gtk::ComboBoxText preset_combo;
65 Gtk::ComboBoxText serverpath_combo;
66 Gtk::ComboBoxText driver_combo;
67 Gtk::ComboBoxText interface_combo;
68 Gtk::ComboBoxText timeout_combo;
69 Gtk::ComboBoxText dither_mode_combo;
70 Gtk::ComboBoxText audio_mode_combo;
71 Gtk::ComboBoxText input_device_combo;
72 Gtk::ComboBoxText output_device_combo;
74 Gtk::Table basic_packer;
75 Gtk::Table options_packer;
76 Gtk::Table device_packer;
77 Gtk::HBox basic_hbox;
78 Gtk::HBox options_hbox;
79 Gtk::HBox device_hbox;
80 Gtk::Notebook notebook;
82 bool _used;
83 bool _interface_chosen;
85 void realtime_changed ();
86 void driver_changed ();
87 void build_command_line (std::vector<std::string>&);
89 std::map<std::string,std::vector<std::string> > devices;
90 std::vector<std::string> backend_devs;
91 void enumerate_devices (const string& driver);
93 #ifdef __APPLE__
94 std::vector<std::string> enumerate_coreaudio_devices ();
95 #else
96 std::vector<std::string> enumerate_alsa_devices ();
97 std::vector<std::string> enumerate_oss_devices ();
98 std::vector<std::string> enumerate_netjack_devices ();
99 std::vector<std::string> enumerate_ffado_devices ();
100 std::vector<std::string> enumerate_dummy_devices ();
101 #endif
103 void redisplay_latency ();
104 uint32_t get_rate();
105 void audio_mode_changed ();
106 std::vector<std::string> server_strings;
107 int server_row;
108 void find_jack_servers (std::vector<std::string>&);
109 std::string get_device_name (const std::string& driver, const std::string& human_readable_name);
112 #endif /* __gtk2_ardour_engine_dialog_h__ */