add padding to in-line plugin controls
[ardour.git] / gtk2_ardour / processor_box.h
1 /*
2     Copyright (C) 2004 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_gtk_processor_box__
21 #define __ardour_gtk_processor_box__
22
23 #include <cmath>
24 #include <vector>
25
26 #include <boost/function.hpp>
27
28 #include <gtkmm/box.h>
29 #include <gtkmm/eventbox.h>
30 #include <gtkmm/menu.h>
31 #include <gtkmm/scrolledwindow.h>
32 #include "gtkmm2ext/dndtreeview.h"
33 #include "gtkmm2ext/auto_spin.h"
34 #include "gtkmm2ext/click_box.h"
35 #include "gtkmm2ext/dndvbox.h"
36 #include "gtkmm2ext/pixfader.h"
37 #include "gtkmm2ext/persistent_tooltip.h"
38
39 #include "pbd/stateful.h"
40 #include "pbd/signals.h"
41
42 #include "ardour/types.h"
43 #include "ardour/ardour.h"
44 #include "ardour/plugin_insert.h"
45 #include "ardour/port_insert.h"
46 #include "ardour/processor.h"
47 #include "ardour/route.h"
48 #include "ardour/session_handle.h"
49
50 #include "pbd/fastlog.h"
51
52 #include "plugin_interest.h"
53 #include "io_selector.h"
54 #include "send_ui.h"
55 #include "enums.h"
56 #include "ardour_button.h"
57 #include "window_manager.h"
58
59 class MotionController;
60 class PluginSelector;
61 class PluginUIWindow;
62 class RouteProcessorSelection;
63 class MixerStrip;
64
65 namespace ARDOUR {
66         class Connection;
67         class IO;
68         class Insert;
69         class Plugin;
70         class PluginInsert;
71         class PortInsert;
72         class Route;
73         class Session;
74 }
75
76 class ProcessorBox;
77
78 class ProcessorWindowProxy : public WM::ProxyBase 
79 {
80   public:
81     ProcessorWindowProxy (std::string const &, ProcessorBox *, boost::weak_ptr<ARDOUR::Processor>);
82     ~ProcessorWindowProxy();
83
84     Gtk::Window* get (bool create = false);
85     
86     boost::weak_ptr<ARDOUR::Processor> processor () const {
87             return _processor;
88     }
89
90     ARDOUR::SessionHandlePtr* session_handle();
91     void toggle();
92     void set_custom_ui_mode(bool use_custom) { want_custom = use_custom; }
93
94     bool marked;
95     bool valid () const;
96
97     void set_state (const XMLNode&);
98     XMLNode& get_state () const;
99
100   private:
101     ProcessorBox* _processor_box;
102     boost::weak_ptr<ARDOUR::Processor> _processor;
103     bool is_custom;
104     bool want_custom;
105     bool _valid;
106
107     void processor_going_away ();
108     PBD::ScopedConnection going_away_connection;
109 };
110
111 class ProcessorEntry : public Gtkmm2ext::DnDVBoxChild, public sigc::trackable
112 {
113 public:
114         ProcessorEntry (ProcessorBox *, boost::shared_ptr<ARDOUR::Processor>, Width);
115         ~ProcessorEntry ();
116
117         Gtk::EventBox& action_widget ();
118         Gtk::Widget& widget ();
119         std::string drag_text () const;
120         void set_visual_state (Gtkmm2ext::VisualState, bool);
121
122         enum Position {
123                 PreFader,
124                 Fader,
125                 PostFader
126         };
127
128         void set_position (Position);
129         boost::shared_ptr<ARDOUR::Processor> processor () const;
130         void set_enum_width (Width);
131
132         /** Hide any widgets that should be hidden */
133         virtual void hide_things ();
134
135         void show_all_controls ();
136         void hide_all_controls ();
137         void add_control_state (XMLNode *) const;
138         void set_control_state (XMLNode const *);
139         std::string state_id () const;
140         Gtk::Menu* build_controls_menu ();
141
142 protected:
143         ArdourButton _button;
144         Gtk::VBox _vbox;
145         Position _position;
146
147         virtual void setup_visuals ();
148
149 private:
150         void led_clicked();
151         void processor_active_changed ();
152         void processor_property_changed (const PBD::PropertyChange&);
153         void processor_configuration_changed (const ARDOUR::ChanCount in, const ARDOUR::ChanCount out);
154         std::string name (Width) const;
155         void setup_tooltip ();
156
157         ProcessorBox* _parent;
158         boost::shared_ptr<ARDOUR::Processor> _processor;
159         Width _width;
160         Gtk::StateType _visual_state;
161         PBD::ScopedConnection active_connection;
162         PBD::ScopedConnection name_connection;
163         PBD::ScopedConnection config_connection;
164
165         class Control : public sigc::trackable {
166         public:
167                 Control (boost::shared_ptr<ARDOUR::AutomationControl>, std::string const &);
168
169                 void set_visible (bool);
170                 void add_state (XMLNode *) const;
171                 void set_state (XMLNode const *);
172                 void hide_things ();
173                 void hide_label ();
174
175                 bool visible () const {
176                         return _visible;
177                 }
178
179                 std::string name () const {
180                         return _name;
181                 }
182                 
183                 Gtk::Alignment box;
184
185         private:
186                 void slider_adjusted ();
187                 void button_clicked ();
188                 void control_changed ();
189                 std::string state_id () const;
190                 void set_tooltip ();
191
192                 boost::weak_ptr<ARDOUR::AutomationControl> _control;
193                 /* things for a slider */
194                 Gtk::Adjustment _adjustment;
195                 Gtkmm2ext::HSliderController _slider;
196                 Gtk::Label _label;
197                 Gtkmm2ext::PersistentTooltip _slider_persistant_tooltip;
198                 /* things for a button */
199                 ArdourButton _button;
200                 bool _ignore_ui_adjustment;
201                 PBD::ScopedConnection _connection;
202                 bool _visible;
203                 std::string _name;
204         };
205
206         std::list<Control*> _controls;
207
208         void toggle_control_visibility (Control *);
209
210         class PortIcon : public Gtk::DrawingArea {
211         public:
212                 PortIcon(bool input) {
213                         _input = input;
214                         _ports = ARDOUR::ChanCount(ARDOUR::DataType::AUDIO, 1);
215                         set_size_request (-1, 3);
216                 }
217                 void set_ports(ARDOUR::ChanCount const ports) { _ports = ports; }
218         private:
219                 bool on_expose_event (GdkEventExpose *);
220                 bool _input;
221                 ARDOUR::ChanCount _ports;
222         };
223
224         class RoutingIcon : public Gtk::DrawingArea {
225         public:
226                 RoutingIcon() {
227                         _sources = ARDOUR::ChanCount(ARDOUR::DataType::AUDIO, 1);
228                         _sinks = ARDOUR::ChanCount(ARDOUR::DataType::AUDIO, 1);
229                         _splitting = false;
230                         set_size_request (-1, 4);
231                 }
232                 void set_sources(ARDOUR::ChanCount const sources) { _sources = sources; }
233                 void set_sinks(ARDOUR::ChanCount const sinks) { _sinks = sinks; }
234                 void set_splitting(const bool splitting) { _splitting = splitting; }
235         private:
236                 bool on_expose_event (GdkEventExpose *);
237                 ARDOUR::ChanCount _sources; // signals available to feed into the processor(s)
238                 ARDOUR::ChanCount _sinks;   // combined number of outputs of the processor
239                 bool _splitting;
240         };
241
242 protected:
243         RoutingIcon _routing_icon;
244         PortIcon _input_icon;
245         PortIcon _output_icon;
246 };
247
248 class BlankProcessorEntry : public ProcessorEntry
249 {
250   public:
251         BlankProcessorEntry (ProcessorBox *, Width w, ARDOUR::ChanCount cc);
252 };
253
254 class PluginInsertProcessorEntry : public ProcessorEntry
255 {
256 public:
257         PluginInsertProcessorEntry (ProcessorBox *, boost::shared_ptr<ARDOUR::PluginInsert>, Width);
258
259         void hide_things ();
260
261 private:
262         void plugin_insert_splitting_changed ();
263         boost::shared_ptr<ARDOUR::PluginInsert> _plugin_insert;
264
265         PBD::ScopedConnection _splitting_connection;
266 };
267
268 class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARDOUR::SessionHandlePtr
269 {
270   public:
271         enum ProcessorOperation {
272                 ProcessorsCut,
273                 ProcessorsCopy,
274                 ProcessorsPaste,
275                 ProcessorsDelete,
276                 ProcessorsSelectAll,
277                 ProcessorsToggleActive,
278                 ProcessorsAB,
279         };
280
281         ProcessorBox (ARDOUR::Session*, boost::function<PluginSelector*()> get_plugin_selector,
282                       RouteProcessorSelection&, MixerStrip* parent, bool owner_is_mixer = false);
283         ~ProcessorBox ();
284
285         void set_route (boost::shared_ptr<ARDOUR::Route>);
286         void set_width (Width);
287
288         void processor_operation (ProcessorOperation);
289
290         void select_all_processors ();
291         void deselect_all_processors ();
292         void select_all_plugins ();
293         void select_all_inserts ();
294         void select_all_sends ();
295
296         void hide_things ();
297
298         bool edit_aux_send(boost::shared_ptr<ARDOUR::Processor>);
299
300         /* Everything except a WindowProxy object should use this to get the window */
301         Gtk::Window* get_processor_ui (boost::shared_ptr<ARDOUR::Processor>) const;
302
303         /* a WindowProxy object can use this */
304         Gtk::Window* get_editor_window (boost::shared_ptr<ARDOUR::Processor>, bool);
305         Gtk::Window* get_generic_editor_window (boost::shared_ptr<ARDOUR::Processor>);
306
307         void edit_processor (boost::shared_ptr<ARDOUR::Processor>);
308         void generic_edit_processor (boost::shared_ptr<ARDOUR::Processor>);
309
310         void update_gui_object_state (ProcessorEntry *);
311         
312         sigc::signal<void,boost::shared_ptr<ARDOUR::Processor> > ProcessorSelected;
313         sigc::signal<void,boost::shared_ptr<ARDOUR::Processor> > ProcessorUnselected;
314
315         static void register_actions();
316
317   private:
318
319         /* prevent copy construction */
320         ProcessorBox (ProcessorBox const &);
321
322         boost::shared_ptr<ARDOUR::Route>  _route;
323         MixerStrip*         _parent_strip; // null if in RouteParamsUI
324         bool                _owner_is_mixer;
325         bool                 ab_direction;
326         PBD::ScopedConnectionList _mixer_strip_connections;
327         PBD::ScopedConnectionList _route_connections;
328
329         boost::function<PluginSelector*()> _get_plugin_selector;
330
331         boost::shared_ptr<ARDOUR::Processor> _processor_being_created;
332
333         /** Index at which to place a new plugin (based on where the menu was opened), or -1 to
334          *  put at the end of the plugin list.
335          */
336         int _placement;
337         uint32_t                  _visible_prefader_processors;
338
339         RouteProcessorSelection& _rr_selection;
340
341         void route_going_away ();
342
343         bool is_editor_mixer_strip() const;
344
345         Gtkmm2ext::DnDVBox<ProcessorEntry> processor_display;
346         Gtk::ScrolledWindow    processor_scroller;
347
348         void object_drop (Gtkmm2ext::DnDVBox<ProcessorEntry> *, ProcessorEntry *, Glib::RefPtr<Gdk::DragContext> const &);
349
350         Width _width;
351         bool  _redisplay_pending;
352
353         Gtk::Menu *processor_menu;
354         gint processor_menu_map_handler (GdkEventAny *ev);
355         Gtk::Menu * build_processor_menu ();
356         void show_processor_menu (int);
357         Gtk::Menu* build_possible_aux_menu();
358
359         void choose_aux (boost::weak_ptr<ARDOUR::Route>);
360         void choose_send ();
361         void send_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
362         void return_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
363         void choose_insert ();
364         void choose_plugin ();
365         bool use_plugins (const SelectedPlugins&);
366
367         bool no_processor_redisplay;
368
369         bool enter_notify (GdkEventCrossing *ev);
370         bool leave_notify (GdkEventCrossing *ev);
371         bool processor_button_press_event (GdkEventButton *, ProcessorEntry *);
372         bool processor_button_release_event (GdkEventButton *, ProcessorEntry *);
373         void redisplay_processors ();
374         void add_processor_to_display (boost::weak_ptr<ARDOUR::Processor>);
375         void help_count_visible_prefader_processors (boost::weak_ptr<ARDOUR::Processor>, uint32_t*, bool*, ARDOUR::ChanCount*);
376         void reordered ();
377         void report_failed_reorder ();
378         void route_processors_changed (ARDOUR::RouteProcessorChange);
379         void processor_menu_unmapped ();
380         void io_changed_proxy ();
381
382         void processors_reordered (const Gtk::TreeModel::Path&, const Gtk::TreeModel::iterator&, int*);
383         void compute_processor_sort_keys ();
384
385         void all_visible_processors_active(bool state);
386         void ab_plugins ();
387
388         typedef std::vector<boost::shared_ptr<ARDOUR::Processor> > ProcSelection;
389
390         void cut_processors (const ProcSelection&);
391         void copy_processors (const ProcSelection&);
392         void delete_processors (const ProcSelection&);
393         void paste_processors ();
394         void paste_processors (boost::shared_ptr<ARDOUR::Processor> before);
395
396         void delete_dragged_processors (const std::list<boost::shared_ptr<ARDOUR::Processor> >&);
397         void clear_processors ();
398         void clear_processors (ARDOUR::Placement);
399         void rename_processors ();
400
401         void for_selected_processors (void (ProcessorBox::*pmf)(boost::shared_ptr<ARDOUR::Processor>));
402         void get_selected_processors (ProcSelection&) const;
403
404         bool can_cut() const;
405
406         static Glib::RefPtr<Gtk::Action> cut_action;
407         static Glib::RefPtr<Gtk::Action> paste_action;
408         static Glib::RefPtr<Gtk::Action> rename_action;
409         static Glib::RefPtr<Gtk::Action> edit_action;
410         static Glib::RefPtr<Gtk::Action> edit_generic_action;
411         void paste_processor_state (const XMLNodeList&, boost::shared_ptr<ARDOUR::Processor>);
412
413         void hide_processor_editor (boost::shared_ptr<ARDOUR::Processor>);
414         void rename_processor (boost::shared_ptr<ARDOUR::Processor>);
415
416         gint idle_delete_processor (boost::weak_ptr<ARDOUR::Processor>);
417
418         void weird_plugin_dialog (ARDOUR::Plugin& p, ARDOUR::Route::ProcessorStreams streams);
419
420         void setup_entry_positions ();
421
422         static ProcessorBox* _current_processor_box;
423
424         static void rb_choose_aux (boost::weak_ptr<ARDOUR::Route>);
425         static void rb_choose_plugin ();
426         static void rb_choose_insert ();
427         static void rb_choose_send ();
428         static void rb_clear ();
429         static void rb_clear_pre ();
430         static void rb_clear_post ();
431         static void rb_cut ();
432         static void rb_copy ();
433         static void rb_paste ();
434         static void rb_delete ();
435         static void rb_rename ();
436         static void rb_select_all ();
437         static void rb_deselect_all ();
438         static void rb_activate_all ();
439         static void rb_deactivate_all ();
440         static void rb_ab_plugins ();
441         static void rb_edit ();
442         static void rb_edit_generic ();
443
444         void route_property_changed (const PBD::PropertyChange&);
445         std::string generate_processor_title (boost::shared_ptr<ARDOUR::PluginInsert> pi);
446
447         typedef std::list<ProcessorWindowProxy*> ProcessorWindowProxies;
448         ProcessorWindowProxies _processor_window_info;
449
450         ProcessorWindowProxy* find_window_proxy (boost::shared_ptr<ARDOUR::Processor>) const;
451
452         void set_processor_ui (boost::shared_ptr<ARDOUR::Processor>, Gtk::Window *);
453         void maybe_add_processor_to_ui_list (boost::weak_ptr<ARDOUR::Processor>);
454
455         bool one_processor_can_be_edited ();
456         bool processor_can_be_edited (boost::shared_ptr<ARDOUR::Processor>);
457
458         void mixer_strip_delivery_changed (boost::weak_ptr<ARDOUR::Delivery>);
459
460         XMLNode* entry_gui_object_state (ProcessorEntry *);
461         PBD::ScopedConnection amp_config_connection;
462 };
463
464 #endif /* __ardour_gtk_processor_box__ */