use VCA full name in strips and track headers
[ardour.git] / gtk2_ardour / editor.cc
index 7526c9677d22fa3d3b5c31f6fb2d52acdda71f4a..62ad00a1d99921bdb7ecc2c9ae995931e64e504f 100644 (file)
@@ -578,7 +578,6 @@ Editor::Editor ()
        _summary = new EditorSummary (this);
 
        selection->TimeChanged.connect (sigc::mem_fun(*this, &Editor::time_selection_changed));
-       selection->TracksChanged.connect (sigc::mem_fun(*this, &Editor::track_selection_changed));
 
        editor_regions_selection_changed_connection = selection->RegionsChanged.connect (sigc::mem_fun(*this, &Editor::region_selection_changed));
 
@@ -644,7 +643,7 @@ Editor::Editor ()
        _regions = new EditorRegions (this);
        _snapshots = new EditorSnapshots (this);
        _locations = new EditorLocations (this);
-       _time_info_box = new TimeInfoBox ();
+       _time_info_box = new TimeInfoBox (true);
 
        /* these are static location signals */
 
@@ -724,11 +723,10 @@ Editor::Editor ()
        edit_pane.set_check_divider_position (true);
        edit_pane.add (editor_summary_pane);
        if (!ARDOUR::Profile->get_trx()) {
-               VBox* editor_list_vbox = manage (new VBox);
-               editor_list_vbox->pack_start (*_time_info_box, false, false, 0);
-               editor_list_vbox->pack_start (_the_notebook);
-               edit_pane.add (*editor_list_vbox);
-               edit_pane.set_child_minsize (*editor_list_vbox, 30); /* rough guess at width of notebook tabs */
+               _editor_list_vbox.pack_start (*_time_info_box, false, false, 0);
+               _editor_list_vbox.pack_start (_the_notebook);
+               edit_pane.add (_editor_list_vbox);
+               edit_pane.set_child_minsize (_editor_list_vbox, 30); /* rough guess at width of notebook tabs */
        }
 
        edit_pane.set_drag_cursor (*_cursors->expand_left_right);
@@ -758,9 +756,23 @@ Editor::Editor ()
        global_vpacker.set_spacing (2);
        global_vpacker.set_border_width (0);
 
-       global_vpacker.pack_start (toolbar_hbox, false, false);
-       global_vpacker.pack_start (edit_pane, true, true);
-       global_hpacker.pack_start (global_vpacker, true, true);
+       //the next three EventBoxes provide the ability for their child widgets to have a background color.  That is all.
+
+       Gtk::EventBox* ebox = manage (new Gtk::EventBox);  //a themeable box
+       ebox->set_name("EditorWindow");
+       ebox->add (toolbar_hbox);
+
+       Gtk::EventBox* epane_box = manage (new Gtk::EventBox);  //a themeable box
+       epane_box->set_name("EditorWindow");
+       epane_box->add (edit_pane);
+
+       Gtk::EventBox* epane_box2 = manage (new Gtk::EventBox);  //a themeable box
+       epane_box2->set_name("EditorWindow");
+       epane_box2->add (global_vpacker);
+
+       global_vpacker.pack_start (*ebox, false, false);
+       global_vpacker.pack_start (*epane_box, true, true);
+       global_hpacker.pack_start (*epane_box2, true, true);
 
        /* need to show the "contents" widget so that notebook will show if tab is switched to
         */
@@ -816,6 +828,8 @@ Editor::Editor ()
 
        BasicUI::AccessAction.connect (*this, invalidator (*this), boost::bind (&Editor::access_action, this, _1, _2), gui_context());
 
+       PresentationInfo::Change.connect (*this, invalidator (*this), boost::bind (&Editor::presentation_info_changed, this, _1), gui_context());
+
        /* handle escape */
 
        ARDOUR_UI::instance()->Escape.connect (*this, invalidator (*this), boost::bind (&Editor::escape, this), gui_context());
@@ -877,10 +891,29 @@ Editor::~Editor()
        delete _locations;
        delete _playlist_selector;
        delete _time_info_box;
+       delete selection;
+       delete cut_buffer;
+       delete _cursors;
+
+       LuaInstance::destroy_instance ();
 
        for (list<XMLNode *>::iterator i = selection_op_history.begin(); i != selection_op_history.end(); ++i) {
                delete *i;
        }
+       for (std::map<ARDOUR::FadeShape, Gtk::Image*>::const_iterator i = _xfade_in_images.begin(); i != _xfade_in_images.end (); ++i) {
+               delete i->second;
+       }
+       for (std::map<ARDOUR::FadeShape, Gtk::Image*>::const_iterator i = _xfade_out_images.begin(); i != _xfade_out_images.end (); ++i) {
+               delete i->second;
+       }
+}
+
+void
+Editor::presentation_info_changed (PropertyChange const & what_changed)
+{
+       if (what_changed.contains (Properties::selected)) {
+               track_selection_changed ();
+       }
 }
 
 XMLNode*
@@ -1371,7 +1404,7 @@ Editor::set_session (Session *t)
        _session->RouteAdded.connect (_session_connections, invalidator (*this), boost::bind (&Editor::add_routes, this, _1), gui_context());
        _session->DirtyChanged.connect (_session_connections, invalidator (*this), boost::bind (&Editor::update_title, this), gui_context());
        _session->tempo_map().PropertyChanged.connect (_session_connections, invalidator (*this), boost::bind (&Editor::tempo_map_changed, this, _1), gui_context());
-       _session->tempo_map().MetricPositionChanged.connect (_session_connections, invalidator (*this), boost::bind (&Editor::marker_position_changed, this), gui_context());
+       _session->tempo_map().MetricPositionChanged.connect (_session_connections, invalidator (*this), boost::bind (&Editor::tempometric_position_changed, this, _1), gui_context());
        _session->Located.connect (_session_connections, invalidator (*this), boost::bind (&Editor::located, this), gui_context());
        _session->config.ParameterChanged.connect (_session_connections, invalidator (*this), boost::bind (&Editor::parameter_changed, this, _1), gui_context());
        _session->StateSaved.connect (_session_connections, invalidator (*this), boost::bind (&Editor::session_state_saved, this, _1), gui_context());
@@ -2920,11 +2953,16 @@ Editor::snap_to_internal (framepos_t& start, RoundMode direction, bool for_mark,
                } else if (after == max_framepos) {
                        start = before;
                } else if (before != max_framepos && after != max_framepos) {
-                       /* have before and after */
-                       if ((start - before) < (after - start)) {
-                               start = before;
-                       } else {
+                       if ((direction == RoundUpMaybe || direction == RoundUpAlways))
                                start = after;
+                       else if ((direction == RoundDownMaybe || direction == RoundDownAlways))
+                               start = before;
+                       else if (direction ==  0 ) {
+                               if ((start - before) < (after - start)) {
+                                       start = before;
+                               } else {
+                                       start = after;
+                               }
                        }
                }
 
@@ -3013,15 +3051,17 @@ Editor::setup_toolbar ()
        mouse_mode_size_group->add_widget (mouse_draw_button);
        mouse_mode_size_group->add_widget (mouse_content_button);
 
-       mouse_mode_size_group->add_widget (zoom_in_button);
-       mouse_mode_size_group->add_widget (zoom_out_button);
-       mouse_mode_size_group->add_widget (zoom_preset_selector);
-       mouse_mode_size_group->add_widget (zoom_out_full_button);
-       mouse_mode_size_group->add_widget (zoom_focus_selector);
-
-       mouse_mode_size_group->add_widget (tav_shrink_button);
-       mouse_mode_size_group->add_widget (tav_expand_button);
-       mouse_mode_size_group->add_widget (visible_tracks_selector);
+       if (!Profile->get_mixbus()) {
+               mouse_mode_size_group->add_widget (zoom_in_button);
+               mouse_mode_size_group->add_widget (zoom_out_button);
+               mouse_mode_size_group->add_widget (zoom_out_full_button);
+               mouse_mode_size_group->add_widget (zoom_focus_selector);
+               mouse_mode_size_group->add_widget (tav_shrink_button);
+               mouse_mode_size_group->add_widget (tav_expand_button);
+       } else {
+               mouse_mode_size_group->add_widget (zoom_preset_selector);
+               mouse_mode_size_group->add_widget (visible_tracks_selector);
+       }
 
        mouse_mode_size_group->add_widget (snap_type_selector);
        mouse_mode_size_group->add_widget (snap_mode_selector);
@@ -3076,8 +3116,7 @@ Editor::setup_toolbar ()
        RefPtr<Action> act;
 
        zoom_preset_selector.set_name ("zoom button");
-       zoom_preset_selector.set_image(::get_icon ("time_exp"));
-       zoom_preset_selector.set_size_request (42, -1);
+       zoom_preset_selector.set_icon (ArdourIcon::ZoomExpand);
 
        zoom_in_button.set_name ("zoom button");
        zoom_in_button.set_icon (ArdourIcon::ZoomIn);
@@ -3114,8 +3153,7 @@ Editor::setup_toolbar ()
 
        visible_tracks_selector.set_name ("zoom button");
        if (Profile->get_mixbus()) {
-               visible_tracks_selector.set_image(::get_icon ("tav_exp"));
-               visible_tracks_selector.set_size_request (42, -1);
+               visible_tracks_selector.set_icon (ArdourIcon::TimeAxisExpand);
        } else {
                set_size_request_to_display_given_text (visible_tracks_selector, _("All"), 30, 2);
        }
@@ -4752,7 +4790,7 @@ Editor::set_loop_range (framepos_t start, framepos_t end, string cmd)
        Location* tll;
 
        if ((tll = transport_loop_location()) == 0) {
-               Location* loc = new Location (*_session, start, end, _("Loop"),  Location::IsAutoLoop);
+               Location* loc = new Location (*_session, start, end, _("Loop"),  Location::IsAutoLoop, get_grid_music_divisions(0));
                XMLNode &before = _session->locations()->get_state();
                _session->locations()->add (loc, true);
                _session->set_auto_loop_location (loc);
@@ -4779,7 +4817,7 @@ Editor::set_punch_range (framepos_t start, framepos_t end, string cmd)
        Location* tpl;
 
        if ((tpl = transport_punch_location()) == 0) {
-               Location* loc = new Location (*_session, start, end, _("Punch"),  Location::IsAutoPunch);
+               Location* loc = new Location (*_session, start, end, _("Punch"),  Location::IsAutoPunch, get_grid_music_divisions(0));
                XMLNode &before = _session->locations()->get_state();
                _session->locations()->add (loc, true);
                _session->set_auto_punch_location (loc);
@@ -5396,6 +5434,16 @@ Editor::timeaxisview_deleted (TimeAxisView *tv)
                        next_tv = (*i);
                }
 
+               // skip VCAs (cannot be selected, n/a in editor-mixer)
+               if (dynamic_cast<VCATimeAxisView*> (next_tv)) {
+                       /* VCAs are sorted last in line -- route_sorter.h, jump to top */
+                       next_tv = track_views.front();
+               }
+               if (dynamic_cast<VCATimeAxisView*> (next_tv)) {
+                       /* just in case: no master, only a VCA remains */
+                       next_tv = 0;
+               }
+
 
                if (next_tv) {
                        set_selected_mixer_strip (*next_tv);
@@ -5841,9 +5889,9 @@ void
 Editor::show_editor_list (bool yn)
 {
        if (yn) {
-               _the_notebook.show ();
+               _editor_list_vbox.show ();
        } else {
-               _the_notebook.hide ();
+               _editor_list_vbox.hide ();
        }
 }
 
@@ -5890,18 +5938,6 @@ Editor::update_region_layering_order_editor ()
 void
 Editor::setup_fade_images ()
 {
-       _fade_in_images[FadeLinear] = new Gtk::Image (get_icon_path (X_("fadein-linear")));
-       _fade_in_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadein-symmetric")));
-       _fade_in_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadein-fast-cut")));
-       _fade_in_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadein-slow-cut")));
-       _fade_in_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadein-constant-power")));
-
-       _fade_out_images[FadeLinear] = new Gtk::Image (get_icon_path (X_("fadeout-linear")));
-       _fade_out_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadeout-symmetric")));
-       _fade_out_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadeout-fast-cut")));
-       _fade_out_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadeout-slow-cut")));
-       _fade_out_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadeout-constant-power")));
-
        _xfade_in_images[FadeLinear] = new Gtk::Image (get_icon_path (X_("fadein-linear")));
        _xfade_in_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadein-symmetric")));
        _xfade_in_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadein-fast-cut")));