X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Feditor_routes.cc;h=45b9797f78d9b51e0d59793fc1f3095958462e0f;hb=3d15499cdacacbafa32c8fcfb1389e6f0716ce9c;hp=e1a8bc645030bf6d3c9edbe5672ce1094c71fb93;hpb=89d1a2fdf5f9794f56f6bf960bfbebfad913cf74;p=ardour.git diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc index e1a8bc6450..45b9797f78 100644 --- a/gtk2_ardour/editor_routes.cc +++ b/gtk2_ardour/editor_routes.cc @@ -17,42 +17,52 @@ */ +#include +#include +#include #include #include #include -#include -#include -#include #include "pbd/unknown_type.h" #include "pbd/unwind.h" #include "ardour/debug.h" -#include "ardour/route.h" +#include "ardour/audio_track.h" #include "ardour/midi_track.h" +#include "ardour/route.h" +#include "ardour/selection.h" #include "ardour/session.h" +#include "ardour/solo_isolate_control.h" +#include "ardour/utils.h" +#include "ardour/vca.h" +#include "ardour/vca_manager.h" #include "gtkmm2ext/cell_renderer_pixbuf_multi.h" #include "gtkmm2ext/cell_renderer_pixbuf_toggle.h" #include "gtkmm2ext/treeutils.h" -#include "editor.h" -#include "keyboard.h" +#include "actions.h" #include "ardour_ui.h" #include "audio_time_axis.h" +#include "editor.h" +#include "editor_group_tabs.h" +#include "editor_routes.h" +#include "gui_thread.h" +#include "keyboard.h" #include "midi_time_axis.h" #include "mixer_strip.h" -#include "gui_thread.h" -#include "actions.h" -#include "utils.h" +#include "plugin_setup_dialog.h" #include "route_sorter.h" -#include "editor_group_tabs.h" -#include "editor_routes.h" +#include "tooltips.h" +#include "vca_time_axis.h" +#include "utils.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace std; using namespace ARDOUR; +using namespace ARDOUR_UI_UTILS; using namespace PBD; using namespace Gtk; using namespace Gtkmm2ext; @@ -60,20 +70,24 @@ using namespace Glib; using Gtkmm2ext::Keyboard; struct ColumnInfo { - int index; - const char* label; - const char* tooltip; + int index; + const char* label; + const char* tooltip; }; EditorRoutes::EditorRoutes (Editor* e) : EditorComponent (e) - , _ignore_reorder (false) - , _no_redisplay (false) - , _adding_routes (false) - , _menu (0) - , old_focus (0) - , selection_countdown (0) - , name_editable (0) + , _ignore_reorder (false) + , _ignore_selection_change (false) + , _no_redisplay (false) + , _adding_routes (false) + , _route_deletion_in_progress (false) + , _redisplay_on_resume (false) + , _redisplay_active (0) + , _queue_tv_update (0) + , _menu (0) + , old_focus (0) + , name_editable (0) { static const int column_width = 22; @@ -102,6 +116,23 @@ EditorRoutes::EditorRoutes (Editor* e) rec_state_column->set_expand(false); rec_state_column->set_fixed_width(column_width); + + // Record safe toggle + CellRendererPixbufMulti* rec_safe_renderer = manage (new CellRendererPixbufMulti ()); + + rec_safe_renderer->set_pixbuf (0, ::get_icon("rec-safe-disabled")); + rec_safe_renderer->set_pixbuf (1, ::get_icon("rec-safe-enabled")); + rec_safe_renderer->signal_changed().connect (sigc::mem_fun (*this, &EditorRoutes::on_tv_rec_safe_toggled)); + + TreeViewColumn* rec_safe_column = manage (new TreeViewColumn(_("RS"), *rec_safe_renderer)); + rec_safe_column->add_attribute(rec_safe_renderer->property_state(), _columns.rec_safe); + rec_safe_column->add_attribute(rec_safe_renderer->property_visible(), _columns.is_track); + rec_safe_column->set_sizing(TREE_VIEW_COLUMN_FIXED); + rec_safe_column->set_alignment(ALIGN_CENTER); + rec_safe_column->set_expand(false); + rec_safe_column->set_fixed_width(column_width); + + // MIDI Input Active CellRendererPixbufMulti* input_active_col_renderer = manage (new CellRendererPixbufMulti()); @@ -183,12 +214,13 @@ EditorRoutes::EditorRoutes (Editor* e) solo_safe_state_column->set_expand(false); solo_safe_state_column->set_fixed_width(column_width); - _name_column = _display.append_column ("", _columns.text) - 1; + _name_column = _display.append_column ("", _columns.text) - 1; _visible_column = _display.append_column ("", _columns.visible) - 1; _active_column = _display.append_column ("", _columns.active) - 1; _display.append_column (*input_active_column); _display.append_column (*rec_state_column); + _display.append_column (*rec_safe_column); _display.append_column (*mute_state_column); _display.append_column (*solo_state_column); _display.append_column (*solo_isolate_state_column); @@ -199,39 +231,40 @@ EditorRoutes::EditorRoutes (Editor* e) Gtk::Label* l; ColumnInfo ci[] = { - { 0, _("Name"), _("Track/Bus Name") }, - { 1, _("V"), _("Track/Bus visible ?") }, - { 2, _("A"), _("Track/Bus active ?") }, - { 3, _("I"), _("MIDI input enabled") }, - { 4, _("R"), _("Record enabled") }, - { 5, _("M"), _("Muted") }, - { 6, _("S"), _("Soloed") }, - { 7, _("SI"), _("Solo Isolated") }, - { 8, _("SS"), _("Solo Safe (Locked)") }, + { 0, _("Name"), _("Track/Bus Name") }, + { 1, S_("Visible|V"), _("Track/Bus visible ?") }, + { 2, S_("Active|A"), _("Track/Bus active ?") }, + { 3, S_("MidiInput|I"), _("MIDI input enabled") }, + { 4, S_("Rec|R"), _("Record enabled") }, + { 5, S_("Rec|RS"), _("Record Safe") }, + { 6, S_("Mute|M"), _("Muted") }, + { 7, S_("Solo|S"), _("Soloed") }, + { 8, S_("SoloIso|SI"), _("Solo Isolated") }, + { 9, S_("SoloLock|SS"), _("Solo Safe (Locked)") }, { -1, 0, 0 } }; for (int i = 0; ci[i].index >= 0; ++i) { col = _display.get_column (ci[i].index); l = manage (new Label (ci[i].label)); - ARDOUR_UI::instance()->set_tip (*l, ci[i].tooltip); + set_tooltip (*l, ci[i].tooltip); col->set_widget (*l); l->show (); } _display.set_headers_visible (true); - _display.get_selection()->set_mode (SELECTION_SINGLE); + _display.get_selection()->set_mode (SELECTION_MULTIPLE); _display.get_selection()->set_select_function (sigc::mem_fun (*this, &EditorRoutes::selection_filter)); + _display.get_selection()->signal_changed().connect (sigc::mem_fun (*this, &EditorRoutes::selection_changed)); _display.set_reorderable (true); - _display.set_name (X_("LHSList")); + _display.set_name (X_("EditGroupList")); _display.set_rules_hint (true); _display.set_size_request (100, -1); - _display.add_object_drag (_columns.route.index(), "routes"); CellRendererText* name_cell = dynamic_cast (_display.get_column_cell_renderer (_name_column)); assert (name_cell); - name_cell->signal_editing_started().connect (sigc::mem_fun (*this, &EditorRoutes::name_edit_started)); + name_cell->signal_editing_started().connect (sigc::mem_fun (*this, &EditorRoutes::name_edit_started)); TreeViewColumn* name_column = _display.get_column (_name_column); @@ -269,50 +302,50 @@ EditorRoutes::EditorRoutes (Editor* e) active_col->set_sizing (TREE_VIEW_COLUMN_FIXED); active_col->set_fixed_width (30); active_col->set_alignment (ALIGN_CENTER); - - _model->signal_row_deleted().connect (sigc::mem_fun (*this, &EditorRoutes::route_deleted)); + + _model->signal_row_deleted().connect (sigc::mem_fun (*this, &EditorRoutes::row_deleted)); _model->signal_rows_reordered().connect (sigc::mem_fun (*this, &EditorRoutes::reordered)); _display.signal_button_press_event().connect (sigc::mem_fun (*this, &EditorRoutes::button_press), false); _scroller.signal_key_press_event().connect (sigc::mem_fun(*this, &EditorRoutes::key_press), false); - _scroller.signal_focus_in_event().connect (sigc::mem_fun (*this, &EditorRoutes::focus_in), false); - _scroller.signal_focus_out_event().connect (sigc::mem_fun (*this, &EditorRoutes::focus_out)); + _scroller.signal_focus_in_event().connect (sigc::mem_fun (*this, &EditorRoutes::focus_in), false); + _scroller.signal_focus_out_event().connect (sigc::mem_fun (*this, &EditorRoutes::focus_out)); - _display.signal_enter_notify_event().connect (sigc::mem_fun (*this, &EditorRoutes::enter_notify), false); - _display.signal_leave_notify_event().connect (sigc::mem_fun (*this, &EditorRoutes::leave_notify), false); + _display.signal_enter_notify_event().connect (sigc::mem_fun (*this, &EditorRoutes::enter_notify), false); + _display.signal_leave_notify_event().connect (sigc::mem_fun (*this, &EditorRoutes::leave_notify), false); - _display.set_enable_search (false); + _display.set_enable_search (false); - Route::SyncOrderKeys.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::sync_treeview_from_order_keys, this, _1), gui_context()); + Route::PluginSetup.connect_same_thread (*this, boost::bind (&EditorRoutes::plugin_setup, this, _1, _2, _3)); } bool EditorRoutes::focus_in (GdkEventFocus*) { - Window* win = dynamic_cast (_scroller.get_toplevel ()); + Window* win = dynamic_cast (_scroller.get_toplevel ()); - if (win) { - old_focus = win->get_focus (); - } else { - old_focus = 0; - } + if (win) { + old_focus = win->get_focus (); + } else { + old_focus = 0; + } - name_editable = 0; + name_editable = 0; - /* try to do nothing on focus in (doesn't work, hence selection_count nonsense) */ - return true; + /* try to do nothing on focus in (doesn't work, hence selection_count nonsense) */ + return true; } bool EditorRoutes::focus_out (GdkEventFocus*) { - if (old_focus) { - old_focus->grab_focus (); - old_focus = 0; - } + if (old_focus) { + old_focus->grab_focus (); + old_focus = 0; + } - return false; + return false; } bool @@ -322,27 +355,24 @@ EditorRoutes::enter_notify (GdkEventCrossing*) return true; } - /* arm counter so that ::selection_filter() will deny selecting anything for the - next two attempts to change selection status. - */ - selection_countdown = 2; - _scroller.grab_focus (); - Keyboard::magic_widget_grab_focus (); - return false; + /* arm counter so that ::selection_filter() will deny selecting anything for the + * next two attempts to change selection status. + */ + _scroller.grab_focus (); + Keyboard::magic_widget_grab_focus (); + return false; } bool EditorRoutes::leave_notify (GdkEventCrossing*) { - selection_countdown = 0; - - if (old_focus) { - old_focus->grab_focus (); - old_focus = 0; - } + if (old_focus) { + old_focus->grab_focus (); + old_focus = 0; + } - Keyboard::magic_widget_drop_focus (); - return false; + Keyboard::magic_widget_drop_focus (); + return false; } void @@ -355,6 +385,13 @@ EditorRoutes::set_session (Session* s) if (_session) { _session->SoloChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::solo_changed_so_update_mute, this), gui_context()); _session->RecordStateChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_rec_display, this), gui_context()); + + /* TODO: check if these needs to be tied in with DisplaySuspender + * Given that the UI is single-threaded and DisplaySuspender is only used + * in loops in the UI thread all should be fine. + */ + _session->BatchUpdateStart.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::suspend_redisplay, this), gui_context()); + _session->BatchUpdateEnd.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::resume_redisplay, this), gui_context()); } } @@ -385,10 +422,32 @@ EditorRoutes::on_tv_rec_enable_changed (std::string const & path_string) TimeAxisView* tv = row[_columns.tv]; RouteTimeAxisView *rtv = dynamic_cast (tv); - if (rtv && rtv->track()) { - boost::shared_ptr rl (new RouteList); - rl->push_back (rtv->route()); - _session->set_record_enabled (rl, !rtv->track()->record_enabled(), Session::rt_cleanup); + if (!rtv) { + return; + } + + boost::shared_ptr ac = rtv->route()->rec_enable_control(); + + if (ac) { + ac->set_value (!ac->get_value(), Controllable::UseGroup); + } +} + +void +EditorRoutes::on_tv_rec_safe_toggled (std::string const & path_string) +{ + Gtk::TreeModel::Row row = *_model->get_iter (Gtk::TreeModel::Path (path_string)); + TimeAxisView* tv = row[_columns.tv]; + RouteTimeAxisView *rtv = dynamic_cast (tv); + + if (!rtv) { + return; + } + + boost::shared_ptr ac (rtv->route()->rec_safe_control()); + + if (ac) { + ac->set_value (!ac->get_value(), Controllable::UseGroup); } } @@ -401,10 +460,14 @@ EditorRoutes::on_tv_mute_enable_toggled (std::string const & path_string) TimeAxisView *tv = row[_columns.tv]; RouteTimeAxisView *rtv = dynamic_cast (tv); - if (rtv != 0) { - boost::shared_ptr rl (new RouteList); - rl->push_back (rtv->route()); - _session->set_mute (rl, !rtv->route()->muted(), Session::rt_cleanup); + if (!rtv) { + return; + } + + boost::shared_ptr ac (rtv->route()->mute_control()); + + if (ac) { + ac->set_value (!ac->get_value(), Controllable::UseGroup); } } @@ -417,14 +480,14 @@ EditorRoutes::on_tv_solo_enable_toggled (std::string const & path_string) TimeAxisView *tv = row[_columns.tv]; RouteTimeAxisView* rtv = dynamic_cast (tv); - if (rtv != 0) { - boost::shared_ptr rl (new RouteList); - rl->push_back (rtv->route()); - if (Config->get_solo_control_is_listen_control()) { - _session->set_listen (rl, !rtv->route()->listening_via_monitor(), Session::rt_cleanup); - } else { - _session->set_solo (rl, !rtv->route()->self_soloed(), Session::rt_cleanup); - } + if (!rtv) { + return; + } + + boost::shared_ptr ac (rtv->route()->solo_control()); + + if (ac) { + ac->set_value (!ac->get_value(), Controllable::UseGroup); } } @@ -437,8 +500,14 @@ EditorRoutes::on_tv_solo_isolate_toggled (std::string const & path_string) TimeAxisView *tv = row[_columns.tv]; RouteTimeAxisView* rtv = dynamic_cast (tv); - if (rtv) { - rtv->route()->set_solo_isolated (!rtv->route()->solo_isolated(), this); + if (!rtv) { + return; + } + + boost::shared_ptr ac (rtv->route()->solo_isolate_control()); + + if (ac) { + ac->set_value (!ac->get_value(), Controllable::UseGroup); } } @@ -451,8 +520,14 @@ EditorRoutes::on_tv_solo_safe_toggled (std::string const & path_string) TimeAxisView *tv = row[_columns.tv]; RouteTimeAxisView* rtv = dynamic_cast (tv); - if (rtv) { - rtv->route()->set_solo_safe (!rtv->route()->solo_safe(), this); + if (!rtv) { + return; + } + + boost::shared_ptr ac (rtv->route()->solo_safe_control()); + + if (ac) { + ac->set_value (!ac->get_value(), Controllable::UseGroup); } } @@ -475,38 +550,23 @@ EditorRoutes::build_menu () items.push_back (MenuElem (_("Hide All Audio Busses"), sigc::mem_fun (*this, &EditorRoutes::hide_all_audiobus))); items.push_back (MenuElem (_("Show All Midi Tracks"), sigc::mem_fun (*this, &EditorRoutes::show_all_miditracks))); items.push_back (MenuElem (_("Hide All Midi Tracks"), sigc::mem_fun (*this, &EditorRoutes::hide_all_miditracks))); - items.push_back (MenuElem (_("Show Tracks With Regions Under Playhead"), sigc::mem_fun (*this, &EditorRoutes::show_tracks_with_regions_at_playhead))); -} - -void -EditorRoutes::show_menu () -{ - if (_menu == 0) { - build_menu (); - } - - _menu->popup (1, gtk_get_current_event_time()); + items.push_back (MenuElem (_("Only Show Tracks with Regions Under Playhead"), sigc::mem_fun (*this, &EditorRoutes::show_tracks_with_regions_at_playhead))); } void -EditorRoutes::redisplay () +EditorRoutes::redisplay_real () { - if (_no_redisplay || !_session || _session->deletion_in_progress()) { - return; - } - TreeModel::Children rows = _model->children(); TreeModel::Children::iterator i; uint32_t position; /* n will be the count of tracks plus children (updated by TimeAxisView::show_at), - so we will use that to know where to put things. - */ + * so we will use that to know where to put things. + */ int n; for (n = 0, position = 0, i = rows.begin(); i != rows.end(); ++i) { TimeAxisView *tv = (*i)[_columns.tv]; - boost::shared_ptr route = (*i)[_columns.route]; if (tv == 0) { // just a "title" row @@ -518,7 +578,6 @@ EditorRoutes::redisplay () /* show or hide the TimeAxisView */ if (visible) { position += tv->show_at (position, n, &_editor->edit_controls_vbox); - tv->clip_to_viewport (); } else { tv->hide (); } @@ -527,40 +586,85 @@ EditorRoutes::redisplay () } /* whenever we go idle, update the track view list to reflect the new order. - we can't do this here, because we could mess up something that is traversing - the track order and has caused a redisplay of the list. - */ + * we can't do this here, because we could mess up something that is traversing + * the track order and has caused a redisplay of the list. + */ Glib::signal_idle().connect (sigc::mem_fun (*_editor, &Editor::sync_track_view_list_and_routes)); - _editor->reset_controls_layout_height (position); - _editor->reset_controls_layout_width (); - _editor->full_canvas_height = position + _editor->canvas_timebars_vsize; - _editor->vertical_adjustment.set_upper (_editor->full_canvas_height); + _editor->reset_controls_layout_height (position); + _editor->reset_controls_layout_width (); + _editor->_full_canvas_height = position; - if ((_editor->vertical_adjustment.get_value() + _editor->_canvas_height) > _editor->vertical_adjustment.get_upper()) { + if ((_editor->vertical_adjustment.get_value() + _editor->_visible_canvas_height) > _editor->vertical_adjustment.get_upper()) { /* - We're increasing the size of the canvas while the bottom is visible. - We scroll down to keep in step with the controls layout. - */ - _editor->vertical_adjustment.set_value (_editor->full_canvas_height - _editor->_canvas_height); + * We're increasing the size of the canvas while the bottom is visible. + * We scroll down to keep in step with the controls layout. + */ + _editor->vertical_adjustment.set_value (_editor->_full_canvas_height - _editor->_visible_canvas_height); } } void -EditorRoutes::route_deleted (Gtk::TreeModel::Path const &) +EditorRoutes::redisplay () { - /* this happens as the second step of a DnD within the treeview as well - as when a row/route is actually deleted. - */ + if (!_session || _session->deletion_in_progress()) { + return; + } + + if (_no_redisplay) { + _redisplay_on_resume = true; + return; + } + + // model deprecated g_atomic_int_exchange_and_add(, 1) + g_atomic_int_inc(const_cast(&_redisplay_active)); + if (!g_atomic_int_compare_and_exchange (const_cast(&_redisplay_active), 1, 1)) { + /* recursive re-display can happen if redisplay shows/hides a TrackView + * which has children and their display status changes as result. + */ + return; + } + + redisplay_real (); + + while (!g_atomic_int_compare_and_exchange (const_cast(&_redisplay_active), 1, 0)) { + g_atomic_int_set(const_cast(&_redisplay_active), 1); + redisplay_real (); + } +} + +void +EditorRoutes::row_deleted (Gtk::TreeModel::Path const &) +{ + if (!_session || _session->deletion_in_progress()) { + return; + } + /* this happens as the second step of a DnD within the treeview, and + * when a route is actually removed. we don't differentiate between + * the two cases. + * + * note that the sync_presentation_info_from_treeview() step may not + * actually change any presentation info (e.g. the last track may be + * removed, so all other tracks keep the same presentation info), which + * means that no redisplay would happen. so we have to force a + * redisplay. + */ + DEBUG_TRACE (DEBUG::OrderKeys, "editor routes treeview row deleted\n"); - sync_order_keys_from_treeview (); + + DisplaySuspender ds; + sync_presentation_info_from_treeview (); } void EditorRoutes::reordered (TreeModel::Path const &, TreeModel::iterator const &, int* /*what*/) { + /* reordering implies that RID's will change, so + sync_presentation_info_from_treeview() will cause a redisplay. + */ + DEBUG_TRACE (DEBUG::OrderKeys, "editor routes treeview reordered\n"); - sync_order_keys_from_treeview (); + sync_presentation_info_from_treeview (); } void @@ -570,6 +674,7 @@ EditorRoutes::visible_changed (std::string const & path) return; } + DisplaySuspender ds; TreeIter iter; if ((iter = _model->get_iter (path))) { @@ -592,88 +697,150 @@ EditorRoutes::active_changed (std::string const & path) } Gtk::TreeModel::Row row = *_model->get_iter (path); - boost::shared_ptr route = row[_columns.route]; - bool const active = row[_columns.active]; - route->set_active (!active, this); + boost::shared_ptr stripable = row[_columns.stripable]; + boost::shared_ptr route = boost::dynamic_pointer_cast (stripable); + if (route) { + bool const active = row[_columns.active]; + route->set_active (!active, this); + } } void -EditorRoutes::routes_added (list routes) +EditorRoutes::time_axis_views_added (list tavs) { - TreeModel::Row row; PBD::Unwinder at (_adding_routes, true); + bool from_scratch = (_model->children().size() == 0); + Gtk::TreeModel::Children::iterator insert_iter = _model->children().end(); - suspend_redisplay (); + for (Gtk::TreeModel::Children::iterator it = _model->children().begin(); it != _model->children().end(); ++it) { - _display.set_model (Glib::RefPtr()); + boost::shared_ptr r = (*it)[_columns.stripable]; - for (list::iterator x = routes.begin(); x != routes.end(); ++x) { + if (r->presentation_info().order() == (tavs.front()->stripable()->presentation_info().order() + tavs.size())) { + insert_iter = it; + break; + } + } - boost::shared_ptr midi_trk = boost::dynamic_pointer_cast ((*x)->route()); + { + PBD::Unwinder uw (_ignore_selection_change, true); + _display.set_model (Glib::RefPtr()); + } - row = *(_model->append ()); + for (list::iterator x = tavs.begin(); x != tavs.end(); ++x) { - row[_columns.text] = (*x)->route()->name(); - row[_columns.visible] = (*x)->marked_for_display(); - row[_columns.active] = (*x)->route()->active (); - row[_columns.tv] = *x; - row[_columns.route] = (*x)->route (); - row[_columns.is_track] = (boost::dynamic_pointer_cast ((*x)->route()) != 0); + VCATimeAxisView* vtav = dynamic_cast (*x); + RouteTimeAxisView* rtav = dynamic_cast (*x); - if (midi_trk) { - row[_columns.is_input_active] = midi_trk->input_active (); - row[_columns.is_midi] = true; - } else { + TreeModel::Row row = *(_model->insert (insert_iter)); + + boost::shared_ptr stripable; + boost::shared_ptr midi_trk; + + if (vtav) { + + stripable = vtav->vca(); + + row[_columns.is_track] = false; row[_columns.is_input_active] = false; row[_columns.is_midi] = false; + + } else if (rtav) { + + stripable = rtav->route (); + midi_trk= boost::dynamic_pointer_cast (stripable); + + row[_columns.is_track] = (boost::dynamic_pointer_cast (stripable) != 0); + + if (midi_trk) { + row[_columns.is_input_active] = midi_trk->input_active (); + row[_columns.is_midi] = true; + } else { + row[_columns.is_input_active] = false; + row[_columns.is_midi] = false; + } + } + + if (!stripable) { + continue; } - row[_columns.mute_state] = (*x)->route()->muted() ? Gtkmm2ext::ExplicitActive : Gtkmm2ext::Off; - row[_columns.solo_state] = RouteUI::solo_active_state ((*x)->route()); - row[_columns.solo_visible] = !(*x)->route()->is_master (); - row[_columns.solo_isolate_state] = (*x)->route()->solo_isolated(); - row[_columns.solo_safe_state] = (*x)->route()->solo_safe(); + row[_columns.text] = stripable->name(); + row[_columns.visible] = (*x)->marked_for_display(); + row[_columns.active] = true; + row[_columns.tv] = *x; + row[_columns.stripable] = stripable; + row[_columns.mute_state] = RouteUI::mute_active_state (_session, stripable); + row[_columns.solo_state] = RouteUI::solo_active_state (stripable); + row[_columns.solo_visible] = true; + row[_columns.solo_isolate_state] = RouteUI::solo_isolate_active_state (stripable); + row[_columns.solo_safe_state] = RouteUI::solo_safe_active_state (stripable); row[_columns.name_editable] = true; - boost::weak_ptr wr ((*x)->route()); + boost::weak_ptr ws (stripable); - (*x)->route()->gui_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::handle_gui_changes, this, _1, _2), gui_context()); - (*x)->route()->PropertyChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::route_property_changed, this, _1, wr), gui_context()); + /* for now, we need both of these. PropertyChanged covers on + * pre-defined, "global" things of interest to a + * UI. gui_changed covers arbitrary, un-enumerated, un-typed + * changes that may only be of interest to a particular + * UI (e.g. track-height is not of any relevant to OSC) + */ + + stripable->gui_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::handle_gui_changes, this, _1, _2), gui_context()); + stripable->PropertyChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::route_property_changed, this, _1, ws), gui_context()); + stripable->presentation_info().PropertyChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::route_property_changed, this, _1, ws), gui_context()); - if ((*x)->is_track()) { - boost::shared_ptr t = boost::dynamic_pointer_cast ((*x)->route()); - t->RecordEnableChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_rec_display, this), gui_context()); + if (boost::dynamic_pointer_cast (stripable)) { + boost::shared_ptr t = boost::dynamic_pointer_cast (stripable); + t->rec_enable_control()->Changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_rec_display, this), gui_context()); + t->rec_safe_control()->Changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_rec_display, this), gui_context()); } - if ((*x)->is_midi_track()) { - boost::shared_ptr t = boost::dynamic_pointer_cast ((*x)->route()); - t->StepEditStatusChange.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_rec_display, this), gui_context()); - t->InputActiveChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_input_active_display, this), gui_context()); + if (midi_trk) { + midi_trk->StepEditStatusChange.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_rec_display, this), gui_context()); + midi_trk->InputActiveChanged.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_input_active_display, this), gui_context()); } - (*x)->route()->mute_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_mute_display, this), gui_context()); - (*x)->route()->solo_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_solo_display, this, _1), gui_context()); - (*x)->route()->listen_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_solo_display, this, _1), gui_context()); - (*x)->route()->solo_isolated_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_solo_isolate_display, this), gui_context()); - (*x)->route()->solo_safe_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_solo_safe_display, this), gui_context()); - (*x)->route()->active_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_active_display, this), gui_context ()); + boost::shared_ptr ac; + if ((ac = stripable->mute_control()) != 0) { + ac->Changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_mute_display, this), gui_context()); + } + if ((ac = stripable->solo_control()) != 0) { + ac->Changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_solo_display, this), gui_context()); + } + if ((ac = stripable->solo_isolate_control()) != 0) { + ac->Changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_solo_isolate_display, this), gui_context()); + } + if ((ac = stripable->solo_safe_control()) != 0) { + ac->Changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_solo_safe_display, this), gui_context()); + } + + if (rtav) { + rtav->route()->active_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::update_active_display, this), gui_context ()); + } } update_rec_display (); update_mute_display (); - update_solo_display (true); + update_solo_display (); update_solo_isolate_display (); update_solo_safe_display (); update_input_active_display (); update_active_display (); - resume_redisplay (); - _display.set_model (_model); + { + PBD::Unwinder uw (_ignore_selection_change, true); + _display.set_model (_model); + } /* now update route order keys from the treeview/track display order */ - sync_order_keys_from_treeview (); + if (!from_scratch) { + sync_presentation_info_from_treeview (); + } + + redisplay (); } void @@ -687,7 +854,6 @@ EditorRoutes::handle_gui_changes (string const & what, void*) /* Optional :make tracks change height while it happens, instead of on first-idle */ - //update_canvas_now (); redisplay (); } @@ -704,30 +870,31 @@ EditorRoutes::route_removed (TimeAxisView *tv) TreeModel::Children rows = _model->children(); TreeModel::Children::iterator ri; + PBD::Unwinder uw (_ignore_selection_change, true); + for (ri = rows.begin(); ri != rows.end(); ++ri) { if ((*ri)[_columns.tv] == tv) { + PBD::Unwinder uw (_route_deletion_in_progress, true); _model->erase (ri); break; } } - - /* the deleted signal for the treeview/model will take - care of any updates. - */ } void -EditorRoutes::route_property_changed (const PropertyChange& what_changed, boost::weak_ptr r) +EditorRoutes::route_property_changed (const PropertyChange& what_changed, boost::weak_ptr s) { - if (!what_changed.contains (ARDOUR::Properties::name)) { + if (!what_changed.contains (ARDOUR::Properties::hidden) && !what_changed.contains (ARDOUR::Properties::name)) { return; } - ENSURE_GUI_THREAD (*this, &EditorRoutes::route_name_changed, r) + if (_adding_routes) { + return; + } - boost::shared_ptr route = r.lock (); + boost::shared_ptr stripable = s.lock (); - if (!route) { + if (!stripable) { return; } @@ -735,9 +902,22 @@ EditorRoutes::route_property_changed (const PropertyChange& what_changed, boost: TreeModel::Children::iterator i; for (i = rows.begin(); i != rows.end(); ++i) { - boost::shared_ptr t = (*i)[_columns.route]; - if (t == route) { - (*i)[_columns.text] = route->name(); + + boost::shared_ptr ss = (*i)[_columns.stripable]; + + if (ss == stripable) { + + if (what_changed.contains (ARDOUR::Properties::name)) { + (*i)[_columns.text] = stripable->name(); + break; + } + + if (what_changed.contains (ARDOUR::Properties::hidden)) { + (*i)[_columns.visible] = !stripable->presentation_info().hidden(); + redisplay (); + + } + break; } } @@ -746,12 +926,8 @@ EditorRoutes::route_property_changed (const PropertyChange& what_changed, boost: void EditorRoutes::update_active_display () { - TreeModel::Children rows = _model->children(); - TreeModel::Children::iterator i; - - for (i = rows.begin(); i != rows.end(); ++i) { - boost::shared_ptr route = (*i)[_columns.route]; - (*i)[_columns.active] = route->active (); + if (g_atomic_int_compare_and_exchange (const_cast(&_queue_tv_update), 0, 1)) { + Glib::signal_idle().connect (sigc::mem_fun (*this, &EditorRoutes::idle_update_mute_rec_solo_etc)); } } @@ -761,19 +937,16 @@ EditorRoutes::update_visibility () TreeModel::Children rows = _model->children(); TreeModel::Children::iterator i; - suspend_redisplay (); + DisplaySuspender ds; for (i = rows.begin(); i != rows.end(); ++i) { TimeAxisView *tv = (*i)[_columns.tv]; (*i)[_columns.visible] = tv->marked_for_display (); } - /* force route order keys catch up with visibility changes - */ - - sync_order_keys_from_treeview (); + /* force route order keys catch up with visibility changes */ - resume_redisplay (); + sync_presentation_info_from_treeview (); } void @@ -810,196 +983,138 @@ EditorRoutes::show_track_in_display (TimeAxisView& tv) } void -EditorRoutes::reset_remote_control_ids () -{ - if (Config->get_remote_model() != EditorOrdered || !_session || _session->deletion_in_progress()) { - return; - } - - TreeModel::Children rows = _model->children(); - - if (rows.empty()) { - return; - } - - - DEBUG_TRACE (DEBUG::OrderKeys, "editor reset remote control ids\n"); - - TreeModel::Children::iterator ri; - bool rid_change = false; - uint32_t rid = 1; - uint32_t invisible_key = UINT32_MAX; - - for (ri = rows.begin(); ri != rows.end(); ++ri) { - - boost::shared_ptr route = (*ri)[_columns.route]; - bool visible = (*ri)[_columns.visible]; - - - if (!route->is_master() && !route->is_monitor()) { - - uint32_t new_rid = (visible ? rid : invisible_key--); - - if (new_rid != route->remote_control_id()) { - route->set_remote_control_id_from_order_key (EditorSort, new_rid); - rid_change = true; - } - - if (visible) { - rid++; - } - - } - } - - if (rid_change) { - /* tell the world that we changed the remote control IDs */ - _session->notify_remote_id_change (); - } -} - - -void -EditorRoutes::sync_order_keys_from_treeview () +EditorRoutes::sync_presentation_info_from_treeview () { if (_ignore_reorder || !_session || _session->deletion_in_progress()) { return; } TreeModel::Children rows = _model->children(); - + if (rows.empty()) { return; } - - DEBUG_TRACE (DEBUG::OrderKeys, "editor sync order keys from treeview\n"); + DEBUG_TRACE (DEBUG::OrderKeys, "editor sync presentation info from treeview\n"); - TreeModel::Children::iterator ri; - bool changed = false; - bool rid_change = false; - uint32_t order = 0; - uint32_t rid = 1; - uint32_t invisible_key = UINT32_MAX; + bool change = false; + PresentationInfo::order_t order = 0; - for (ri = rows.begin(); ri != rows.end(); ++ri) { + PresentationInfo::ChangeSuspender cs; - boost::shared_ptr route = (*ri)[_columns.route]; + for (TreeModel::Children::iterator ri = rows.begin(); ri != rows.end(); ++ri) { + boost::shared_ptr stripable = (*ri)[_columns.stripable]; bool visible = (*ri)[_columns.visible]; - uint32_t old_key = route->order_key (EditorSort); - - if (order != old_key) { - route->set_order_key (EditorSort, order); - - changed = true; +#ifndef NDEBUG // these should not exist in the treeview + assert (stripable); + if (stripable->is_monitor() || stripable->is_auditioner()) { + assert (0); + continue; } +#endif - if ((Config->get_remote_model() == EditorOrdered) && !route->is_master() && !route->is_monitor()) { - - uint32_t new_rid = (visible ? rid : invisible_key--); - - if (new_rid != route->remote_control_id()) { - route->set_remote_control_id_from_order_key (EditorSort, new_rid); - rid_change = true; - } - - if (visible) { - rid++; - } + stripable->presentation_info().set_hidden (!visible); + if (order != stripable->presentation_info().order()) { + stripable->set_presentation_order (order); + change = true; } - ++order; } - - if (changed) { - /* tell the world that we changed the editor sort keys */ - _session->sync_order_keys (EditorSort); - } - if (rid_change) { - /* tell the world that we changed the remote control IDs */ - _session->notify_remote_id_change (); + change |= _session->ensure_stripable_sort_order (); + + if (change) { + _session->set_dirty(); } } void -EditorRoutes::sync_treeview_from_order_keys (RouteSortOrderKey src) +EditorRoutes::sync_treeview_from_presentation_info (PropertyChange const & what_changed) { - /* Some route order key(s) for `src' has been changed, make sure that + /* Some route order key(s) have been changed, make sure that we update out tree/list model and GUI to reflect the change. */ - if (!_session || _session->deletion_in_progress()) { + if (_ignore_reorder || !_session || _session->deletion_in_progress()) { return; } - DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("editor sync model from order keys, src = %1\n", enum_2_string (src))); + DEBUG_TRACE (DEBUG::OrderKeys, "editor sync model from presentation info.\n"); - if (src == MixerSort) { + PropertyChange hidden_or_order; + hidden_or_order.add (Properties::hidden); + hidden_or_order.add (Properties::order); - if (!Config->get_sync_all_route_ordering()) { - /* mixer sort keys changed - we don't care */ - return; - } + TreeModel::Children rows = _model->children(); - DEBUG_TRACE (DEBUG::OrderKeys, "reset editor order key to match mixer\n"); + bool changed = false; - /* mixer sort keys were changed, update the editor sort - * keys since "sync mixer+editor order" is enabled. - */ + if (what_changed.contains (hidden_or_order)) { + vector neworder; + uint32_t old_order = 0; - boost::shared_ptr r = _session->get_routes (); - - for (RouteList::iterator i = r->begin(); i != r->end(); ++i) { - (*i)->sync_order_keys (src); + if (rows.empty()) { + return; } - } - /* we could get here after either a change in the Mixer or Editor sort - * order, but either way, the mixer order keys reflect the intended - * order for the GUI, so reorder the treeview model to match it. - */ - - vector neworder; - TreeModel::Children rows = _model->children(); - uint32_t old_order = 0; - bool changed = false; - - if (rows.empty()) { - return; - } - - OrderKeySortedRoutes sorted_routes; + TreeOrderKeys sorted; + for (TreeModel::Children::iterator ri = rows.begin(); ri != rows.end(); ++ri, ++old_order) { + boost::shared_ptr stripable = (*ri)[_columns.stripable]; + /* use global order */ + sorted.push_back (TreeOrderKey (old_order, stripable)); + } - for (TreeModel::Children::iterator ri = rows.begin(); ri != rows.end(); ++ri, ++old_order) { - boost::shared_ptr route = (*ri)[_columns.route]; - sorted_routes.push_back (RoutePlusOrderKey (route, old_order, route->order_key (EditorSort))); - } + TreeOrderKeySorter cmp; - SortByNewDisplayOrder cmp; + sort (sorted.begin(), sorted.end(), cmp); + neworder.assign (sorted.size(), 0); - sort (sorted_routes.begin(), sorted_routes.end(), cmp); - neworder.assign (sorted_routes.size(), 0); + uint32_t n = 0; - uint32_t n = 0; - - for (OrderKeySortedRoutes::iterator sr = sorted_routes.begin(); sr != sorted_routes.end(); ++sr, ++n) { + for (TreeOrderKeys::iterator sr = sorted.begin(); sr != sorted.end(); ++sr, ++n) { - neworder[n] = sr->old_display_order; + neworder[n] = sr->old_display_order; - if (sr->old_display_order != n) { - changed = true; + if (sr->old_display_order != n) { + changed = true; + } } - DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("EDITOR change order for %1 from %2 to %3\n", - sr->route->name(), sr->old_display_order, n)); + if (changed) { + Unwinder uw (_ignore_reorder, true); + /* prevent traverse_cells: assertion 'row_path != NULL' + * in case of DnD re-order: row-removed + row-inserted. + * + * The rows (stripables) are not actually removed from the model, + * but only from the display in the DnDTreeView. + * ->reorder() will fail to find the row_path. + * (re-order drag -> remove row -> sync PI from TV -> notify -> sync TV from PI -> crash) + */ + Unwinder uw2 (_ignore_selection_change, true); + + _display.unset_model(); + _model->reorder (neworder); + _display.set_model (_model); + } } - if (changed) { - Unwinder uw (_ignore_reorder, true); - _model->reorder (neworder); + if (changed || what_changed.contains (Properties::selected)) { + /* by the time this is invoked, the GUI Selection model has + * already updated itself. + */ + PBD::Unwinder uw (_ignore_selection_change, true); + + /* set the treeview model selection state */ + for (TreeModel::Children::iterator ri = rows.begin(); ri != rows.end(); ++ri) { + boost::shared_ptr stripable = (*ri)[_columns.stripable]; + if (stripable && stripable->is_selected()) { + _display.get_selection()->select (*ri); + } else { + _display.get_selection()->unselect (*ri); + } + } } redisplay (); @@ -1011,7 +1126,7 @@ EditorRoutes::hide_all_tracks (bool /*with_select*/) TreeModel::Children rows = _model->children(); TreeModel::Children::iterator i; - suspend_redisplay (); + DisplaySuspender ds; for (i = rows.begin(); i != rows.end(); ++i) { @@ -1024,14 +1139,6 @@ EditorRoutes::hide_all_tracks (bool /*with_select*/) row[_columns.visible] = false; } - - resume_redisplay (); - - /* XXX this seems like a hack and half, but its not clear where to put this - otherwise. - */ - - //reset_scrolling_region (); } void @@ -1040,7 +1147,7 @@ EditorRoutes::set_all_tracks_visibility (bool yn) TreeModel::Children rows = _model->children(); TreeModel::Children::iterator i; - suspend_redisplay (); + DisplaySuspender ds; for (i = rows.begin(); i != rows.end(); ++i) { @@ -1051,15 +1158,14 @@ EditorRoutes::set_all_tracks_visibility (bool yn) continue; } + tv->set_marked_for_display (yn); (*i)[_columns.visible] = yn; } /* force route order keys catch up with visibility changes */ - sync_order_keys_from_treeview (); - - resume_redisplay (); + sync_presentation_info_from_treeview (); } void @@ -1068,7 +1174,7 @@ EditorRoutes::set_all_audio_midi_visibility (int tracks, bool yn) TreeModel::Children rows = _model->children(); TreeModel::Children::iterator i; - suspend_redisplay (); + DisplaySuspender ds; for (i = rows.begin(); i != rows.end(); ++i) { @@ -1085,17 +1191,20 @@ EditorRoutes::set_all_audio_midi_visibility (int tracks, bool yn) if ((atv = dynamic_cast(tv)) != 0) { switch (tracks) { case 0: + atv->set_marked_for_display (yn); (*i)[_columns.visible] = yn; break; case 1: if (atv->is_audio_track()) { + atv->set_marked_for_display (yn); (*i)[_columns.visible] = yn; } break; case 2: if (!atv->is_audio_track()) { + atv->set_marked_for_display (yn); (*i)[_columns.visible] = yn; } break; @@ -1104,11 +1213,13 @@ EditorRoutes::set_all_audio_midi_visibility (int tracks, bool yn) else if ((mtv = dynamic_cast(tv)) != 0) { switch (tracks) { case 0: + mtv->set_marked_for_display (yn); (*i)[_columns.visible] = yn; break; case 3: if (mtv->is_midi_track()) { + mtv->set_marked_for_display (yn); (*i)[_columns.visible] = yn; } break; @@ -1119,9 +1230,7 @@ EditorRoutes::set_all_audio_midi_visibility (int tracks, bool yn) /* force route order keys catch up with visibility changes */ - sync_order_keys_from_treeview (); - - resume_redisplay (); + sync_presentation_info_from_treeview (); } void @@ -1172,57 +1281,60 @@ EditorRoutes::hide_all_miditracks () bool EditorRoutes::key_press (GdkEventKey* ev) { - TreeViewColumn *col; - boost::shared_ptr rl (new RouteList); - TreePath path; - - switch (ev->keyval) { - case GDK_Tab: - case GDK_ISO_Left_Tab: - - /* If we appear to be editing something, leave that cleanly and appropriately. - */ - if (name_editable) { - name_editable->editing_done (); - name_editable = 0; - } - - col = _display.get_column (_name_column); // select&focus on name column - - if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) { - treeview_select_previous (_display, _model, col); - } else { - treeview_select_next (_display, _model, col); - } - - return true; - break; - - case 'm': - if (get_relevant_routes (rl)) { - _session->set_mute (rl, !rl->front()->muted(), Session::rt_cleanup); - } - return true; - break; - - case 's': - if (Config->get_solo_control_is_listen_control()) { - _session->set_listen (rl, !rl->front()->listening_via_monitor(), Session::rt_cleanup); - } else { - _session->set_solo (rl, !rl->front()->self_soloed(), Session::rt_cleanup); - } - return true; - break; + TreeViewColumn *col; + boost::shared_ptr rl (new RouteList); + TreePath path; + + switch (ev->keyval) { + case GDK_Tab: + case GDK_ISO_Left_Tab: + + /* If we appear to be editing something, leave that cleanly and appropriately. */ + if (name_editable) { + name_editable->editing_done (); + name_editable = 0; + } + + col = _display.get_column (_name_column); // select&focus on name column + + if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) { + treeview_select_previous (_display, _model, col); + } else { + treeview_select_next (_display, _model, col); + } - case 'r': - if (get_relevant_routes (rl)) { - _session->set_record_enabled (rl, !rl->front()->record_enabled(), Session::rt_cleanup); - } - break; + return true; + break; + + case 'm': + if (get_relevant_routes (rl)) { + _session->set_controls (route_list_to_control_list (rl, &Stripable::mute_control), rl->front()->muted() ? 0.0 : 1.0, Controllable::NoGroup); + } + return true; + break; - default: - break; - } + case 's': + if (get_relevant_routes (rl)) { + _session->set_controls (route_list_to_control_list (rl, &Stripable::solo_control), rl->front()->self_soloed() ? 0.0 : 1.0, Controllable::NoGroup); + } + return true; + break; + + case 'r': + if (get_relevant_routes (rl)) { + for (RouteList::const_iterator r = rl->begin(); r != rl->end(); ++r) { + boost::shared_ptr t = boost::dynamic_pointer_cast (*r); + if (t) { + _session->set_controls (route_list_to_control_list (rl, &Stripable::rec_enable_control), !t->rec_enable_control()->get_value(), Controllable::NoGroup); + break; + } + } + } + break; + + default: + break; + } return false; } @@ -1230,51 +1342,54 @@ EditorRoutes::key_press (GdkEventKey* ev) bool EditorRoutes::get_relevant_routes (boost::shared_ptr rl) { - TimeAxisView* tv; - RouteTimeAxisView* rtv; + TimeAxisView* tv; + RouteTimeAxisView* rtv; RefPtr selection = _display.get_selection(); - TreePath path; - TreeIter iter; + TreePath path; + TreeIter iter; - if (selection->count_selected_rows() != 0) { + if (selection->count_selected_rows() != 0) { - /* use selection */ + /* use selection */ - RefPtr tm = RefPtr::cast_dynamic (_model); - iter = selection->get_selected (tm); + RefPtr tm = RefPtr::cast_dynamic (_model); + iter = selection->get_selected (tm); - } else { - /* use mouse pointer */ + } else { + /* use mouse pointer */ - int x, y; - int bx, by; + int x, y; + int bx, by; - _display.get_pointer (x, y); - _display.convert_widget_to_bin_window_coords (x, y, bx, by); + _display.get_pointer (x, y); + _display.convert_widget_to_bin_window_coords (x, y, bx, by); - if (_display.get_path_at_pos (bx, by, path)) { - iter = _model->get_iter (path); - } - } + if (_display.get_path_at_pos (bx, by, path)) { + iter = _model->get_iter (path); + } + } - if (iter) { - tv = (*iter)[_columns.tv]; - if (tv) { - rtv = dynamic_cast(tv); - if (rtv) { - rl->push_back (rtv->route()); - } - } - } + if (iter) { + tv = (*iter)[_columns.tv]; + if (tv) { + rtv = dynamic_cast(tv); + if (rtv) { + rl->push_back (rtv->route()); + } + } + } - return !rl->empty(); + return !rl->empty(); } bool EditorRoutes::button_press (GdkEventButton* ev) { if (Keyboard::is_context_menu_event (ev)) { - show_menu (); + if (_menu == 0) { + build_menu (); + } + _menu->popup (ev->button, ev->time); return true; } @@ -1294,230 +1409,208 @@ EditorRoutes::button_press (GdkEventButton* ev) //Scroll editor canvas to selected track if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) { - // Get the model row. Gtk::TreeModel::Row row = *_model->get_iter (path); - TimeAxisView *tv = row[_columns.tv]; - int y_pos = tv->y_position(); - - //Clamp the y pos so that we do not extend beyond the canvas full height. - if (_editor->full_canvas_height - y_pos < _editor->_canvas_height){ - y_pos = _editor->full_canvas_height - _editor->_canvas_height; + if (tv) { + _editor->ensure_time_axis_view_is_visible (*tv, true); } + } + + return false; +} + +void +EditorRoutes::selection_changed () +{ + if (_ignore_selection_change) { + return; + } + + _editor->begin_reversible_selection_op (X_("Select Track from Route List")); + + if (_display.get_selection()->count_selected_rows() > 0) { + + TreeIter iter; + TreeView::Selection::ListHandle_Path rows = _display.get_selection()->get_selected_rows (); + TrackViewList selected; + + for (TreeView::Selection::ListHandle_Path::iterator i = rows.begin(); i != rows.end(); ++i) { + + if ((iter = _model->get_iter (*i))) { + + TimeAxisView* tv = (*iter)[_columns.tv]; + selected.push_back (tv); + } - //Only scroll to if the track is visible - if(y_pos != -1){ - _editor->reset_y_origin (y_pos); } + + _editor->get_selection().set (selected); + _editor->ensure_time_axis_view_is_visible (*(selected.front()), true); + + } else { + _editor->get_selection().clear_tracks (); } - return false; + _editor->commit_reversible_selection_op (); } bool -EditorRoutes::selection_filter (Glib::RefPtr const &, TreeModel::Path const&, bool /*selected*/) +EditorRoutes::selection_filter (Glib::RefPtr const& model, TreeModel::Path const& path, bool /*selected*/) { - if (selection_countdown) { - if (--selection_countdown == 0) { - return true; - } else { - /* no selection yet ... */ - return false; - } - } + TreeModel::iterator iter = model->get_iter (path); + if (iter) { + boost::shared_ptr stripable = (*iter)[_columns.stripable]; + if (boost::dynamic_pointer_cast (stripable)) { + return false; + } + } + return true; } -struct EditorOrderRouteSorter { - bool operator() (boost::shared_ptr a, boost::shared_ptr b) { - if (a->is_master()) { - /* master before everything else */ - return true; - } else if (b->is_master()) { - /* everything else before master */ - return false; - } - return a->order_key (EditorSort) < b->order_key (EditorSort); - } -}; - void EditorRoutes::initial_display () { - suspend_redisplay (); - _model->clear (); if (!_session) { - resume_redisplay (); + _model->clear (); return; } - boost::shared_ptr routes = _session->get_routes(); - - if (ARDOUR_UI::instance()->session_is_new ()) { + DisplaySuspender ds; + _model->clear (); - /* new session: stamp all routes with the right editor order - * key - */ + StripableList s; - _editor->add_routes (*(routes.get())); - - } else { - - /* existing session: sort a copy of the route list by - * editor-order and add its contents to the display. - */ + RouteList r (*_session->get_routes()); + for (RouteList::iterator ri = r.begin(); ri != r.end(); ++ri) { + s.push_back (*ri); + } - RouteList r (*routes); - EditorOrderRouteSorter sorter; - - r.sort (sorter); - _editor->add_routes (r); - + VCAList v (_session->vca_manager().vcas()); + for (VCAList::iterator vi = v.begin(); vi != v.end(); ++vi) { + s.push_back (*vi); } - resume_redisplay (); + _editor->add_stripables (s); + + sync_treeview_from_presentation_info (Properties::order); } -void -EditorRoutes::display_drag_data_received (const RefPtr& context, - int x, int y, - const SelectionData& data, - guint info, guint time) -{ - if (data.get_target() == "GTK_TREE_MODEL_ROW") { - _display.on_drag_data_received (context, x, y, data, info, time); - return; - } +struct ViewStripable { + TimeAxisView* tav; + boost::shared_ptr stripable; - context->drag_finish (true, false, time); -} + ViewStripable (TimeAxisView* t, boost::shared_ptr s) + : tav (t), stripable (s) {} +}; void EditorRoutes::move_selected_tracks (bool up) { - if (_editor->selection->tracks.empty()) { + TimeAxisView* scroll_to = 0; + StripableList sl; + _session->get_stripables (sl); + + if (sl.size() < 2) { + /* nope */ return; } - typedef std::pair > ViewRoute; - std::list view_routes; - std::vector neworder; - TreeModel::Children rows = _model->children(); - TreeModel::Children::iterator ri; + sl.sort (Stripable::Sorter()); - for (ri = rows.begin(); ri != rows.end(); ++ri) { - TimeAxisView* tv = (*ri)[_columns.tv]; - boost::shared_ptr route = (*ri)[_columns.route]; + std::list view_stripables; + + /* build a list that includes time axis view information */ - view_routes.push_back (ViewRoute (tv, route)); + for (StripableList::const_iterator sli = sl.begin(); sli != sl.end(); ++sli) { + TimeAxisView* tv = _editor->time_axis_view_from_stripable (*sli); + view_stripables.push_back (ViewStripable (tv, *sli)); } - list::iterator trailing; - list::iterator leading; + /* for each selected stripable, move it above or below the adjacent + * stripable that has a time-axis view representation here. If there's + * no such representation, then + */ - if (up) { + list::iterator unselected_neighbour; + list::iterator vsi; - trailing = view_routes.begin(); - leading = view_routes.begin(); + { + PresentationInfo::ChangeSuspender cs; - ++leading; + if (up) { + unselected_neighbour = view_stripables.end (); + vsi = view_stripables.begin(); - while (leading != view_routes.end()) { - if (_editor->selection->selected (leading->first)) { - view_routes.insert (trailing, ViewRoute (leading->first, leading->second)); - leading = view_routes.erase (leading); - } else { - ++leading; - ++trailing; - } - } + while (vsi != view_stripables.end()) { - } else { + if (vsi->stripable->is_selected()) { - /* if we could use reverse_iterator in list::insert, this code - would be a beautiful reflection of the code above. but we can't - and so it looks like a bit of a mess. - */ + if (unselected_neighbour != view_stripables.end()) { - trailing = view_routes.end(); - leading = view_routes.end(); + PresentationInfo::order_t unselected_neighbour_order = unselected_neighbour->stripable->presentation_info().order(); + PresentationInfo::order_t my_order = vsi->stripable->presentation_info().order(); - --leading; if (leading == view_routes.begin()) { return; } - --leading; - --trailing; + unselected_neighbour->stripable->set_presentation_order (my_order); + vsi->stripable->set_presentation_order (unselected_neighbour_order); + + if (!scroll_to) { + scroll_to = vsi->tav; + } + } + + } else { - while (1) { + if (vsi->tav) { + unselected_neighbour = vsi; + } - if (_editor->selection->selected (leading->first)) { - list::iterator tmp; + } - /* need to insert *after* trailing, not *before* it, - which is what insert (iter, val) normally does. - */ + ++vsi; + } - tmp = trailing; - tmp++; + } else { - view_routes.insert (tmp, ViewRoute (leading->first, leading->second)); + unselected_neighbour = view_stripables.end(); + vsi = unselected_neighbour; - /* can't use iter = cont.erase (iter); form here, because - we need iter to move backwards. - */ + do { - tmp = leading; - --tmp; + --vsi; - bool done = false; + if (vsi->stripable->is_selected()) { - if (leading == view_routes.begin()) { - /* the one we've just inserted somewhere else - was the first in the list. erase this copy, - and then break, because we're done. - */ - done = true; - } + if (unselected_neighbour != view_stripables.end()) { - view_routes.erase (leading); + PresentationInfo::order_t unselected_neighbour_order = unselected_neighbour->stripable->presentation_info().order(); + PresentationInfo::order_t my_order = vsi->stripable->presentation_info().order(); - if (done) { - break; - } + unselected_neighbour->stripable->set_presentation_order (my_order); + vsi->stripable->set_presentation_order (unselected_neighbour_order); - leading = tmp; + if (!scroll_to) { + scroll_to = vsi->tav; + } + } - } else { - if (leading == view_routes.begin()) { - break; - } - --leading; - --trailing; - } - }; - } + } else { - for (leading = view_routes.begin(); leading != view_routes.end(); ++leading) { - uint32_t order = leading->second->order_key (EditorSort); - neworder.push_back (order); - } + if (vsi->tav) { + unselected_neighbour = vsi; + } -#ifndef NDEBUG - DEBUG_TRACE (DEBUG::OrderKeys, "New order after moving tracks:\n"); - for (vector::iterator i = neworder.begin(); i != neworder.end(); ++i) { - DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("\t%1\n", *i)); - } - DEBUG_TRACE (DEBUG::OrderKeys, "-------\n"); + } - for (vector::iterator i = neworder.begin(); i != neworder.end(); ++i) { - if (*i >= (int) neworder.size()) { - cerr << "Trying to move something to " << *i << " of " << neworder.size() << endl; + } while (vsi != view_stripables.begin()); } - assert (*i < (int) neworder.size ()); } -#endif - _model->reorder (neworder); + if (scroll_to) { + _editor->ensure_time_axis_view_is_visible (*scroll_to, false); + } } void @@ -1527,11 +1620,11 @@ EditorRoutes::update_input_active_display () TreeModel::Children::iterator i; for (i = rows.begin(); i != rows.end(); ++i) { - boost::shared_ptr route = (*i)[_columns.route]; + boost::shared_ptr stripable = (*i)[_columns.stripable]; + + if (boost::dynamic_pointer_cast (stripable)) { + boost::shared_ptr mt = boost::dynamic_pointer_cast (stripable); - if (boost::dynamic_pointer_cast (route)) { - boost::shared_ptr mt = boost::dynamic_pointer_cast (route); - if (mt) { (*i)[_columns.is_input_active] = mt->input_active(); } @@ -1542,16 +1635,37 @@ EditorRoutes::update_input_active_display () void EditorRoutes::update_rec_display () { + if (g_atomic_int_compare_and_exchange (const_cast(&_queue_tv_update), 0, 1)) { + Glib::signal_idle().connect (sigc::mem_fun (*this, &EditorRoutes::idle_update_mute_rec_solo_etc)); + } +} + +bool +EditorRoutes::idle_update_mute_rec_solo_etc() +{ + g_atomic_int_set (const_cast(&_queue_tv_update), 0); TreeModel::Children rows = _model->children(); TreeModel::Children::iterator i; for (i = rows.begin(); i != rows.end(); ++i) { - boost::shared_ptr route = (*i)[_columns.route]; + boost::shared_ptr stripable = (*i)[_columns.stripable]; + boost::shared_ptr route = boost::dynamic_pointer_cast (stripable); + (*i)[_columns.mute_state] = RouteUI::mute_active_state (_session, stripable); + (*i)[_columns.solo_state] = RouteUI::solo_active_state (stripable); + (*i)[_columns.solo_isolate_state] = RouteUI::solo_isolate_active_state (stripable) ? 1 : 0; + (*i)[_columns.solo_safe_state] = RouteUI::solo_safe_active_state (stripable) ? 1 : 0; + if (route) { + (*i)[_columns.active] = route->active (); + } else { + (*i)[_columns.active] = true; + } + + boost::shared_ptr trk (boost::dynamic_pointer_cast(route)); - if (boost::dynamic_pointer_cast (route)) { + if (trk) { boost::shared_ptr mt = boost::dynamic_pointer_cast (route); - if (route->record_enabled()) { + if (trk->rec_enable_control()->get_value()) { if (_session->record_status() == Session::Recording) { (*i)[_columns.rec_state] = 1; } else { @@ -1563,56 +1677,44 @@ EditorRoutes::update_rec_display () (*i)[_columns.rec_state] = 0; } - (*i)[_columns.name_editable] = !route->record_enabled (); + (*i)[_columns.rec_safe] = trk->rec_safe_control()->get_value(); + (*i)[_columns.name_editable] = !trk->rec_enable_control()->get_value(); } } + + return false; // do not call again (until needed) } + void EditorRoutes::update_mute_display () { - TreeModel::Children rows = _model->children(); - TreeModel::Children::iterator i; - - for (i = rows.begin(); i != rows.end(); ++i) { - boost::shared_ptr route = (*i)[_columns.route]; - (*i)[_columns.mute_state] = RouteUI::mute_active_state (_session, route); + if (g_atomic_int_compare_and_exchange (const_cast(&_queue_tv_update), 0, 1)) { + Glib::signal_idle().connect (sigc::mem_fun (*this, &EditorRoutes::idle_update_mute_rec_solo_etc)); } } void -EditorRoutes::update_solo_display (bool /* selfsoloed */) +EditorRoutes::update_solo_display () { - TreeModel::Children rows = _model->children(); - TreeModel::Children::iterator i; - - for (i = rows.begin(); i != rows.end(); ++i) { - boost::shared_ptr route = (*i)[_columns.route]; - (*i)[_columns.solo_state] = RouteUI::solo_active_state (route); + if (g_atomic_int_compare_and_exchange (const_cast(&_queue_tv_update), 0, 1)) { + Glib::signal_idle().connect (sigc::mem_fun (*this, &EditorRoutes::idle_update_mute_rec_solo_etc)); } } void EditorRoutes::update_solo_isolate_display () { - TreeModel::Children rows = _model->children(); - TreeModel::Children::iterator i; - - for (i = rows.begin(); i != rows.end(); ++i) { - boost::shared_ptr route = (*i)[_columns.route]; - (*i)[_columns.solo_isolate_state] = RouteUI::solo_isolate_active_state (route) ? 1 : 0; + if (g_atomic_int_compare_and_exchange (const_cast(&_queue_tv_update), 0, 1)) { + Glib::signal_idle().connect (sigc::mem_fun (*this, &EditorRoutes::idle_update_mute_rec_solo_etc)); } } void EditorRoutes::update_solo_safe_display () { - TreeModel::Children rows = _model->children(); - TreeModel::Children::iterator i; - - for (i = rows.begin(); i != rows.end(); ++i) { - boost::shared_ptr route = (*i)[_columns.route]; - (*i)[_columns.solo_safe_state] = RouteUI::solo_safe_active_state (route) ? 1 : 0; + if (g_atomic_int_compare_and_exchange (const_cast(&_queue_tv_update), 0, 1)) { + Glib::signal_idle().connect (sigc::mem_fun (*this, &EditorRoutes::idle_update_mute_rec_solo_etc)); } } @@ -1630,6 +1732,7 @@ EditorRoutes::views () const void EditorRoutes::clear () { + PBD::Unwinder uw (_ignore_selection_change, true); _display.set_model (Glib::RefPtr (0)); _model->clear (); _display.set_model (_model); @@ -1638,21 +1741,21 @@ EditorRoutes::clear () void EditorRoutes::name_edit_started (CellEditable* ce, const Glib::ustring&) { - name_editable = ce; + name_editable = ce; - /* give it a special name */ + /* give it a special name */ - Gtk::Entry *e = dynamic_cast (ce); + Gtk::Entry *e = dynamic_cast (ce); - if (e) { - e->set_name (X_("RouteNameEditorEntry")); - } + if (e) { + e->set_name (X_("RouteNameEditorEntry")); + } } void EditorRoutes::name_edit (std::string const & path, std::string const & new_text) { - name_editable = 0; + name_editable = 0; TreeIter iter = _model->get_iter (path); @@ -1660,10 +1763,10 @@ EditorRoutes::name_edit (std::string const & path, std::string const & new_text) return; } - boost::shared_ptr route = (*iter)[_columns.route]; + boost::shared_ptr stripable = (*iter)[_columns.stripable]; - if (route && route->name() != new_text) { - route->set_name (new_text); + if (stripable && stripable->name() != new_text) { + stripable->set_name (new_text); } } @@ -1680,20 +1783,33 @@ EditorRoutes::show_tracks_with_regions_at_playhead () set show; for (RouteList::const_iterator i = r->begin(); i != r->end(); ++i) { - TimeAxisView* tav = _editor->axis_view_from_route (*i); + TimeAxisView* tav = _editor->time_axis_view_from_stripable (*i); if (tav) { show.insert (tav); } } - suspend_redisplay (); + DisplaySuspender ds; TreeModel::Children rows = _model->children (); for (TreeModel::Children::iterator i = rows.begin(); i != rows.end(); ++i) { TimeAxisView* tv = (*i)[_columns.tv]; - (*i)[_columns.visible] = (show.find (tv) != show.end()); + bool to_show = (show.find (tv) != show.end()); + + tv->set_marked_for_display (to_show); + (*i)[_columns.visible] = to_show; } - resume_redisplay (); + /* force route order keys catch up with visibility changes + */ + + sync_presentation_info_from_treeview (); } +int +EditorRoutes::plugin_setup (boost::shared_ptr r, boost::shared_ptr pi, ARDOUR::Route::PluginSetupOptions flags) +{ + PluginSetupDialog psd (r, pi, flags); + int rv = psd.run (); + return rv + (psd.fan_out() ? 4 : 0); +}