switch to using boost::signals2 instead of sigc++, at least for libardour. not finish...
[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
38 #include "pbd/stateful.h"
39 #include "pbd/scoped_connections.h"
40
41 #include "ardour/types.h"
42 #include "ardour/ardour.h"
43 #include "ardour/plugin_insert.h"
44 #include "ardour/port_insert.h"
45 #include "ardour/processor.h"
46 #include "ardour/route.h"
47 #include "ardour/session_handle.h"
48
49 #include "pbd/fastlog.h"
50
51 #include "plugin_interest.h"
52 #include "io_selector.h"
53 #include "send_ui.h"
54 #include "enums.h"
55
56 class MotionController;
57 class PluginSelector;
58 class PluginUIWindow;
59 class RouteRedirectSelection;
60 class MixerStrip;
61
62 namespace ARDOUR {
63         class Connection;
64         class IO;
65         class Insert;
66         class Plugin;
67         class PluginInsert;
68         class PortInsert;
69         class Route;
70         class Send;
71         class Session;
72 }
73
74 class ProcessorEntry : public Gtkmm2ext::DnDVBoxChild, public sigc::trackable
75 {
76 public:
77         ProcessorEntry (boost::shared_ptr<ARDOUR::Processor>, Width);
78
79         Gtk::EventBox& action_widget ();
80         Gtk::Widget& widget ();
81         std::string drag_text () const;
82         boost::shared_ptr<ARDOUR::Processor> processor () const;
83         void set_enum_width (Width);
84         virtual void set_pixel_width (int) {}
85
86 protected:
87         
88         Gtk::VBox _vbox;
89         
90 private:
91
92         void active_toggled ();
93         void processor_active_changed ();
94         void processor_name_changed ();
95         std::string name () const;
96         
97         Gtk::EventBox _event_box;
98         Gtk::Label _name;
99         Gtk::HBox _hbox;
100         Gtk::CheckButton _active;
101         boost::shared_ptr<ARDOUR::Processor> _processor;
102         Width _width;
103 };
104
105 class SendProcessorEntry : public ProcessorEntry
106 {
107 public:
108         SendProcessorEntry (boost::shared_ptr<ARDOUR::Send>, Width);
109
110         static void setup_slider_pix ();
111
112         void set_enum_width (Width, int);
113         void set_pixel_width (int);
114
115 private:
116         void show_gain ();
117         void gain_adjusted ();
118         
119         boost::shared_ptr<ARDOUR::Send> _send;
120         Gtk::Adjustment _adjustment;
121         Gtkmm2ext::HSliderController _fader;
122         bool _ignore_gain_change;
123         
124         static Glib::RefPtr<Gdk::Pixbuf> _slider;
125 };
126
127 class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARDOUR::SessionHandlePtr
128 {
129   public:
130         ProcessorBox (ARDOUR::Session*, boost::function<PluginSelector*()> get_plugin_selector,
131                       RouteRedirectSelection&, MixerStrip* parent, bool owner_is_mixer = false);
132         ~ProcessorBox ();
133
134         void set_route (boost::shared_ptr<ARDOUR::Route>);
135         void set_width (Width);
136
137         void update();
138
139         void select_all_processors ();
140         void deselect_all_processors ();
141         void select_all_plugins ();
142         void select_all_inserts ();
143         void select_all_sends ();
144
145         sigc::signal<void,boost::shared_ptr<ARDOUR::Processor> > ProcessorSelected;
146         sigc::signal<void,boost::shared_ptr<ARDOUR::Processor> > ProcessorUnselected;
147
148         static void register_actions();
149
150   private:
151         boost::shared_ptr<ARDOUR::Route>  _route;
152         MixerStrip*         _parent_strip; // null if in RouteParamsUI
153         bool                _owner_is_mixer;
154         bool                 ab_direction;
155         PBD::ScopedConnectionList connections;
156
157         boost::function<PluginSelector*()> _get_plugin_selector;
158
159         boost::shared_ptr<ARDOUR::Processor> _processor_being_created;
160
161         ARDOUR::Placement _placement;
162
163         RouteRedirectSelection& _rr_selection;
164
165         void route_going_away ();
166
167         void selection_changed ();
168
169         Gtk::EventBox          processor_eventbox;
170         Gtk::HBox              processor_hpacker;
171         Gtkmm2ext::DnDVBox<ProcessorEntry> processor_display;
172         Gtk::ScrolledWindow    processor_scroller;
173
174         void object_drop (Gtkmm2ext::DnDVBox<ProcessorEntry> *, ProcessorEntry *, Glib::RefPtr<Gdk::DragContext> const &);
175
176         Width _width;
177
178         Gtk::Menu *send_action_menu;
179         void build_send_action_menu ();
180
181         void new_send ();
182         void show_send_controls ();
183
184         Gtk::Menu *processor_menu;
185         gint processor_menu_map_handler (GdkEventAny *ev);
186         Gtk::Menu * build_processor_menu ();
187         void build_processor_tooltip (Gtk::EventBox&, std::string);
188         void show_processor_menu (gint arg);
189         Gtk::Menu* build_possible_aux_menu();
190
191         void choose_aux (boost::weak_ptr<ARDOUR::Route>);
192         void choose_send ();
193         void send_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
194         void return_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
195         void choose_insert ();
196         void choose_plugin ();
197         void use_plugins (const SelectedPlugins&);
198
199         bool no_processor_redisplay;
200
201         bool enter_notify (GdkEventCrossing *ev);
202         bool leave_notify (GdkEventCrossing *ev);
203         bool processor_key_press_event (GdkEventKey *);
204         bool processor_key_release_event (GdkEventKey *);
205         bool processor_button_press_event (GdkEventButton *, ProcessorEntry *);
206         bool processor_button_release_event (GdkEventButton *, ProcessorEntry *);
207         void redisplay_processors ();
208         void add_processor_to_display (boost::weak_ptr<ARDOUR::Processor>);
209         void reordered ();
210         void route_processors_changed (ARDOUR::RouteProcessorChange);
211
212         void remove_processor_gui (boost::shared_ptr<ARDOUR::Processor>);
213
214         void processors_reordered (const Gtk::TreeModel::Path&, const Gtk::TreeModel::iterator&, int*);
215         void compute_processor_sort_keys ();
216
217         void all_processors_active(bool state);
218         void all_plugins_active(bool state);
219         void ab_plugins ();
220
221         typedef std::vector<boost::shared_ptr<ARDOUR::Processor> > ProcSelection;
222
223         void cut_processors (const ProcSelection&);
224         void cut_processors ();
225         void copy_processors (const ProcSelection&);
226         void copy_processors ();
227         void delete_processors (const ProcSelection&);
228         void delete_processors ();
229         void paste_processors ();
230         void paste_processors (boost::shared_ptr<ARDOUR::Processor> before);
231
232         void delete_dragged_processors (const std::list<boost::shared_ptr<ARDOUR::Processor> >&);
233         void clear_processors ();
234         void clear_processors (ARDOUR::Placement);
235         void rename_processors ();
236
237         void for_selected_processors (void (ProcessorBox::*pmf)(boost::shared_ptr<ARDOUR::Processor>));
238         void get_selected_processors (ProcSelection&);
239
240         static Glib::RefPtr<Gtk::Action> paste_action;
241         void paste_processor_state (const XMLNodeList&, boost::shared_ptr<ARDOUR::Processor>);
242
243         void activate_processor (boost::shared_ptr<ARDOUR::Processor>);
244         void deactivate_processor (boost::shared_ptr<ARDOUR::Processor>);
245         void edit_processor (boost::shared_ptr<ARDOUR::Processor>);
246         void hide_processor_editor (boost::shared_ptr<ARDOUR::Processor>);
247         void rename_processor (boost::shared_ptr<ARDOUR::Processor>);
248
249         gint idle_delete_processor (boost::weak_ptr<ARDOUR::Processor>);
250
251         void weird_plugin_dialog (ARDOUR::Plugin& p, ARDOUR::Route::ProcessorStreams streams);
252         void on_size_allocate (Gtk::Allocation &);
253
254         static ProcessorBox* _current_processor_box;
255
256         static void rb_choose_aux (boost::weak_ptr<ARDOUR::Route>);
257         static void rb_choose_plugin ();
258         static void rb_choose_insert ();
259         static void rb_choose_send ();
260         static void rb_clear ();
261         static void rb_clear_pre ();
262         static void rb_clear_post ();
263         static void rb_cut ();
264         static void rb_copy ();
265         static void rb_paste ();
266         static void rb_delete ();
267         static void rb_rename ();
268         static void rb_select_all ();
269         static void rb_deselect_all ();
270         static void rb_activate_all ();
271         static void rb_deactivate_all ();
272         static void rb_ab_plugins ();
273         static void rb_edit ();
274
275         void route_name_changed ();
276         std::string generate_processor_title (boost::shared_ptr<ARDOUR::PluginInsert> pi);
277 };
278
279 #endif /* __ardour_gtk_processor_box__ */