enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / control_slave_ui.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 <string>
20
21 #include <gtkmm/menu.h>
22
23 #include "pbd/convert.h"
24
25 #include "ardour/session.h"
26 #include "ardour/stripable.h"
27 #include "ardour/types.h"
28 #include "ardour/vca.h"
29 #include "ardour/vca_manager.h"
30
31 #include "gtkmm2ext/gtk_ui.h"
32 #include "gtkmm2ext/utils.h"
33
34 #include "ardour_button.h"
35 #include "control_slave_ui.h"
36 #include "gui_thread.h"
37
38 #include "pbd/i18n.h"
39
40 using namespace ARDOUR;
41 using namespace Gtk;
42 using std::string;
43
44 ControlSlaveUI::ControlSlaveUI (Session* s)
45         : SessionHandlePtr (s)
46         , initial_button (ArdourButton::default_elements)
47 {
48         set_no_show_all (true);
49
50         Gtkmm2ext::UI::instance()->set_tip (*this, _("Control Masters"));
51
52         initial_button.set_no_show_all (true);
53         initial_button.set_name (X_("vca assign"));
54         initial_button.set_text (_("-vca-"));
55         initial_button.show ();
56         initial_button.add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
57         initial_button.signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &ControlSlaveUI::vca_button_release), 0), false);
58
59         pack_start (initial_button, true, true);
60 }
61
62 void
63 ControlSlaveUI::set_stripable (boost::shared_ptr<Stripable> s)
64 {
65         connections.drop_connections ();
66
67         stripable = s;
68
69         if (stripable) {
70                 boost::shared_ptr<GainControl> ac = stripable->gain_control();
71                 assert (ac);
72
73                 ac->MasterStatusChange.connect (connections,
74                                                 invalidator (*this),
75                                                 boost::bind (&ControlSlaveUI::update_vca_display, this),
76                                                 gui_context());
77
78                 stripable->DropReferences.connect (connections, invalidator (*this), boost::bind (&ControlSlaveUI::set_stripable, this, boost::shared_ptr<Stripable>()), gui_context());
79         }
80
81         update_vca_display ();
82 }
83
84 void
85 ControlSlaveUI::update_vca_display ()
86 {
87         if (!_session || _session->deletion_in_progress()) {
88                 return;
89         }
90
91         VCAList vcas (_session->vca_manager().vcas());
92         bool any = false;
93
94         Gtkmm2ext::container_clear (*this);
95         master_connections.drop_connections ();
96
97         if (stripable) {
98                 for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) {
99                         if (stripable->gain_control()->slaved_to ((*v)->gain_control())) {
100                                 add_vca_button (*v);
101                                 any = true;
102                         }
103                 }
104         }
105
106         if (!any) {
107                 pack_start (initial_button, true, true);
108         }
109
110         show ();
111 }
112
113 void
114 ControlSlaveUI::vca_menu_toggle (Gtk::CheckMenuItem* menuitem, uint32_t n)
115 {
116         boost::shared_ptr<VCA> vca = _session->vca_manager().vca_by_number (n);
117
118         if (!vca) {
119                 return;
120         }
121
122         boost::shared_ptr<Slavable> sl = boost::dynamic_pointer_cast<Slavable> (stripable);
123
124         if (!sl) {
125                 return;
126         }
127
128         if (!menuitem->get_active()) {
129                 sl->unassign (vca);
130         } else {
131                 sl->assign (vca);
132         }
133 }
134
135 void
136 ControlSlaveUI::unassign_all ()
137 {
138         boost::shared_ptr<Slavable> sl = boost::dynamic_pointer_cast<Slavable> (stripable);
139
140         if (!sl) {
141                 return;
142         }
143
144         sl->unassign (boost::shared_ptr<VCA>());
145 }
146
147 bool
148 ControlSlaveUI::specific_vca_button_release (GdkEventButton* ev, uint32_t n)
149 {
150         return vca_button_release  (ev, n);
151 }
152
153 bool
154 ControlSlaveUI::vca_button_release (GdkEventButton* ev, uint32_t n)
155 {
156         using namespace Gtk::Menu_Helpers;
157
158         if (!_session) {
159                 return false;
160         }
161
162         /* primary click only */
163
164         if (ev->button != 1) {
165                 return false;
166         }
167
168         if (!stripable) {
169                 /* no route - nothing to do */
170                 return false;
171         }
172
173         VCAList vcas (_session->vca_manager().vcas());
174
175         if (vcas.empty()) {
176                 /* the button should not have been visible under these conditions */
177                 return true;
178         }
179
180         Menu* menu = new Menu;
181         MenuList& items = menu->items();
182         bool slaved = false;
183
184         for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) {
185
186                 boost::shared_ptr<GainControl> gcs = stripable->gain_control();
187                 boost::shared_ptr<GainControl> gcm = (*v)->gain_control();
188
189                 if (gcs == gcm) {
190                         /* asked to slave to self. not ok */
191                         continue;
192                 }
193
194                 if (gcm->slaved_to (gcs)) {
195                         /* master is already slaved to slave */
196                         continue;
197                 }
198
199                 items.push_back (CheckMenuElem ((*v)->name()));
200                 Gtk::CheckMenuItem* item = dynamic_cast<Gtk::CheckMenuItem*> (&items.back());
201
202                 if (gcs->slaved_to (gcm)) {
203                         item->set_active (true);
204                         slaved = true;
205                 }
206
207                 item->signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &ControlSlaveUI::vca_menu_toggle), item, (*v)->number()));
208         }
209
210         if (slaved) {
211                 items.push_back (MenuElem (_("Unassign All"), sigc::mem_fun (*this, &ControlSlaveUI::unassign_all)));
212         }
213
214         if (!items.empty()) {
215                 menu->popup (1, ev->time);
216         }
217
218         return true;
219 }
220
221 void
222 ControlSlaveUI::add_vca_button (boost::shared_ptr<VCA> vca)
223 {
224         ArdourButton* vca_button = manage (new ArdourButton (ArdourButton::default_elements));
225
226         vca_button->set_no_show_all (true);
227         vca_button->set_name (X_("vca assign"));
228         vca_button->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
229         vca_button->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &ControlSlaveUI::specific_vca_button_release), vca->number()), false);
230         vca_button->set_text (PBD::to_string (vca->number(), std::dec));
231         vca_button->set_fixed_colors (vca->presentation_info().color(), vca->presentation_info().color ());
232
233         vca->presentation_info().PropertyChanged.connect (master_connections, invalidator (*this), boost::bind (&ControlSlaveUI::master_property_changed, this, _1), gui_context());
234
235         pack_start (*vca_button);
236         vca_button->show ();
237 }
238
239 void
240 ControlSlaveUI::master_property_changed (PBD::PropertyChange const& /* what_changed */)
241 {
242         update_vca_display ();
243 }