fa5ab1c3457c8af3b6197ef858f6c3bf62295a01
[ardour.git] / gtk2_ardour / vca_master_strip.cc
1 /*
2     Copyright (C) 2016 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 #include "pbd/convert.h"
20
21 #include "ardour/rc_configuration.h"
22 #include "ardour/session.h"
23 #include "ardour/vca.h"
24 #include "ardour/vca_manager.h"
25
26 #include "gtkmm2ext/keyboard.h"
27
28 #include "gui_thread.h"
29 #include "floating_text_entry.h"
30 #include "tooltips.h"
31 #include "vca_master_strip.h"
32
33 #include "i18n.h"
34
35 using namespace ARDOUR;
36 using namespace ARDOUR_UI_UTILS;
37 using namespace Gtkmm2ext;
38 using namespace Gtk;
39 using namespace PBD;
40 using std::string;
41
42 VCAMasterStrip::VCAMasterStrip (Session* s, boost::shared_ptr<VCA> v)
43         : AxisView (s)
44         , _vca (v)
45         , gain_meter (s, 250)
46         , context_menu (0)
47 {
48         gain_meter.set_controls (boost::shared_ptr<Route>(),
49                                  boost::shared_ptr<PeakMeter>(),
50                                  boost::shared_ptr<Amp>(),
51                                  _vca->gain_control());
52
53         solo_button.set_name ("solo button");
54         set_tooltip (solo_button, _("Solo slaves"));
55         solo_button.signal_button_release_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::solo_release), false);
56
57         mute_button.set_name ("mute button");
58         mute_button.set_text (_("M"));
59         set_tooltip (mute_button, _("Mute slaves"));
60         mute_button.signal_button_release_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::mute_release), false);
61
62         hide_button.set_icon (ArdourIcon::CloseCross);
63         set_tooltip (&hide_button, _("Hide this VCA strip"));
64
65         assign_button.set_name (X_("vca assign"));
66         set_tooltip (assign_button, _("Click to assign a VCA Master to this VCA"));
67         assign_button.signal_button_release_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::vca_button_release), false);
68
69         hide_button.signal_clicked.connect (sigc::mem_fun(*this, &VCAMasterStrip::hide_clicked));
70
71         width_hide_box.pack_start (number_label, true, true);
72         width_hide_box.pack_end (hide_button, false, true);
73
74         solo_mute_box.set_spacing (2);
75         solo_mute_box.pack_start (mute_button, true, true);
76         solo_mute_box.pack_start (solo_button, true, true);
77
78         number_label.set_text (to_string (v->number(), std::dec));
79         number_label.set_elements((ArdourButton::Element)(ArdourButton::Edge|ArdourButton::Body|ArdourButton::Text|ArdourButton::Inactive));
80         number_label.set_no_show_all ();
81         number_label.set_name ("generic button");
82         number_label.set_alignment (.5, .5);
83         number_label.set_fallthrough_to_parent (true);
84
85         name_button.signal_button_press_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::name_button_press), false);
86
87         top_padding.set_size_request (-1, 16); /* must match height in GroupTabs::set_size_request() */
88         bottom_padding.set_size_request (-1, 50); /* this one is a hack. there's no trivial way to compute it */
89
90         global_vpacker.set_border_width (1);
91         global_vpacker.set_spacing (0);
92
93         global_vpacker.pack_start (top_padding, false, false);
94         global_vpacker.pack_start (width_hide_box, false, false);
95         global_vpacker.pack_start (name_button, false, false);
96         global_vpacker.pack_start (vertical_padding, true, true);
97         global_vpacker.pack_start (solo_mute_box, false, false);
98         global_vpacker.pack_start (gain_meter, false, false);
99         global_vpacker.pack_start (assign_button, false, false);
100         global_vpacker.pack_start (bottom_padding, false, false);
101
102         global_frame.add (global_vpacker);
103         global_frame.set_shadow_type (Gtk::SHADOW_IN);
104         global_frame.set_name ("BaseFrame");
105
106         add (global_frame);
107
108         global_vpacker.show ();
109         global_frame.show ();
110         top_padding.show ();
111         bottom_padding.show ();
112         vertical_padding.show ();
113         hide_button.show ();
114         number_label.show ();
115         width_hide_box.show ();
116         name_button.show ();
117         gain_meter.show ();
118         solo_mute_box.show_all ();
119         assign_button.show ();
120
121         /* force setting of visible selected status */
122
123         _selected = true;
124         set_selected (false);
125         set_solo_text ();
126         update_vca_display ();
127         update_vca_name ();
128
129         _vca->PropertyChanged.connect (vca_connections, invalidator (*this), boost::bind (&VCAMasterStrip::vca_property_changed, this, _1), gui_context());
130
131         _vca->solo_control()->Changed.connect (vca_connections, invalidator (*this), boost::bind (&VCAMasterStrip::solo_changed, this), gui_context());
132         _vca->mute_control()->Changed.connect (vca_connections, invalidator (*this), boost::bind (&VCAMasterStrip::mute_changed, this), gui_context());
133
134         _vca->gain_control()->MasterStatusChange.connect (vca_connections,
135                                                   invalidator (*this),
136                                                   boost::bind (&VCAMasterStrip::update_vca_display, this),
137                                                   gui_context());
138 }
139
140 void
141 VCAMasterStrip::update_vca_display ()
142 {
143         VCAList vcas (_session->vca_manager().vcas());
144         string label;
145
146         for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) {
147                 if (_vca->gain_control()->slaved_to ((*v)->gain_control())) {
148                         if (!label.empty()) {
149                                 label += ' ';
150                         }
151                         label += to_string ((*v)->number(), std::dec);
152                 }
153         }
154
155         if (label.empty()) {
156                 label = _("-vca-");
157                 assign_button.set_active_state (Gtkmm2ext::Off);
158         } else {
159                 assign_button.set_active_state (Gtkmm2ext::ExplicitActive);
160         }
161
162         assign_button.set_text (label);
163 }
164
165 string
166 VCAMasterStrip::name() const
167 {
168         return _vca->name();
169 }
170
171 void
172 VCAMasterStrip::hide_clicked ()
173 {
174 }
175
176 bool
177 VCAMasterStrip::width_button_pressed (GdkEventButton* ev)
178 {
179         return false;
180 }
181
182 void
183 VCAMasterStrip::set_selected (bool yn)
184 {
185         AxisView::set_selected (yn);
186
187         if (_selected) {
188                 global_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
189                 global_frame.set_name ("MixerStripSelectedFrame");
190         } else {
191                 global_frame.set_shadow_type (Gtk::SHADOW_IN);
192                 global_frame.set_name ("MixerStripFrame");
193         }
194
195         global_frame.queue_draw ();
196 }
197
198 bool
199 VCAMasterStrip::solo_release (GdkEventButton*)
200 {
201         _vca->solo_control()->set_value (_vca->soloed() ? 0.0 : 1.0, Controllable::NoGroup);
202         return true;
203 }
204
205 bool
206 VCAMasterStrip::mute_release (GdkEventButton*)
207 {
208         _vca->mute_control()->set_value (_vca->muted() ? 0.0 : 1.0, Controllable::NoGroup);
209         return true;
210 }
211
212 void
213 VCAMasterStrip::set_solo_text ()
214 {
215         if (Config->get_solo_control_is_listen_control ()) {
216                 switch (Config->get_listen_position()) {
217                 case AfterFaderListen:
218                         solo_button.set_text (_("A"));
219                         break;
220                 case PreFaderListen:
221                         solo_button.set_text (_("P"));
222                         break;
223                         }
224         } else {
225                 solo_button.set_text (_("S"));
226         }
227 }
228
229 void
230 VCAMasterStrip::mute_changed ()
231 {
232         if (_vca->muted()) {
233                 mute_button.set_active_state (ExplicitActive);
234         } else {
235                 mute_button.set_active_state (Gtkmm2ext::Off);
236         }
237 }
238
239 void
240 VCAMasterStrip::solo_changed ()
241 {
242         if (_vca->soloed()) {
243                 solo_button.set_active_state (ExplicitActive);
244         } else {
245                 solo_button.set_active_state (Gtkmm2ext::Off);
246         }
247 }
248
249 void
250 VCAMasterStrip::vca_menu_toggle (CheckMenuItem* menuitem, uint32_t n)
251 {
252         boost::shared_ptr<VCA> vca = _session->vca_manager().vca_by_number (n);
253
254         if (!menuitem->get_active()) {
255                 if (!vca) {
256                         /* null VCA means drop all VCA assignments */
257                         vca_unassign ();
258                 } else {
259                         _vca->gain_control()->remove_master (vca->gain_control());
260                 }
261         } else {
262                 if (vca) {
263                         _vca->gain_control()->add_master (vca->gain_control());
264                 }
265         }
266 }
267
268 void
269 VCAMasterStrip::vca_unassign ()
270 {
271         _vca->gain_control()->clear_masters ();
272 }
273
274 bool
275 VCAMasterStrip::vca_button_release (GdkEventButton* ev)
276 {
277         using namespace Gtk::Menu_Helpers;
278
279         if (!_session) {
280                 return false;
281         }
282
283         /* primary click only */
284
285         if (ev->button != 1) {
286                 return false;
287         }
288
289         VCAList vcas (_session->vca_manager().vcas());
290
291         if (vcas.empty()) {
292                 /* XXX should probably show a message saying "No VCA masters" */
293                 return true;
294         }
295
296         Menu* menu = new Menu;
297         MenuList& items = menu->items();
298
299         items.push_back (MenuElem (_("Unassign"), sigc::mem_fun (*this, &VCAMasterStrip::vca_unassign)));
300
301         for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) {
302
303                 if (*v == _vca) {
304                         /* no self-mastering */
305                         continue;
306                 }
307
308                 items.push_back (CheckMenuElem ((*v)->name()));
309                 CheckMenuItem* item = dynamic_cast<CheckMenuItem*> (&items.back());
310                 if (_vca->gain_control()->slaved_to ((*v)->gain_control())) {
311                         item->set_active (true);
312                 }
313                 item->signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &VCAMasterStrip::vca_menu_toggle), item, (*v)->number()));
314         }
315
316         menu->popup (1, ev->time);
317
318         return true;
319 }
320
321 bool
322 VCAMasterStrip::name_button_press (GdkEventButton* ev)
323 {
324         if (ev->button == 1 && ev->type == GDK_2BUTTON_PRESS) {
325                 Gtk::Window* win = dynamic_cast<Gtk::Window*>(get_toplevel());
326                 FloatingTextEntry* fte = new FloatingTextEntry (win, _vca->name());
327                 fte->use_text.connect (sigc::mem_fun (*this, &VCAMasterStrip::finish_name_edit));
328                 fte->present ();
329                 return true;
330         }
331
332         if (Keyboard::is_context_menu_event (ev)) {
333                 if (!context_menu) {
334                         build_context_menu ();
335                 }
336                 context_menu->popup (1, ev->time);
337                 return true;
338         }
339
340         return false;
341 }
342
343 void
344 VCAMasterStrip::finish_name_edit (std::string str)
345 {
346         _vca->set_name (str);
347 }
348
349 void
350 VCAMasterStrip::vca_property_changed (PropertyChange const & what_changed)
351 {
352         if (what_changed.contains (ARDOUR::Properties::name)) {
353                 update_vca_name ();
354         }
355 }
356
357 void
358 VCAMasterStrip::update_vca_name ()
359 {
360         name_button.set_text (short_version (_vca->name(), 8));
361 }
362
363 void
364 VCAMasterStrip::build_context_menu ()
365 {
366         using namespace Gtk::Menu_Helpers;
367         context_menu = new Menu;
368         MenuList& items = context_menu->items();
369         items.push_back (MenuElem (_("Remove")));
370 }