- MIDI "recording" - rec region creation/drawing, actual MIDI region creation/view...
[ardour.git] / gtk2_ardour / midi_time_axis.h
1 /*
2     Copyright (C) 2006 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 #ifndef __ardour_midi_time_axis_h__
20 #define __ardour_midi_time_axis_h__
21
22 #include <gtkmm/table.h>
23 #include <gtkmm/button.h>
24 #include <gtkmm/box.h>
25 #include <gtkmm/menu.h>
26 #include <gtkmm/menuitem.h>
27 #include <gtkmm/radiomenuitem.h>
28 #include <gtkmm/checkmenuitem.h>
29
30 #include <gtkmm2ext/selector.h>
31 #include <list>
32
33 #include <ardour/types.h>
34 #include <ardour/region.h>
35
36 #include "ardour_dialog.h"
37 #include "route_ui.h"
38 #include "enums.h"
39 #include "route_time_axis.h"
40 #include "canvas.h"
41 #include "color.h"
42
43 namespace ARDOUR {
44         class Session;
45         class MidiDiskstream;
46         class RouteGroup;
47         class Redirect;
48         class Insert;
49         class Location;
50         class MidiPlaylist;
51 }
52
53 class PublicEditor;
54 class Selection;
55 class Selectable;
56 class AutomationLine;
57 class AutomationGainLine;
58 class AutomationPanLine;
59 class RedirectAutomationLine;
60 class TimeSelection;
61 class AutomationTimeAxisView;
62
63 class MidiTimeAxisView : public RouteTimeAxisView
64 {
65   public:
66         MidiTimeAxisView (PublicEditor&, ARDOUR::Session&, boost::shared_ptr<ARDOUR::Route>, ArdourCanvas::Canvas& canvas);
67         virtual ~MidiTimeAxisView ();
68
69         /* overridden from parent to store display state */
70         guint32 show_at (double y, int& nth, Gtk::VBox *parent);
71         void hide ();
72         
73         void set_state (const XMLNode&);
74         XMLNode* get_child_xml_node (const string & childname);
75
76   private:
77         void route_active_changed ();
78
79         //void redirects_changed (void *); FIXME?
80
81         void add_redirect_to_subplugin_menu (ARDOUR::Redirect *);
82         
83         Gtk::Menu subplugin_menu;
84 };
85
86 #endif /* __ardour_midi_time_axis_h__ */
87