X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Froute_ui.cc;h=f152811648359a57db73f700da86f994d5c89112;hb=bfe90109590a732589902acd392e548441134319;hp=657792620853ca05822dee55db8e927972a8d91c;hpb=13232d03f3e5f8a5d7d19392c26c27ce0327250c;p=ardour.git diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc index 6577926208..f152811648 100644 --- a/gtk2_ardour/route_ui.cc +++ b/gtk2_ardour/route_ui.cc @@ -44,6 +44,7 @@ #include "mixer_strip.h" #include "automation_time_axis.h" #include "route_time_axis.h" +#include "group_tabs.h" #include "ardour/route.h" #include "ardour/event_type_map.h" @@ -70,13 +71,6 @@ RouteUI::RouteUI (ARDOUR::Session* sess) init (); } -RouteUI::RouteUI (boost::shared_ptr rt, ARDOUR::Session* sess) - : AxisView(sess) -{ - init (); - set_route (rt); -} - RouteUI::~RouteUI() { _route.reset (); /* drop reference to route, so that it can be cleaned up */ @@ -93,7 +87,6 @@ void RouteUI::init () { self_destruct = true; - xml_node = 0; mute_menu = 0; solo_menu = 0; sends_menu = 0; @@ -109,7 +102,6 @@ RouteUI::init () solo_safe_led = 0; _solo_release = 0; _mute_release = 0; - route_active_menu_item = 0; denormal_menu_item = 0; step_edit_item = 0; multiple_mute_change = false; @@ -145,10 +137,27 @@ RouteUI::init () // show_sends_button->set_self_managed (true); UI::instance()->set_tip (show_sends_button, _("make mixer strips show sends to this bus"), ""); + monitor_input_button = manage (new BindableToggleButton ()); + // monitor_input_button->set_self_managed (true); + monitor_input_button->set_name ("MonitorInputButton"); + monitor_input_button->add (monitor_input_button_label); + monitor_input_button_label.show (); + UI::instance()->set_tip (monitor_input_button, _("Monitor input"), ""); + monitor_input_button->set_no_show_all (true); + + monitor_disk_button = manage (new BindableToggleButton ()); + // monitor_disk_button->set_self_managed (true); + monitor_disk_button->set_name ("MonitorDiskButton"); + monitor_disk_button->add (monitor_disk_button_label); + monitor_disk_button_label.show (); + UI::instance()->set_tip (monitor_disk_button, _("Monitor playback"), ""); + monitor_disk_button->set_no_show_all (true); + _session->SoloChanged.connect (_session_connections, invalidator (*this), boost::bind (&RouteUI::solo_changed_so_update_mute, this), gui_context()); _session->TransportStateChange.connect (_session_connections, invalidator (*this), boost::bind (&RouteUI::check_rec_enable_sensitivity, this), gui_context()); _session->RecordStateChanged.connect (_session_connections, invalidator (*this), boost::bind (&RouteUI::session_rec_enable_changed, this), gui_context()); + _session->config.ParameterChanged.connect (*this, invalidator (*this), ui_bind (&RouteUI::parameter_changed, this, _1), gui_context()); Config->ParameterChanged.connect (*this, invalidator (*this), ui_bind (&RouteUI::parameter_changed, this, _1), gui_context()); rec_enable_button->signal_button_press_event().connect (sigc::mem_fun(*this, &RouteUI::rec_enable_press), false); @@ -161,6 +170,12 @@ RouteUI::init () solo_button->signal_button_release_event().connect (sigc::mem_fun(*this, &RouteUI::solo_release), false); mute_button->signal_button_press_event().connect (sigc::mem_fun(*this, &RouteUI::mute_press), false); mute_button->signal_button_release_event().connect (sigc::mem_fun(*this, &RouteUI::mute_release), false); + + monitor_input_button->signal_button_press_event().connect (sigc::mem_fun(*this, &RouteUI::monitor_input_press), false); + monitor_input_button->signal_button_release_event().connect (sigc::mem_fun(*this, &RouteUI::monitor_input_release), false); + + monitor_disk_button->signal_button_press_event().connect (sigc::mem_fun(*this, &RouteUI::monitor_disk_press), false); + monitor_disk_button->signal_button_release_event().connect (sigc::mem_fun(*this, &RouteUI::monitor_disk_release), false); } void @@ -174,21 +189,13 @@ RouteUI::reset () delete mute_menu; mute_menu = 0; - if (xml_node) { - /* do not delete the node - its owned by the route */ - xml_node = 0; - } - - route_active_menu_item = 0; denormal_menu_item = 0; } void RouteUI::self_delete () { - /* This may be called from a non-GUI thread. Keep it safe */ - - delete_when_idle (this); + delete this; } void @@ -205,7 +212,7 @@ RouteUI::set_route (boost::shared_ptr rp) if (self_destruct) { rp->DropReferences.connect (route_connections, invalidator (*this), boost::bind (&RouteUI::self_delete, this), gui_context()); } - + mute_button->set_controllable (_route->mute_control()); solo_button->set_controllable (_route->solo_control()); @@ -221,12 +228,13 @@ RouteUI::set_route (boost::shared_ptr rp) _route->PropertyChanged.connect (route_connections, invalidator (*this), ui_bind (&RouteUI::property_changed, this, _1), gui_context()); _route->io_changed.connect (route_connections, invalidator (*this), ui_bind (&RouteUI::setup_invert_buttons, this), gui_context ()); + _route->gui_changed.connect (route_connections, invalidator (*this), ui_bind (&RouteUI::route_gui_changed, this, _1), gui_context ()); if (_session->writable() && is_track()) { boost::shared_ptr t = boost::dynamic_pointer_cast(_route); t->RecordEnableChanged.connect (route_connections, invalidator (*this), boost::bind (&RouteUI::route_rec_enable_changed, this), gui_context()); - + rec_enable_button->show(); rec_enable_button->set_controllable (t->rec_enable_control()); @@ -239,6 +247,13 @@ RouteUI::set_route (boost::shared_ptr rp) } + if (is_track()) { + boost::shared_ptr t = boost::dynamic_pointer_cast(_route); + t->MonitoringChanged.connect (route_connections, invalidator (*this), boost::bind (&RouteUI::monitoring_changed, this), gui_context()); + + update_monitoring_display (); + } + mute_button->unset_flags (Gtk::CAN_FOCUS); solo_button->unset_flags (Gtk::CAN_FOCUS); @@ -319,14 +334,14 @@ RouteUI::mute_press (GdkEventButton* ev) if (_mute_release) { _mute_release->routes = _session->get_routes (); } - + _session->set_mute (_session->get_routes(), !_route->muted(), Session::rt_cleanup, true); } } else { /* plain click applies change to this route */ - + boost::shared_ptr rl (new RouteList); rl->push_back (_route); @@ -367,54 +382,54 @@ RouteUI::solo_press(GdkEventButton* ev) if (ev->type == GDK_2BUTTON_PRESS || ev->type == GDK_3BUTTON_PRESS ) { return true; } - + multiple_solo_change = false; if (!_i_am_the_modifier) { - + if (Keyboard::is_context_menu_event (ev)) { - + if (!solo_isolated_led) { if (solo_menu == 0) { build_solo_menu (); } - + solo_menu->popup (1, ev->time); } - + } else { - + if (Keyboard::is_button2_event (ev)) { - + // Primary-button2 click is the midi binding click // button2-click is "momentary" - + if (solo_button->on_button_press_event (ev)) { return true; } _solo_release = new SoloMuteRelease (_route->self_soloed()); } - + if (ev->button == 1 || Keyboard::is_button2_event (ev)) { - + if (Keyboard::modifier_state_equals (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier|Keyboard::TertiaryModifier))) { - + /* Primary-Tertiary-click applies change to all routes */ if (_solo_release) { _solo_release->routes = _session->get_routes (); } - + if (Config->get_solo_control_is_listen_control()) { _session->set_listen (_session->get_routes(), !_route->listening_via_monitor(), Session::rt_cleanup, true); } else { _session->set_solo (_session->get_routes(), !_route->self_soloed(), Session::rt_cleanup, true); } - + } else if (Keyboard::modifier_state_contains (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier|Keyboard::SecondaryModifier))) { - + // Primary-Secondary-click: exclusively solo this track if (_solo_release) { @@ -430,7 +445,7 @@ RouteUI::solo_press(GdkEventButton* ev) } } } - + if (Config->get_solo_control_is_listen_control()) { /* ??? we need a just_one_listen() method */ } else { @@ -438,36 +453,36 @@ RouteUI::solo_press(GdkEventButton* ev) } } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) { - + // shift-click: toggle solo isolated status - + _route->set_solo_isolated (!_route->solo_isolated(), this); delete _solo_release; _solo_release = 0; - + } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) { - + /* Primary-button1: solo mix group. NOTE: Primary-button2 is MIDI learn. */ - + if (ev->button == 1 && _route->route_group()) { if (_solo_release) { _solo_release->routes = _route->route_group()->route_list(); } - + if (Config->get_solo_control_is_listen_control()) { _session->set_listen (_route->route_group()->route_list(), !_route->listening_via_monitor(), Session::rt_cleanup, true); } else { _session->set_solo (_route->route_group()->route_list(), !_route->self_soloed(), Session::rt_cleanup, true); } } - + } else { - + /* click: solo this route */ - + boost::shared_ptr rl (new RouteList); rl->push_back (route()); @@ -492,7 +507,7 @@ bool RouteUI::solo_release (GdkEventButton*) { if (!_i_am_the_modifier) { - + if (_solo_release) { if (_solo_release->exclusive) { @@ -532,7 +547,7 @@ RouteUI::rec_enable_press(GdkEventButton* ev) if (midi_track()->step_editing()) { return true; - } + } } if (!_i_am_the_modifier && is_track() && rec_enable_button) { @@ -570,6 +585,121 @@ RouteUI::rec_enable_press(GdkEventButton* ev) return true; } +void +RouteUI::monitoring_changed () +{ + update_monitoring_display (); +} + +void +RouteUI::update_monitoring_display () +{ + if (!_route) { + return; + } + + boost::shared_ptr t = boost::dynamic_pointer_cast(_route); + + if (!t) { + return; + } + + MonitorState ms = t->monitoring_state(); + + if (ms & MonitoringInput) { + if (t->monitoring_choice() & MonitorInput) { + monitor_input_button->set_visual_state (1); + } else { + monitor_input_button->set_visual_state (2); + } + } else { + monitor_input_button->set_visual_state (0); + } + + if (ms & MonitoringDisk) { + if (t->monitoring_choice() & MonitorDisk) { + monitor_disk_button->set_visual_state (1); + } else { + monitor_disk_button->set_visual_state (2); + } + } else { + monitor_disk_button->set_visual_state (0); + } +} + +bool +RouteUI::monitor_input_press(GdkEventButton* ev) +{ + return true; +} + +bool +RouteUI::monitor_input_release(GdkEventButton* ev) +{ + return monitor_release (ev, MonitorInput); +} + +bool +RouteUI::monitor_disk_press (GdkEventButton* ev) +{ + return true; +} + +bool +RouteUI::monitor_disk_release (GdkEventButton* ev) +{ + return monitor_release (ev, MonitorDisk); +} + +bool +RouteUI::monitor_release (GdkEventButton* ev, MonitorChoice monitor_choice) +{ + if (ev->button != 1) { + return false; + } + + boost::shared_ptr t = boost::dynamic_pointer_cast(_route); + + if (!t) { + return true; + } + + MonitorChoice mc; + boost::shared_ptr rl; + + /* XXX for now, monitoring choices are orthogonal. cue monitoring + will follow in 3.X but requires mixing the input and playback (disk) + signal together, which requires yet more buffers. + */ + + if (t->monitoring_choice() & monitor_choice) { + mc = MonitorChoice (t->monitoring_choice() & ~monitor_choice); + } else { + /* this line will change when the options are non-orthogonal */ + // mc = MonitorChoice (t->monitoring_choice() | monitor_choice); + mc = monitor_choice; + } + + if (Keyboard::modifier_state_equals (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier|Keyboard::TertiaryModifier))) { + rl = _session->get_routes (); + + } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) { + if (_route->route_group() && _route->route_group()->is_monitoring()) { + rl = _route->route_group()->route_list(); + } else { + rl.reset (new RouteList); + rl->push_back (route()); + } + } else { + rl.reset (new RouteList); + rl->push_back (route()); + } + + _session->set_monitoring (rl, mc, Session::rt_cleanup, true); + + return true; +} + void RouteUI::build_record_menu () { @@ -577,16 +707,16 @@ RouteUI::build_record_menu () return; } - /* no rec-button context menu for non-MIDI tracks + /* no rec-button context menu for non-MIDI tracks */ if (is_midi_track()) { record_menu = new Menu; record_menu->set_name ("ArdourContextMenu"); - + using namespace Menu_Helpers; MenuList& items = record_menu->items(); - + items.push_back (CheckMenuElem (_("Step Entry"), sigc::mem_fun (*this, &RouteUI::toggle_step_edit))); step_edit_item = dynamic_cast (&items.back()); @@ -614,7 +744,7 @@ RouteUI::step_edit_changed (bool yn) if (yn) { if (rec_enable_button) { rec_enable_button->set_visual_state (3); - } + } start_step_editing (); @@ -626,7 +756,7 @@ RouteUI::step_edit_changed (bool yn) if (rec_enable_button) { rec_enable_button->set_visual_state (0); - } + } stop_step_editing (); @@ -662,15 +792,15 @@ RouteUI::build_sends_menu () items.push_back ( MenuElem(_("Assign all tracks (prefader)"), sigc::bind (sigc::mem_fun (*this, &RouteUI::create_sends), PreFader, false)) ); - + items.push_back ( MenuElem(_("Assign all tracks and buses (prefader)"), sigc::bind (sigc::mem_fun (*this, &RouteUI::create_sends), PreFader, true)) ); - + items.push_back ( MenuElem(_("Assign all tracks (postfader)"), sigc::bind (sigc::mem_fun (*this, &RouteUI::create_sends), PostFader, false)) ); - + items.push_back ( MenuElem(_("Assign all tracks and buses (postfader)"), sigc::bind (sigc::mem_fun (*this, &RouteUI::create_sends), PostFader, true)) ); @@ -681,7 +811,7 @@ RouteUI::build_sends_menu () items.push_back ( MenuElem(_("Assign selected tracks and buses (prefader)"), sigc::bind (sigc::mem_fun (*this, &RouteUI::create_selected_sends), PreFader, true))); - + items.push_back ( MenuElem(_("Assign selected tracks (postfader)"), sigc::bind (sigc::mem_fun (*this, &RouteUI::create_selected_sends), PostFader, false)) ); @@ -689,7 +819,7 @@ RouteUI::build_sends_menu () items.push_back ( MenuElem(_("Assign selected tracks and buses (postfader)"), sigc::bind (sigc::mem_fun (*this, &RouteUI::create_selected_sends), PostFader, true)) ); - + items.push_back (MenuElem(_("Copy track/bus gains to sends"), sigc::mem_fun (*this, &RouteUI::set_sends_gain_from_track))); items.push_back (MenuElem(_("Set sends gain to -inf"), sigc::mem_fun (*this, &RouteUI::set_sends_gain_to_zero))); items.push_back (MenuElem(_("Set sends gain to 0dB"), sigc::mem_fun (*this, &RouteUI::set_sends_gain_to_unity))); @@ -719,7 +849,7 @@ RouteUI::create_selected_sends (Placement p, bool include_buses) } } } - + _session->add_internal_sends (_route, p, rlist); } @@ -813,7 +943,7 @@ RouteUI::solo_visual_state (boost::shared_ptr r) if (r->is_master() || r->is_monitor()) { return 0; } - + if (Config->get_solo_control_is_listen_control()) { if (r->listening_via_monitor()) { @@ -822,8 +952,8 @@ RouteUI::solo_visual_state (boost::shared_ptr r) return 0; } - } - + } + if (r->soloed()) { if (!r->self_soloed()) { return 3; @@ -841,7 +971,7 @@ RouteUI::solo_visual_state_with_isolate (boost::shared_ptr r) if (r->is_master() || r->is_monitor()) { return 0; } - + if (Config->get_solo_control_is_listen_control()) { if (r->listening_via_monitor()) { @@ -850,8 +980,8 @@ RouteUI::solo_visual_state_with_isolate (boost::shared_ptr r) return 0; } - } - + } + if (r->solo_isolated()) { return 2; } else if (r->soloed()) { @@ -871,7 +1001,7 @@ RouteUI::solo_isolate_visual_state (boost::shared_ptr r) if (r->is_master() || r->is_monitor()) { return 0; } - + if (r->solo_isolated()) { return 1; } else { @@ -885,7 +1015,7 @@ RouteUI::solo_safe_visual_state (boost::shared_ptr r) if (r->is_master() || r->is_monitor()) { return 0; } - + if (r->solo_safe()) { return 1; } else { @@ -939,8 +1069,8 @@ RouteUI::update_solo_display () } solo_button->set_visual_state (solo_visual_state (_route)); - - /* some changes to solo status can affect mute display, so catch up + + /* some changes to solo status can affect mute display, so catch up */ update_mute_display (); @@ -965,7 +1095,8 @@ RouteUI::mute_visual_state (Session* s, boost::shared_ptr r) return 0; } - if (Config->get_show_solo_mutes()) { + + if (Config->get_show_solo_mutes() && !Config->get_solo_control_is_listen_control ()) { if (r->muted ()) { /* full mute */ @@ -1018,12 +1149,14 @@ void RouteUI::route_rec_enable_changed () { update_rec_display (); + update_monitoring_display (); } void RouteUI::session_rec_enable_changed () { update_rec_display (); + update_monitoring_display (); } void @@ -1032,7 +1165,7 @@ RouteUI::update_rec_display () if (!rec_enable_button || !_route) { return; } - + bool model = _route->record_enabled(); bool view = rec_enable_button->get_active(); @@ -1053,12 +1186,12 @@ RouteUI::update_rec_display () case Session::Recording: rec_enable_button->set_visual_state (1); break; - + case Session::Disabled: case Session::Enabled: rec_enable_button->set_visual_state (2); break; - + } if (step_edit_item) { @@ -1072,7 +1205,7 @@ RouteUI::update_rec_display () step_edit_item->set_sensitive (true); } } - + check_rec_enable_sensitivity (); } @@ -1256,21 +1389,25 @@ RouteUI::toggle_solo_safe (Gtk::CheckMenuItem* check) _route->set_solo_safe (check->get_active(), this); } -bool -RouteUI::choose_color() +/** Ask the user to choose a colour, and then set all selected tracks + * to that colour. + */ +void +RouteUI::choose_color () { bool picked; - Gdk::Color color; - - color = Gtkmm2ext::UI::instance()->get_color (_("Color Selection"), picked, &_color); + Gdk::Color const color = Gtkmm2ext::UI::instance()->get_color (_("Color Selection"), picked, &_color); if (picked) { - set_color (color); + ARDOUR_UI::instance()->the_editor().get_selection().tracks.foreach_route_ui ( + boost::bind (&RouteUI::set_color, _1, color) + ); } - - return picked; } +/** Set the route's own color. This may not be used for display if + * the route is in a group which shares its color with its routes. + */ void RouteUI::set_color (const Gdk::Color & c) { @@ -1278,110 +1415,56 @@ RouteUI::set_color (const Gdk::Color & c) _color = c; - ensure_xml_node (); snprintf (buf, sizeof (buf), "%d:%d:%d", c.get_red(), c.get_green(), c.get_blue()); - xml_node->add_property ("color", buf); + /* note: we use the route state ID here so that color is the same for both + the time axis view and the mixer strip + */ + + gui_object_state().set (route_state_id(), X_("color"), buf); _route->gui_changed ("color", (void *) 0); /* EMIT_SIGNAL */ } - -void -RouteUI::ensure_xml_node () +/** @return GUI state ID for things that are common to the route in all its representations */ +string +RouteUI::route_state_id () const { - if (xml_node == 0) { - if ((xml_node = _route->extra_xml ("GUI")) == 0) { - xml_node = new XMLNode ("GUI"); - _route->add_extra_xml (*xml_node); - } else { - /* the Route has one; it may have been loaded */ - if (Stateful::loading_state_version != 0 && Stateful::loading_state_version < 3000) { - /* the GUI extra XML is in 2.X format; we must convert it to the new - format to avoid problems later - */ - - XMLNode* new_xml_node = new XMLNode (X_("GUI")); - XMLPropertyList old_gui_props = xml_node->properties (); - for (XMLPropertyIterator i = old_gui_props.begin(); i != old_gui_props.end(); ++i) { - new_xml_node->add_property ((*i)->name().c_str (), (*i)->value().c_str ()); - } - - XMLNodeList old_children = xml_node->children (); - for (XMLNodeConstIterator i = old_children.begin(); i != old_children.end(); ++i) { - XMLNode* new_child = new XMLNode (AutomationTimeAxisView::state_node_name); - new_child->add_property (X_("automation-id"), (*i)->name()); - - XMLPropertyList old_props = (*i)->properties (); - for (XMLPropertyIterator j = old_props.begin(); j != old_props.end(); ++j) { - new_child->add_property ((*j)->name().c_str (), (*j)->value().c_str ()); - } - - new_xml_node->add_child_nocopy (*new_child); - } - - _route->add_extra_xml (*new_xml_node); - xml_node = new_xml_node; - } - } - } + return string_compose (X_("route %1"), _route->id().to_s()); } -XMLNode* -RouteUI::get_automation_child_xml_node (Evoral::Parameter param) +int +RouteUI::set_color_from_route () { - ensure_xml_node (); - - XMLNodeList kids = xml_node->children(); - XMLNodeConstIterator iter; - - const string sym = ARDOUR::EventTypeMap::instance().to_symbol(param); - - for (iter = kids.begin(); iter != kids.end(); ++iter) { + const string str = gui_object_state().get_string (route_state_id(), X_("color")); - if ((*iter)->name() == AutomationTimeAxisView::state_node_name) { - XMLProperty* type = (*iter)->property("automation-id"); - if (type && type->value() == sym) { - return *iter; - } - } + if (str.empty()) { + return 1; } - // Didn't find it, make a new one - XMLNode* child = new XMLNode (AutomationTimeAxisView::state_node_name); - child->add_property("automation-id", sym); - xml_node->add_child_nocopy (*child); + int r, g, b; - return child; -} + sscanf (str.c_str(), "%d:%d:%d", &r, &g, &b); -int -RouteUI::set_color_from_route () -{ - XMLProperty *prop; - - RouteUI::ensure_xml_node (); + _color.set_red (r); + _color.set_green (g); + _color.set_blue (b); - if ((prop = xml_node->property ("color")) != 0) { - int r, g, b; - sscanf (prop->value().c_str(), "%d:%d:%d", &r, &g, &b); - _color.set_red(r); - _color.set_green(g); - _color.set_blue(b); - return 0; - } - return 1; + return 0; } void -RouteUI::remove_this_route () +RouteUI::remove_this_route (bool apply_to_selection) { - if ((route()->is_master() || route()->is_monitor()) && - !Config->get_allow_special_bus_removal()) { - MessageDialog msg (_("That would be bad news ...."), - false, - Gtk::MESSAGE_INFO, + if (apply_to_selection) { + ARDOUR_UI::instance()->the_editor().get_selection().tracks.foreach_route_ui (boost::bind (&RouteUI::remove_this_route, _1, false)); + } else { + if ((route()->is_master() || route()->is_monitor()) && + !Config->get_allow_special_bus_removal()) { + MessageDialog msg (_("That would be bad news ...."), + false, + Gtk::MESSAGE_INFO, Gtk::BUTTONS_OK); - msg.set_secondary_text (string_compose (_( + msg.set_secondary_text (string_compose (_( "Removing the master or monitor bus is such a bad idea\n\ that %1 is not going to allow it.\n\ \n\ @@ -1389,34 +1472,35 @@ If you really want to do this sort of thing\n\ edit your ardour.rc file to set the\n\ \"allow-special-bus-removal\" option to be \"yes\""), PROGRAM_NAME)); - msg.present (); - msg.run (); - return; - } + msg.present (); + msg.run (); + return; + } - vector choices; - string prompt; + vector choices; + string prompt; - if (is_track()) { - prompt = string_compose (_("Do you really want to remove track \"%1\" ?\n\nYou may also lose the playlist used by this track.\n\n(This action cannot be undone, and the session file will be overwritten)"), _route->name()); - } else { - prompt = string_compose (_("Do you really want to remove bus \"%1\" ?\n\nYou may also lose the playlist used by this track.\n\n(This action cannot be undone, and the session file will be overwritten)"), _route->name()); - } + if (is_track()) { + prompt = string_compose (_("Do you really want to remove track \"%1\" ?\n\nYou may also lose the playlist used by this track.\n\n(This action cannot be undone, and the session file will be overwritten)"), _route->name()); + } else { + prompt = string_compose (_("Do you really want to remove bus \"%1\" ?\n\n(This action cannot be undone, and the session file will be overwritten)"), _route->name()); + } - choices.push_back (_("No, do nothing.")); - choices.push_back (_("Yes, remove it.")); + choices.push_back (_("No, do nothing.")); + choices.push_back (_("Yes, remove it.")); - string title; - if (is_track()) { - title = _("Remove track"); - } else { - title = _("Remove bus"); - } + string title; + if (is_track()) { + title = _("Remove track"); + } else { + title = _("Remove bus"); + } - Choice prompter (title, prompt, choices); + Choice prompter (title, prompt, choices); - if (prompter.run () == 1) { - Glib::signal_idle().connect (sigc::bind (sigc::ptr_fun (&RouteUI::idle_remove_this_route), this)); + if (prompter.run () == 1) { + Glib::signal_idle().connect (sigc::bind (sigc::ptr_fun (&RouteUI::idle_remove_this_route), this)); + } } } @@ -1427,11 +1511,32 @@ RouteUI::idle_remove_this_route (RouteUI *rui) return false; } +/** @return true if this name should be used for the route, otherwise false */ +bool +RouteUI::verify_new_route_name (const std::string& name) +{ + if (name.find (':') == string::npos) { + return true; + } + + MessageDialog colon_msg ( + _("The use of colons (':') is discouraged in track and bus names.\nDo you want to use this new name?"), + false, MESSAGE_QUESTION, BUTTONS_NONE + ); + + colon_msg.add_button (_("Use the new name"), Gtk::RESPONSE_ACCEPT); + colon_msg.add_button (_("Re-edit the name"), Gtk::RESPONSE_CANCEL); + + return (colon_msg.run () == Gtk::RESPONSE_ACCEPT); +} + void RouteUI::route_rename () { ArdourPrompter name_prompter (true); string result; + bool done = false; + if (is_track()) { name_prompter.set_title (_("Rename Track")); } else { @@ -1443,13 +1548,25 @@ RouteUI::route_rename () name_prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false); name_prompter.show_all (); - switch (name_prompter.run ()) { - case Gtk::RESPONSE_ACCEPT: - name_prompter.get_result (result); - if (result.length()) { - _route->set_name (result); + while (!done) { + switch (name_prompter.run ()) { + case Gtk::RESPONSE_ACCEPT: + name_prompter.get_result (result); + name_prompter.hide (); + if (result.length()) { + if (verify_new_route_name (result)) { + _route->set_name (result); + done = true; + } else { + /* back to name prompter */ + } + + } else { + /* nothing entered, just get out of here */ + done = true; + } + break; } - break; } return; @@ -1465,26 +1582,15 @@ RouteUI::property_changed (const PropertyChange& what_changed) } void -RouteUI::toggle_route_active () -{ - bool yn; - - if (route_active_menu_item) { - if (route_active_menu_item->get_active() != (yn = _route->active())) { - _route->set_active (!yn, this); - } - } -} - -void -RouteUI::route_active_changed () +RouteUI::set_route_active (bool a, bool apply_to_selection) { - if (route_active_menu_item) { - Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&CheckMenuItem::set_active, route_active_menu_item, _route->active())); + if (apply_to_selection) { + ARDOUR_UI::instance()->the_editor().get_selection().tracks.foreach_route_ui (boost::bind (&RouteTimeAxisView::set_route_active, _1, a, false)); + } else { + _route->set_active (a, this); } } - void RouteUI::toggle_denormal_protection () { @@ -1638,15 +1744,21 @@ RouteUI::check_rec_enable_sensitivity () } else { rec_enable_button->set_sensitive (true); } + + update_monitoring_display (); } void RouteUI::parameter_changed (string const & p) { + /* this handles RC and per-session parameter changes */ + if (p == "disable-disarm-during-roll") { check_rec_enable_sensitivity (); } else if (p == "use-monitor-bus" || p == "solo-control-is-listen-control" || p == "listen-position") { set_button_names (); + } else if (p == "auto-input") { + update_monitoring_display (); } } @@ -1725,7 +1837,7 @@ RouteUI::setup_invert_buttons () BindableToggleButton* b = manage (new BindableToggleButton); b->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &RouteUI::invert_toggled), i, b)); b->signal_button_press_event().connect (sigc::mem_fun (*this, &RouteUI::invert_press)); - + b->set_name (X_("MixerInvertButton")); if (to_add == 1) { b->add (*manage (new Label (X_("Ø")))); @@ -1738,11 +1850,11 @@ RouteUI::setup_invert_buttons () } else { UI::instance()->set_tip (*b, string_compose (_("Left-click to invert (phase reverse) all channels of this track. Right-click to show menu."), i + 1)); } - + _invert_buttons.push_back (b); _invert_button_box.pack_start (*b); } - + _invert_button_box.show_all (); } @@ -1750,7 +1862,7 @@ void RouteUI::set_invert_button_state () { ++_i_am_the_modifier; - + uint32_t const N = _route->input()->n_ports().n_audio(); if (N > _max_invert_buttons) { _invert_buttons.front()->set_active (_route->phase_invert().any()); @@ -1772,7 +1884,7 @@ RouteUI::invert_toggled (uint32_t i, BindableToggleButton* b) if (_i_am_the_modifier) { return; } - + uint32_t const N = _route->input()->n_ports().n_audio(); if (N <= _max_invert_buttons) { _route->set_phase_invert (i, b->get_active ()); @@ -1819,7 +1931,7 @@ RouteUI::invert_menu_toggled (uint32_t c) if (_i_am_the_modifier) { return; } - + _route->set_phase_invert (c, !_route->phase_invert (c)); } @@ -1830,3 +1942,37 @@ RouteUI::set_invert_sensitive (bool yn) (*b)->set_sensitive (yn); } } + +void +RouteUI::request_redraw () +{ + if (_route) { + _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */ + } +} + +/** The Route's gui_changed signal has been emitted */ +void +RouteUI::route_gui_changed (string what_changed) +{ + if (what_changed == "color") { + if (set_color_from_route () == 0) { + route_color_changed (); + } + } +} + +/** @return the color that this route should use; it maybe its own, + or it maybe that of its route group. +*/ +Gdk::Color +RouteUI::color () const +{ + RouteGroup* g = _route->route_group (); + + if (g && g->is_color()) { + return GroupTabs::group_color (g); + } + + return _color; +}