move select-all-tracks,deselect-all,invert-selection to be global actions (and bindings)
[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 save_plugin_order_file ();
103
104         void show_mixer_list (bool yn);
105         void show_monitor_section (bool);
106
107         void show_strip (MixerStrip *);
108         void hide_strip (MixerStrip *);
109
110         void maximise_mixer_space();
111         void restore_mixer_space();
112
113         MonitorSection* monitor_section() const { return _monitor_section; }
114
115         void deselect_all_strip_processors();
116         void delete_processors();
117         void select_none ();
118
119         void do_vca_assign (boost::shared_ptr<ARDOUR::VCA>);
120         void do_vca_unassign (boost::shared_ptr<ARDOUR::VCA>);
121         void show_spill (boost::shared_ptr<ARDOUR::Stripable>);
122         bool showing_spill_for (boost::shared_ptr<ARDOUR::Stripable>) const;
123
124         sigc::signal1<void,boost::shared_ptr<ARDOUR::Stripable> > show_spill_change;
125
126         RouteProcessorSelection& selection() { return _selection; }
127
128         void show_editor_window () const;
129
130         void register_actions ();
131
132         void load_bindings ();
133         Gtkmm2ext::Bindings*  bindings;
134
135         void showhide_vcas (bool on) {
136                 if (on) { vca_vpacker.show(); } else { vca_vpacker.hide(); }
137         }
138 #ifdef MIXBUS
139         void showhide_mixbusses (bool on) {
140                 if (on) { mb_vpacker.show(); } else { mb_vpacker.hide(); }
141         }
142 #endif
143
144 protected:
145         void set_axis_targets_for_operation ();
146         ARDOUR::AutomationControlSet selected_gaincontrols ();
147
148 private:
149         Mixer_UI ();
150         static Mixer_UI*     _instance;
151         Gtk::VBox            _content;
152         Gtk::HBox             global_hpacker;
153         Gtk::VBox             global_vpacker;
154         Gtk::ScrolledWindow   scroller;
155         Gtk::EventBox         scroller_base;
156         Gtk::HBox             scroller_hpacker;
157         Gtk::VBox             mixer_scroller_vpacker;
158         Gtk::VBox             list_vpacker;
159         Gtk::Label            group_display_button_label;
160         Gtk::ScrolledWindow   track_display_scroller;
161         Gtk::ScrolledWindow   group_display_scroller;
162         Gtk::ScrolledWindow   favorite_plugins_scroller;
163         Gtk::VBox             group_display_vbox;
164         Gtk::Frame            track_display_frame;
165         Gtk::Frame            group_display_frame;
166         Gtk::Frame            favorite_plugins_frame;
167         Gtk::VBox             favorite_plugins_vbox;
168         Gtk::ComboBoxText     favorite_plugins_tag_combo;
169         ArdourWidgets::VPane  rhs_pane1;
170         ArdourWidgets::VPane  rhs_pane2;
171         ArdourWidgets::HPane  inner_pane;
172         Gtk::HBox             strip_packer;
173         Gtk::ScrolledWindow   vca_scroller;
174         Gtk::HBox             vca_hpacker;
175         Gtk::VBox             vca_vpacker;
176         Gtk::EventBox         vca_label_bar;
177         Gtk::Label            vca_label;
178         Gtk::EventBox         vca_scroller_base;
179         Gtk::HBox             out_packer;
180         ArdourWidgets::HPane  list_hpane;
181         Gtk::Button           add_button; // should really be an ArdourButton
182         Gtk::Button           add_vca_button;
183
184         MixerGroupTabs* _group_tabs;
185
186         bool on_scroll_event (GdkEventScroll*);
187
188         std::list<MixerStrip *> strips;
189
190         void scroller_drag_data_received (const Glib::RefPtr<Gdk::DragContext>&, int, int, const Gtk::SelectionData&, guint, guint);
191         bool strip_scroller_button_release (GdkEventButton*);
192         bool masters_scroller_button_release (GdkEventButton*);
193         void scroll_left ();
194         void scroll_right ();
195         void toggle_midi_input_active (bool flip_others);
196
197         void move_stripable_into_view (boost::shared_ptr<ARDOUR::Stripable>);
198
199         void add_stripables (ARDOUR::StripableList&);
200
201         void add_routes (ARDOUR::RouteList&);
202         void remove_strip (MixerStrip *);
203
204         void add_masters (ARDOUR::VCAList&);
205         void remove_master (VCAMasterStrip*);
206
207         MixerStrip* strip_by_route (boost::shared_ptr<ARDOUR::Route>) const;
208         MixerStrip* strip_by_stripable (boost::shared_ptr<ARDOUR::Stripable>) const;
209
210         AxisView* axis_view_by_stripable (boost::shared_ptr<ARDOUR::Stripable>) const;
211         AxisView* axis_view_by_control (boost::shared_ptr<ARDOUR::AutomationControl>) const;
212
213         gint start_updating ();
214         gint stop_updating ();
215
216         void session_going_away ();
217
218         sigc::connection fast_screen_update_connection;
219         void fast_update_strips ();
220
221         void track_name_changed (MixerStrip *);
222
223         void redisplay_track_list ();
224         void spill_redisplay (boost::shared_ptr<ARDOUR::VCA>);
225         bool no_track_list_redisplay;
226         bool track_display_button_press (GdkEventButton*);
227         void strip_width_changed ();
228
229         void track_list_delete (const Gtk::TreeModel::Path&);
230         void track_list_reorder (const Gtk::TreeModel::Path& path, const Gtk::TreeModel::iterator& iter, int* new_order);
231
232         void plugin_row_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* column);
233         bool plugin_row_button_press (GdkEventButton*);
234         void popup_note_context_menu (GdkEventButton*);
235         void plugin_drop (const Glib::RefPtr<Gdk::DragContext>&, const Gtk::SelectionData& data);
236
237         enum ProcessorPosition {
238                 AddTop,
239                 AddPreFader,
240                 AddPostFader,
241                 AddBottom
242         };
243
244         void add_selected_processor (ProcessorPosition);
245         void add_favorite_processor (ARDOUR::PluginPresetPtr, ProcessorPosition);
246         void remove_selected_from_favorites ();
247         void delete_selected_preset ();
248         ARDOUR::PluginPresetPtr selected_plugin ();
249
250         void initial_track_display ();
251
252         void set_all_strips_visibility (bool yn);
253         void set_all_audio_midi_visibility (int, bool);
254         void track_visibility_changed (std::string const & path);
255         void update_track_visibility ();
256
257         void hide_all_routes ();
258         void show_all_routes ();
259         void show_all_audiobus ();
260         void hide_all_audiobus ();
261         void show_all_audiotracks();
262         void hide_all_audiotracks ();
263         void show_all_miditracks();
264         void hide_all_miditracks ();
265
266         bool in_group_row_change;
267
268         void group_selected (gint row, gint col, GdkEvent *ev);
269         void group_unselected (gint row, gint col, GdkEvent *ev);
270         void group_display_active_clicked();
271         void new_route_group ();
272         void remove_selected_route_group ();
273         void activate_all_route_groups ();
274         void disable_all_route_groups ();
275         void add_route_group (ARDOUR::RouteGroup *);
276         void route_groups_changed ();
277         void route_group_name_edit (const std::string&, const std::string&);
278         void route_group_row_change (const Gtk::TreeModel::Path& path,const Gtk::TreeModel::iterator& iter);
279         void route_group_row_deleted (Gtk::TreeModel::Path const &);
280
281         Gtk::Menu *track_menu;
282         void track_column_click (gint);
283         void build_track_menu ();
284
285         MonitorSection* _monitor_section;
286         PluginSelector    *_plugin_selector;
287
288         void stripable_property_changed (const PBD::PropertyChange& what_changed, boost::weak_ptr<ARDOUR::Stripable> ws);
289         void route_group_property_changed (ARDOUR::RouteGroup *, const PBD::PropertyChange &);
290
291         /* various treeviews */
292
293         struct StripableDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
294                 StripableDisplayModelColumns () {
295                         add (text);
296                         add (visible);
297                         add (stripable);
298                         add (strip);
299                 }
300                 Gtk::TreeModelColumn<bool>         visible;
301                 Gtk::TreeModelColumn<std::string>  text;
302                 Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Stripable> > stripable;
303                 Gtk::TreeModelColumn<AxisView*>    strip;
304         };
305
306         struct GroupDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
307                 GroupDisplayModelColumns() {
308                         add (visible);
309                         add (text);
310                         add (group);
311                 }
312                 Gtk::TreeModelColumn<bool>            visible;
313                 Gtk::TreeModelColumn<std::string>         text;
314                 Gtk::TreeModelColumn<ARDOUR::RouteGroup*> group;
315         };
316
317         struct PluginsDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
318                 PluginsDisplayModelColumns() {
319                         add (name);
320                         add (plugin);
321                 }
322                 Gtk::TreeModelColumn<std::string> name;
323                 Gtk::TreeModelColumn<ARDOUR::PluginPresetPtr> plugin;
324         };
325
326         ARDOUR::PluginInfoList favorite_order;
327         std::map<std::string, bool> favorite_ui_state;
328
329         StripableDisplayModelColumns stripable_columns;
330         GroupDisplayModelColumns     group_columns;
331         PluginsDisplayModelColumns   favorite_plugins_columns;
332
333         Gtk::TreeView track_display;
334         Gtk::TreeView group_display;
335         Gtkmm2ext::DnDTreeView<ARDOUR::PluginPresetPtr> favorite_plugins_display;
336
337         Glib::RefPtr<Gtk::ListStore> track_model;
338         Glib::RefPtr<Gtk::ListStore> group_model;
339         Glib::RefPtr<PluginTreeStore> favorite_plugins_model;
340
341         bool group_display_button_press (GdkEventButton*);
342         void group_display_selection_changed ();
343
344         bool strip_button_release_event (GdkEventButton*, MixerStrip*);
345         bool vca_button_release_event (GdkEventButton*, VCAMasterStrip*);
346
347         Width _strip_width;
348
349         void presentation_info_changed (PBD::PropertyChange const &);
350         void sync_treeview_from_presentation_info (PBD::PropertyChange const &);
351         void sync_presentation_info_from_treeview ();
352
353         bool ignore_reorder;
354
355         void parameter_changed (std::string const &);
356         void set_route_group_activation (ARDOUR::RouteGroup *, bool);
357
358         void setup_track_display ();
359         void new_track_or_bus ();
360
361         static const int32_t default_width = 478;
362         static const int32_t default_height = 765;
363
364         /** true if we are rebuilding the route group list, or clearing
365          * it during a session teardown.
366          */
367         bool _in_group_rebuild_or_clear;
368         bool _route_deletion_in_progress;
369
370         void update_title ();
371         MixerStrip* strip_by_x (int x);
372
373         friend class MixerGroupTabs;
374
375         void monitor_section_going_away ();
376
377         void monitor_section_attached ();
378         void monitor_section_detached ();
379
380         void store_current_favorite_order();
381         void refiller (ARDOUR::PluginInfoList& result, const ARDOUR::PluginInfoList& plugs);
382
383         void plugin_list_changed ();
384
385         void refill_favorite_plugins ();
386         void refill_tag_combo ();
387
388         void tag_combo_changed ();
389
390         void sync_treeview_from_favorite_order ();
391         void sync_treeview_favorite_ui_state (const Gtk::TreeModel::Path&, const Gtk::TreeModel::iterator&);
392         void save_favorite_ui_state (const Gtk::TreeModel::iterator& iter, const Gtk::TreeModel::Path& path);
393
394         /// true if we are in fullscreen mode
395         bool _maximised;
396
397         // true if mixer list is visible
398         bool _show_mixer_list;
399
400         bool _strip_selection_change_without_scroll;
401
402         mutable boost::weak_ptr<ARDOUR::Stripable> spilled_strip;
403
404         void escape ();
405
406         Gtkmm2ext::ActionMap myactions;
407         RouteProcessorSelection _selection;
408         AxisViewSelection _axis_targets;
409
410         void vca_assign (boost::shared_ptr<ARDOUR::VCA>);
411         void vca_unassign (boost::shared_ptr<ARDOUR::VCA>);
412
413         template<class T> void control_action (boost::shared_ptr<T> (ARDOUR::Stripable::*get_control)() const);
414         void solo_action ();
415         void mute_action ();
416         void rec_enable_action ();
417         void step_gain_up_action ();
418         void step_gain_down_action ();
419         void unity_gain_action ();
420
421         void copy_processors ();
422         void cut_processors ();
423         void paste_processors ();
424         void select_all_processors ();
425         void toggle_processors ();
426         void ab_plugins ();
427 };
428
429 #endif /* __ardour_mixer_ui_h__ */