Further defer changes of plugin Tags+Status, and consolidate code to call PluginListC...
[ardour.git] / gtk2_ardour / mixer_ui.h
1 /*
2     Copyright (C) 2000 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_mixer_ui_h__
21 #define __ardour_mixer_ui_h__
22
23 #include <list>
24
25 #include <gtkmm/box.h>
26 #include <gtkmm/scrolledwindow.h>
27 #include <gtkmm/eventbox.h>
28 #include <gtkmm/label.h>
29 #include <gtkmm/comboboxtext.h>
30 #include <gtkmm/button.h>
31 #include <gtkmm/frame.h>
32 #include <gtkmm/menu.h>
33 #include <gtkmm/treeview.h>
34 #include <gtkmm/treestore.h>
35 #include <gtkmm/liststore.h>
36
37 #include "pbd/stateful.h"
38 #include "pbd/signals.h"
39
40 #include "ardour/ardour.h"
41 #include "ardour/types.h"
42 #include "ardour/session_handle.h"
43 #include "ardour/plugin.h"
44 #include "ardour/plugin_manager.h"
45
46 #include <gtkmm2ext/bindings.h>
47 #include "gtkmm2ext/dndtreeview.h"
48 #include "gtkmm2ext/treeutils.h"
49
50 #include "widgets/pane.h"
51 #include "widgets/tabbable.h"
52
53 #include "axis_provider.h"
54 #include "enums.h"
55 #include "route_processor_selection.h"
56
57 namespace ARDOUR {
58         class Route;
59         class RouteGroup;
60         class VCA;
61 };
62
63 class AxisView;
64 class MixerStrip;
65 class PluginSelector;
66 class MixerGroupTabs;
67 class MonitorSection;
68 class VCAMasterStrip;
69
70 class PluginTreeStore : public Gtk::TreeStore
71 {
72 public:
73         static Glib::RefPtr<PluginTreeStore> create(const Gtk::TreeModelColumnRecord& columns) {
74                 return Glib::RefPtr<PluginTreeStore> (new PluginTreeStore (columns));
75         }
76
77 protected:
78         PluginTreeStore (const Gtk::TreeModelColumnRecord& columns) : Gtk::TreeStore (columns) {}
79         virtual bool row_draggable_vfunc (const Gtk::TreeModel::Path&) const { return true; }
80         virtual bool row_drop_possible_vfunc (const Gtk::TreeModel::Path&, const Gtk::SelectionData&) const;
81 };
82
83 class Mixer_UI : public ArdourWidgets::Tabbable, public PBD::ScopedConnectionList, public ARDOUR::SessionHandlePtr, public AxisViewProvider
84 {
85 public:
86         static Mixer_UI* instance();
87         ~Mixer_UI();
88
89         Gtk::Window* use_own_window (bool and_fill_it);
90         void show_window ();
91
92         void set_session (ARDOUR::Session *);
93
94         PluginSelector* plugin_selector();
95
96         void  set_strip_width (Width, bool save = false);
97         Width get_strip_width () const { return _strip_width; }
98
99         XMLNode& get_state ();
100         int set_state (const XMLNode&, int /* version */);
101
102         void show_mixer_list (bool yn);
103         void show_monitor_section (bool);
104
105         void show_strip (MixerStrip *);
106         void hide_strip (MixerStrip *);
107
108         void maximise_mixer_space();
109         void restore_mixer_space();
110
111         MonitorSection* monitor_section() const { return _monitor_section; }
112
113         void deselect_all_strip_processors();
114         void delete_processors();
115         void select_none ();
116         void select_all_tracks ();
117
118         void do_vca_assign (boost::shared_ptr<ARDOUR::VCA>);
119         void do_vca_unassign (boost::shared_ptr<ARDOUR::VCA>);
120         void show_spill (boost::shared_ptr<ARDOUR::Stripable>);
121         bool showing_spill_for (boost::shared_ptr<ARDOUR::Stripable>) const;
122
123         sigc::signal1<void,boost::shared_ptr<ARDOUR::Stripable> > show_spill_change;
124
125         RouteProcessorSelection& selection() { return _selection; }
126
127         void show_editor_window () const;
128
129         void register_actions ();
130
131         void load_bindings ();
132         Gtkmm2ext::Bindings*  bindings;
133
134 protected:
135         void set_axis_targets_for_operation ();
136         ARDOUR::AutomationControlSet selected_gaincontrols ();
137
138 private:
139         Mixer_UI ();
140         static Mixer_UI*     _instance;
141         Gtk::VBox            _content;
142         Gtk::HBox             global_hpacker;
143         Gtk::VBox             global_vpacker;
144         Gtk::ScrolledWindow   scroller;
145         Gtk::EventBox         scroller_base;
146         Gtk::HBox             scroller_hpacker;
147         Gtk::VBox             mixer_scroller_vpacker;
148         Gtk::VBox             list_vpacker;
149         Gtk::Label            group_display_button_label;
150         Gtk::Button           group_display_button;
151         Gtk::ScrolledWindow   track_display_scroller;
152         Gtk::ScrolledWindow   group_display_scroller;
153         Gtk::ScrolledWindow   favorite_plugins_scroller;
154         Gtk::VBox             group_display_vbox;
155         Gtk::Frame            track_display_frame;
156         Gtk::Frame            group_display_frame;
157         Gtk::Frame            favorite_plugins_frame;
158         Gtk::VBox             favorite_plugins_vbox;
159         Gtk::ComboBoxText     favorite_plugins_tag_combo;
160         ArdourWidgets::VPane  rhs_pane1;
161         ArdourWidgets::VPane  rhs_pane2;
162         ArdourWidgets::HPane  inner_pane;
163         Gtk::HBox             strip_packer;
164         Gtk::ScrolledWindow   vca_scroller;
165         Gtk::HBox             vca_hpacker;
166         Gtk::VBox             vca_vpacker;
167         Gtk::EventBox         vca_label_bar;
168         Gtk::Label            vca_label;
169         Gtk::EventBox         vca_scroller_base;
170         Gtk::HBox             out_packer;
171         ArdourWidgets::HPane  list_hpane;
172
173         MixerGroupTabs* _group_tabs;
174
175         bool on_scroll_event (GdkEventScroll*);
176
177         std::list<MixerStrip *> strips;
178
179         void scroller_drag_data_received (const Glib::RefPtr<Gdk::DragContext>&, int, int, const Gtk::SelectionData&, guint, guint);
180         bool strip_scroller_button_release (GdkEventButton*);
181         bool masters_scroller_button_release (GdkEventButton*);
182         void scroll_left ();
183         void scroll_right ();
184         void toggle_midi_input_active (bool flip_others);
185
186         void move_stripable_into_view (boost::shared_ptr<ARDOUR::Stripable>);
187
188         void add_stripables (ARDOUR::StripableList&);
189
190         void add_routes (ARDOUR::RouteList&);
191         void remove_strip (MixerStrip *);
192
193         void add_masters (ARDOUR::VCAList&);
194         void remove_master (VCAMasterStrip*);
195
196         MixerStrip* strip_by_route (boost::shared_ptr<ARDOUR::Route>) const;
197         MixerStrip* strip_by_stripable (boost::shared_ptr<ARDOUR::Stripable>) const;
198
199         AxisView* axis_view_by_stripable (boost::shared_ptr<ARDOUR::Stripable>) const;
200         AxisView* axis_view_by_control (boost::shared_ptr<ARDOUR::AutomationControl>) const;
201
202         gint start_updating ();
203         gint stop_updating ();
204
205         void session_going_away ();
206
207         sigc::connection fast_screen_update_connection;
208         void fast_update_strips ();
209
210         void track_name_changed (MixerStrip *);
211
212         void redisplay_track_list ();
213         void spill_redisplay (boost::shared_ptr<ARDOUR::VCA>);
214         bool no_track_list_redisplay;
215         bool track_display_button_press (GdkEventButton*);
216         void strip_width_changed ();
217
218         void track_list_delete (const Gtk::TreeModel::Path&);
219         void track_list_reorder (const Gtk::TreeModel::Path& path, const Gtk::TreeModel::iterator& iter, int* new_order);
220
221         void plugin_row_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* column);
222         bool plugin_row_button_press (GdkEventButton*);
223         void popup_note_context_menu (GdkEventButton*);
224         void plugin_drop (const Glib::RefPtr<Gdk::DragContext>&, const Gtk::SelectionData& data);
225
226         enum ProcessorPosition {
227                 AddTop,
228                 AddPreFader,
229                 AddPostFader,
230                 AddBottom
231         };
232
233         void add_selected_processor (ProcessorPosition);
234         void add_favorite_processor (ARDOUR::PluginPresetPtr, ProcessorPosition);
235         void remove_selected_from_favorites ();
236         void delete_selected_preset ();
237         ARDOUR::PluginPresetPtr selected_plugin ();
238
239         void initial_track_display ();
240
241         void set_all_strips_visibility (bool yn);
242         void set_all_audio_midi_visibility (int, bool);
243         void track_visibility_changed (std::string const & path);
244         void update_track_visibility ();
245
246         void hide_all_routes ();
247         void show_all_routes ();
248         void show_all_audiobus ();
249         void hide_all_audiobus ();
250         void show_all_audiotracks();
251         void hide_all_audiotracks ();
252         void show_all_miditracks();
253         void hide_all_miditracks ();
254
255         bool in_group_row_change;
256
257         void group_selected (gint row, gint col, GdkEvent *ev);
258         void group_unselected (gint row, gint col, GdkEvent *ev);
259         void group_display_active_clicked();
260         void new_route_group ();
261         void remove_selected_route_group ();
262         void activate_all_route_groups ();
263         void disable_all_route_groups ();
264         void add_route_group (ARDOUR::RouteGroup *);
265         void route_groups_changed ();
266         void route_group_name_edit (const std::string&, const std::string&);
267         void route_group_row_change (const Gtk::TreeModel::Path& path,const Gtk::TreeModel::iterator& iter);
268         void route_group_row_deleted (Gtk::TreeModel::Path const &);
269
270         Gtk::Menu *track_menu;
271         void track_column_click (gint);
272         void build_track_menu ();
273
274         MonitorSection* _monitor_section;
275         PluginSelector    *_plugin_selector;
276
277         void stripable_property_changed (const PBD::PropertyChange& what_changed, boost::weak_ptr<ARDOUR::Stripable> ws);
278         void route_group_property_changed (ARDOUR::RouteGroup *, const PBD::PropertyChange &);
279
280         /* various treeviews */
281
282         struct StripableDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
283                 StripableDisplayModelColumns () {
284                         add (text);
285                         add (visible);
286                         add (stripable);
287                         add (strip);
288                 }
289                 Gtk::TreeModelColumn<bool>         visible;
290                 Gtk::TreeModelColumn<std::string>  text;
291                 Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Stripable> > stripable;
292                 Gtk::TreeModelColumn<AxisView*>    strip;
293         };
294
295         struct GroupDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
296                 GroupDisplayModelColumns() {
297                         add (visible);
298                         add (text);
299                         add (group);
300                 }
301                 Gtk::TreeModelColumn<bool>            visible;
302                 Gtk::TreeModelColumn<std::string>         text;
303                 Gtk::TreeModelColumn<ARDOUR::RouteGroup*> group;
304         };
305
306         struct PluginsDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
307                 PluginsDisplayModelColumns() {
308                         add (name);
309                         add (plugin);
310                 }
311                 Gtk::TreeModelColumn<std::string> name;
312                 Gtk::TreeModelColumn<ARDOUR::PluginPresetPtr> plugin;
313         };
314
315         ARDOUR::PluginInfoList favorite_order;
316         std::map<std::string, bool> favorite_ui_state;
317
318         StripableDisplayModelColumns stripable_columns;
319         GroupDisplayModelColumns     group_columns;
320         PluginsDisplayModelColumns   favorite_plugins_columns;
321
322         Gtk::TreeView track_display;
323         Gtk::TreeView group_display;
324         Gtkmm2ext::DnDTreeView<ARDOUR::PluginPresetPtr> favorite_plugins_display;
325
326         Glib::RefPtr<Gtk::ListStore> track_model;
327         Glib::RefPtr<Gtk::ListStore> group_model;
328         Glib::RefPtr<PluginTreeStore> favorite_plugins_model;
329
330         bool group_display_button_press (GdkEventButton*);
331         void group_display_selection_changed ();
332
333         bool strip_button_release_event (GdkEventButton*, MixerStrip*);
334         bool vca_button_release_event (GdkEventButton*, VCAMasterStrip*);
335
336         Width _strip_width;
337
338         void presentation_info_changed (PBD::PropertyChange const &);
339         void sync_treeview_from_presentation_info (PBD::PropertyChange const &);
340         void sync_presentation_info_from_treeview ();
341
342         bool ignore_reorder;
343
344         void parameter_changed (std::string const &);
345         void set_route_group_activation (ARDOUR::RouteGroup *, bool);
346
347         void setup_track_display ();
348         void new_track_or_bus ();
349
350         static const int32_t default_width = 478;
351         static const int32_t default_height = 765;
352
353         /** true if we are rebuilding the route group list, or clearing
354          * it during a session teardown.
355          */
356         bool _in_group_rebuild_or_clear;
357         bool _route_deletion_in_progress;
358
359         void update_title ();
360         MixerStrip* strip_by_x (int x);
361
362         friend class MixerGroupTabs;
363
364         void monitor_section_going_away ();
365
366         void monitor_section_attached ();
367         void monitor_section_detached ();
368
369         void store_current_favorite_order();
370         void refiller (ARDOUR::PluginInfoList& result, const ARDOUR::PluginInfoList& plugs);
371
372         void plugin_list_changed ();
373
374         void refill_favorite_plugins ();
375         void refill_tag_combo ();
376
377         void tag_combo_changed ();
378
379         void sync_treeview_from_favorite_order ();
380         void sync_treeview_favorite_ui_state (const Gtk::TreeModel::Path&, const Gtk::TreeModel::iterator&);
381         void save_favorite_ui_state (const Gtk::TreeModel::iterator& iter, const Gtk::TreeModel::Path& path);
382
383         /// true if we are in fullscreen mode
384         bool _maximised;
385
386         // true if mixer list is visible
387         bool _show_mixer_list;
388
389         bool _strip_selection_change_without_scroll;
390
391         mutable boost::weak_ptr<ARDOUR::Stripable> spilled_strip;
392
393         void escape ();
394
395         Gtkmm2ext::ActionMap myactions;
396         RouteProcessorSelection _selection;
397         AxisViewSelection _axis_targets;
398
399         void vca_assign (boost::shared_ptr<ARDOUR::VCA>);
400         void vca_unassign (boost::shared_ptr<ARDOUR::VCA>);
401
402         template<class T> void control_action (boost::shared_ptr<T> (ARDOUR::Stripable::*get_control)() const);
403         void solo_action ();
404         void mute_action ();
405         void rec_enable_action ();
406         void step_gain_up_action ();
407         void step_gain_down_action ();
408         void unity_gain_action ();
409
410         void copy_processors ();
411         void cut_processors ();
412         void paste_processors ();
413         void select_all_processors ();
414         void toggle_processors ();
415         void ab_plugins ();
416 };
417
418 #endif /* __ardour_mixer_ui_h__ */