mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 22:26:29 +01:00
make a start on JACK control dialog
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2085 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2b2f34669e
commit
80cdd6bf1d
7 changed files with 219 additions and 0 deletions
56
gtk2_ardour/engine_dialog.h
Normal file
56
gtk2_ardour/engine_dialog.h
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
#ifndef __gtk2_ardour_engine_dialog_h__
|
||||
#define __gtk2_ardour_engine_dialog_h__
|
||||
|
||||
#include <gtkmm/checkbutton.h>
|
||||
#include <gtkmm/spinbutton.h>
|
||||
#include <gtkmm/notebook.h>
|
||||
#include <gtkmm/comboboxtext.h>
|
||||
#include <gtkmm/table.h>
|
||||
|
||||
#include "ardour_dialog.h"
|
||||
|
||||
class EngineDialog : public ArdourDialog {
|
||||
public:
|
||||
EngineDialog ();
|
||||
~EngineDialog ();
|
||||
|
||||
private:
|
||||
Gtk::CheckButton realtime_button;
|
||||
Gtk::CheckButton no_memory_lock_button;
|
||||
Gtk::CheckButton unlock_memory_button;
|
||||
Gtk::CheckButton soft_mode_button;
|
||||
Gtk::CheckButton monitor_button;
|
||||
Gtk::CheckButton force16bit_button;
|
||||
Gtk::CheckButton hw_monitor_button;
|
||||
Gtk::CheckButton hw_meter_button;
|
||||
Gtk::CheckButton verbose_output_button;
|
||||
|
||||
Gtk::SpinButton priority_spinner;
|
||||
Gtk::SpinButton periods_spinner;
|
||||
Gtk::SpinButton input_channels;
|
||||
Gtk::SpinButton output_channels;
|
||||
Gtk::SpinButton input_latency;
|
||||
Gtk::SpinButton output_latency;
|
||||
|
||||
Gtk::ComboBoxText sample_rate_combo;
|
||||
Gtk::ComboBoxText period_size_combo;
|
||||
|
||||
Gtk::ComboBoxText preset_combo;
|
||||
Gtk::ComboBoxText serverpath_combo;
|
||||
Gtk::ComboBoxText driver_combo;
|
||||
Gtk::ComboBoxText interface_combo;
|
||||
Gtk::ComboBoxText port_maximum_combo;
|
||||
Gtk::ComboBoxText timeout_combo;
|
||||
Gtk::ComboBoxText dither_mode_combo;
|
||||
Gtk::ComboBoxText audio_mode_combo;
|
||||
Gtk::ComboBoxText input_device_combo;
|
||||
Gtk::ComboBoxText output_device_combo;
|
||||
|
||||
Gtk::Table basic_packer;
|
||||
Gtk::Table options_packer;
|
||||
Gtk::Table device_packer;
|
||||
|
||||
Gtk::Notebook notebook;
|
||||
};
|
||||
|
||||
#endif /* __gtk2_ardour_engine_dialog_h__ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue