change AxisView color API to be virtual and implement per-type variants
[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 <gtkmm/stock.h>
20
21 #include "pbd/convert.h"
22
23 #include "ardour/rc_configuration.h"
24 #include "ardour/session.h"
25 #include "ardour/vca.h"
26 #include "ardour/vca_manager.h"
27
28 #include "gtkmm2ext/doi.h"
29 #include "gtkmm2ext/keyboard.h"
30
31 #include "ardour_dialog.h"
32 #include "floating_text_entry.h"
33 #include "gui_thread.h"
34 #include "mixer_ui.h"
35 #include "tooltips.h"
36 #include "ui_config.h"
37 #include "vca_master_strip.h"
38
39 #include "i18n.h"
40
41 using namespace ARDOUR;
42 using namespace ARDOUR_UI_UTILS;
43 using namespace Gtkmm2ext;
44 using namespace Gtk;
45 using namespace PBD;
46 using std::string;
47
48 PBD::Signal1<void,VCAMasterStrip*> VCAMasterStrip::CatchDeletion;
49
50 VCAMasterStrip::VCAMasterStrip (Session* s, boost::shared_ptr<VCA> v)
51         : AxisView (s)
52         , _vca (v)
53         , gain_meter (s, 250)
54         , context_menu (0)
55         , delete_dialog (0)
56 {
57         gain_meter.set_controls (boost::shared_ptr<Route>(),
58                                  boost::shared_ptr<PeakMeter>(),
59                                  boost::shared_ptr<Amp>(),
60                                  _vca->gain_control());
61
62         solo_button.set_name ("solo button");
63         set_tooltip (solo_button, _("Solo slaves"));
64         solo_button.signal_button_release_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::solo_release), false);
65
66         mute_button.set_name ("mute button");
67         mute_button.set_text (_("M"));
68         set_tooltip (mute_button, _("Mute slaves"));
69         mute_button.signal_button_release_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::mute_release), false);
70
71         hide_button.set_icon (ArdourIcon::CloseCross);
72         set_tooltip (&hide_button, _("Hide this VCA strip"));
73
74         assign_button.set_name (X_("vca assign"));
75         set_tooltip (assign_button, _("Click to assign a VCA Master to this VCA"));
76         assign_button.signal_button_release_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::vca_button_release), false);
77
78         hide_button.signal_clicked.connect (sigc::mem_fun(*this, &VCAMasterStrip::hide_clicked));
79
80         width_hide_box.pack_start (number_label, true, true);
81         width_hide_box.pack_end (hide_button, false, true);
82
83         solo_mute_box.set_spacing (2);
84         solo_mute_box.pack_start (mute_button, true, true);
85         solo_mute_box.pack_start (solo_button, true, true);
86
87         number_label.set_text (to_string (v->number(), std::dec));
88         number_label.set_elements((ArdourButton::Element)(ArdourButton::Edge|ArdourButton::Body|ArdourButton::Text|ArdourButton::Inactive));
89         number_label.set_no_show_all ();
90         number_label.set_name ("generic button");
91         number_label.set_alignment (.5, .5);
92         number_label.set_fallthrough_to_parent (true);
93
94         top_padding.set_size_request (-1, 16); /* must match height in GroupTabs::set_size_request() */
95         bottom_padding.set_size_request (-1, 30); /* this one is a hack. there's no trivial way to compute it */
96
97         //Glib::RefPtr<Pango::Layout> layout = vertical_button.get_layout ();
98         // layout->set_justify (JUSTIFY_CENTER);
99         /* horizontally centered, with a little space (5%) at the top */
100         vertical_button.set_angle (90);
101         vertical_button.set_layout_font (UIConfiguration::instance().get_NormalBoldFont());
102         vertical_button.signal_button_release_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::vertical_button_press));
103         vertical_button.set_fallthrough_to_parent (true);
104         set_tooltip (vertical_button, _("Click to show slaves only")); /* tooltip updated dynamically */
105
106         drop_button.set_text(_("drop"));
107         drop_button.signal_clicked.connect (sigc::mem_fun (*this, &VCAMasterStrip::drop_button_press));
108         set_tooltip (drop_button, _("Unassign all slaves from this control master"));
109
110         global_vpacker.set_border_width (1);
111         global_vpacker.set_spacing (0);
112
113         global_vpacker.pack_start (top_padding, false, false);
114         global_vpacker.pack_start (width_hide_box, false, false);
115         global_vpacker.pack_start (vertical_button, true, true);
116         global_vpacker.pack_start (solo_mute_box, false, false);
117         global_vpacker.pack_start (gain_meter, false, false, 2);
118         global_vpacker.pack_start (assign_button, false, false);
119         global_vpacker.pack_start (drop_button, false, false);
120         global_vpacker.pack_start (bottom_padding, false, false);
121
122         global_frame.add (global_vpacker);
123         global_frame.set_shadow_type (Gtk::SHADOW_IN);
124         global_frame.set_name ("BaseFrame");
125
126         add (global_frame);
127
128         global_vpacker.show ();
129         global_frame.show ();
130         top_padding.show ();
131         bottom_padding.show ();
132         vertical_button.show ();
133         hide_button.show ();
134         number_label.show ();
135         width_hide_box.show ();
136         gain_meter.show ();
137         solo_mute_box.show_all ();
138         assign_button.show ();
139         drop_button.show ();
140
141         /* force setting of visible selected status */
142
143         _selected = true;
144         set_selected (false);
145         set_solo_text ();
146         update_vca_display ();
147         update_vca_name ();
148         solo_changed ();
149         mute_changed ();
150         spill_change (boost::shared_ptr<VCA>());
151
152         Mixer_UI::instance()->show_vca_change.connect (sigc::mem_fun (*this, &VCAMasterStrip::spill_change));
153
154         _vca->PropertyChanged.connect (vca_connections, invalidator (*this), boost::bind (&VCAMasterStrip::vca_property_changed, this, _1), gui_context());
155
156         _vca->solo_control()->Changed.connect (vca_connections, invalidator (*this), boost::bind (&VCAMasterStrip::solo_changed, this), gui_context());
157         _vca->mute_control()->Changed.connect (vca_connections, invalidator (*this), boost::bind (&VCAMasterStrip::mute_changed, this), gui_context());
158
159         /* only need to connect to one of these to update VCA status */
160
161         _vca->gain_control()->MasterStatusChange.connect (vca_connections,
162                                                   invalidator (*this),
163                                                   boost::bind (&VCAMasterStrip::update_vca_display, this),
164                                                   gui_context());
165
166
167         _vca->DropReferences.connect (vca_connections, invalidator (*this), boost::bind (&VCAMasterStrip::self_delete, this), gui_context());
168
169         s->config.ParameterChanged.connect (*this, invalidator (*this), boost::bind (&VCAMasterStrip::parameter_changed, this, _1), gui_context());
170         Config->ParameterChanged.connect (*this, invalidator (*this), boost::bind (&VCAMasterStrip::parameter_changed, this, _1), gui_context());
171         UIConfiguration::instance().ParameterChanged.connect (sigc::mem_fun (*this, &VCAMasterStrip::parameter_changed));
172 }
173
174 VCAMasterStrip::~VCAMasterStrip ()
175 {
176         if ((_session && !_session->deletion_in_progress()) && Mixer_UI::instance()->showing_vca_slaves_for (_vca)) {
177                 /* cancel spill for this VCA */
178                 Mixer_UI::instance()->show_vca_slaves (boost::shared_ptr<VCA>());
179         }
180
181         delete delete_dialog;
182         delete context_menu;
183
184         CatchDeletion (this); /* EMIT SIGNAL */
185 }
186
187 void
188 VCAMasterStrip::self_delete ()
189 {
190         delete_when_idle (this);
191 }
192
193 void
194 VCAMasterStrip::parameter_changed (std::string const & p)
195 {
196         if (p == "use-monitor-bus" || p == "solo-control-is-listen-control" || p == "listen-position") {
197                 set_button_names ();
198         }
199 }
200
201 void
202 VCAMasterStrip::set_button_names ()
203 {
204         if (Config->get_solo_control_is_listen_control()) {
205                 switch (Config->get_listen_position()) {
206                 case AfterFaderListen:
207                         solo_button.set_text (S_("AfterFader|A"));
208                         set_tooltip (solo_button, _("After-fade listen (AFL)"));
209                         break;
210                 case PreFaderListen:
211                         solo_button.set_text (S_("PreFader|P"));
212                         set_tooltip (solo_button, _("Pre-fade listen (PFL)"));
213                         break;
214                 }
215         } else {
216                 solo_button.set_text (S_("Solo|S"));
217                 set_tooltip (solo_button, _("Solo"));
218         }
219 }
220
221 void
222 VCAMasterStrip::update_vca_display ()
223 {
224         VCAList vcas (_session->vca_manager().vcas());
225         string label;
226
227         for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) {
228                 if (_vca->slaved_to (*v)) {
229                         if (!label.empty()) {
230                                 label += ' ';
231                         }
232                         label += to_string ((*v)->number(), std::dec);
233                 }
234         }
235
236         if (label.empty()) {
237                 label = _("-vca-");
238                 assign_button.set_active_state (Gtkmm2ext::Off);
239         } else {
240                 assign_button.set_active_state (Gtkmm2ext::ExplicitActive);
241         }
242
243         assign_button.set_text (label);
244 }
245
246 string
247 VCAMasterStrip::name() const
248 {
249         return _vca->name();
250 }
251
252 void
253 VCAMasterStrip::hide_clicked ()
254 {
255         if (!delete_dialog) {
256                 delete_dialog = new MessageDialog (_("Removing a Master will deassign all slaves. Remove it anyway?"),
257                                                    true, MESSAGE_WARNING, BUTTONS_YES_NO, true);
258                 delete_dialog->signal_response().connect (sigc::mem_fun (*this, &VCAMasterStrip::hide_confirmation));
259         }
260
261         delete_dialog->set_position (Gtk::WIN_POS_MOUSE);
262         delete_dialog->present ();
263 }
264
265 void
266 VCAMasterStrip::hide_confirmation (int response)
267 {
268         delete_dialog->hide ();
269
270         switch (response) {
271         case RESPONSE_YES:
272                 /* get everything to deassign. This will also delete ourselves (when
273                  * idle) and that in turn will remove us from the Mixer GUI
274                  */
275                 _session->vca_manager().remove_vca (_vca);
276                 break;
277         default:
278                 break;
279         }
280 }
281
282 bool
283 VCAMasterStrip::width_button_pressed (GdkEventButton* ev)
284 {
285         return false;
286 }
287
288 void
289 VCAMasterStrip::set_selected (bool yn)
290 {
291         AxisView::set_selected (yn);
292
293         if (_selected) {
294                 global_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
295                 global_frame.set_name ("MixerStripSelectedFrame");
296         } else {
297                 global_frame.set_shadow_type (Gtk::SHADOW_IN);
298                 global_frame.set_name ("MixerStripFrame");
299         }
300
301         global_frame.queue_draw ();
302 }
303
304 bool
305 VCAMasterStrip::solo_release (GdkEventButton*)
306 {
307         /* We use NoGroup because VCA controls are never part of a group. This
308            is redundant, but clear.
309         */
310         _vca->solo_control()->set_value (_vca->solo_control()->self_soloed() ? 0.0 : 1.0, Controllable::NoGroup);
311         return true;
312 }
313
314 bool
315 VCAMasterStrip::mute_release (GdkEventButton*)
316 {
317         /* We use NoGroup because VCA controls are never part of a group. This
318            is redundant, but clear.
319         */
320         _vca->mute_control()->set_value (_vca->mute_control()->muted_by_self() ? 0.0 : 1.0, Controllable::NoGroup);
321         return true;
322 }
323
324 void
325 VCAMasterStrip::set_solo_text ()
326 {
327         if (Config->get_solo_control_is_listen_control ()) {
328                 switch (Config->get_listen_position()) {
329                 case AfterFaderListen:
330                         solo_button.set_text (_("A"));
331                         break;
332                 case PreFaderListen:
333                         solo_button.set_text (_("P"));
334                         break;
335                         }
336         } else {
337                 solo_button.set_text (_("S"));
338         }
339 }
340
341 void
342 VCAMasterStrip::mute_changed ()
343 {
344         if (_vca->mute_control()->muted_by_self()) {
345                 mute_button.set_active_state (ExplicitActive);
346         } else if (_vca->mute_control()->muted_by_masters ()) {
347                 mute_button.set_active_state (ImplicitActive);
348         } else {
349                 mute_button.set_active_state (Gtkmm2ext::Off);
350         }
351 }
352
353 void
354 VCAMasterStrip::solo_changed ()
355 {
356         if (_vca->solo_control()->self_soloed()) {
357                 solo_button.set_active_state (ExplicitActive);
358         } else if (_vca->solo_control()->soloed_by_masters ()) {
359                 solo_button.set_active_state (ImplicitActive);
360         } else {
361                 solo_button.set_active_state (Gtkmm2ext::Off);
362         }
363 }
364
365 void
366 VCAMasterStrip::vca_menu_toggle (Gtk::CheckMenuItem* menuitem, uint32_t n)
367 {
368         boost::shared_ptr<VCA> vca = _session->vca_manager().vca_by_number (n);
369
370         if (!menuitem->get_active()) {
371                 if (!vca) {
372                         /* null VCA means drop all VCA assignments */
373                         _vca->unassign (boost::shared_ptr<VCA>());
374
375                 } else {
376                         _vca->unassign (vca);
377                 }
378         } else {
379                 if (vca) {
380                         _vca->assign (vca);
381                 }
382         }
383 }
384
385 void
386 VCAMasterStrip::unassign ()
387 {
388         _vca->unassign (boost::shared_ptr<VCA>());
389 }
390
391 bool
392 VCAMasterStrip::vca_button_release (GdkEventButton* ev)
393 {
394         using namespace Gtk::Menu_Helpers;
395
396         if (!_session) {
397                 return false;
398         }
399
400         /* primary click only */
401
402         if (ev->button != 1) {
403                 return false;
404         }
405
406         VCAList vcas (_session->vca_manager().vcas());
407
408         if (vcas.empty()) {
409                 /* XXX should probably show a message saying "No VCA masters" */
410                 return true;
411         }
412
413         Menu* menu = new Menu;
414         MenuList& items = menu->items();
415
416         items.push_back (MenuElem (_("Unassign"), sigc::mem_fun (*this, &VCAMasterStrip::unassign)));
417
418         for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) {
419
420                 if (*v == _vca) {
421                         /* no self-mastering */
422                         continue;
423                 }
424
425                 items.push_back (CheckMenuElem ((*v)->name()));
426                 Gtk::CheckMenuItem* item = dynamic_cast<Gtk::CheckMenuItem*> (&items.back());
427                 if (_vca->gain_control()->slaved_to ((*v)->gain_control())) {
428                         item->set_active (true);
429                 }
430                 item->signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &VCAMasterStrip::vca_menu_toggle), item, (*v)->number()));
431         }
432
433         menu->popup (1, ev->time);
434
435         return true;
436 }
437
438 bool
439 VCAMasterStrip::vertical_button_press (GdkEventButton* ev)
440 {
441         if (ev->button == 1 && ev->type == GDK_2BUTTON_PRESS) {
442                 start_name_edit ();
443                 return true;
444         }
445
446         if (Keyboard::is_context_menu_event (ev)) {
447                 if (!context_menu) {
448                         build_context_menu ();
449                 }
450                 context_menu->popup (1, ev->time);
451                 return true;
452         }
453
454         if (ev->button == 1) {
455                 spill ();
456         }
457
458         return true;
459 }
460
461 void
462 VCAMasterStrip::start_name_edit ()
463 {
464         Gtk::Window* win = dynamic_cast<Gtk::Window*>(get_toplevel());
465         FloatingTextEntry* fte = new FloatingTextEntry (win, _vca->name());
466         fte->use_text.connect (sigc::mem_fun (*this, &VCAMasterStrip::finish_name_edit));
467         fte->present ();
468 }
469
470 void
471 VCAMasterStrip::finish_name_edit (std::string str, int)
472 {
473         _vca->set_name (str);
474 }
475
476 void
477 VCAMasterStrip::vca_property_changed (PropertyChange const & what_changed)
478 {
479         if (what_changed.contains (ARDOUR::Properties::name)) {
480                 update_vca_name ();
481         }
482 }
483
484 void
485 VCAMasterStrip::update_vca_name ()
486 {
487         /* 20 is a rough guess at the number of letters we can fit. */
488         vertical_button.set_text (short_version (_vca->name(), 20));
489 }
490
491 void
492 VCAMasterStrip::build_context_menu ()
493 {
494         using namespace Gtk::Menu_Helpers;
495         context_menu = new Menu;
496         MenuList& items = context_menu->items();
497         items.push_back (MenuElem (_("Rename"), sigc::mem_fun (*this, &VCAMasterStrip::start_name_edit)));
498         items.push_back (SeparatorElem());
499         items.push_back (MenuElem (_("Drop All Slaves"), sigc::mem_fun (*this, &VCAMasterStrip::drop_all_slaves)));
500         items.push_back (SeparatorElem());
501         items.push_back (MenuElem (_("Remove"), sigc::mem_fun (*this, &VCAMasterStrip::remove)));
502 }
503
504 void
505 VCAMasterStrip::spill ()
506 {
507         if (Mixer_UI::instance()->showing_vca_slaves_for (_vca)) {
508                 Mixer_UI::instance()->show_vca_slaves (boost::shared_ptr<VCA>());
509         } else {
510                 Mixer_UI::instance()->show_vca_slaves (_vca);
511         }
512 }
513
514 void
515 VCAMasterStrip::spill_change (boost::shared_ptr<VCA> vca)
516 {
517         if (vca != _vca) {
518                 vertical_button.set_active_state (Gtkmm2ext::Off);
519                 set_tooltip (vertical_button, _("Click to show slaves only"));
520         } else {
521                 vertical_button.set_active_state (Gtkmm2ext::ExplicitActive);
522                 set_tooltip (vertical_button, _("Click to show normal mixer"));
523         }
524 }
525
526 void
527 VCAMasterStrip::remove ()
528 {
529         if (!_session) {
530                 return;
531         }
532
533         _session->vca_manager().remove_vca (_vca);
534 }
535
536 void
537 VCAMasterStrip::drop_all_slaves ()
538 {
539         _vca->Drop (); /* EMIT SIGNAL */
540
541         if (Mixer_UI::instance()->showing_vca_slaves_for (_vca)) {
542                 Mixer_UI::instance()->show_vca_slaves (boost::shared_ptr<VCA>());
543         }
544 }
545
546 void
547 VCAMasterStrip::drop_button_press ()
548 {
549         drop_all_slaves ();
550 }
551
552 Gdk::Color
553 VCAMasterStrip::color () const
554 {
555         return gdk_color_from_rgb (_vca->presentation_info().color ());
556 }