98cc5bb0b78fc95bcfa560c800451b9956fe6342
[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 "midi_streamview.h"
42 #include "midi_channel_selector.h"
43
44 namespace ARDOUR {
45         class Session;
46         class RouteGroup;
47         class Processor;
48         class Location;
49         class MidiPlaylist;
50 }
51
52 class PublicEditor;
53 class MidiStreamView;
54 class MidiScroomer;
55 class PianoRollHeader;
56
57 class MidiTimeAxisView : public RouteTimeAxisView
58 {
59   public:
60         MidiTimeAxisView (PublicEditor&, ARDOUR::Session&, boost::shared_ptr<ARDOUR::Route>, ArdourCanvas::Canvas& canvas);
61         virtual ~MidiTimeAxisView ();
62
63         MidiStreamView* midi_view();
64
65         /* overridden from parent to store display state */
66         guint32 show_at (double y, int& nth, Gtk::VBox *parent);
67         void hide ();
68
69         void show_existing_automation ();
70         void add_controller_track ();
71         void create_automation_child (ARDOUR::Parameter param, bool show);
72
73         ARDOUR::NoteMode note_mode() const { return _note_mode; }
74
75         void update_range();
76         
77         sigc::signal<void, uint16_t>& signal_channel_selection_changed() 
78                 { return _channel_selector.selection_changed; }
79         
80         sigc::signal<void, int8_t>& signal_force_channel_changed()  
81                 { return _channel_selector.force_channel_changed; }
82         
83   private:
84         
85         void append_extra_display_menu_items ();
86         void build_automation_action_menu ();
87         Gtk::Menu* build_mode_menu();
88
89         void set_note_mode(ARDOUR::NoteMode mode);
90         void set_note_range(MidiStreamView::VisibleNoteRange range);
91
92         void route_active_changed ();
93
94         void add_insert_to_subplugin_menu (ARDOUR::Processor *);
95         
96         void channel_selector_toggled();
97         
98         Gtk::Menu                    _subplugin_menu;
99
100         MidiScroomer*                _range_scroomer;
101         PianoRollHeader*             _piano_roll_header;
102         ARDOUR::NoteMode             _note_mode;
103         Gtk::RadioMenuItem*          _note_mode_item;
104         Gtk::RadioMenuItem*          _percussion_mode_item;
105         Gtk::Expander                _midi_expander;
106         MidiMultipleChannelSelector  _channel_selector;
107 };
108
109 #endif /* __ardour_midi_time_axis_h__ */
110