get the MIDI list editor working a little better and a little more

git-svn-id: svn://localhost/ardour2/branches/3.0@6453 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-01-05 03:52:30 +00:00
parent a23811502c
commit 51aec9a331
4 changed files with 89 additions and 16 deletions

View file

@ -54,7 +54,7 @@ class MidiListEditor : public ArdourDialog
add (start);
add (length);
add (end);
add (note);
add (_note);
};
Gtk::TreeModelColumn<uint8_t> channel;
Gtk::TreeModelColumn<uint8_t> note;
@ -75,6 +75,11 @@ class MidiListEditor : public ArdourDialog
void edited (const Glib::ustring&, const Glib::ustring&);
void redisplay_model ();
bool key_press (GdkEventKey* ev);
bool key_release (GdkEventKey* ev);
void delete_selected_note ();
};
#endif /* __ardour_gtk2_midi_list_editor_h_ */