refactor Processor-Box plugin drag/drop: allow presets
[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     void set_state (const XMLNode&);
95     XMLNode& get_state () const;
96
97   private:
98     ProcessorBox* _processor_box;
99     boost::weak_ptr<ARDOUR::Processor> _processor;
100     bool is_custom;
101     bool want_custom;
102     bool _valid;
103
104     void processor_going_away ();
105     PBD::ScopedConnection going_away_connection;
106 };
107
108 class ProcessorEntry : public Gtkmm2ext::DnDVBoxChild, public sigc::trackable
109 {
110 public:
111         ProcessorEntry (ProcessorBox *, boost::shared_ptr<ARDOUR::Processor>, Width);
112         ~ProcessorEntry ();
113
114         Gtk::EventBox& action_widget ();
115         Gtk::Widget& widget ();
116         std::string drag_text () const;
117         void set_visual_state (Gtkmm2ext::VisualState, bool);
118
119         bool is_selectable() const {return _selectable;}
120         void set_selectable(bool s) { _selectable = s; }
121
122         enum Position {
123                 PreFader,
124                 Fader,
125                 PostFader
126         };
127
128         void set_position (Position, uint32_t);
129         bool unknown_processor () const { return _unknown_processor; } ;
130         boost::shared_ptr<ARDOUR::Processor> processor () const;
131         void set_enum_width (Width);
132
133         /** Hide any widgets that should be hidden */
134         virtual void hide_things ();
135
136         void show_all_controls ();
137         void hide_all_controls ();
138         void add_control_state (XMLNode *) const;
139         void set_control_state (XMLNode const *);
140         std::string state_id () const;
141         Gtk::Menu* build_controls_menu ();
142         Gtk::Menu* build_send_options_menu ();
143
144 protected:
145         ArdourButton _button;
146         Gtk::VBox _vbox;
147         Position _position;
148         uint32_t _position_num;
149
150         virtual void setup_visuals ();
151
152 private:
153         bool _selectable;
154         bool _unknown_processor;
155         void led_clicked(GdkEventButton *);
156         void processor_active_changed ();
157         void processor_property_changed (const PBD::PropertyChange&);
158         void processor_configuration_changed (const ARDOUR::ChanCount in, const ARDOUR::ChanCount out);
159         std::string name (Width) const;
160         void setup_tooltip ();
161
162         ProcessorBox* _parent;
163         boost::shared_ptr<ARDOUR::Processor> _processor;
164         Width _width;
165         PBD::ScopedConnection active_connection;
166         PBD::ScopedConnection name_connection;
167         PBD::ScopedConnection config_connection;
168
169         class Control : public sigc::trackable {
170         public:
171                 Control (boost::shared_ptr<ARDOUR::AutomationControl>, std::string const &);
172                 ~Control ();
173
174                 void set_visible (bool);
175                 void add_state (XMLNode *) const;
176                 void set_state (XMLNode const *);
177                 void hide_things ();
178
179                 bool visible () const {
180                         return _visible;
181                 }
182
183                 std::string name () const {
184                         return _name;
185                 }
186
187                 Gtk::Alignment box;
188
189         private:
190                 void slider_adjusted ();
191                 void button_clicked ();
192                 void button_clicked_event (GdkEventButton *);
193                 void control_changed ();
194                 std::string state_id () const;
195                 void set_tooltip ();
196
197                 boost::weak_ptr<ARDOUR::AutomationControl> _control;
198                 /* things for a slider */
199                 Gtk::Adjustment _adjustment;
200                 Gtkmm2ext::HSliderController _slider;
201                 Gtkmm2ext::PersistentTooltip _slider_persistant_tooltip;
202                 /* things for a button */
203                 ArdourButton _button;
204                 bool _ignore_ui_adjustment;
205                 PBD::ScopedConnection _connection;
206                 bool _visible;
207                 std::string _name;
208                 sigc::connection timer_connection;
209         };
210
211         std::list<Control*> _controls;
212
213         void toggle_control_visibility (Control *);
214         void toggle_panner_link ();
215
216         class PortIcon : public Gtk::DrawingArea {
217         public:
218                 PortIcon(bool input);
219                 void set_ports(ARDOUR::ChanCount const ports) { _ports = ports; }
220         private:
221                 bool on_expose_event (GdkEventExpose *);
222                 bool _input;
223                 ARDOUR::ChanCount _ports;
224         };
225
226         class RoutingIcon : public Gtk::DrawingArea {
227         public:
228                 RoutingIcon() {
229                         _sources = ARDOUR::ChanCount(ARDOUR::DataType::AUDIO, 1);
230                         _sinks = ARDOUR::ChanCount(ARDOUR::DataType::AUDIO, 1);
231                         _splitting = false;
232                         set_size_request (-1, 4);
233                 }
234                 void set_sources(ARDOUR::ChanCount const sources) { _sources = sources; }
235                 void set_sinks(ARDOUR::ChanCount const sinks) { _sinks = sinks; }
236                 void set_splitting(const bool splitting) { _splitting = splitting; }
237         private:
238                 bool on_expose_event (GdkEventExpose *);
239                 /* the wire icon sits on top of every processor if needed */
240                 ARDOUR::ChanCount _sources; // signals available (valid outputs from prev. processor)
241                 ARDOUR::ChanCount _sinks;   // actual inputs of this processor
242                 bool _splitting;
243         };
244
245 protected:
246         RoutingIcon _routing_icon;
247         PortIcon _input_icon;
248         PortIcon _output_icon;
249 };
250
251 class PluginInsertProcessorEntry : public ProcessorEntry
252 {
253 public:
254         PluginInsertProcessorEntry (ProcessorBox *, boost::shared_ptr<ARDOUR::PluginInsert>, Width);
255
256         void hide_things ();
257
258 private:
259         void plugin_insert_splitting_changed ();
260         boost::shared_ptr<ARDOUR::PluginInsert> _plugin_insert;
261
262         PBD::ScopedConnection _splitting_connection;
263 };
264
265 class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARDOUR::SessionHandlePtr
266 {
267   public:
268         enum ProcessorOperation {
269                 ProcessorsCut,
270                 ProcessorsCopy,
271                 ProcessorsPaste,
272                 ProcessorsDelete,
273                 ProcessorsSelectAll,
274                 ProcessorsSelectNone,
275                 ProcessorsToggleActive,
276                 ProcessorsAB,
277         };
278
279         ProcessorBox (ARDOUR::Session*, boost::function<PluginSelector*()> get_plugin_selector,
280                       RouteProcessorSelection&, MixerStrip* parent, bool owner_is_mixer = false);
281         ~ProcessorBox ();
282
283         void set_route (boost::shared_ptr<ARDOUR::Route>);
284         void set_width (Width);
285
286         bool processor_operation (ProcessorOperation);
287
288         void select_all_processors ();
289         void deselect_all_processors ();
290         void select_all_plugins ();
291         void select_all_inserts ();
292         void select_all_sends ();
293
294         void all_visible_processors_active(bool state);
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 #ifndef NDEBUG
317         static bool show_all_processors;
318 #endif
319
320   private:
321
322         /* prevent copy construction */
323         ProcessorBox (ProcessorBox const &);
324
325         boost::shared_ptr<ARDOUR::Route>  _route;
326         MixerStrip*         _parent_strip; // null if in RouteParamsUI
327         bool                _owner_is_mixer;
328         bool                 ab_direction;
329         PBD::ScopedConnectionList _mixer_strip_connections;
330         PBD::ScopedConnectionList _route_connections;
331
332         boost::function<PluginSelector*()> _get_plugin_selector;
333
334         boost::shared_ptr<ARDOUR::Processor> _processor_being_created;
335
336         /** Index at which to place a new plugin (based on where the menu was opened), or -1 to
337          *  put at the end of the plugin list.
338          */
339         int _placement;
340         uint32_t                  _visible_prefader_processors;
341
342         RouteProcessorSelection& _rr_selection;
343
344         void route_going_away ();
345
346         bool is_editor_mixer_strip() const;
347
348         Gtkmm2ext::DnDVBox<ProcessorEntry> processor_display;
349         Gtk::ScrolledWindow    processor_scroller;
350
351         boost::shared_ptr<ARDOUR::Processor> find_drop_position (ProcessorEntry* position);
352
353         void _drop_plugin_preset (Gtk::SelectionData const &, ARDOUR::Route::ProcessorList &);
354         void _drop_plugin (Gtk::SelectionData const &, ARDOUR::Route::ProcessorList &);
355
356         void plugin_drop (Gtk::SelectionData const &, ProcessorEntry* position, Glib::RefPtr<Gdk::DragContext> const & context);
357         void object_drop (Gtkmm2ext::DnDVBox<ProcessorEntry> *, ProcessorEntry *, Glib::RefPtr<Gdk::DragContext> const &);
358
359         Width _width;
360         bool  _redisplay_pending;
361
362         Gtk::Menu *processor_menu;
363         gint processor_menu_map_handler (GdkEventAny *ev);
364         Gtk::Menu * build_processor_menu ();
365         void show_processor_menu (int);
366         Gtk::Menu* build_possible_aux_menu();
367
368         void choose_aux (boost::weak_ptr<ARDOUR::Route>);
369         void choose_send ();
370         void send_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
371         void return_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
372         void choose_insert ();
373         void choose_plugin ();
374         bool use_plugins (const SelectedPlugins&);
375
376         bool no_processor_redisplay;
377
378         bool enter_notify (GdkEventCrossing *ev);
379         bool leave_notify (GdkEventCrossing *ev);
380         bool processor_button_press_event (GdkEventButton *, ProcessorEntry *);
381         bool processor_button_release_event (GdkEventButton *, ProcessorEntry *);
382         void redisplay_processors ();
383         void add_processor_to_display (boost::weak_ptr<ARDOUR::Processor>);
384         void help_count_visible_prefader_processors (boost::weak_ptr<ARDOUR::Processor>, uint32_t*, bool*);
385         void reordered ();
386         void report_failed_reorder ();
387         void route_processors_changed (ARDOUR::RouteProcessorChange);
388         void processor_menu_unmapped ();
389
390         void processors_reordered (const Gtk::TreeModel::Path&, const Gtk::TreeModel::iterator&, int*);
391         void compute_processor_sort_keys ();
392
393         void ab_plugins ();
394
395         typedef std::vector<boost::shared_ptr<ARDOUR::Processor> > ProcSelection;
396
397         void cut_processors (const ProcSelection&);
398         void copy_processors (const ProcSelection&);
399         void delete_processors (const ProcSelection&);
400         void paste_processors ();
401         void paste_processors (boost::shared_ptr<ARDOUR::Processor> before);
402
403         void delete_dragged_processors (const std::list<boost::shared_ptr<ARDOUR::Processor> >&);
404         void clear_processors ();
405         void clear_processors (ARDOUR::Placement);
406         void rename_processors ();
407
408         void for_selected_processors (void (ProcessorBox::*pmf)(boost::shared_ptr<ARDOUR::Processor>));
409         void get_selected_processors (ProcSelection&) const;
410
411         bool can_cut() const;
412         bool stub_processor_selected() const;
413
414         static Glib::RefPtr<Gtk::Action> cut_action;
415         static Glib::RefPtr<Gtk::Action> copy_action;
416         static Glib::RefPtr<Gtk::Action> paste_action;
417         static Glib::RefPtr<Gtk::Action> rename_action;
418         static Glib::RefPtr<Gtk::Action> delete_action;
419         static Glib::RefPtr<Gtk::Action> edit_action;
420         static Glib::RefPtr<Gtk::Action> edit_generic_action;
421         void paste_processor_state (const XMLNodeList&, boost::shared_ptr<ARDOUR::Processor>);
422
423         void hide_processor_editor (boost::shared_ptr<ARDOUR::Processor>);
424         void rename_processor (boost::shared_ptr<ARDOUR::Processor>);
425
426         gint idle_delete_processor (boost::weak_ptr<ARDOUR::Processor>);
427
428         void weird_plugin_dialog (ARDOUR::Plugin& p, ARDOUR::Route::ProcessorStreams streams);
429
430         void setup_entry_positions ();
431
432         static ProcessorBox* _current_processor_box;
433
434         static void rb_choose_aux (boost::weak_ptr<ARDOUR::Route>);
435         static void rb_choose_plugin ();
436         static void rb_choose_insert ();
437         static void rb_choose_send ();
438         static void rb_clear ();
439         static void rb_clear_pre ();
440         static void rb_clear_post ();
441         static void rb_cut ();
442         static void rb_copy ();
443         static void rb_paste ();
444         static void rb_delete ();
445         static void rb_rename ();
446         static void rb_select_all ();
447         static void rb_deselect_all ();
448         static void rb_activate_all ();
449         static void rb_deactivate_all ();
450         static void rb_ab_plugins ();
451         static void rb_edit ();
452         static void rb_edit_generic ();
453
454         void route_property_changed (const PBD::PropertyChange&);
455         std::string generate_processor_title (boost::shared_ptr<ARDOUR::PluginInsert> pi);
456
457         //typedef std::list<ProcessorWindowProxy*> ProcessorWindowProxies;
458         //ProcessorWindowProxies _processor_window_info;
459
460         ProcessorWindowProxy* find_window_proxy (boost::shared_ptr<ARDOUR::Processor>) const;
461
462         void set_processor_ui (boost::shared_ptr<ARDOUR::Processor>, Gtk::Window *);
463         void maybe_add_processor_to_ui_list (boost::weak_ptr<ARDOUR::Processor>);
464
465         bool one_processor_can_be_edited ();
466         bool processor_can_be_edited (boost::shared_ptr<ARDOUR::Processor>);
467
468         void mixer_strip_delivery_changed (boost::weak_ptr<ARDOUR::Delivery>);
469
470         XMLNode* entry_gui_object_state (ProcessorEntry *);
471         PBD::ScopedConnection amp_config_connection;
472 };
473
474 #endif /* __ardour_gtk_processor_box__ */