/* * Copyright (C) 2016-2017 Paul Davis * Copyright (C) 2016-2019 Robin Gareus * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #include "pbd/string_convert.h" #include "ardour/session.h" #include "ardour/stripable.h" #include "ardour/types.h" #include "ardour/vca.h" #include "ardour/vca_manager.h" #include "gtkmm2ext/gtk_ui.h" #include "gtkmm2ext/utils.h" #include "control_slave_ui.h" #include "gui_thread.h" #include "pbd/i18n.h" using namespace ARDOUR; using namespace ArdourWidgets; using namespace Gtk; using std::string; ControlSlaveUI::ControlSlaveUI (Session* s) : SessionHandlePtr (s) , initial_button (ArdourButton::default_elements) , context_menu (0) { set_no_show_all (true); Gtkmm2ext::UI::instance()->set_tip (*this, _("VCA Assign")); initial_button.set_no_show_all (true); initial_button.set_name (X_("vca assign button")); initial_button.set_text (_("-VCAs-")); initial_button.show (); initial_button.add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK); initial_button.signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &ControlSlaveUI::vca_button_release), 0), false); pack_start (initial_button, true, true); } ControlSlaveUI::~ControlSlaveUI () { delete context_menu; } void ControlSlaveUI::set_stripable (boost::shared_ptr s) { connections.drop_connections (); stripable = s; if (stripable) { boost::shared_ptr ac = stripable->gain_control(); assert (ac); ac->MasterStatusChange.connect (connections, invalidator (*this), boost::bind (&ControlSlaveUI::update_vca_display, this), gui_context()); stripable->DropReferences.connect (connections, invalidator (*this), boost::bind (&ControlSlaveUI::set_stripable, this, boost::shared_ptr()), gui_context()); } update_vca_display (); } void ControlSlaveUI::update_vca_display () { if (!_session || _session->deletion_in_progress()) { return; } VCAList vcas (_session->vca_manager().vcas()); bool any = false; Gtkmm2ext::container_clear (*this); master_connections.drop_connections (); if (stripable) { for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) { if (stripable->slaved_to (*v)) { add_vca_button (*v); any = true; } } } if (!any) { pack_start (initial_button, true, true); initial_button.show (); } show (); } void ControlSlaveUI::vca_menu_toggle (Gtk::CheckMenuItem* menuitem, uint32_t n) { boost::shared_ptr vca = _session->vca_manager().vca_by_number (n); if (!vca) { return; } boost::shared_ptr sl = boost::dynamic_pointer_cast (stripable); if (!sl) { return; } if (!menuitem->get_active()) { sl->unassign (vca); } else { sl->assign (vca); } } void ControlSlaveUI::unassign_all () { boost::shared_ptr sl = boost::dynamic_pointer_cast (stripable); if (!sl) { return; } sl->unassign (boost::shared_ptr()); } bool ControlSlaveUI::specific_vca_button_release (GdkEventButton* ev, uint32_t n) { return vca_button_release (ev, n); } bool ControlSlaveUI::vca_button_release (GdkEventButton* ev, uint32_t n) { using namespace Gtk::Menu_Helpers; if (!_session) { return false; } /* primary click only */ if (ev->button != 1) { return false; } if (!stripable) { /* no route - nothing to do */ return false; } VCAList vcas (_session->vca_manager().vcas()); if (vcas.empty()) { /* the button should not have been visible under these conditions */ return false; } delete context_menu; context_menu = new Menu; MenuList& items = context_menu->items(); bool slaved = false; for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) { if (stripable->assigned_to (_session->vca_manager_ptr (), *v)) { /* master(stripable) is directly or indirectly controlled by slave (v) */ continue; } items.push_back (CheckMenuElem ((*v)->name())); Gtk::CheckMenuItem* item = dynamic_cast (&items.back()); if (stripable->slaved_to (*v)) { item->set_active (true); slaved = true; } item->signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &ControlSlaveUI::vca_menu_toggle), item, (*v)->number())); } if (slaved) { items.push_back (MenuElem (_("Unassign All"), sigc::mem_fun (*this, &ControlSlaveUI::unassign_all))); } if (!items.empty()) { context_menu->popup (1, ev->time); return true; } return false; } void ControlSlaveUI::add_vca_button (boost::shared_ptr vca) { ArdourButton* vca_button = manage (new ArdourButton (ArdourButton::default_elements)); vca_button->set_no_show_all (true); vca_button->set_name (X_("vca assign button")); vca_button->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK); vca_button->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &ControlSlaveUI::specific_vca_button_release), vca->number()), false); vca_button->set_text (PBD::to_string (vca->number())); vca_button->set_fixed_colors (vca->presentation_info().color(), vca->presentation_info().color ()); vca->presentation_info().PropertyChanged.connect (master_connections, invalidator (*this), boost::bind (&ControlSlaveUI::master_property_changed, this, _1), gui_context()); pack_start (*vca_button); vca_button->show (); } void ControlSlaveUI::master_property_changed (PBD::PropertyChange const& /* what_changed */) { update_vca_display (); }