get started with Pin Manager - currently display-only.
[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
33 #include "gtkmm2ext/auto_spin.h"
34 #include "gtkmm2ext/bindings.h"
35 #include "gtkmm2ext/click_box.h"
36 #include "gtkmm2ext/dndtreeview.h"
37 #include "gtkmm2ext/dndvbox.h"
38 #include "gtkmm2ext/pixfader.h"
39 #include "gtkmm2ext/persistent_tooltip.h"
40
41 #include "pbd/stateful.h"
42 #include "pbd/signals.h"
43
44 #include "ardour/types.h"
45 #include "ardour/ardour.h"
46 #include "ardour/plugin_insert.h"
47 #include "ardour/luaproc.h"
48 #include "ardour/port_insert.h"
49 #include "ardour/processor.h"
50 #include "ardour/route.h"
51 #include "ardour/session_handle.h"
52
53 #include "pbd/fastlog.h"
54
55 #include "plugin_interest.h"
56 #include "io_selector.h"
57 #include "send_ui.h"
58 #include "enums.h"
59 #include "ardour_button.h"
60 #include "window_manager.h"
61
62 class MotionController;
63 class PluginSelector;
64 class PluginUIWindow;
65 class RouteProcessorSelection;
66 class MixerStrip;
67
68 namespace ARDOUR {
69         class Connection;
70         class IO;
71         class Insert;
72         class Plugin;
73         class PluginInsert;
74         class PortInsert;
75         class Route;
76         class Session;
77 }
78
79 class ProcessorBox;
80
81 class ProcessorWindowProxy : public WM::ProxyBase
82 {
83   public:
84         ProcessorWindowProxy (std::string const &, ProcessorBox *, boost::weak_ptr<ARDOUR::Processor>);
85         ~ProcessorWindowProxy();
86
87         Gtk::Window* get (bool create = false);
88
89         boost::weak_ptr<ARDOUR::Processor> processor () const {
90                 return _processor;
91         }
92
93         ARDOUR::SessionHandlePtr* session_handle();
94         void show_the_right_window ();
95         void set_custom_ui_mode(bool use_custom) { want_custom = use_custom; }
96
97         int set_state (const XMLNode&, int);
98         XMLNode& get_state ();
99
100   private:
101         ProcessorBox* _processor_box;
102         boost::weak_ptr<ARDOUR::Processor> _processor;
103         bool is_custom;
104         bool want_custom;
105
106         void processor_going_away ();
107         PBD::ScopedConnection going_away_connection;
108 };
109
110
111 class PluginPinWindowProxy : public WM::ProxyBase
112 {
113   public:
114         PluginPinWindowProxy (std::string const &, boost::weak_ptr<ARDOUR::Processor>);
115         ~PluginPinWindowProxy();
116
117         Gtk::Window* get (bool create = false);
118         ARDOUR::SessionHandlePtr* session_handle() { return 0; }
119
120   private:
121         ProcessorBox* _processor_box;
122         boost::weak_ptr<ARDOUR::Processor> _processor;
123
124         void processor_going_away ();
125         PBD::ScopedConnection going_away_connection;
126 };
127
128
129
130 class ProcessorEntry : public Gtkmm2ext::DnDVBoxChild, public sigc::trackable
131 {
132 public:
133         ProcessorEntry (ProcessorBox *, boost::shared_ptr<ARDOUR::Processor>, Width);
134         ~ProcessorEntry ();
135
136         Gtk::EventBox& action_widget ();
137         Gtk::Widget& widget ();
138         std::string drag_text () const;
139         void set_visual_state (Gtkmm2ext::VisualState, bool);
140
141         bool is_selectable() const {return _selectable;}
142         void set_selectable(bool s) { _selectable = s; }
143
144         bool drag_data_get (Glib::RefPtr<Gdk::DragContext> const, Gtk::SelectionData &);
145         bool can_copy_state (Gtkmm2ext::DnDVBoxChild*) const;
146
147         enum Position {
148                 PreFader,
149                 Fader,
150                 PostFader
151         };
152
153         void set_position (Position, uint32_t);
154         bool unknown_processor () const { return _unknown_processor; } ;
155         boost::shared_ptr<ARDOUR::Processor> processor () const;
156         void set_enum_width (Width);
157
158         /** Hide any widgets that should be hidden */
159         virtual void hide_things ();
160
161         void show_all_controls ();
162         void hide_all_controls ();
163         void add_control_state (XMLNode *) const;
164         void set_control_state (XMLNode const *);
165         std::string state_id () const;
166         Gtk::Menu* build_controls_menu ();
167         Gtk::Menu* build_send_options_menu ();
168
169 protected:
170         ArdourButton _button;
171         Gtk::VBox _vbox;
172         Position _position;
173         uint32_t _position_num;
174
175         virtual void setup_visuals ();
176
177 private:
178         bool _selectable;
179         bool _unknown_processor;
180         void led_clicked(GdkEventButton *);
181         void processor_active_changed ();
182         void processor_property_changed (const PBD::PropertyChange&);
183         void processor_configuration_changed (const ARDOUR::ChanCount in, const ARDOUR::ChanCount out);
184         std::string name (Width) const;
185         void setup_tooltip ();
186
187         ProcessorBox* _parent;
188         boost::shared_ptr<ARDOUR::Processor> _processor;
189         Width _width;
190         PBD::ScopedConnection active_connection;
191         PBD::ScopedConnection name_connection;
192         PBD::ScopedConnection config_connection;
193         ARDOUR::PluginPresetPtr _plugin_preset_pointer;
194
195         class Control : public sigc::trackable {
196         public:
197                 Control (boost::shared_ptr<ARDOUR::AutomationControl>, std::string const &);
198                 ~Control ();
199
200                 void set_visible (bool);
201                 void add_state (XMLNode *) const;
202                 void set_state (XMLNode const *);
203                 void hide_things ();
204
205                 bool visible () const {
206                         return _visible;
207                 }
208
209                 std::string name () const {
210                         return _name;
211                 }
212
213                 Gtk::Alignment box;
214
215         private:
216                 void slider_adjusted ();
217                 void button_clicked ();
218                 void button_clicked_event (GdkEventButton *);
219                 void control_changed ();
220                 std::string state_id () const;
221                 void set_tooltip ();
222
223                 boost::weak_ptr<ARDOUR::AutomationControl> _control;
224                 /* things for a slider */
225                 Gtk::Adjustment _adjustment;
226                 Gtkmm2ext::HSliderController _slider;
227                 Gtkmm2ext::PersistentTooltip _slider_persistant_tooltip;
228                 /* things for a button */
229                 ArdourButton _button;
230                 bool _ignore_ui_adjustment;
231                 PBD::ScopedConnection _connection;
232                 bool _visible;
233                 std::string _name;
234                 sigc::connection timer_connection;
235         };
236
237         std::list<Control*> _controls;
238
239         void toggle_inline_display_visibility ();
240         void toggle_control_visibility (Control *);
241         void toggle_panner_link ();
242
243         class PluginDisplay : public Gtk::DrawingArea {
244         public:
245                 PluginDisplay(boost::shared_ptr<ARDOUR::Plugin>, uint32_t max_height = 80);
246                 ~PluginDisplay();
247         protected:
248                 bool on_expose_event (GdkEventExpose *);
249                 void on_size_request (Gtk::Requisition* req);
250
251                 void update_height_alloc (uint32_t inline_height);
252                 virtual uint32_t render_inline (cairo_t *, uint32_t width);
253
254                 boost::shared_ptr<ARDOUR::Plugin> _plug;
255                 PBD::ScopedConnection _qdraw_connection;
256                 cairo_surface_t* _surf;
257                 uint32_t _max_height;
258                 uint32_t _cur_height;
259                 bool _scroll;
260         };
261
262         class LuaPluginDisplay : public PluginDisplay {
263         public:
264                 LuaPluginDisplay(boost::shared_ptr<ARDOUR::LuaProc>, uint32_t max_height = 80);
265                 ~LuaPluginDisplay();
266         protected:
267                 virtual uint32_t render_inline (cairo_t *, uint32_t width);
268         private:
269                 boost::shared_ptr<ARDOUR::LuaProc> _luaproc;
270                 LuaState lua_gui;
271                 luabridge::LuaRef * _lua_render_inline;
272         };
273
274         class PortIcon : public Gtk::DrawingArea {
275         public:
276                 PortIcon(bool input);
277                 void set_ports(ARDOUR::ChanCount const ports) { _ports = ports; }
278         private:
279                 bool on_expose_event (GdkEventExpose *);
280                 bool _input;
281                 ARDOUR::ChanCount _ports;
282         };
283
284         class RoutingIcon : public Gtk::DrawingArea {
285         public:
286                 RoutingIcon() {
287                         _sources = ARDOUR::ChanCount(ARDOUR::DataType::AUDIO, 1);
288                         _sinks = ARDOUR::ChanCount(ARDOUR::DataType::AUDIO, 1);
289                         _splitting = false;
290                         set_size_request (-1, 4);
291                 }
292                 void set_sources(ARDOUR::ChanCount const sources) { _sources = sources; }
293                 void set_sinks(ARDOUR::ChanCount const sinks) { _sinks = sinks; }
294                 void set_splitting(const bool splitting) { _splitting = splitting; }
295         private:
296                 bool on_expose_event (GdkEventExpose *);
297                 /* the wire icon sits on top of every processor if needed */
298                 ARDOUR::ChanCount _sources; // signals available (valid outputs from prev. processor)
299                 ARDOUR::ChanCount _sinks;   // actual inputs of this processor
300                 bool _splitting;
301         };
302
303 protected:
304         RoutingIcon _routing_icon;
305         PortIcon _input_icon;
306         PortIcon _output_icon;
307         PluginDisplay *_plugin_display ;
308 };
309
310 class PluginInsertProcessorEntry : public ProcessorEntry
311 {
312 public:
313         PluginInsertProcessorEntry (ProcessorBox *, boost::shared_ptr<ARDOUR::PluginInsert>, Width);
314
315         void hide_things ();
316
317 private:
318         void plugin_insert_splitting_changed ();
319         boost::shared_ptr<ARDOUR::PluginInsert> _plugin_insert;
320
321         PBD::ScopedConnection _splitting_connection;
322 };
323
324 class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARDOUR::SessionHandlePtr
325 {
326   public:
327         enum ProcessorOperation {
328                 ProcessorsCut,
329                 ProcessorsCopy,
330                 ProcessorsPaste,
331                 ProcessorsDelete,
332                 ProcessorsSelectAll,
333                 ProcessorsSelectNone,
334                 ProcessorsToggleActive,
335                 ProcessorsAB,
336         };
337
338         ProcessorBox (ARDOUR::Session*, boost::function<PluginSelector*()> get_plugin_selector,
339                       RouteProcessorSelection&, MixerStrip* parent, bool owner_is_mixer = false);
340         ~ProcessorBox ();
341
342         void set_route (boost::shared_ptr<ARDOUR::Route>);
343         void set_width (Width);
344
345         bool processor_operation (ProcessorOperation);
346
347         void select_all_processors ();
348         void deselect_all_processors ();
349         void select_all_plugins ();
350         void select_all_inserts ();
351         void select_all_sends ();
352
353         void all_visible_processors_active(bool state);
354
355         void hide_things ();
356
357         bool edit_aux_send(boost::shared_ptr<ARDOUR::Processor>);
358
359         /* Everything except a WindowProxy object should use this to get the window */
360         Gtk::Window* get_processor_ui (boost::shared_ptr<ARDOUR::Processor>) const;
361
362         /* a WindowProxy object can use this */
363         Gtk::Window* get_editor_window (boost::shared_ptr<ARDOUR::Processor>, bool);
364         Gtk::Window* get_generic_editor_window (boost::shared_ptr<ARDOUR::Processor>);
365
366         void manage_pins (boost::shared_ptr<ARDOUR::Processor>);
367         void edit_processor (boost::shared_ptr<ARDOUR::Processor>);
368         void generic_edit_processor (boost::shared_ptr<ARDOUR::Processor>);
369
370         void update_gui_object_state (ProcessorEntry *);
371
372         sigc::signal<void,boost::shared_ptr<ARDOUR::Processor> > ProcessorSelected;
373         sigc::signal<void,boost::shared_ptr<ARDOUR::Processor> > ProcessorUnselected;
374
375         static Glib::RefPtr<Gtk::ActionGroup> processor_box_actions;
376         static Gtkmm2ext::Bindings* bindings;
377         static void register_actions();
378
379 #ifndef NDEBUG
380         static bool show_all_processors;
381 #endif
382
383   private:
384         /* prevent copy construction */
385         ProcessorBox (ProcessorBox const &);
386
387         boost::shared_ptr<ARDOUR::Route>  _route;
388         MixerStrip*         _parent_strip; // null if in RouteParamsUI
389         bool                _owner_is_mixer;
390         bool                 ab_direction;
391         PBD::ScopedConnectionList _mixer_strip_connections;
392         PBD::ScopedConnectionList _route_connections;
393
394         boost::function<PluginSelector*()> _get_plugin_selector;
395
396         boost::shared_ptr<ARDOUR::Processor> _processor_being_created;
397
398         /** Index at which to place a new plugin (based on where the menu was opened), or -1 to
399          *  put at the end of the plugin list.
400          */
401         int _placement;
402         uint32_t                  _visible_prefader_processors;
403
404         RouteProcessorSelection& _rr_selection;
405         static Gtkmm2ext::ActionMap myactions;
406
407         static void load_bindings ();
408
409         void route_going_away ();
410
411         bool is_editor_mixer_strip() const;
412
413         Gtkmm2ext::DnDVBox<ProcessorEntry> processor_display;
414         Gtk::ScrolledWindow    processor_scroller;
415
416         boost::shared_ptr<ARDOUR::Processor> find_drop_position (ProcessorEntry* position);
417
418         void _drop_plugin_preset (Gtk::SelectionData const &, ARDOUR::Route::ProcessorList &);
419         void _drop_plugin (Gtk::SelectionData const &, ARDOUR::Route::ProcessorList &);
420
421         void plugin_drop (Gtk::SelectionData const &, ProcessorEntry* position, Glib::RefPtr<Gdk::DragContext> const & context);
422         void object_drop (Gtkmm2ext::DnDVBox<ProcessorEntry> *, ProcessorEntry *, Glib::RefPtr<Gdk::DragContext> const &);
423
424         Width _width;
425         bool  _redisplay_pending;
426
427         Gtk::Menu *processor_menu;
428         gint processor_menu_map_handler (GdkEventAny *ev);
429         Gtk::Menu * build_processor_menu ();
430         void show_processor_menu (int);
431         Gtk::Menu* build_possible_aux_menu();
432
433         void choose_aux (boost::weak_ptr<ARDOUR::Route>);
434         void choose_send ();
435         void send_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
436         void return_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
437         void choose_insert ();
438         void choose_plugin ();
439         bool choose_lua ();
440         bool use_plugins (const SelectedPlugins&);
441
442         bool no_processor_redisplay;
443
444         bool enter_notify (GdkEventCrossing *ev);
445         bool leave_notify (GdkEventCrossing *ev);
446         bool processor_button_press_event (GdkEventButton *, ProcessorEntry *);
447         bool processor_button_release_event (GdkEventButton *, ProcessorEntry *);
448         void redisplay_processors ();
449         void add_processor_to_display (boost::weak_ptr<ARDOUR::Processor>);
450         void help_count_visible_prefader_processors (boost::weak_ptr<ARDOUR::Processor>, uint32_t*, bool*);
451         void reordered ();
452         void report_failed_reorder ();
453         void route_processors_changed (ARDOUR::RouteProcessorChange);
454         void processor_menu_unmapped ();
455
456         void processors_reordered (const Gtk::TreeModel::Path&, const Gtk::TreeModel::iterator&, int*);
457         void compute_processor_sort_keys ();
458
459         void ab_plugins ();
460
461         typedef std::vector<boost::shared_ptr<ARDOUR::Processor> > ProcSelection;
462
463         void cut_processors (const ProcSelection&);
464         void copy_processors (const ProcSelection&);
465         void delete_processors (const ProcSelection&);
466         void paste_processors ();
467         void paste_processors (boost::shared_ptr<ARDOUR::Processor> before);
468
469         void delete_dragged_processors (const std::list<boost::shared_ptr<ARDOUR::Processor> >&);
470         void clear_processors ();
471         void clear_processors (ARDOUR::Placement);
472         void rename_processors ();
473
474         void for_selected_processors (void (ProcessorBox::*pmf)(boost::shared_ptr<ARDOUR::Processor>));
475         void get_selected_processors (ProcSelection&) const;
476
477         bool can_cut() const;
478         bool stub_processor_selected() const;
479
480         static Glib::RefPtr<Gtk::Action> cut_action;
481         static Glib::RefPtr<Gtk::Action> copy_action;
482         static Glib::RefPtr<Gtk::Action> paste_action;
483         static Glib::RefPtr<Gtk::Action> rename_action;
484         static Glib::RefPtr<Gtk::Action> delete_action;
485         static Glib::RefPtr<Gtk::Action> manage_pins_action;
486         static Glib::RefPtr<Gtk::Action> edit_action;
487         static Glib::RefPtr<Gtk::Action> edit_generic_action;
488         void paste_processor_state (const XMLNodeList&, boost::shared_ptr<ARDOUR::Processor>);
489
490         void hide_processor_editor (boost::shared_ptr<ARDOUR::Processor>);
491         void rename_processor (boost::shared_ptr<ARDOUR::Processor>);
492
493         gint idle_delete_processor (boost::weak_ptr<ARDOUR::Processor>);
494
495         void weird_plugin_dialog (ARDOUR::Plugin& p, ARDOUR::Route::ProcessorStreams streams);
496
497         void setup_entry_positions ();
498
499         static ProcessorBox* _current_processor_box;
500
501         static void rb_choose_aux (boost::weak_ptr<ARDOUR::Route>);
502         static void rb_choose_plugin ();
503         static void rb_choose_insert ();
504         static void rb_choose_lua ();
505         static void rb_choose_send ();
506         static void rb_clear ();
507         static void rb_clear_pre ();
508         static void rb_clear_post ();
509         static void rb_cut ();
510         static void rb_copy ();
511         static void rb_paste ();
512         static void rb_delete ();
513         static void rb_rename ();
514         static void rb_select_all ();
515         static void rb_deselect_all ();
516         static void rb_activate_all ();
517         static void rb_deactivate_all ();
518         static void rb_ab_plugins ();
519         static void rb_manage_pins ();
520         static void rb_edit ();
521         static void rb_edit_generic ();
522
523         void route_property_changed (const PBD::PropertyChange&);
524         std::string generate_processor_title (boost::shared_ptr<ARDOUR::PluginInsert> pi);
525
526         //typedef std::list<ProcessorWindowProxy*> ProcessorWindowProxies;
527         //ProcessorWindowProxies _processor_window_info;
528
529         ProcessorWindowProxy* find_window_proxy (boost::shared_ptr<ARDOUR::Processor>) const;
530
531         void set_processor_ui (boost::shared_ptr<ARDOUR::Processor>, Gtk::Window *);
532         void maybe_add_processor_to_ui_list (boost::weak_ptr<ARDOUR::Processor>);
533         void maybe_add_processor_pin_mgr (boost::weak_ptr<ARDOUR::Processor>);
534
535         bool one_processor_can_be_edited ();
536         bool processor_can_be_edited (boost::shared_ptr<ARDOUR::Processor>);
537
538         void mixer_strip_delivery_changed (boost::weak_ptr<ARDOUR::Delivery>);
539
540         XMLNode* entry_gui_object_state (ProcessorEntry *);
541         PBD::ScopedConnection amp_config_connection;
542 };
543
544 #endif /* __ardour_gtk_processor_box__ */