mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
the basics of step editing, more details to follow
git-svn-id: svn://localhost/ardour2/branches/3.0@5629 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c8932292e1
commit
b0b584c2a5
15 changed files with 370 additions and 61 deletions
|
|
@ -67,6 +67,8 @@ class MidiTimeAxisView : public RouteTimeAxisView
|
|||
void set_height (uint32_t);
|
||||
void hide ();
|
||||
|
||||
boost::shared_ptr<ARDOUR::Region> add_region (nframes64_t pos);
|
||||
|
||||
void show_all_automation ();
|
||||
void show_existing_automation ();
|
||||
void add_cc_track ();
|
||||
|
|
@ -102,6 +104,7 @@ class MidiTimeAxisView : public RouteTimeAxisView
|
|||
void set_note_range(MidiStreamView::VisibleNoteRange range);
|
||||
|
||||
void route_active_changed ();
|
||||
void build_rec_context_menu ();
|
||||
|
||||
void add_insert_to_subplugin_menu (ARDOUR::Processor *);
|
||||
|
||||
|
|
@ -120,6 +123,19 @@ class MidiTimeAxisView : public RouteTimeAxisView
|
|||
MidiMultipleChannelSelector _channel_selector;
|
||||
Gtk::ComboBoxText _model_selector;
|
||||
Gtk::ComboBoxText _custom_device_mode_selector;
|
||||
|
||||
Gtk::CheckMenuItem* _step_edit_item;
|
||||
sigc::connection step_edit_connection;
|
||||
|
||||
nframes64_t step_edit_insert_position;
|
||||
Evoral::MusicalTime step_edit_beat_pos;
|
||||
boost::shared_ptr<ARDOUR::Region> step_edit_region;
|
||||
MidiRegionView* step_edit_region_view;
|
||||
|
||||
void toggle_step_editing ();
|
||||
void start_step_editing ();
|
||||
void stop_step_editing ();
|
||||
bool check_step_edit ();
|
||||
};
|
||||
|
||||
#endif /* __ardour_midi_time_axis_h__ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue