96a04ada7c96c7515b681b66baeccba048bffa1e
[ardour.git] / gtk2_ardour / midi_list_editor.h
1 /*
2    Copyright (C) 2009 Paul Davis
3
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.
8
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.
13
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.
17
18 */
19
20 #ifndef __ardour_gtk2_midi_list_editor_h_
21 #define __ardour_gtk2_midi_list_editor_h_
22
23 #include <gtkmm/treeview.h>
24 #include <gtkmm/liststore.h>
25 #include <gtkmm/scrolledwindow.h>
26
27 #include "evoral/types.hpp"
28
29 #include "ardour_dialog.h"
30
31 namespace ARDOUR {
32         class MidiRegion;
33         class MidiModel;
34         class Session;
35 };
36
37 class MidiListEditor : public ArdourDialog
38 {
39   public:
40         typedef Evoral::Note<Evoral::MusicalTime> NoteType;
41
42         MidiListEditor(ARDOUR::Session&, boost::shared_ptr<ARDOUR::MidiRegion>);
43         ~MidiListEditor();
44
45   private:
46         struct MidiListModelColumns : public Gtk::TreeModel::ColumnRecord {
47                 MidiListModelColumns() {
48                         add (channel);
49                         add (note);
50                         add (note_name);
51                         add (velocity);
52                         add (start);
53                         add (length);
54                         add (end);
55                         add (note);
56                 };
57                 Gtk::TreeModelColumn<uint8_t> channel;
58                 Gtk::TreeModelColumn<uint8_t> note;
59                 Gtk::TreeModelColumn<std::string> note_name;
60                 Gtk::TreeModelColumn<uint8_t> velocity;
61                 Gtk::TreeModelColumn<std::string> start;
62                 Gtk::TreeModelColumn<std::string> length;
63                 Gtk::TreeModelColumn<std::string> end;
64                 Gtk::TreeModelColumn<boost::shared_ptr<NoteType> > _note;
65         };
66
67         ARDOUR::Session&             session;
68         MidiListModelColumns         columns;
69         Glib::RefPtr<Gtk::ListStore> model;
70         Gtk::TreeView                view;
71         Gtk::ScrolledWindow          scroller;
72
73         boost::shared_ptr<ARDOUR::MidiRegion> region;
74
75         void edited (const Glib::ustring&, const Glib::ustring&);
76         void redisplay_model ();
77 };
78
79 #endif /* __ardour_gtk2_midi_list_editor_h_ */