Fix processor box for no crash on click
[ardour.git] / gtk2_ardour / foldback_strip.h
1 /*
2     Copyright (C) 2000-2006 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 #ifndef __ardour_foldback_strip__
20 #define __ardour_foldback_strip__
21
22 #include <vector>
23
24 #include <cmath>
25
26 #include <gtkmm/adjustment.h>
27 #include <gtkmm/button.h>
28 #include <gtkmm/box.h>
29 #include <gtkmm/eventbox.h>
30 #include <gtkmm/frame.h>
31 #include <gtkmm/label.h>
32 #include <gtkmm/menu.h>
33 #include <gtkmm/sizegroup.h>
34 #include <gtkmm/textview.h>
35 #include <gtkmm/togglebutton.h>
36
37 #include "pbd/stateful.h"
38
39 #include "ardour/types.h"
40 #include "ardour/ardour.h"
41 #include "ardour/processor.h"
42
43 #include "pbd/fastlog.h"
44
45 #include "widgets/ardour_button.h"
46 #include "widgets/ardour_knob.h"
47
48 #include "axis_view.h"
49 #include "route_ui.h"
50 #include "panner_ui.h"
51 #include "enums.h"
52 #include "processor_box.h"
53 //#include "visibility_group.h"
54 #include "processor_selection.h"
55
56 namespace ARDOUR {
57         class Route;
58         class Send;
59         class Processor;
60         class Session;
61         class PortInsert;
62         class Bundle;
63         class Plugin;
64 }
65 namespace Gtk {
66         class Window;
67         class Style;
68 }
69
70 class Mixer_UI;
71 class MotionController;
72 class RouteGroupMenu;
73 class ArdourWindow;
74
75 class FoldbackStrip : public AxisView, public RouteUI, public Gtk::EventBox
76 {
77 public:
78         FoldbackStrip (Mixer_UI&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
79         ~FoldbackStrip ();
80
81         std::string name()  const;
82         Gdk::Color color () const;
83
84         boost::shared_ptr<ARDOUR::Stripable> stripable() const { return RouteUI::stripable(); }
85
86 //      Width get_width_enum () const { return _width; }
87         void* width_owner () const { return _width_owner; }
88
89         PannerUI&       panner_ui()       { return panners; }
90         PluginSelector* plugin_selector();
91
92         void fast_update ();
93         void set_embedded (bool);
94
95         void set_route (boost::shared_ptr<ARDOUR::Route>);
96         void set_button_names ();
97 //      void show_send (boost::shared_ptr<ARDOUR::Send>);
98         void revert_to_default_display ();
99
100         /** @return the delivery that is being edited using our fader; it will be the
101          *  last send passed to ::show_send, or our route's main out delivery.
102          */
103         boost::shared_ptr<ARDOUR::Delivery> current_delivery () const {
104                 return _current_delivery;
105         }
106
107         bool mixer_owned () const {
108                 return _mixer_owned;
109         }
110
111         /** The delivery that we are handling the level for with our fader has changed */
112         PBD::Signal1<void, boost::weak_ptr<ARDOUR::Delivery> > DeliveryChanged;
113
114         static PBD::Signal1<void,FoldbackStrip*> CatchDeletion;
115
116         std::string state_id() const;
117
118 //      void parameter_changed (std::string);
119         void route_active_changed ();
120
121         void copy_processors ();
122         void cut_processors ();
123         void paste_processors ();
124         void select_all_processors ();
125         void deselect_all_processors ();
126         bool delete_processors ();  //note: returns false if nothing was deleted
127         void toggle_processors ();
128         void ab_plugins ();
129
130         void set_selected (bool yn);
131
132         static FoldbackStrip* entered_foldback_strip() { return _entered_foldback_strip; }
133
134 protected:
135         friend class Mixer_UI;
136         void set_packed (bool yn);
137         bool packed () { return _packed; }
138
139         void set_stuff_from_route ();
140
141 private:
142         Mixer_UI& _mixer;
143
144         void init ();
145
146         bool  _embedded;
147         bool  _packed;
148         bool  _mixer_owned;
149         Width _width;
150         void*  _width_owner;
151         ARDOUR::Session* _session;
152
153         Gtk::EventBox               spacer;
154         Gtk::VBox                       send_display;
155
156         Gtk::Frame          global_frame;
157         Gtk::VBox           global_vpacker;
158
159         ProcessorBox* insert_box;
160         ProcessorSelection _pr_selection;
161         PannerUI     panners;
162
163         Glib::RefPtr<Gtk::SizeGroup> button_size_group;
164
165         Gtk::Table mute_solo_table;
166         Gtk::Table bottom_button_table;
167
168         ArdourWidgets::ArdourButton output_button;
169
170         Gtk::HBox show_sends_box;
171
172         std::string longest_label;
173
174         void help_count_plugins (boost::weak_ptr<ARDOUR::Processor>);
175         uint32_t _plugin_insert_cnt;
176
177         gint    mark_update_safe ();
178         guint32 mode_switch_in_progress;
179
180         ArdourWidgets::ArdourButton name_button;
181         ArdourWidgets::ArdourButton _select_button;
182         ArdourWidgets::ArdourButton _comment_button;
183         ArdourWidgets::ArdourKnob*   fb_level_control;
184
185         void setup_comment_button ();
186
187         gint output_press (GdkEventButton *);
188         gint output_release (GdkEventButton *);
189
190         Gtk::Menu output_menu;
191         std::list<boost::shared_ptr<ARDOUR::Bundle> > output_menu_bundles;
192         void maybe_add_bundle_to_output_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &,
193                                               ARDOUR::DataType type = ARDOUR::DataType::NIL);
194
195         void bundle_output_chosen (boost::shared_ptr<ARDOUR::Bundle>);
196
197         void io_changed_proxy ();
198
199         Gtk::Menu *send_action_menu;
200         void build_send_action_menu ();
201
202         PBD::ScopedConnection panstate_connection;
203         PBD::ScopedConnection panstyle_connection;
204         void connect_to_pan ();
205         void update_panner_choices ();
206         void update_fb_level_control ();
207
208         void update_output_display ();
209
210         void set_automated_controls_sensitivity (bool yn);
211
212         Gtk::Menu* route_ops_menu;
213         void build_route_ops_menu ();
214         gboolean name_button_button_press (GdkEventButton*);
215         void list_route_operations ();
216
217         Gtk::Menu* route_select_menu;
218         void build_route_select_menu ();
219         gboolean select_button_button_press (GdkEventButton*);
220         void list_fb_routes ();
221
222         void build_sends_menu ();
223         void remove_current_fb ();
224
225         Gtk::Style *passthru_style;
226
227         void show_passthru_color ();
228
229         void route_property_changed (const PBD::PropertyChange&);
230         void name_changed ();
231         void update_speed_display ();
232         void map_frozen ();
233         void hide_processor_editor (boost::weak_ptr<ARDOUR::Processor> processor);
234         void hide_redirect_editors ();
235
236         bool ignore_speed_adjustment;
237
238         static FoldbackStrip* _entered_foldback_strip;
239
240         void engine_running();
241         void engine_stopped();
242
243 //      virtual void bus_send_display_changed (boost::shared_ptr<ARDOUR::Route>);
244
245         void set_current_delivery (boost::shared_ptr<ARDOUR::Delivery>);
246
247         void drop_send ();
248         PBD::ScopedConnection send_gone_connection;
249
250         void reset_strip_style ();
251
252         ARDOUR::DataType guess_main_type(bool for_input, bool favor_connected = true) const;
253
254         void update_io_button ();
255         void port_connected_or_disconnected (boost::weak_ptr<ARDOUR::Port>, boost::weak_ptr<ARDOUR::Port>);
256
257         bool mixer_strip_enter_event ( GdkEventCrossing * );
258         bool mixer_strip_leave_event ( GdkEventCrossing * );
259
260         void add_output_port (ARDOUR::DataType);
261
262         bool _suspend_menu_callbacks;
263 };
264
265 #endif /* __ardour_foldback_strip__ */