merge (w/fix) with master
[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 "midi_streamview.h"
41
42 namespace MIDI {
43 namespace Name {
44 class MasterDeviceNames;
45 class CustomDeviceMode;
46 }
47 }
48
49 namespace ARDOUR {
50         class Session;
51         class RouteGroup;
52         class Processor;
53         class Location;
54         class MidiPlaylist;
55 }
56
57 class PublicEditor;
58 class MidiStreamView;
59 class MidiScroomer;
60 class PianoRollHeader;
61 class StepEntry;
62 class StepEditor;
63 class MidiChannelSelectorWindow;
64
65 class MidiTimeAxisView : public RouteTimeAxisView
66 {
67   public:
68         MidiTimeAxisView (PublicEditor&, ARDOUR::Session*, ArdourCanvas::Canvas& canvas);
69         virtual ~MidiTimeAxisView ();
70
71         void set_route (boost::shared_ptr<ARDOUR::Route>);
72
73         MidiStreamView* midi_view();
74
75         void set_height (uint32_t);
76
77         void enter_internal_edit_mode ();
78         void leave_internal_edit_mode ();
79
80         boost::shared_ptr<ARDOUR::MidiRegion> add_region (ARDOUR::framepos_t, ARDOUR::framecnt_t, bool);
81
82         void show_all_automation (bool apply_to_selection = false);
83         void show_existing_automation (bool apply_to_selection = false);
84         void create_automation_child (const Evoral::Parameter& param, bool show);
85
86         ARDOUR::NoteMode  note_mode() const { return _note_mode; }
87         ARDOUR::ColorMode color_mode() const { return _color_mode; }
88
89         boost::shared_ptr<MIDI::Name::MasterDeviceNames> get_device_names();
90         boost::shared_ptr<MIDI::Name::CustomDeviceMode> get_device_mode();
91
92         void update_range();
93
94         Gtk::CheckMenuItem* automation_child_menu_item (Evoral::Parameter);
95
96         StepEditor* step_editor() { return _step_editor; }
97         void check_step_edit ();
98
99         void first_idle ();
100
101         uint8_t get_channel_for_add () const;
102
103   protected:
104         void start_step_editing ();
105         void stop_step_editing ();
106
107   private:
108         sigc::signal<void, std::string, std::string>  _midi_patch_settings_changed;
109
110         void model_changed();
111         void custom_device_mode_changed();
112
113         void append_extra_display_menu_items ();
114         void build_automation_action_menu (bool);
115         Gtk::Menu* build_note_mode_menu();
116         Gtk::Menu* build_color_mode_menu();
117         
118         void set_note_mode (ARDOUR::NoteMode mode, bool apply_to_selection = false);
119         void set_color_mode (ARDOUR::ColorMode, bool force = false, bool redisplay = true, bool apply_to_selection = false);
120         void set_note_range (MidiStreamView::VisibleNoteRange range, bool apply_to_selection = false);
121
122         void route_active_changed ();
123         void note_range_changed ();
124         void contents_height_changed ();
125
126         bool                         _ignore_signals;
127         MidiScroomer*                _range_scroomer;
128         PianoRollHeader*             _piano_roll_header;
129         ARDOUR::NoteMode             _note_mode;
130         Gtk::RadioMenuItem*          _note_mode_item;
131         Gtk::RadioMenuItem*          _percussion_mode_item;
132         ARDOUR::ColorMode            _color_mode;
133         Gtk::RadioMenuItem*          _meter_color_mode_item;
134         Gtk::RadioMenuItem*          _channel_color_mode_item;
135         Gtk::RadioMenuItem*          _track_color_mode_item;
136         Gtk::Label                   _playback_channel_status;
137         Gtk::Label                   _capture_channel_status;
138         Gtk::HBox                    _channel_status_box;
139         Gtk::Button                  _channel_selector_button;
140         Gtk::VBox                    _midi_controls_box;
141         MidiChannelSelectorWindow*   _channel_selector;
142         Gtk::ComboBoxText            _midnam_model_selector;
143         Gtk::ComboBoxText            _midnam_custom_device_mode_selector;
144
145         Gtk::CheckMenuItem*          _step_edit_item;
146         Gtk::Menu*                    default_channel_menu;
147
148         void change_all_channel_tracks_visibility (bool yn, Evoral::Parameter param);
149         void add_basic_parameter_menu_item (Gtk::Menu_Helpers::MenuList& items, const std::string& label, Evoral::Parameter param);
150         void add_channel_command_menu_item (Gtk::Menu_Helpers::MenuList& items, const std::string& label, ARDOUR::AutomationType auto_type, uint8_t cmd);
151
152         Gtk::Menu* controller_menu;
153
154         void add_single_channel_controller_item (Gtk::Menu_Helpers::MenuList& ctl_items, int ctl, const std::string& name);
155         void add_multi_channel_controller_item (Gtk::Menu_Helpers::MenuList& ctl_items, int ctl, const std::string& name);
156         void build_controller_menu ();
157         void toggle_channel_selector ();
158         void channel_selector_hidden ();
159         void set_channel_mode (ARDOUR::ChannelMode, uint16_t);
160
161         void set_note_selection (uint8_t note);
162         void add_note_selection (uint8_t note);
163         void extend_note_selection (uint8_t note);
164         void toggle_note_selection (uint8_t note);
165         void set_note_selection_region_view (RegionView* rv, uint8_t note, uint16_t chn_mask);
166         void add_note_selection_region_view (RegionView* rv, uint8_t note, uint16_t chn_mask);
167         void extend_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
168         void toggle_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
169
170         void ensure_step_editor ();
171
172         /** parameter -> menu item map for the channel command items */
173         ParameterMenuMap _channel_command_menu_map;
174         /** parameter -> menu item map for the controller menu */
175         ParameterMenuMap _controller_menu_map;
176
177         StepEditor* _step_editor;
178
179         void capture_channel_mode_changed();
180         void playback_channel_mode_changed();
181
182         void ensure_pan_views (bool show = true);
183
184         void update_gain_track_visibility ();
185         void update_pan_track_visibility ();
186
187         Gtk::CheckMenuItem* gain_automation_item;
188         std::list<boost::shared_ptr<AutomationTimeAxisView> > pan_tracks;
189         Gtk::CheckMenuItem* pan_automation_item;
190 };
191
192 #endif /* __ardour_midi_time_axis_h__ */
193