summaryrefslogtreecommitdiff
path: root/gtk2_ardour/midi_time_axis.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-01-07 19:15:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-01-07 19:15:33 +0000
commit2e30bdba9f4841fd050c7ef4e960617761b85453 (patch)
treec76bad6e50378208f2d8bcf4c7cf395100016c89 /gtk2_ardour/midi_time_axis.h
parented6545eb5b360afc1a11f3dec0bb553a11e64436 (diff)
select-by-pitch from the piano roll header (inspired by Rosegarden); some improvements underway to controller/automation menu, but still broken there
git-svn-id: svn://localhost/ardour2/branches/3.0@6466 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/midi_time_axis.h')
-rw-r--r--gtk2_ardour/midi_time_axis.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk2_ardour/midi_time_axis.h b/gtk2_ardour/midi_time_axis.h
index 3aa4abb158..2d2c012811 100644
--- a/gtk2_ardour/midi_time_axis.h
+++ b/gtk2_ardour/midi_time_axis.h
@@ -146,6 +146,16 @@ class MidiTimeAxisView : public RouteTimeAxisView
typedef std::map<Evoral::Parameter,Gtk::CheckMenuItem*> ParameterMenuMap;
ParameterMenuMap parameter_menu_map;
+
+ Gtk::Menu* controller_menu;
+ void build_controller_menu ();
+
+ void add_note_selection (uint8_t note);
+ void extend_note_selection (uint8_t note);
+ void toggle_note_selection (uint8_t note);
+ void add_note_selection_region_view (RegionView* rv, uint8_t note, uint16_t chn_mask);
+ void extend_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
+ void toggle_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
};
#endif /* __ardour_midi_time_axis_h__ */