X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Froute_params_ui.cc;h=a8ddc02c1f9bef62c8560dae48620861d670f369;hb=cf52d6e4b40111eb04b244ec054055a4ec15dbe0;hp=76f3d4e264770fffcdfbaf80faafc78a911cfe04;hpb=f0fcda204444922fc0e1261929aa6fdb84412036;p=ardour.git diff --git a/gtk2_ardour/route_params_ui.cc b/gtk2_ardour/route_params_ui.cc index 76f3d4e264..a8ddc02c1f 100644 --- a/gtk2_ardour/route_params_ui.cc +++ b/gtk2_ardour/route_params_ui.cc @@ -25,6 +25,7 @@ #include #include "ardour/audioengine.h" +#include "ardour/audio_track.h" #include "ardour/plugin.h" #include "ardour/plugin_insert.h" #include "ardour/plugin_manager.h" @@ -45,9 +46,9 @@ #include "return_ui.h" #include "route_params_ui.h" #include "send_ui.h" -#include "utils.h" +#include "timers.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace ARDOUR; using namespace PBD; @@ -123,19 +124,11 @@ RouteParams_UI::RouteParams_UI () route_vpacker.pack_start (title_label, false, false); route_vpacker.pack_start (route_hpacker, true, true); + list_hpane.add (list_vpacker); + list_hpane.add (route_vpacker); - list_hpane.pack1 (list_vpacker); - list_hpane.add2 (route_vpacker); - - list_hpane.set_position(110); - - redir_hpane.set_position(110); - - //global_vpacker.pack_start (list_hpane, true, true); - //get_vbox()->pack_start (global_vpacker); add (list_hpane); - set_name ("RouteParamsWindow"); set_default_size (620,370); set_wmclass (X_("ardour_route_parameters"), PROGRAM_NAME); @@ -214,6 +207,25 @@ RouteParams_UI::route_property_changed (const PropertyChange& what_changed, boos } } +void +RouteParams_UI::map_frozen() +{ + ENSURE_GUI_THREAD (*this, &RouteParams_UI::map_frozen) + boost::shared_ptr at = boost::dynamic_pointer_cast(_route); + if (at && insert_box) { + switch (at->freeze_state()) { + case AudioTrack::Frozen: + insert_box->set_sensitive (false); + //hide_redirect_editors (); // TODO hide editor windows + break; + default: + insert_box->set_sensitive (true); + // XXX need some way, maybe, to retoggle redirect editors + break; + } + } +} + void RouteParams_UI::setup_processor_boxes() { @@ -226,9 +238,13 @@ RouteParams_UI::setup_processor_boxes() insert_box = new ProcessorBox (_session, boost::bind (&RouteParams_UI::plugin_selector, this), _rr_selection, 0); insert_box->set_route (_route); - redir_hpane.pack1 (*insert_box); + boost::shared_ptr at = boost::dynamic_pointer_cast(_route); + if (at) { + at->FreezeChange.connect (route_connections, invalidator (*this), boost::bind (&RouteParams_UI::map_frozen, this), gui_context()); + } + redir_hpane.add (*insert_box); - insert_box->ProcessorSelected.connect (sigc::mem_fun(*this, &RouteParams_UI::redirect_selected)); + insert_box->ProcessorSelected.connect (sigc::mem_fun(*this, &RouteParams_UI::redirect_selected)); //note: this indicates a double-click activation, not just a "selection" insert_box->ProcessorUnselected.connect (sigc::mem_fun(*this, &RouteParams_UI::redirect_selected)); redir_hpane.show_all(); @@ -496,9 +512,7 @@ RouteParams_UI::show_track_menu() if (track_menu == 0) { track_menu = new Menu; track_menu->set_name ("ArdourContextMenu"); - track_menu->items().push_back - (MenuElem (_("Add Track or Bus"), - sigc::bind (sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::add_route), (Gtk::Window*) 0))); + track_menu->items().push_back (MenuElem (_("Add Track or Bus"), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::add_route))); } track_menu->popup (1, gtk_get_current_event_time()); } @@ -524,7 +538,7 @@ RouteParams_UI::redirect_selected (boost::shared_ptr proc) send->DropReferences.connect (_processor_going_away_connection, invalidator (*this), boost::bind (&RouteParams_UI::processor_going_away, this, boost::weak_ptr(proc)), gui_context()); _active_view = send_ui; - redir_hpane.add2 (*_active_view); + redir_hpane.add (*_active_view); redir_hpane.show_all(); } else if ((retrn = boost::dynamic_pointer_cast (proc)) != 0) { @@ -535,7 +549,7 @@ RouteParams_UI::redirect_selected (boost::shared_ptr proc) retrn->DropReferences.connect (_processor_going_away_connection, invalidator (*this), boost::bind (&RouteParams_UI::processor_going_away, this, boost::weak_ptr(proc)), gui_context()); _active_view = return_ui; - redir_hpane.add2 (*_active_view); + redir_hpane.add (*_active_view); redir_hpane.show_all(); } else if ((plugin_insert = boost::dynamic_pointer_cast (proc)) != 0) { @@ -547,7 +561,7 @@ RouteParams_UI::redirect_selected (boost::shared_ptr proc) plugin_ui->start_updating (0); _active_view = plugin_ui; - redir_hpane.pack2 (*_active_view); + redir_hpane.add (*_active_view); redir_hpane.show_all(); } else if ((port_insert = boost::dynamic_pointer_cast (proc)) != 0) { @@ -558,7 +572,7 @@ RouteParams_UI::redirect_selected (boost::shared_ptr proc) port_insert->DropReferences.connect (_processor_going_away_connection, invalidator (*this), boost::bind (&RouteParams_UI::processor_going_away, this, boost::weak_ptr (proc)), gui_context()); _active_view = portinsert_ui; - redir_hpane.pack2 (*_active_view); + redir_hpane.add (*_active_view); portinsert_ui->redisplay(); redir_hpane.show_all(); } @@ -619,7 +633,7 @@ RouteParams_UI::update_title () void RouteParams_UI::start_updating () { - update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect + update_connection = Timers::rapid_connect (sigc::mem_fun(*this, &RouteParams_UI::update_views)); }