summaryrefslogtreecommitdiff
path: root/gtk2_ardour/step_entry.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-08-11 18:21:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-08-11 18:21:37 +0000
commit5182f0770cca50cbb7c8fe419b2e64af02525553 (patch)
treed83afeadcc8ab51bcdae2cb993f2f8a60100e9c2 /gtk2_ardour/step_entry.h
parentfd3219bf29415006d6680fc5cf2dac97c35972bc (diff)
add a first hack at a step edit cursor (to be changed); add program+bank stubs (non-functional for the foreseeable future); fix up step edit changes propagating across all MIDI tracks; make program change "flags" change height along with track
git-svn-id: svn://localhost/ardour2/branches/3.0@7598 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/step_entry.h')
-rw-r--r--gtk2_ardour/step_entry.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk2_ardour/step_entry.h b/gtk2_ardour/step_entry.h
index d9c5492304..0fd7d6f121 100644
--- a/gtk2_ardour/step_entry.h
+++ b/gtk2_ardour/step_entry.h
@@ -100,6 +100,14 @@ class StepEntry : public ArdourDialog
Gtk::Adjustment velocity_adjustment;
Gtk::SpinButton velocity_spinner;
+ Gtk::Adjustment bank_adjustment;
+ Gtk::SpinButton bank_spinner;
+ Gtk::Button bank_button;
+
+ Gtk::Adjustment program_adjustment;
+ Gtk::SpinButton program_spinner;
+ Gtk::Button program_button;
+
void length_changed ();
void velocity_changed ();
void velocity_value_change ();
@@ -109,6 +117,8 @@ class StepEntry : public ArdourDialog
Gtk::Widget* piano;
MidiTimeAxisView* _mtv;
+ void bank_click ();
+ void program_click ();
void rest_click ();
void grid_rest_click ();
void sustain_click ();