2 Copyright (C) 2009 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __ardour_gtk2_midi_list_editor_h_
21 #define __ardour_gtk2_midi_list_editor_h_
23 #include <gtkmm/treeview.h>
24 #include <gtkmm/liststore.h>
25 #include <gtkmm/scrolledwindow.h>
27 #include "evoral/types.hpp"
29 #include "ardour/session_handle.h"
31 #include "ardour_dialog.h"
39 class MidiListEditor
: public ArdourDialog
42 typedef Evoral::Note
<Evoral::MusicalTime
> NoteType
;
44 MidiListEditor(ARDOUR::Session
*, boost::shared_ptr
<ARDOUR::MidiRegion
>);
48 struct MidiListModelColumns
: public Gtk::TreeModel::ColumnRecord
{
49 MidiListModelColumns() {
59 Gtk::TreeModelColumn
<uint8_t> channel
;
60 Gtk::TreeModelColumn
<uint8_t> note
;
61 Gtk::TreeModelColumn
<std::string
> note_name
;
62 Gtk::TreeModelColumn
<uint8_t> velocity
;
63 Gtk::TreeModelColumn
<std::string
> start
;
64 Gtk::TreeModelColumn
<std::string
> length
;
65 Gtk::TreeModelColumn
<std::string
> end
;
66 Gtk::TreeModelColumn
<boost::shared_ptr
<NoteType
> > _note
;
69 MidiListModelColumns columns
;
70 Glib::RefPtr
<Gtk::ListStore
> model
;
72 Gtk::ScrolledWindow scroller
;
73 std::string _current_edit
;
75 boost::shared_ptr
<ARDOUR::MidiRegion
> region
;
77 void edited (const std::string
&, const std::string
&);
78 void editing_started (Gtk::CellEditable
*, const std::string
& path
, int);
79 void editing_canceled ();
81 void redisplay_model ();
83 bool key_press (GdkEventKey
* ev
);
84 bool key_release (GdkEventKey
* ev
);
86 void delete_selected_note ();
89 #endif /* __ardour_gtk2_midi_list_editor_h_ */