2 Copyright (C) 2004 Paul Davis
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.
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.
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.
20 #ifndef __ardour_gtk_processor_box__
21 #define __ardour_gtk_processor_box__
26 #include <boost/function.hpp>
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"
38 #include "pbd/stateful.h"
39 #include "pbd/signals.h"
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"
49 #include "pbd/fastlog.h"
51 #include "plugin_interest.h"
52 #include "io_selector.h"
55 #include "window_proxy.h"
57 class MotionController
;
60 class RouteRedirectSelection
;
77 /** A WindowProxy for Processor UI windows; it knows how to ask a ProcessorBox
78 * to create a UI window for a particular processor.
80 class ProcessorWindowProxy
: public WindowProxy
<Gtk::Window
>
83 ProcessorWindowProxy (std::string
const &, XMLNode
const *, ProcessorBox
*, boost::weak_ptr
<ARDOUR::Processor
>);
86 bool rc_configured () const {
90 boost::weak_ptr
<ARDOUR::Processor
> processor () const {
97 ProcessorBox
* _processor_box
;
98 boost::weak_ptr
<ARDOUR::Processor
> _processor
;
101 class ProcessorEntry
: public Gtkmm2ext::DnDVBoxChild
, public sigc::trackable
104 ProcessorEntry (boost::shared_ptr
<ARDOUR::Processor
>, Width
);
106 Gtk::EventBox
& action_widget ();
107 Gtk::Widget
& widget ();
108 std::string
drag_text () const;
109 void set_visual_state (Gtk::StateType
);
117 void set_position (Position
);
118 boost::shared_ptr
<ARDOUR::Processor
> processor () const;
119 void set_enum_width (Width
);
120 virtual void set_pixel_width (int) {}
122 /** Hide any widgets that should be hidden */
123 virtual void hide_things () {}
127 virtual void setup_visuals ();
134 void active_toggled ();
135 void processor_active_changed ();
136 void processor_property_changed (const PBD::PropertyChange
&);
137 std::string
name () const;
140 Gtk::EventBox _event_box
;
143 Gtk::CheckButton _active
;
144 boost::shared_ptr
<ARDOUR::Processor
> _processor
;
146 Gtk::StateType _visual_state
;
147 PBD::ScopedConnection active_connection
;
148 PBD::ScopedConnection name_connection
;
151 class SendProcessorEntry
: public ProcessorEntry
154 SendProcessorEntry (boost::shared_ptr
<ARDOUR::Send
>, Width
);
156 static void setup_slider_pix ();
158 void set_enum_width (Width
, int);
159 void set_pixel_width (int);
163 void gain_adjusted ();
165 boost::shared_ptr
<ARDOUR::Send
> _send
;
166 Gtk::Adjustment _adjustment
;
167 Gtkmm2ext::HSliderController _fader
;
168 bool _ignore_gain_change
;
169 PBD::ScopedConnection send_gain_connection
;
171 static Glib::RefPtr
<Gdk::Pixbuf
> _slider
;
174 class PluginInsertProcessorEntry
: public ProcessorEntry
177 PluginInsertProcessorEntry (boost::shared_ptr
<ARDOUR::PluginInsert
>, Width
);
182 void setup_visuals ();
183 void plugin_insert_splitting_changed ();
185 /* XXX: this seems a little ridiculous just for a simple scaleable icon */
186 class SplittingIcon
: public Gtk::DrawingArea
{
188 bool on_expose_event (GdkEventExpose
*);
191 boost::shared_ptr
<ARDOUR::PluginInsert
> _plugin_insert
;
192 SplittingIcon _splitting_icon
;
193 PBD::ScopedConnection _splitting_connection
;
196 class ProcessorBox
: public Gtk::HBox
, public PluginInterestedObject
, public ARDOUR::SessionHandlePtr
199 ProcessorBox (ARDOUR::Session
*, boost::function
<PluginSelector
*()> get_plugin_selector
,
200 RouteRedirectSelection
&, MixerStrip
* parent
, bool owner_is_mixer
= false);
203 void set_route (boost::shared_ptr
<ARDOUR::Route
>);
204 void set_width (Width
);
208 void select_all_processors ();
209 void deselect_all_processors ();
210 void select_all_plugins ();
211 void select_all_inserts ();
212 void select_all_sends ();
216 Gtk::Window
* get_processor_ui (boost::shared_ptr
<ARDOUR::Processor
>) const;
217 void toggle_edit_processor (boost::shared_ptr
<ARDOUR::Processor
>);
218 void toggle_processor_controls (boost::shared_ptr
<ARDOUR::Processor
>);
220 sigc::signal
<void,boost::shared_ptr
<ARDOUR::Processor
> > ProcessorSelected
;
221 sigc::signal
<void,boost::shared_ptr
<ARDOUR::Processor
> > ProcessorUnselected
;
223 static void register_actions();
227 /* prevent copy construction */
228 ProcessorBox (ProcessorBox
const &);
230 boost::shared_ptr
<ARDOUR::Route
> _route
;
231 MixerStrip
* _parent_strip
; // null if in RouteParamsUI
232 bool _owner_is_mixer
;
234 PBD::ScopedConnectionList _mixer_strip_connections
;
235 PBD::ScopedConnectionList _route_connections
;
237 boost::function
<PluginSelector
*()> _get_plugin_selector
;
239 boost::shared_ptr
<ARDOUR::Processor
> _processor_being_created
;
241 ARDOUR::Placement _placement
;
243 RouteRedirectSelection
& _rr_selection
;
245 void route_going_away ();
247 void selection_changed ();
249 Gtkmm2ext::DnDVBox
<ProcessorEntry
> processor_display
;
250 Gtk::ScrolledWindow processor_scroller
;
252 void object_drop (Gtkmm2ext::DnDVBox
<ProcessorEntry
> *, ProcessorEntry
*, Glib::RefPtr
<Gdk::DragContext
> const &);
256 Gtk::Menu
*send_action_menu
;
257 void build_send_action_menu ();
260 void show_send_controls ();
262 Gtk::Menu
*processor_menu
;
263 gint
processor_menu_map_handler (GdkEventAny
*ev
);
264 Gtk::Menu
* build_processor_menu ();
265 void build_processor_tooltip (Gtk::EventBox
&, std::string
);
266 void show_processor_menu (gint arg
);
267 Gtk::Menu
* build_possible_aux_menu();
269 void choose_aux (boost::weak_ptr
<ARDOUR::Route
>);
271 void send_io_finished (IOSelector::Result
, boost::weak_ptr
<ARDOUR::Processor
>, IOSelectorWindow
*);
272 void return_io_finished (IOSelector::Result
, boost::weak_ptr
<ARDOUR::Processor
>, IOSelectorWindow
*);
273 void choose_insert ();
274 void choose_plugin ();
275 bool use_plugins (const SelectedPlugins
&);
277 bool no_processor_redisplay
;
279 bool enter_notify (GdkEventCrossing
*ev
);
280 bool leave_notify (GdkEventCrossing
*ev
);
281 bool processor_key_press_event (GdkEventKey
*);
282 bool processor_key_release_event (GdkEventKey
*);
283 bool processor_button_press_event (GdkEventButton
*, ProcessorEntry
*);
284 bool processor_button_release_event (GdkEventButton
*, ProcessorEntry
*);
285 void redisplay_processors ();
286 void add_processor_to_display (boost::weak_ptr
<ARDOUR::Processor
>);
288 void report_failed_reorder ();
289 void route_processors_changed (ARDOUR::RouteProcessorChange
);
291 void processors_reordered (const Gtk::TreeModel::Path
&, const Gtk::TreeModel::iterator
&, int*);
292 void compute_processor_sort_keys ();
294 void all_processors_active(bool state
);
295 void all_plugins_active(bool state
);
298 typedef std::vector
<boost::shared_ptr
<ARDOUR::Processor
> > ProcSelection
;
300 void cut_processors (const ProcSelection
&);
301 void cut_processors ();
302 void copy_processors (const ProcSelection
&);
303 void copy_processors ();
304 void delete_processors (const ProcSelection
&);
305 void delete_processors ();
306 void paste_processors ();
307 void paste_processors (boost::shared_ptr
<ARDOUR::Processor
> before
);
309 void delete_dragged_processors (const std::list
<boost::shared_ptr
<ARDOUR::Processor
> >&);
310 void clear_processors ();
311 void clear_processors (ARDOUR::Placement
);
312 void rename_processors ();
314 void for_selected_processors (void (ProcessorBox::*pmf
)(boost::shared_ptr
<ARDOUR::Processor
>));
315 void get_selected_processors (ProcSelection
&) const;
317 bool can_cut() const;
319 static Glib::RefPtr
<Gtk::Action
> cut_action
;
320 static Glib::RefPtr
<Gtk::Action
> paste_action
;
321 static Glib::RefPtr
<Gtk::Action
> rename_action
;
322 static Glib::RefPtr
<Gtk::Action
> edit_action
;
323 static Glib::RefPtr
<Gtk::Action
> controls_action
;
324 void paste_processor_state (const XMLNodeList
&, boost::shared_ptr
<ARDOUR::Processor
>);
326 void activate_processor (boost::shared_ptr
<ARDOUR::Processor
>);
327 void deactivate_processor (boost::shared_ptr
<ARDOUR::Processor
>);
328 void hide_processor_editor (boost::shared_ptr
<ARDOUR::Processor
>);
329 void rename_processor (boost::shared_ptr
<ARDOUR::Processor
>);
331 gint
idle_delete_processor (boost::weak_ptr
<ARDOUR::Processor
>);
333 void weird_plugin_dialog (ARDOUR::Plugin
& p
, ARDOUR::Route::ProcessorStreams streams
);
334 void on_size_allocate (Gtk::Allocation
&);
336 void setup_entry_positions ();
338 static ProcessorBox
* _current_processor_box
;
340 static void rb_choose_aux (boost::weak_ptr
<ARDOUR::Route
>);
341 static void rb_choose_plugin ();
342 static void rb_choose_insert ();
343 static void rb_choose_send ();
344 static void rb_clear ();
345 static void rb_clear_pre ();
346 static void rb_clear_post ();
347 static void rb_cut ();
348 static void rb_copy ();
349 static void rb_paste ();
350 static void rb_delete ();
351 static void rb_rename ();
352 static void rb_select_all ();
353 static void rb_deselect_all ();
354 static void rb_activate_all ();
355 static void rb_deactivate_all ();
356 static void rb_ab_plugins ();
357 static void rb_edit ();
358 static void rb_controls ();
360 void route_property_changed (const PBD::PropertyChange
&);
361 std::string
generate_processor_title (boost::shared_ptr
<ARDOUR::PluginInsert
> pi
);
363 std::list
<ProcessorWindowProxy
*> _processor_window_proxies
;
364 void set_processor_ui (boost::shared_ptr
<ARDOUR::Processor
>, Gtk::Window
*);
365 void maybe_add_processor_to_ui_list (boost::weak_ptr
<ARDOUR::Processor
>);
367 bool one_processor_can_be_edited ();
368 bool processor_can_be_edited (boost::shared_ptr
<ARDOUR::Processor
>);
370 void mixer_strip_delivery_changed (boost::weak_ptr
<ARDOUR::Delivery
>);
373 #endif /* __ardour_gtk_processor_box__ */