'Channel safe' MIDI:

Resolve note on/off pairs in MidiModel.
Add channel field to Parameter (for associating a channel with a CC list).
Add channel selector to 'add controller automation' dialog.
Write out note and CC MIDI events with proper channel.


git-svn-id: svn://localhost/ardour2/branches/3.0@3085 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2008-02-19 01:31:24 +00:00
parent 466500fdaf
commit b79d5bfad3
7 changed files with 52 additions and 91 deletions

View file

@ -37,6 +37,8 @@ class AddMidiCCTrackDialog : public Gtk::Dialog
ARDOUR::Parameter parameter ();
private:
Gtk::Adjustment _chan_adjustment;
Gtk::SpinButton _chan_spinner;
Gtk::Adjustment _cc_num_adjustment;
Gtk::SpinButton _cc_num_spinner;
};