fix up file renaming code a little bit
[ArdourMidi.git] / gtk2_ardour / monitor_section.cc
blob4ec4166dd1c0317f7b376951b2e9555821976230
1 #include <gdkmm/pixbuf.h>
3 #include "pbd/compose.h"
4 #include "pbd/error.h"
6 #include "gtkmm2ext/bindable_button.h"
7 #include "gtkmm2ext/tearoff.h"
8 #include "gtkmm2ext/actions.h"
9 #include "gtkmm2ext/motionfeedback.h"
11 #include "ardour/dB.h"
12 #include "ardour/monitor_processor.h"
13 #include "ardour/route.h"
14 #include "ardour/utils.h"
16 #include "ardour_ui.h"
17 #include "gui_thread.h"
18 #include "monitor_section.h"
19 #include "public_editor.h"
20 #include "utils.h"
21 #include "volume_controller.h"
23 #include "i18n.h"
25 using namespace ARDOUR;
26 using namespace Gtk;
27 using namespace Gtkmm2ext;
28 using namespace PBD;
29 using namespace std;
31 Glib::RefPtr<ActionGroup> MonitorSection::monitor_actions;
32 Glib::RefPtr<Gdk::Pixbuf> MonitorSection::big_knob_pixbuf;
33 Glib::RefPtr<Gdk::Pixbuf> MonitorSection::little_knob_pixbuf;
35 MonitorSection::MonitorSection (Session* s)
36 : AxisView (s)
37 , RouteUI (s)
38 , main_table (2, 3)
39 , _tearoff (0)
40 , gain_adjustment (0.781787, 0.0, 1.0, 0.01, 0.1) // initial value is unity gain
41 , gain_control (0)
42 , dim_adjustment (0.2, 0.0, 1.0, 0.01, 0.1) // upper+lower will be reset to match model
43 , dim_control (0)
44 , solo_boost_adjustment (1.0, 1.0, 3.0, 0.01, 0.1) // upper and lower will be reset to match model
45 , solo_boost_control (0)
46 , solo_cut_adjustment (0.0, 0.0, 1.0, 0.01, 0.1) // upper and lower will be reset to match model
47 , solo_cut_control (0)
48 , solo_in_place_button (solo_model_group, _("SiP"))
49 , afl_button (solo_model_group, _("AFL"))
50 , pfl_button (solo_model_group, _("PFL"))
51 , cut_all_button (_("MUTE"))
52 , dim_all_button (_("dim"))
53 , mono_button (_("mono"))
54 , rude_solo_button (_("soloing"))
55 , rude_iso_button (_("isolated"))
56 , rude_audition_button (_("auditioning"))
57 , exclusive_solo_button (_("Exclusive"))
58 , solo_mute_override_button (_("Solo/Mute"))
60 Glib::RefPtr<Action> act;
62 if (!monitor_actions) {
64 /* do some static stuff */
66 register_actions ();
70 set_session (s);
72 VBox* spin_packer;
73 Label* spin_label;
75 /* Dim */
77 dim_control = new VolumeController (little_knob_pixbuf, &dim_adjustment, false, 30, 30);
79 HBox* dim_packer = manage (new HBox);
80 dim_packer->show ();
82 spin_label = manage (new Label (_("Dim Cut")));
83 spin_packer = manage (new VBox);
84 spin_packer->show ();
85 spin_packer->set_spacing (6);
86 spin_packer->pack_start (*dim_control, false, false);
87 spin_packer->pack_start (*spin_label, false, false);
89 dim_packer->set_spacing (12);
90 dim_packer->pack_start (*spin_packer, true, true);
92 /* Rude Solo */
94 rude_solo_button.set_name ("TransportSoloAlert");
95 rude_solo_button.show ();
97 rude_iso_button.set_name ("MonitorIsoAlert");
98 rude_iso_button.show ();
100 rude_audition_button.set_name ("TransportAuditioningAlert");
101 rude_audition_button.show ();
103 ARDOUR_UI::Blink.connect (sigc::mem_fun (*this, &MonitorSection::do_blink));
105 rude_solo_button.signal_button_press_event().connect (sigc::mem_fun(*this, &MonitorSection::cancel_solo), false);
106 UI::instance()->set_tip (rude_solo_button, _("When active, something is soloed.\nClick to de-solo everything"));
108 rude_iso_button.signal_button_press_event().connect (sigc::mem_fun(*this, &MonitorSection::cancel_isolate), false);
109 UI::instance()->set_tip (rude_iso_button, _("When active, something is solo-isolated.\nClick to de-isolate everything"));
111 rude_audition_button.signal_button_press_event().connect (sigc::mem_fun(*this, &MonitorSection::cancel_audition), false);
112 UI::instance()->set_tip (rude_audition_button, _("When active, auditioning is active.\nClick to stop the audition"));
114 solo_model_box.set_spacing (6);
115 solo_model_box.pack_start (solo_in_place_button, false, false);
116 solo_model_box.pack_start (afl_button, false, false);
117 solo_model_box.pack_start (pfl_button, false, false);
119 solo_in_place_button.show ();
120 afl_button.show ();
121 pfl_button.show ();
122 solo_model_box.show ();
124 act = ActionManager::get_action (X_("Solo"), X_("solo-use-in-place"));
125 if (act) {
126 act->connect_proxy (solo_in_place_button);
129 act = ActionManager::get_action (X_("Solo"), X_("solo-use-afl"));
130 if (act) {
131 act->connect_proxy (afl_button);
134 act = ActionManager::get_action (X_("Solo"), X_("solo-use-pfl"));
135 if (act) {
136 act->connect_proxy (pfl_button);
139 /* Solo Boost */
141 solo_boost_control = new VolumeController (little_knob_pixbuf, &solo_boost_adjustment, false, 30, 30);
143 HBox* solo_packer = manage (new HBox);
144 solo_packer->set_spacing (12);
145 solo_packer->show ();
147 spin_label = manage (new Label (_("Solo Boost")));
148 spin_packer = manage (new VBox);
149 spin_packer->show ();
150 spin_packer->set_spacing (6);
151 spin_packer->pack_start (*solo_boost_control, false, false);
152 spin_packer->pack_start (*spin_label, false, false);
154 solo_packer->pack_start (*spin_packer, true, true);
156 /* Solo (SiP) cut */
158 solo_cut_control = new VolumeController (little_knob_pixbuf, &solo_cut_adjustment, false, 30, 30);
160 spin_label = manage (new Label (_("SiP Cut")));
161 spin_packer = manage (new VBox);
162 spin_packer->show ();
163 spin_packer->set_spacing (6);
164 spin_packer->pack_start (*solo_cut_control, false, false);
165 spin_packer->pack_start (*spin_label, false, false);
167 solo_packer->pack_start (*spin_packer, true, true);
169 exclusive_solo_button.set_name (X_("MonitorOptButton"));
170 ARDOUR_UI::instance()->set_tip (&exclusive_solo_button, _("Exclusive solo means that only 1 solo is active at a time"));
172 act = ActionManager::get_action (X_("Monitor"), X_("toggle-exclusive-solo"));
173 if (act) {
174 act->connect_proxy (exclusive_solo_button);
177 solo_mute_override_button.set_name (X_("MonitorOptButton"));
178 ARDOUR_UI::instance()->set_tip (&solo_mute_override_button, _("If enabled, solo will override mute\n(a soloed & muted track or bus will be audible)"));
180 act = ActionManager::get_action (X_("Monitor"), X_("toggle-mute-overrides-solo"));
181 if (act) {
182 act->connect_proxy (solo_mute_override_button);
185 HBox* solo_opt_box = manage (new HBox);
186 solo_opt_box->set_spacing (12);
187 solo_opt_box->set_homogeneous (true);
188 solo_opt_box->pack_start (exclusive_solo_button);
189 solo_opt_box->pack_start (solo_mute_override_button);
190 solo_opt_box->show ();
192 upper_packer.set_spacing (12);
194 Gtk::HBox* rude_box = manage (new HBox);
195 rude_box->pack_start (rude_solo_button, true, true);
196 rude_box->pack_start (rude_iso_button, true, true);
198 upper_packer.pack_start (*rude_box, false, false);
199 upper_packer.pack_start (rude_audition_button, false, false);
200 upper_packer.pack_start (solo_model_box, false, false);
201 upper_packer.pack_start (*solo_opt_box, false, false);
202 upper_packer.pack_start (*solo_packer, false, false);
204 act = ActionManager::get_action (X_("Monitor"), X_("monitor-cut-all"));
205 if (act) {
206 act->connect_proxy (cut_all_button);
209 act = ActionManager::get_action (X_("Monitor"), X_("monitor-dim-all"));
210 if (act) {
211 act->connect_proxy (dim_all_button);
214 act = ActionManager::get_action (X_("Monitor"), X_("monitor-mono"));
215 if (act) {
216 act->connect_proxy (mono_button);
219 cut_all_button.set_name (X_("MonitorMuteButton"));
220 cut_all_button.unset_flags (Gtk::CAN_FOCUS);
221 cut_all_button.set_size_request (50,50);
222 cut_all_button.show ();
224 HBox* bbox = manage (new HBox);
226 bbox->set_spacing (12);
227 bbox->pack_start (mono_button, true, true);
228 bbox->pack_start (dim_all_button, true, true);
230 dim_all_button.set_name (X_("MonitorDimButton"));
231 dim_all_button.unset_flags (Gtk::CAN_FOCUS);
232 mono_button.set_name (X_("MonitorMonoButton"));
233 mono_button.unset_flags (Gtk::CAN_FOCUS);
235 lower_packer.set_spacing (12);
236 lower_packer.pack_start (*bbox, false, false);
237 lower_packer.pack_start (cut_all_button, false, false);
239 /* Gain */
241 gain_control = new VolumeController (big_knob_pixbuf, &gain_adjustment, false, 80, 80);
243 spin_label = manage (new Label (_("Gain")));
244 spin_packer = manage (new VBox);
245 spin_packer->show ();
246 spin_packer->set_spacing (6);
247 spin_packer->pack_start (*gain_control, false, false);
248 spin_packer->pack_start (*spin_label, false, false);
250 lower_packer.pack_start (*spin_packer, true, true);
252 vpacker.set_border_width (12);
253 vpacker.set_spacing (12);
254 vpacker.pack_start (upper_packer, false, false);
255 vpacker.pack_start (*dim_packer, false, false);
256 vpacker.pack_start (main_table, false, false);
257 vpacker.pack_start (lower_packer, false, false);
259 hpacker.set_border_width (12);
260 hpacker.set_spacing (12);
261 hpacker.pack_start (vpacker, true, true);
263 gain_control->show_all ();
264 dim_control->show_all ();
265 solo_boost_control->show_all ();
267 main_table.show ();
268 hpacker.show ();
269 upper_packer.show ();
270 lower_packer.show ();
271 vpacker.show ();
273 populate_buttons ();
274 map_state ();
275 assign_controllables ();
277 _tearoff = new TearOff (hpacker);
279 /* if torn off, make this a normal window */
280 _tearoff->tearoff_window().set_type_hint (Gdk::WINDOW_TYPE_HINT_NORMAL);
281 _tearoff->tearoff_window().set_title (X_("Monitor"));
282 _tearoff->tearoff_window().signal_key_press_event().connect (sigc::ptr_fun (forward_key_press), false);
284 /* catch changes that affect us */
286 Config->ParameterChanged.connect (config_connection, invalidator (*this), ui_bind (&MonitorSection::parameter_changed, this, _1), gui_context());
289 MonitorSection::~MonitorSection ()
291 for (ChannelButtons::iterator i = _channel_buttons.begin(); i != _channel_buttons.end(); ++i) {
292 delete *i;
295 _channel_buttons.clear ();
297 delete gain_control;
298 delete dim_control;
299 delete solo_boost_control;
300 delete _tearoff;
303 void
304 MonitorSection::set_session (Session* s)
306 AxisView::set_session (s);
308 if (_session) {
310 _route = _session->monitor_out ();
312 if (_route) {
313 /* session with control outs */
314 _monitor = _route->monitor_control ();
315 assign_controllables ();
316 } else {
317 /* session with no control outs */
318 _monitor.reset ();
319 _route.reset ();
322 } else {
323 /* no session */
324 _monitor.reset ();
325 _route.reset ();
326 control_connections.drop_connections ();
327 rude_iso_button.set_active (false);
328 rude_solo_button.set_active (false);
331 /* both might be null */
334 MonitorSection::ChannelButtonSet::ChannelButtonSet ()
335 : cut (X_(""))
336 , dim (X_(""))
337 , solo (X_(""))
338 , invert (X_(""))
340 cut.set_name (X_("MonitorMuteButton"));
341 dim.set_name (X_("MonitorDimButton"));
342 solo.set_name (X_("MixerSoloButton"));
343 invert.set_name (X_("MonitorInvertButton"));
345 gtk_activatable_set_use_action_appearance (GTK_ACTIVATABLE (cut.gobj()), false);
346 gtk_activatable_set_use_action_appearance (GTK_ACTIVATABLE (dim.gobj()), false);
347 gtk_activatable_set_use_action_appearance (GTK_ACTIVATABLE (invert.gobj()), false);
348 gtk_activatable_set_use_action_appearance (GTK_ACTIVATABLE (solo.gobj()), false);
350 cut.unset_flags (Gtk::CAN_FOCUS);
351 dim.unset_flags (Gtk::CAN_FOCUS);
352 solo.unset_flags (Gtk::CAN_FOCUS);
353 invert.unset_flags (Gtk::CAN_FOCUS);
356 void
357 MonitorSection::populate_buttons ()
359 if (!_monitor) {
360 return;
363 Glib::RefPtr<Action> act;
364 uint32_t nchans = _monitor->output_streams().n_audio();
366 main_table.resize (nchans+1, 5);
367 main_table.set_col_spacings (6);
368 main_table.set_row_spacings (6);
369 main_table.set_homogeneous (true);
371 Label* l1 = manage (new Label (X_("out")));
372 main_table.attach (*l1, 0, 1, 0, 1, SHRINK|FILL, SHRINK|FILL);
373 l1 = manage (new Label (X_("cut")));
374 main_table.attach (*l1, 1, 2, 0, 1, SHRINK|FILL, SHRINK|FILL);
375 l1 = manage (new Label (X_("dim")));
376 main_table.attach (*l1, 2, 3, 0, 1, SHRINK|FILL, SHRINK|FILL);
377 l1 = manage (new Label (X_("solo")));
378 main_table.attach (*l1, 3, 4, 0, 1, SHRINK|FILL, SHRINK|FILL);
379 l1 = manage (new Label (X_("inv")));
380 main_table.attach (*l1, 4, 5, 0, 1, SHRINK|FILL, SHRINK|FILL);
382 const uint32_t row_offset = 1;
384 for (uint32_t i = 0; i < nchans; ++i) {
386 string l;
387 char buf[64];
389 if (nchans == 2) {
390 if (i == 0) {
391 l = "L";
392 } else {
393 l = "R";
395 } else {
396 char buf[32];
397 snprintf (buf, sizeof (buf), "%d", i+1);
398 l = buf;
401 Label* label = manage (new Label (l));
402 main_table.attach (*label, 0, 1, i+row_offset, i+row_offset+1, SHRINK|FILL, SHRINK|FILL);
404 ChannelButtonSet* cbs = new ChannelButtonSet;
406 _channel_buttons.push_back (cbs);
408 main_table.attach (cbs->cut, 1, 2, i+row_offset, i+row_offset+1, SHRINK|FILL, SHRINK|FILL);
409 main_table.attach (cbs->dim, 2, 3, i+row_offset, i+row_offset+1, SHRINK|FILL, SHRINK|FILL);
410 main_table.attach (cbs->solo, 3, 4, i+row_offset, i+row_offset+1, SHRINK|FILL, SHRINK|FILL);
411 main_table.attach (cbs->invert, 4, 5, i+row_offset, i+row_offset+1, SHRINK|FILL, SHRINK|FILL);
413 snprintf (buf, sizeof (buf), "monitor-cut-%u", i+1);
414 act = ActionManager::get_action (X_("Monitor"), buf);
415 if (act) {
416 act->connect_proxy (cbs->cut);
419 snprintf (buf, sizeof (buf), "monitor-dim-%u", i+1);
420 act = ActionManager::get_action (X_("Monitor"), buf);
421 if (act) {
422 act->connect_proxy (cbs->dim);
425 snprintf (buf, sizeof (buf), "monitor-solo-%u", i+1);
426 act = ActionManager::get_action (X_("Monitor"), buf);
427 if (act) {
428 act->connect_proxy (cbs->solo);
431 snprintf (buf, sizeof (buf), "monitor-invert-%u", i+1);
432 act = ActionManager::get_action (X_("Monitor"), buf);
433 if (act) {
434 act->connect_proxy (cbs->invert);
438 main_table.show_all ();
441 void
442 MonitorSection::set_button_names ()
444 rec_enable_button_label.set_text ("rec");
445 mute_button_label.set_text ("rec");
446 solo_button_label.set_text ("rec");
449 void
450 MonitorSection::toggle_exclusive_solo ()
452 if (!_monitor) {
453 return;
456 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), "toggle-exclusive-solo");
457 if (act) {
458 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
459 Config->set_exclusive_solo (tact->get_active());
465 void
466 MonitorSection::toggle_mute_overrides_solo ()
468 if (!_monitor) {
469 return;
472 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), "toggle-mute-overrides-solo");
473 if (act) {
474 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
475 Config->set_solo_mute_override (tact->get_active());
479 void
480 MonitorSection::dim_all ()
482 if (!_monitor) {
483 return;
486 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), "monitor-dim-all");
487 if (act) {
488 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
489 _monitor->set_dim_all (tact->get_active());
494 void
495 MonitorSection::cut_all ()
497 if (!_monitor) {
498 return;
501 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), "monitor-cut-all");
502 if (act) {
503 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
504 _monitor->set_cut_all (tact->get_active());
508 void
509 MonitorSection::mono ()
511 if (!_monitor) {
512 return;
515 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), "monitor-mono");
516 if (act) {
517 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
518 _monitor->set_mono (tact->get_active());
522 void
523 MonitorSection::cut_channel (uint32_t chn)
525 if (!_monitor) {
526 return;
529 char buf[64];
530 snprintf (buf, sizeof (buf), "monitor-cut-%u", chn);
532 --chn; // 0-based in backend
534 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), buf);
535 if (act) {
536 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
537 _monitor->set_cut (chn, tact->get_active());
541 void
542 MonitorSection::dim_channel (uint32_t chn)
544 if (!_monitor) {
545 return;
548 char buf[64];
549 snprintf (buf, sizeof (buf), "monitor-dim-%u", chn);
551 --chn; // 0-based in backend
553 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), buf);
554 if (act) {
555 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
556 _monitor->set_dim (chn, tact->get_active());
561 void
562 MonitorSection::solo_channel (uint32_t chn)
564 if (!_monitor) {
565 return;
568 char buf[64];
569 snprintf (buf, sizeof (buf), "monitor-solo-%u", chn);
571 --chn; // 0-based in backend
573 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), buf);
574 if (act) {
575 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
576 _monitor->set_solo (chn, tact->get_active());
581 void
582 MonitorSection::invert_channel (uint32_t chn)
584 if (!_monitor) {
585 return;
588 char buf[64];
589 snprintf (buf, sizeof (buf), "monitor-invert-%u", chn);
591 --chn; // 0-based in backend
593 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Monitor"), buf);
594 if (act) {
595 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
596 _monitor->set_polarity (chn, tact->get_active());
600 void
601 MonitorSection::register_actions ()
603 string action_name;
604 string action_descr;
605 Glib::RefPtr<Action> act;
607 monitor_actions = ActionGroup::create (X_("Monitor"));
608 ActionManager::add_action_group (monitor_actions);
610 ActionManager::register_toggle_action (monitor_actions, "monitor-mono", "",
611 sigc::mem_fun (*this, &MonitorSection::mono));
613 ActionManager::register_toggle_action (monitor_actions, "monitor-cut-all", "",
614 sigc::mem_fun (*this, &MonitorSection::cut_all));
616 ActionManager::register_toggle_action (monitor_actions, "monitor-dim-all", "",
617 sigc::mem_fun (*this, &MonitorSection::dim_all));
619 act = ActionManager::register_toggle_action (monitor_actions, "toggle-exclusive-solo", "",
620 sigc::mem_fun (*this, &MonitorSection::toggle_exclusive_solo));
622 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
623 tact->set_active (Config->get_exclusive_solo());
625 act = ActionManager::register_toggle_action (monitor_actions, "toggle-mute-overrides-solo", "",
626 sigc::mem_fun (*this, &MonitorSection::toggle_mute_overrides_solo));
628 tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
629 tact->set_active (Config->get_solo_mute_override());
631 /* map from RC config */
635 /* note the 1-based counting (for naming - backend uses 0-based) */
637 for (uint32_t chn = 1; chn <= 16; ++chn) {
639 /* for the time being, do not use the action description because it always
640 shows up in the buttons, which is undesirable.
643 action_name = string_compose (X_("monitor-cut-%1"), chn);
644 action_descr = string_compose (_("Cut Monitor Chn %1"), chn);
645 ActionManager::register_toggle_action (monitor_actions, action_name.c_str(), "",
646 sigc::bind (sigc::mem_fun (*this, &MonitorSection::cut_channel), chn));
648 action_name = string_compose (X_("monitor-dim-%1"), chn);
649 action_descr = string_compose (_("Dim Monitor Chn %1"), chn+1);
650 ActionManager::register_toggle_action (monitor_actions, action_name.c_str(), "",
651 sigc::bind (sigc::mem_fun (*this, &MonitorSection::dim_channel), chn));
653 action_name = string_compose (X_("monitor-solo-%1"), chn);
654 action_descr = string_compose (_("Solo Monitor Chn %1"), chn);
655 ActionManager::register_toggle_action (monitor_actions, action_name.c_str(), "",
656 sigc::bind (sigc::mem_fun (*this, &MonitorSection::solo_channel), chn));
658 action_name = string_compose (X_("monitor-invert-%1"), chn);
659 action_descr = string_compose (_("Invert Monitor Chn %1"), chn);
660 ActionManager::register_toggle_action (monitor_actions, action_name.c_str(), "",
661 sigc::bind (sigc::mem_fun (*this, &MonitorSection::invert_channel), chn));
666 Glib::RefPtr<ActionGroup> solo_actions = ActionGroup::create (X_("Solo"));
667 RadioAction::Group solo_group;
669 ActionManager::register_radio_action (solo_actions, solo_group, "solo-use-in-place", "",
670 sigc::mem_fun (*this, &MonitorSection::solo_use_in_place));
671 ActionManager::register_radio_action (solo_actions, solo_group, "solo-use-afl", "",
672 sigc::mem_fun (*this, &MonitorSection::solo_use_afl));
673 ActionManager::register_radio_action (solo_actions, solo_group, "solo-use-pfl", "",
674 sigc::mem_fun (*this, &MonitorSection::solo_use_pfl));
676 ActionManager::add_action_group (solo_actions);
679 void
680 MonitorSection::solo_use_in_place ()
682 /* this is driven by a toggle on a radio group, and so is invoked twice,
683 once for the item that became inactive and once for the one that became
684 active.
687 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Solo"), X_("solo-use-in-place"));
689 if (act) {
690 Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic (act);
691 if (ract) {
692 Config->set_solo_control_is_listen_control (!ract->get_active());
697 void
698 MonitorSection::solo_use_afl ()
700 /* this is driven by a toggle on a radio group, and so is invoked twice,
701 once for the item that became inactive and once for the one that became
702 active.
705 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Solo"), X_("solo-use-afl"));
706 if (act) {
707 Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic (act);
708 if (ract) {
709 if (ract->get_active()) {
710 Config->set_listen_position (AfterFaderListen);
711 Config->set_solo_control_is_listen_control (true);
717 void
718 MonitorSection::solo_use_pfl ()
720 /* this is driven by a toggle on a radio group, and so is invoked twice,
721 once for the item that became inactive and once for the one that became
722 active.
725 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Solo"), X_("solo-use-afl"));
726 if (act) {
727 Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic (act);
728 if (ract) {
729 if (ract->get_active()) {
730 Config->set_listen_position (PreFaderListen);
731 Config->set_solo_control_is_listen_control (true);
737 void
738 MonitorSection::setup_knob_images ()
740 try {
742 big_knob_pixbuf = MotionFeedback::render_pixbuf (80);
744 } catch (...) {
746 error << "No usable large knob image" << endmsg;
747 throw failed_constructor ();
750 if (!big_knob_pixbuf) {
751 error << "No usable large knob image" << endmsg;
752 throw failed_constructor ();
755 try {
757 little_knob_pixbuf = MotionFeedback::render_pixbuf (30);
759 } catch (...) {
761 error << "No usable small knob image" << endmsg;
762 throw failed_constructor ();
765 if (!little_knob_pixbuf) {
766 error << "No usable small knob image" << endmsg;
767 throw failed_constructor ();
772 bool
773 MonitorSection::nonlinear_gain_printer (SpinButton* button)
775 double val = button->get_adjustment()->get_value();
776 char buf[16];
777 snprintf (buf, sizeof (buf), "%.1f", accurate_coefficient_to_dB (slider_position_to_gain (val)));
778 button->set_text (buf);
779 return true;
782 bool
783 MonitorSection::linear_gain_printer (SpinButton* button)
785 double val = button->get_adjustment()->get_value();
786 char buf[16];
787 snprintf (buf, sizeof (buf), "%.1f", accurate_coefficient_to_dB (val));
788 button->set_text (buf);
789 return true;
792 void
793 MonitorSection::update_solo_model ()
795 const char* action_name;
796 Glib::RefPtr<Action> act;
798 if (Config->get_solo_control_is_listen_control()) {
799 switch (Config->get_listen_position()) {
800 case AfterFaderListen:
801 action_name = X_("solo-use-afl");
802 break;
803 case PreFaderListen:
804 action_name = X_("solo-use-pfl");
805 break;
807 } else {
808 action_name = X_("solo-use-in-place");
811 act = ActionManager::get_action (X_("Solo"), action_name);
812 if (act) {
813 Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic (act);
814 if (ract) {
815 ract->set_active (true);
820 void
821 MonitorSection::map_state ()
823 if (!_route || !_monitor) {
824 return;
827 gain_control->get_adjustment()->set_value (gain_to_slider_position (_route->gain_control()->get_value()));
828 dim_control->get_adjustment()->set_value (_monitor->dim_level());
829 solo_boost_control->get_adjustment()->set_value (_monitor->solo_boost_level());
831 Glib::RefPtr<Action> act;
833 update_solo_model ();
835 act = ActionManager::get_action (X_("Monitor"), "monitor-cut-all");
836 if (act) {
837 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
838 if (tact) {
839 tact->set_active (_monitor->cut_all());
843 act = ActionManager::get_action (X_("Monitor"), "monitor-dim-all");
844 if (act) {
845 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
846 if (tact) {
847 tact->set_active (_monitor->dim_all());
851 act = ActionManager::get_action (X_("Monitor"), "monitor-mono");
852 if (act) {
853 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
854 if (tact) {
855 tact->set_active (_monitor->mono());
859 uint32_t nchans = _monitor->output_streams().n_audio();
861 assert (nchans == _channel_buttons.size ());
863 for (uint32_t n = 0; n < nchans; ++n) {
865 char action_name[32];
867 snprintf (action_name, sizeof (action_name), "monitor-cut-%u", n+1);
868 act = ActionManager::get_action (X_("Monitor"), action_name);
869 if (act) {
870 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
871 if (tact) {
872 tact->set_active (_monitor->cut (n));
876 snprintf (action_name, sizeof (action_name), "monitor-dim-%u", n+1);
877 act = ActionManager::get_action (X_("Monitor"), action_name);
878 if (act) {
879 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
880 if (tact) {
881 tact->set_active (_monitor->dimmed (n));
885 snprintf (action_name, sizeof (action_name), "monitor-solo-%u", n+1);
886 act = ActionManager::get_action (X_("Monitor"), action_name);
887 if (act) {
888 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
889 if (tact) {
890 tact->set_active (_monitor->soloed (n));
894 snprintf (action_name, sizeof (action_name), "monitor-invert-%u", n+1);
895 act = ActionManager::get_action (X_("Monitor"), action_name);
896 if (act) {
897 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
898 if (tact) {
899 tact->set_active (_monitor->inverted (n));
905 void
906 MonitorSection::do_blink (bool onoff)
908 solo_blink (onoff);
909 audition_blink (onoff);
912 void
913 MonitorSection::audition_blink (bool onoff)
915 if (_session == 0) {
916 return;
919 if (_session->is_auditioning()) {
920 if (onoff) {
921 rude_audition_button.set_state (STATE_ACTIVE);
922 } else {
923 rude_audition_button.set_state (STATE_NORMAL);
925 } else {
926 rude_audition_button.set_active (false);
927 rude_audition_button.set_state (STATE_NORMAL);
931 void
932 MonitorSection::solo_blink (bool onoff)
934 if (_session == 0) {
935 return;
938 if (_session->soloing() || _session->listening()) {
939 if (onoff) {
940 rude_solo_button.set_state (STATE_ACTIVE);
941 } else {
942 rude_solo_button.set_state (STATE_NORMAL);
945 if (_session->soloing()) {
946 rude_iso_button.set_active (_session->solo_isolated());
949 } else {
950 // rude_solo_button.set_active (false);
951 rude_solo_button.set_state (STATE_NORMAL);
952 rude_iso_button.set_active (false);
956 bool
957 MonitorSection::cancel_solo (GdkEventButton* ev)
959 if (_session) {
960 if (_session->soloing()) {
961 _session->set_solo (_session->get_routes(), false);
962 } else if (_session->listening()) {
963 _session->set_listen (_session->get_routes(), false);
967 return true;
970 bool
971 MonitorSection::cancel_isolate (GdkEventButton* ev)
973 if (_session) {
974 boost::shared_ptr<RouteList> rl (_session->get_routes ());
975 _session->set_solo_isolated (rl, false, Session::rt_cleanup, true);
978 return true;
981 bool
982 MonitorSection::cancel_audition (GdkEventButton* ev)
984 if (_session) {
985 _session->cancel_audition();
987 return true;
990 void
991 MonitorSection::solo_cut_changed ()
993 Config->set_solo_mute_gain (slider_position_to_gain (solo_cut_adjustment.get_value()));
996 void
997 MonitorSection::parameter_changed (std::string name)
999 if (name == "solo-control-is-listen-control" ||
1000 name == "listen-position") {
1001 update_solo_model ();
1002 } else if (name == "solo-mute-gain") {
1003 solo_cut_adjustment.set_value (gain_to_slider_position (Config->get_solo_mute_gain()));
1007 void
1008 MonitorSection::assign_controllables ()
1010 boost::shared_ptr<Controllable> none;
1012 if (!gain_control) {
1013 /* too early - GUI controls not set up yet */
1014 return;
1017 if (_route) {
1018 gain_control->set_controllable (_route->gain_control());
1019 control_link (control_connections, _route->gain_control(), gain_adjustment);
1020 } else {
1021 gain_control->set_controllable (none);
1024 if (_monitor) {
1026 cut_all_button.set_controllable (_monitor->cut_control());
1027 cut_all_button.watch ();
1028 dim_all_button.set_controllable (_monitor->dim_control());
1029 dim_all_button.watch ();
1030 mono_button.set_controllable (_monitor->mono_control());
1031 mono_button.watch ();
1033 boost::shared_ptr<Controllable> c (_monitor->dim_level_control ());
1035 dim_control->set_controllable (c);
1036 dim_adjustment.set_lower (c->lower());
1037 dim_adjustment.set_upper (c->upper());
1038 control_link (control_connections, c, dim_adjustment);
1040 c = _monitor->solo_boost_control ();
1041 solo_boost_control->set_controllable (c);
1042 solo_boost_adjustment.set_lower (c->lower());
1043 solo_boost_adjustment.set_upper (c->upper());
1044 control_link (control_connections, c, solo_boost_adjustment);
1046 } else {
1048 cut_all_button.set_controllable (none);
1049 dim_all_button.set_controllable (none);
1050 mono_button.set_controllable (none);
1052 dim_control->set_controllable (none);
1053 solo_boost_control->set_controllable (none);