Add API allowing plugin preset load to affect automation
[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 <list>
23
24 #include <gtkmm/table.h>
25 #include <gtkmm/button.h>
26 #include <gtkmm/box.h>
27 #include <gtkmm/menu.h>
28 #include <gtkmm/menuitem.h>
29 #include <gtkmm/radiomenuitem.h>
30 #include <gtkmm/checkmenuitem.h>
31
32 #include "gtkmm2ext/selector.h"
33
34 #include "ardour/types.h"
35 #include "ardour/region.h"
36
37 #include "ardour_dialog.h"
38 #include "ardour_dropdown.h"
39 #include "route_ui.h"
40 #include "enums.h"
41 #include "route_time_axis.h"
42 #include "midi_streamview.h"
43
44 namespace MIDI {
45 namespace Name {
46 class MasterDeviceNames;
47 class CustomDeviceMode;
48 struct PatchPrimaryKey;
49 }
50 }
51
52 namespace ARDOUR {
53         class Session;
54         class RouteGroup;
55         class Processor;
56         class Location;
57         class MidiPlaylist;
58 }
59
60 namespace Evoral {
61         template<typename Time> class Note;
62 }
63
64 class PublicEditor;
65 class MidiStreamView;
66 class MidiScroomer;
67 class PianoRollHeader;
68 class StepEntry;
69 class StepEditor;
70 class MidiChannelSelectorWindow;
71
72 #define NO_MIDI_NOTE 0xff
73
74 class MidiTimeAxisView : public RouteTimeAxisView
75 {
76 public:
77         MidiTimeAxisView (PublicEditor&, ARDOUR::Session*, ArdourCanvas::Canvas& canvas);
78         virtual ~MidiTimeAxisView ();
79
80         void set_route (boost::shared_ptr<ARDOUR::Route>);
81
82         MidiStreamView* midi_view();
83
84         void set_height (uint32_t, TrackHeightMode m = OnlySelf);
85
86         boost::shared_ptr<ARDOUR::MidiRegion> add_region (ARDOUR::framepos_t, ARDOUR::framecnt_t, bool);
87
88         void show_all_automation (bool apply_to_selection = false);
89         void show_existing_automation (bool apply_to_selection = false);
90         void create_automation_child (const Evoral::Parameter& param, bool show);
91
92         bool paste (ARDOUR::framepos_t, const Selection&, PasteContext& ctx, const int32_t sub_num);
93
94         ARDOUR::NoteMode  note_mode() const { return _note_mode; }
95         ARDOUR::ColorMode color_mode() const { return _color_mode; }
96
97         boost::shared_ptr<MIDI::Name::MasterDeviceNames> get_device_names();
98         boost::shared_ptr<MIDI::Name::CustomDeviceMode> get_device_mode();
99
100         void update_range();
101
102         Gtk::CheckMenuItem* automation_child_menu_item (Evoral::Parameter);
103
104         StepEditor* step_editor() { return _step_editor; }
105         void check_step_edit ();
106
107         void first_idle ();
108         void set_note_highlight (uint8_t note);
109
110         uint8_t get_channel_for_add () const;
111
112         void get_per_region_note_selection (std::list<std::pair<PBD::ID, std::set<boost::shared_ptr<Evoral::Note<Evoral::Beats> > > > >&);
113
114 protected:
115         void start_step_editing ();
116         void stop_step_editing ();
117         void processors_changed (ARDOUR::RouteProcessorChange);
118
119 private:
120         sigc::signal<void, std::string, std::string>  _midi_patch_settings_changed;
121
122         void setup_midnam_patches ();
123         void update_patch_selector ();
124         void drop_instrument_ref ();
125         PBD::ScopedConnectionList midnam_connection;
126
127         void start_scroomer_update ();
128         void stop_scroomer_update ();
129         sigc::connection _note_range_changed_connection;
130
131         void model_changed(const std::string& model);
132         void custom_device_mode_changed(const std::string& mode);
133
134         void append_extra_display_menu_items ();
135         void build_automation_action_menu (bool);
136         Gtk::Menu* build_note_mode_menu();
137         Gtk::Menu* build_color_mode_menu();
138         Gtk::Menu* build_patch_menu();
139
140         void set_note_mode (ARDOUR::NoteMode mode, bool apply_to_selection = false);
141         void set_color_mode (ARDOUR::ColorMode, bool force = false, bool redisplay = true, bool apply_to_selection = false);
142         void set_note_range (MidiStreamView::VisibleNoteRange range, bool apply_to_selection = false);
143         void on_patch_menu_selected (int chn, const MIDI::Name::PatchPrimaryKey& key);
144
145         void route_active_changed ();
146         void note_range_changed ();
147         void contents_height_changed ();
148
149         void update_control_names ();
150
151         bool                         _ignore_signals;
152         MidiScroomer*                _range_scroomer;
153         PianoRollHeader*             _piano_roll_header;
154         ARDOUR::NoteMode             _note_mode;
155         Gtk::RadioMenuItem*          _note_mode_item;
156         Gtk::RadioMenuItem*          _percussion_mode_item;
157         ARDOUR::ColorMode            _color_mode;
158         Gtk::RadioMenuItem*          _meter_color_mode_item;
159         Gtk::RadioMenuItem*          _channel_color_mode_item;
160         Gtk::RadioMenuItem*          _track_color_mode_item;
161         Gtk::VBox                    _midi_controls_box;
162         MidiChannelSelectorWindow*   _channel_selector;
163         ArdourDropdown               _midnam_model_selector;
164         ArdourDropdown               _midnam_custom_device_mode_selector;
165
166         Gtk::CheckMenuItem*          _step_edit_item;
167         Gtk::Menu*                    default_channel_menu;
168
169         void change_all_channel_tracks_visibility (bool yn, Evoral::Parameter param);
170         void add_basic_parameter_menu_item (Gtk::Menu_Helpers::MenuList& items, const std::string& label, Evoral::Parameter param);
171         void add_channel_command_menu_item (Gtk::Menu_Helpers::MenuList& items, const std::string& label, ARDOUR::AutomationType auto_type, uint8_t cmd);
172
173         Gtk::Menu* controller_menu;
174         Gtk::Menu* poly_pressure_menu;
175
176         void add_single_channel_controller_item (Gtk::Menu_Helpers::MenuList& ctl_items, int ctl, const std::string& name);
177         void add_multi_channel_controller_item (Gtk::Menu_Helpers::MenuList& ctl_items, int ctl, const std::string& name);
178         void build_controller_menu ();
179         void toggle_channel_selector ();
180         void channel_selector_hidden ();
181         void set_channel_mode (ARDOUR::ChannelMode, uint16_t);
182
183         void set_note_selection (uint8_t note);
184         void add_note_selection (uint8_t note);
185         void extend_note_selection (uint8_t note);
186         void toggle_note_selection (uint8_t note);
187         void set_note_selection_region_view (RegionView* rv, uint8_t note, uint16_t chn_mask);
188         void add_note_selection_region_view (RegionView* rv, uint8_t note, uint16_t chn_mask);
189         void extend_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
190         void toggle_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
191         void get_per_region_note_selection_region_view (RegionView*, std::list<std::pair<PBD::ID, std::set<boost::shared_ptr<Evoral::Note<Evoral::Beats> > > > >&);
192
193         void ensure_step_editor ();
194
195         /** parameter -> menu item map for the channel command items */
196         ParameterMenuMap _channel_command_menu_map;
197         /** parameter -> menu item map for the controller menu */
198         ParameterMenuMap _controller_menu_map;
199
200         StepEditor* _step_editor;
201 };
202
203 #endif /* __ardour_midi_time_axis_h__ */