ac931dcca6b881854635ce258cd566aaec490a1b
[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 };
35
36 class MidiListEditor : public ArdourDialog
37 {
38   public:
39         MidiListEditor(boost::shared_ptr<ARDOUR::MidiRegion>);
40         ~MidiListEditor();
41
42   private:
43         struct MidiListModelColumns : public Gtk::TreeModel::ColumnRecord {
44                 MidiListModelColumns() { 
45                         add (channel);
46                         add (note);
47                         add (note_name);
48                         add (velocity);
49                         add (start);
50                         add (length);
51                         add (end);
52                 };
53                 Gtk::TreeModelColumn<uint8_t> channel;
54                 Gtk::TreeModelColumn<uint8_t> note;
55                 Gtk::TreeModelColumn<std::string> note_name;
56                 Gtk::TreeModelColumn<uint8_t> velocity;
57                 Gtk::TreeModelColumn<Evoral::MusicalTime> start;
58                 Gtk::TreeModelColumn<Evoral::MusicalTime> length;
59                 Gtk::TreeModelColumn<Evoral::MusicalTime> end;
60         };
61         
62         MidiListModelColumns         columns;
63         Glib::RefPtr<Gtk::ListStore> model;
64         Gtk::TreeView                view;
65         Gtk::ScrolledWindow          scroller;
66
67         boost::shared_ptr<ARDOUR::MidiRegion> region;
68
69         void edited (const Glib::ustring&, const Glib::ustring&);
70         void redisplay_model ();
71 };
72
73 #endif /* __ardour_gtk2_midi_list_editor_h_ */