some rearrangements and details for the engine dialog

This commit is contained in:
Paul Davis 2013-08-08 23:31:35 -04:00
parent ab39a09b86
commit 743bb5066e
2 changed files with 41 additions and 55 deletions

View file

@ -64,7 +64,6 @@ class EngineControl : public Gtk::VBox {
Gtk::SpinButton output_channels;
Gtk::Adjustment ports_adjustment;
Gtk::SpinButton ports_spinner;
Gtk::Label latency_label;
/* JACK specific */
@ -95,6 +94,8 @@ class EngineControl : public Gtk::VBox {
Gtk::HBox options_hbox;
Gtk::HBox device_hbox;
Gtk::Notebook notebook;
sigc::connection sr_connection;
bool _used;
@ -103,8 +104,6 @@ class EngineControl : public Gtk::VBox {
void driver_changed ();
void backend_changed ();
void redisplay_latency ();
uint32_t get_rate() const;
uint32_t get_buffer_size() const;
uint32_t get_input_channels() const;
@ -117,6 +116,7 @@ class EngineControl : public Gtk::VBox {
void audio_mode_changed ();
void interface_changed ();
void list_devices ();
void reshow_buffer_sizes ();
};
#endif /* __gtk2_ardour_engine_dialog_h__ */