summaryrefslogtreecommitdiff
path: root/gtk2_ardour/option_editor.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-08-04 14:37:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-08-04 14:37:22 +0000
commit047bf14592018cff6f2fbe57ac1cabac02cea781 (patch)
tree0e0af472dc442419e82efd6e5300044f332b62dc /gtk2_ardour/option_editor.h
parentdeba9b3ccd866ec603b86e6c484641ded05f58a3 (diff)
separate MMC ID's for send + receive
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2239 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/option_editor.h')
-rw-r--r--gtk2_ardour/option_editor.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/gtk2_ardour/option_editor.h b/gtk2_ardour/option_editor.h
index 81372f5775..a234f1d752 100644
--- a/gtk2_ardour/option_editor.h
+++ b/gtk2_ardour/option_editor.h
@@ -112,8 +112,10 @@ class OptionEditor : public Gtk::Dialog
Gtk::Table midi_port_table;
std::vector<Gtk::Widget*> midi_port_table_widgets;
- Gtk::Adjustment mmc_device_id_adjustment;
- Gtk::SpinButton mmc_device_id_spinner;
+ Gtk::Adjustment mmc_receive_device_id_adjustment;
+ Gtk::SpinButton mmc_receive_device_id_spinner;
+ Gtk::Adjustment mmc_send_device_id_adjustment;
+ Gtk::SpinButton mmc_send_device_id_spinner;
Gtk::Button add_midi_port_button;
void add_midi_port ();
@@ -129,7 +131,8 @@ class OptionEditor : public Gtk::Dialog
void midi_port_chosen (MIDI::Port*,Gtk::RadioButton*, Gtk::Button*);
bool port_removable (MIDI::Port*);
- void mmc_device_id_adjusted ();
+ void mmc_receive_device_id_adjusted ();
+ void mmc_send_device_id_adjusted ();
void map_port_online (MIDI::Port*, Gtk::ToggleButton*);