summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-07-13 23:09:16 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-07-13 23:09:16 +0000
commit17bfb7cad584bf985222d3d380e5e5e06c27aff2 (patch)
treea141f8bf5abca65c08b9fef3aeee9c6e72adcb19 /gtk2_ardour/processor_box.h
parent385635c445490f27c2243924e2c53a3fe1dfa56e (diff)
traverso-style mixer window bindings. note: messes up some bindings when mouse is not in the processor box (fix to follow); notes: m=mute, s=solo, g=gain_up ctrl-g=gain_down r=rec-enable e=show-sends KP_0=toggle processor active status (selected or pointed-at)
git-svn-id: svn://localhost/ardour2/branches/3.0@5356 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/processor_box.h')
-rw-r--r--gtk2_ardour/processor_box.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/processor_box.h b/gtk2_ardour/processor_box.h
index 32a36c9077..76fabe8d39 100644
--- a/gtk2_ardour/processor_box.h
+++ b/gtk2_ardour/processor_box.h
@@ -158,6 +158,10 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject
bool no_processor_redisplay;
bool ignore_delete;
+ bool enter_notify (GdkEventCrossing *ev);
+ bool leave_notify (GdkEventCrossing *ev);
+ bool processor_key_press_event (GdkEventKey *);
+ bool processor_key_release_event (GdkEventKey *);
bool processor_button_press_event (GdkEventButton *);
bool processor_button_release_event (GdkEventButton *);
void redisplay_processors ();
@@ -208,8 +212,6 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject
void weird_plugin_dialog (ARDOUR::Plugin& p, ARDOUR::Route::ProcessorStreams streams);
static ProcessorBox* _current_processor_box;
- static bool enter_box (GdkEventCrossing*, ProcessorBox*);
- static bool leave_box (GdkEventCrossing*, ProcessorBox*);
static void rb_choose_plugin ();
static void rb_choose_insert ();