fix "alt+g" duplicate range selection.
[ardour.git] / gtk2_ardour / editor_ops.cc
index 45568bdb3c9e1666608edf676c172548602ca5ef..4589844bf6dcd0c1665525a5246dcfa6e983bd81 100644 (file)
@@ -24,6 +24,7 @@
 #include <cstdlib>
 #include <cmath>
 #include <string>
+#include <limits>
 #include <map>
 #include <set>
 
@@ -47,7 +48,9 @@
 #include "ardour/midi_track.h"
 #include "ardour/operations.h"
 #include "ardour/playlist_factory.h"
+#include "ardour/profile.h"
 #include "ardour/quantize.h"
+#include "ardour/legatize.h"
 #include "ardour/region_factory.h"
 #include "ardour/reverse.h"
 #include "ardour/session.h"
@@ -62,6 +65,7 @@
 #include "audio_region_view.h"
 #include "audio_streamview.h"
 #include "audio_time_axis.h"
+#include "automation_region_view.h"
 #include "automation_time_axis.h"
 #include "control_point.h"
 #include "debug.h"
 #include "gui_thread.h"
 #include "insert_time_dialog.h"
 #include "interthread_progress_window.h"
+#include "item_counts.h"
 #include "keyboard.h"
 #include "midi_region_view.h"
+#include "mixer_strip.h"
 #include "mouse_cursors.h"
 #include "normalize_dialog.h"
+#include "note.h"
+#include "paste_context.h"
 #include "patch_change_dialog.h"
 #include "quantize_dialog.h"
 #include "region_gain_line.h"
@@ -133,7 +141,11 @@ Editor::split_regions_at (framepos_t where, RegionSelection& regions)
 {
        bool frozen = false;
 
-       list <boost::shared_ptr<Playlist > > used_playlists;
+       RegionSelection pre_selected_regions = selection->regions;
+       bool working_on_selection = !pre_selected_regions.empty();
+
+       list<boost::shared_ptr<Playlist> > used_playlists;
+       list<RouteTimeAxisView*> used_trackviews;
 
        if (regions.empty()) {
                return;
@@ -188,9 +200,16 @@ Editor::split_regions_at (framepos_t where, RegionSelection& regions)
 
                        /* remember used playlists so we can thaw them later */
                        used_playlists.push_back(pl);
+
+                       TimeAxisView& tv = (*a)->get_time_axis_view();
+                       RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*> (&tv);
+                       if (rtv) {
+                               used_trackviews.push_back (rtv);
+                       }
                        pl->freeze();
                }
 
+
                if (pl) {
                        pl->clear_changes ();
                        pl->split_region ((*a)->region(), where);
@@ -200,17 +219,68 @@ Editor::split_regions_at (framepos_t where, RegionSelection& regions)
                a = tmp;
        }
 
+       latest_regionviews.clear ();
+
+       vector<sigc::connection> region_added_connections;
+
+       for (list<RouteTimeAxisView*>::iterator i = used_trackviews.begin(); i != used_trackviews.end(); ++i) {
+               region_added_connections.push_back ((*i)->view()->RegionViewAdded.connect (sigc::mem_fun(*this, &Editor::collect_new_region_view)));
+       }
+       
        while (used_playlists.size() > 0) {
                list <boost::shared_ptr<Playlist > >::iterator i = used_playlists.begin();
                (*i)->thaw();
                used_playlists.pop_front();
        }
 
-       commit_reversible_command ();
+       for (vector<sigc::connection>::iterator c = region_added_connections.begin(); c != region_added_connections.end(); ++c) {
+               (*c).disconnect ();
+       }
 
        if (frozen){
                EditorThaw(); /* Emit Signal */
        }
+
+       if (working_on_selection) {
+               // IFF we were working on selected regions, try to reinstate the other region selections that existed before the freeze/thaw.
+
+               _ignore_follow_edits = true;  // a split will change the region selection in mysterious ways;  it's not practical or wanted to follow this edit
+               RegionSelectionAfterSplit rsas = Config->get_region_selection_after_split();
+               /* There are three classes of regions that we might want selected after
+                  splitting selected regions:
+                   - regions selected before the split operation, and unaffected by it
+                   - newly-created regions before the split
+                   - newly-created regions after the split
+                */
+
+               if (rsas & Existing) {
+                       // region selections that existed before the split.
+                       selection->add ( pre_selected_regions );
+               }
+
+               for (RegionSelection::iterator ri = latest_regionviews.begin(); ri != latest_regionviews.end(); ri++) {
+                       if ((*ri)->region()->position() < where) {
+                               // new regions created before the split
+                               if (rsas & NewlyCreatedLeft) {
+                                       selection->add (*ri);
+                               }
+                       } else {
+                               // new regions created after the split
+                               if (rsas & NewlyCreatedRight) {
+                                       selection->add (*ri);
+                               }
+                       }
+               }
+               _ignore_follow_edits = false;
+       } else {
+               _ignore_follow_edits = true;
+               if( working_on_selection ) {
+                       selection->add (latest_regionviews);  //these are the new regions created after the split
+               }
+               _ignore_follow_edits = false;
+       }
+
+       commit_reversible_command ();
 }
 
 /** Move one extreme of the current range selection.  If more than one range is selected,
@@ -611,7 +681,7 @@ Editor::build_region_boundary_cache ()
                break;
        default:
                fatal << string_compose (_("build_region_boundary_cache called with snap_type = %1"), _snap_type) << endmsg;
-               /*NOTREACHED*/
+               abort(); /*NOTREACHED*/
                return;
        }
 
@@ -1334,30 +1404,30 @@ Editor::scroll_down_one_track ()
 {
        TrackViewList::reverse_iterator next = track_views.rend();
        std::pair<TimeAxisView*,double> res;
-       const double bottom_of_trackviews = vertical_adjustment.get_value() + vertical_adjustment.get_page_size() - 1;
+       const double top_of_trackviews = vertical_adjustment.get_value();
 
        for (TrackViewList::reverse_iterator t = track_views.rbegin(); t != track_views.rend(); ++t) {
                if ((*t)->hidden()) {
                        continue;
                }
-               
-               /* If this is the bottom visible trackview, we want to display
-                  the next one.
+
+
+               /* If this is the upper-most visible trackview, we want to display
+                  the one above it (next)
                */
 
-               res = (*t)->covers_y_position (bottom_of_trackviews);
+               res = (*t)->covers_y_position (top_of_trackviews);
 
                if (res.first) {
                        break;
                }
-
-               ++next; // moves "next" towards the "front" since it is a reverse iterator
+               next = t;
        }
 
        /* move to the track below the first one that covers the */
        
        if (next != track_views.rend()) {
-               ensure_time_axis_view_is_visible (**next);
+               ensure_time_axis_view_is_visible (**next, true);
                return true;
        }
 
@@ -1367,11 +1437,10 @@ Editor::scroll_down_one_track ()
 bool
 Editor::scroll_up_one_track ()
 {
-       double vertical_pos = vertical_adjustment.get_value ();
-
        TrackViewList::iterator prev = track_views.end();
        std::pair<TimeAxisView*,double> res;
-
+       double top_of_trackviews = vertical_adjustment.get_value ();
+       
        for (TrackViewList::iterator t = track_views.begin(); t != track_views.end(); ++t) {
 
                if ((*t)->hidden()) {
@@ -1379,10 +1448,9 @@ Editor::scroll_up_one_track ()
                }
 
                /* find the trackview at the top of the trackview group */
-               res = (*t)->covers_y_position (vertical_pos);
+               res = (*t)->covers_y_position (top_of_trackviews);
                
                if (res.first) {
-                       cerr << res.first->name() << " covers the top\n";
                        break;
                }
 
@@ -1390,7 +1458,7 @@ Editor::scroll_up_one_track ()
        }
        
        if (prev != track_views.end()) {
-               ensure_time_axis_view_is_visible (**prev);
+               ensure_time_axis_view_is_visible (**prev, true);
                return true;
        }
 
@@ -1448,38 +1516,6 @@ Editor::tav_zoom_smooth (bool coarser, bool force_all)
        }
 }
 
-bool
-Editor::clamp_samples_per_pixel (framecnt_t& fpp) const
-{
-       bool clamped = false;
-       
-       if (fpp < 1) {
-               fpp = 1;
-               clamped = true;
-       }
-
-       framecnt_t sr;
-
-       if (_session) {
-               sr = _session->frame_rate ();
-       } else {
-               sr = 48000;
-       }
-
-       const framecnt_t three_days = 3 * 24 * 60 * 60 * sr;
-       const framecnt_t lots_of_pixels = 4000;
-
-       /* if the zoom level is greater than what you'd get trying to display 3
-        * days of audio on a really big screen, scale it down.
-        */
-
-       if (fpp * lots_of_pixels > three_days) {
-               fpp = three_days / _track_canvas->width();
-               clamped = true;
-       }
-
-       return clamped;
-}
 
 void
 Editor::temporal_zoom_step (bool coarser)
@@ -1516,7 +1552,6 @@ Editor::temporal_zoom (framecnt_t fpp)
        framecnt_t nfpp;
        double l;
 
-       clamp_samples_per_pixel (fpp);
        if (fpp == samples_per_pixel) {
                return;
        }
@@ -1530,7 +1565,7 @@ Editor::temporal_zoom (framecnt_t fpp)
        // would be 4147200000 samples, so 2592000 samples per pixel.
 
        nfpp = min (fpp, (framecnt_t) 2592000);
-       nfpp = max ((framecnt_t) 1, fpp);
+       nfpp = max ((framecnt_t) 1, nfpp);
 
        new_page_size = (framepos_t) floor (_visible_canvas_width * nfpp);
        half_page_size = new_page_size / 2;
@@ -1628,6 +1663,37 @@ Editor::temporal_zoom (framecnt_t fpp)
        reposition_and_zoom (leftmost_after_zoom, nfpp);
 }
 
+void
+Editor::calc_extra_zoom_edges(framepos_t &start, framepos_t &end)
+{
+       /* this func helps make sure we leave a little space
+          at each end of the editor so that the zoom doesn't fit the region
+          precisely to the screen.
+       */
+
+       GdkScreen* screen = gdk_screen_get_default ();
+       const gint pixwidth = gdk_screen_get_width (screen);
+       const gint mmwidth = gdk_screen_get_width_mm (screen);
+       const double pix_per_mm = (double) pixwidth/ (double) mmwidth;
+       const double one_centimeter_in_pixels = pix_per_mm * 10.0;
+
+       const framepos_t range = end - start;
+       const framecnt_t new_fpp = (framecnt_t) ceil ((double) range / (double) _visible_canvas_width);
+       const framepos_t extra_samples = (framepos_t) floor (one_centimeter_in_pixels * new_fpp);
+
+       if (start > extra_samples) {
+               start -= extra_samples;
+       } else {
+               start = 0;
+       }
+
+       if (max_framepos - extra_samples > end) {
+               end += extra_samples;
+       } else {
+               end = max_framepos;
+       }
+}
+
 void
 Editor::temporal_zoom_region (bool both_axes)
 {
@@ -1654,36 +1720,11 @@ Editor::temporal_zoom_region (bool both_axes)
                tracks.insert (&((*i)->get_time_axis_view()));
        }
 
-       /* now comes an "interesting" hack ... make sure we leave a little space
-          at each end of the editor so that the zoom doesn't fit the region
-          precisely to the screen.
-       */
-
-       GdkScreen* screen = gdk_screen_get_default ();
-       gint pixwidth = gdk_screen_get_width (screen);
-       gint mmwidth = gdk_screen_get_width_mm (screen);
-       double pix_per_mm = (double) pixwidth/ (double) mmwidth;
-       double one_centimeter_in_pixels = pix_per_mm * 10.0;
-
        if ((start == 0 && end == 0) || end < start) {
                return;
        }
 
-       framepos_t range = end - start;
-       double new_fpp = (double) range / (double) _visible_canvas_width;
-       framepos_t extra_samples = (framepos_t) floor (one_centimeter_in_pixels * new_fpp);
-
-       if (start > extra_samples) {
-               start -= extra_samples;
-       } else {
-               start = 0;
-       }
-
-       if (max_framepos - extra_samples > end) {
-               end += extra_samples;
-       } else {
-               end = max_framepos;
-       }
+       calc_extra_zoom_edges (start, end);
 
        /* if we're zooming on both axes we need to save track heights etc.
         */
@@ -1719,25 +1760,35 @@ Editor::temporal_zoom_region (bool both_axes)
        redo_visual_stack.push_back (current_visual_state (both_axes));
 }
 
-void
-Editor::zoom_to_region (bool both_axes)
-{
-       temporal_zoom_region (both_axes);
-}
 
 void
-Editor::temporal_zoom_selection ()
+Editor::temporal_zoom_selection (bool both_axes)
 {
        if (!selection) return;
 
-       if (selection->time.empty()) {
-               return;
-       }
+       //ToDo:  if notes are selected, zoom to that
 
-       framepos_t start = selection->time[clicked_selection].start;
-       framepos_t end = selection->time[clicked_selection].end;
+       //ToDo:  if control points are selected, zoom to that
+
+       //if region(s) are selected, zoom to that
+       if ( !selection->regions.empty() )
+               temporal_zoom_region (both_axes);
+
+       //if a range is selected, zoom to that
+       if (!selection->time.empty()) {
+
+               framepos_t start = selection->time.start();
+               framepos_t end = selection->time.end_frame();
+
+               calc_extra_zoom_edges(start, end);
+
+               temporal_zoom_by_frame (start, end);
+
+               if (both_axes)
+                       fit_selected_tracks();
+
+       }
 
-       temporal_zoom_by_frame (start, end);
 }
 
 void
@@ -1746,13 +1797,28 @@ Editor::temporal_zoom_session ()
        ENSURE_GUI_THREAD (*this, &Editor::temporal_zoom_session)
 
        if (_session) {
-               framecnt_t const l = _session->current_end_frame() - _session->current_start_frame();
-               double s = _session->current_start_frame() - l * 0.01;
-               if (s < 0) {
-                       s = 0;
+               framecnt_t start = _session->current_start_frame();
+               framecnt_t end = _session->current_end_frame();
+
+               if (_session->actively_recording () ) {
+                       framepos_t cur = playhead_cursor->current_frame ();
+                       if (cur > end) {
+                               /* recording beyond the end marker; zoom out
+                                * by 5 seconds more so that if 'follow
+                                * playhead' is active we don't immediately
+                                * scroll.
+                                */
+                               end = cur + _session->frame_rate() * 5;
+                       }
                }
-               framecnt_t const e = _session->current_end_frame() + l * 0.01;
-               temporal_zoom_by_frame (framecnt_t (s), e);
+
+               if ((start == 0 && end == 0) || end < start) {
+                       return;
+               }
+
+               calc_extra_zoom_edges(start, end);
+
+               temporal_zoom_by_frame (start, end);
        }
 }
 
@@ -1767,9 +1833,9 @@ Editor::temporal_zoom_by_frame (framepos_t start, framepos_t end)
 
        framepos_t range = end - start;
 
-       double const new_fpp = (double) range / (double) _visible_canvas_width;
-
-       framepos_t new_page = (framepos_t) floor (_visible_canvas_width * new_fpp);
+       const framecnt_t new_fpp = (framecnt_t) ceil ((double) range / (double) _visible_canvas_width);
+       
+       framepos_t new_page = range;
        framepos_t middle = (framepos_t) floor ((double) start + ((double) range / 2.0f));
        framepos_t new_leftmost = (framepos_t) floor ((double) middle - ((double) new_page / 2.0f));
 
@@ -1806,8 +1872,7 @@ Editor::temporal_zoom_to_frame (bool coarser, framepos_t frame)
                        new_spp = samples_per_pixel - (samples_per_pixel/2);
                } else {
                        /* could bail out here since we cannot zoom any finer,
-                          but leave that to the clamp_samples_per_pixel() and
-                          equality test below
+                          but leave that to the equality test below
                        */
                        new_spp = samples_per_pixel;
                }
@@ -1815,8 +1880,6 @@ Editor::temporal_zoom_to_frame (bool coarser, framepos_t frame)
                range_before -= range_before/2;
        }
 
-       clamp_samples_per_pixel (new_spp);
-
        if (new_spp == samples_per_pixel)  {
                return;
        }
@@ -1842,7 +1905,7 @@ Editor::temporal_zoom_to_frame (bool coarser, framepos_t frame)
 bool
 Editor::choose_new_marker_name(string &name) {
 
-       if (!Config->get_name_new_markers()) {
+       if (!ARDOUR_UI::config()->get_name_new_markers()) {
                /* don't prompt user for a new name */
                return true;
        }
@@ -1894,12 +1957,14 @@ Editor::add_location_from_selection ()
        _session->locations()->next_available_name(rangename,"selection");
        Location *location = new Location (*_session, start, end, rangename, Location::IsRangeMarker);
 
-       _session->begin_reversible_command (_("add marker"));
+       begin_reversible_command (_("add marker"));
+       
        XMLNode &before = _session->locations()->get_state();
        _session->locations()->add (location, true);
        XMLNode &after = _session->locations()->get_state();
        _session->add_command(new MementoCommand<Locations>(*(_session->locations()), &before, &after));
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -1914,12 +1979,14 @@ Editor::add_location_mark (framepos_t where)
                return;
        }
        Location *location = new Location (*_session, where, where, markername, Location::IsMark);
-       _session->begin_reversible_command (_("add marker"));
+       begin_reversible_command (_("add marker"));
+       
        XMLNode &before = _session->locations()->get_state();
        _session->locations()->add (location, true);
        XMLNode &after = _session->locations()->get_state();
        _session->add_command(new MementoCommand<Locations>(*(_session->locations()), &before, &after));
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -1928,6 +1995,37 @@ Editor::add_location_from_playhead_cursor ()
        add_location_mark (_session->audible_frame());
 }
 
+void
+Editor::remove_location_at_playhead_cursor ()
+{
+       if (_session) {
+
+               //set up for undo
+               begin_reversible_command (_("remove marker"));
+               
+               XMLNode &before = _session->locations()->get_state();
+               bool removed = false;
+
+               //find location(s) at this time
+               Locations::LocationList locs;
+               _session->locations()->find_all_between (_session->audible_frame(), _session->audible_frame()+1, locs, Location::Flags(0));
+               for (Locations::LocationList::iterator i = locs.begin(); i != locs.end(); ++i) {
+                       if ((*i)->is_mark()) {
+                               _session->locations()->remove (*i);
+                               removed = true;
+                       }
+               }
+               
+               //store undo
+               if (removed) {
+                       XMLNode &after = _session->locations()->get_state();
+                       _session->add_command(new MementoCommand<Locations>(*(_session->locations()), &before, &after));
+                       
+                       commit_reversible_command ();
+               }
+       }
+}
+
 /** Add a range marker around each selected region */
 void
 Editor::add_locations_from_region ()
@@ -1938,7 +2036,8 @@ Editor::add_locations_from_region ()
                return;
        }
 
-       _session->begin_reversible_command (selection->regions.size () > 1 ? _("add markers") : _("add marker"));
+       begin_reversible_command (selection->regions.size () > 1 ? _("add markers") : _("add marker"));
+       
        XMLNode &before = _session->locations()->get_state();
 
        for (RegionSelection::iterator i = rs.begin (); i != rs.end (); ++i) {
@@ -1952,7 +2051,8 @@ Editor::add_locations_from_region ()
 
        XMLNode &after = _session->locations()->get_state();
        _session->add_command (new MementoCommand<Locations>(*(_session->locations()), &before, &after));
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 /** Add a single range marker around all selected regions */
@@ -1965,7 +2065,8 @@ Editor::add_location_from_region ()
                return;
        }
 
-       _session->begin_reversible_command (_("add marker"));
+       begin_reversible_command (_("add marker"));
+       
        XMLNode &before = _session->locations()->get_state();
 
        string markername;
@@ -1988,7 +2089,8 @@ Editor::add_location_from_region ()
 
        XMLNode &after = _session->locations()->get_state();
        _session->add_command (new MementoCommand<Locations>(*(_session->locations()), &before, &after));
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 /* MARKS */
@@ -2044,12 +2146,14 @@ void
 Editor::clear_markers ()
 {
        if (_session) {
-               _session->begin_reversible_command (_("clear markers"));
+               begin_reversible_command (_("clear markers"));
+               
                XMLNode &before = _session->locations()->get_state();
                _session->locations()->clear_markers ();
                XMLNode &after = _session->locations()->get_state();
                _session->add_command(new MementoCommand<Locations>(*(_session->locations()), &before, &after));
-               _session->commit_reversible_command ();
+               
+               commit_reversible_command ();
        }
 }
 
@@ -2057,35 +2161,30 @@ void
 Editor::clear_ranges ()
 {
        if (_session) {
-               _session->begin_reversible_command (_("clear ranges"));
+               begin_reversible_command (_("clear ranges"));
+               
                XMLNode &before = _session->locations()->get_state();
 
-               Location * looploc = _session->locations()->auto_loop_location();
-               Location * punchloc = _session->locations()->auto_punch_location();
-               Location * sessionloc = _session->locations()->session_range_location();
-
                _session->locations()->clear_ranges ();
-               // re-add these
-               if (looploc) _session->locations()->add (looploc);
-               if (punchloc) _session->locations()->add (punchloc);
-               if (sessionloc) _session->locations()->add (sessionloc);
 
                XMLNode &after = _session->locations()->get_state();
                _session->add_command(new MementoCommand<Locations>(*(_session->locations()), &before, &after));
-               _session->commit_reversible_command ();
+               
+               commit_reversible_command ();
        }
 }
 
 void
 Editor::clear_locations ()
 {
-       _session->begin_reversible_command (_("clear locations"));
+       begin_reversible_command (_("clear locations"));
+       
        XMLNode &before = _session->locations()->get_state();
        _session->locations()->clear ();
        XMLNode &after = _session->locations()->get_state();
        _session->add_command(new MementoCommand<Locations>(*(_session->locations()), &before, &after));
-       _session->commit_reversible_command ();
-       _session->locations()->clear ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -2249,7 +2348,7 @@ Editor::get_preroll ()
 void
 Editor::maybe_locate_with_edit_preroll ( framepos_t location )
 {
-       if ( _session->transport_rolling() || !Config->get_always_play_range() )
+       if ( _session->transport_rolling() || !ARDOUR_UI::config()->get_follow_edits() || _ignore_follow_edits )
                return;
 
        location -= get_preroll();
@@ -2311,8 +2410,8 @@ Editor::loop_location (Location& location)
                tll->set (location.start(), location.end());
 
                // enable looping, reposition and start rolling
-               _session->request_play_loop (true);
                _session->request_locate (tll->start(), true);
+               _session->request_play_loop (true);
        }
 }
 
@@ -2591,8 +2690,14 @@ Editor::create_region_from_selection (vector<boost::shared_ptr<Region> >& new_re
                return;
        }
 
-       framepos_t start = selection->time[clicked_selection].start;
-       framepos_t end = selection->time[clicked_selection].end;
+       framepos_t start, end;
+       if (clicked_selection) {
+               start = selection->time[clicked_selection].start;
+               end = selection->time[clicked_selection].end;
+       } else {
+               start = selection->time.start();
+               end = selection->time.end_frame();
+       }
 
        TrackViewList ts = selection->tracks.filter_to_unique_playlists ();
        sort_track_selection (ts);
@@ -2651,6 +2756,7 @@ static void
 add_if_covered (RegionView* rv, const AudioRange* ar, RegionSelection* rs)
 {
        switch (rv->region()->coverage (ar->start, ar->end - 1)) {
+       // n.b. -1 because AudioRange::end is one past the end, but coverage expects inclusive ranges
        case Evoral::OverlapNone:
                break;
        default:
@@ -2770,8 +2876,7 @@ Editor::separate_regions_between (const TimeSelection& ts)
        }
 
        if (in_command) {
-               selection->set (new_selection);
-               set_mouse_mode (MouseObject);
+//             selection->set (new_selection);
 
                commit_reversible_command ();
        }
@@ -3590,14 +3695,13 @@ Editor::freeze_route ()
 
        pthread_create_and_store (X_("freezer"), &itt.thread, _freeze_thread, this);
 
-       set_canvas_cursor (_cursors->wait);
+       CursorContext::Handle cursor_ctx = CursorContext::create(*this, _cursors->wait);
 
        while (!itt.done && !itt.cancel) {
                gtk_main_iteration ();
        }
 
        current_interthread_info = 0;
-       set_canvas_cursor (current_canvas_cursor);
 }
 
 void
@@ -3686,7 +3790,14 @@ Editor::bounce_range_selection (bool replace, bool enable_processing)
 void
 Editor::delete_ ()
 {
-       cut_copy (Delete);
+       //special case: if the user is pointing in the editor/mixer strip, they may be trying to delete a plugin.
+       //we need this because the editor-mixer strip is in the editor window, so it doesn't get the bindings from the mix window
+       bool deleted = false;
+       if ( current_mixer_strip && current_mixer_strip == MixerStrip::entered_mixer_strip() )
+               deleted = current_mixer_strip->delete_processors ();
+
+       if (!deleted)
+               cut_copy (Delete);
 }
 
 /** Cut selected regions, automation points or a time range */
@@ -3708,23 +3819,8 @@ Editor::copy ()
 bool
 Editor::can_cut_copy () const
 {
-       switch (effective_mouse_mode()) {
-
-       case MouseObject:
-               if (!selection->regions.empty() || !selection->points.empty()) {
-                       return true;
-               }
-               break;
-
-       case MouseRange:
-               if (!selection->time.empty()) {
-                       return true;
-               }
-               break;
-
-       default:
-               break;
-       }
+       if (!selection->time.empty() || !selection->regions.empty() || !selection->points.empty())
+               return true;
 
        return false;
 }
@@ -3785,98 +3881,61 @@ Editor::cut_copy (CutCopyOp op)
                return;
        }
 
-       if (internal_editing()) {
-
-               switch (effective_mouse_mode()) {
-               case MouseObject:
-               case MouseRange:
-                       begin_reversible_command (opname + ' ' + X_("MIDI"));
-                       cut_copy_midi (op);
-                       commit_reversible_command ();
-                       break;
-               default:
-                       break;
-               }
-
+       switch (mouse_mode) {
+       case MouseDraw:
+       case MouseContent:
+               begin_reversible_command (opname + ' ' + X_("MIDI"));
+               cut_copy_midi (op);
+               commit_reversible_command ();
                return;
+       default:
+               break;
        }
 
        bool did_edit = false;
 
-       switch (effective_mouse_mode()) {
-       case MouseGain:
-               if (!selection->points.empty()) {
-                       begin_reversible_command (opname + _(" points"));
-                       did_edit = true;
-                       cut_copy_points (op);
-                       if (op == Cut || op == Delete) {
-                               selection->clear_points ();
-                       }
-               }
-               break;
-               
-       case MouseObject: 
-
-               if (!selection->regions.empty() || !selection->points.empty()) {
+       if (!selection->regions.empty() || !selection->points.empty()) {
+               begin_reversible_command (opname + ' ' + _("objects"));
+               did_edit = true;
 
-                       string thing_name;
-
-                       if (selection->regions.empty()) {
-                               thing_name = _("points");
-                       } else if (selection->points.empty()) {
-                               thing_name = _("regions");
-                       } else {
-                               thing_name = _("objects");
-                       }
-               
-                       begin_reversible_command (opname + ' ' + thing_name);
-                       did_edit = true;
-
-                       if (!selection->regions.empty()) {
-                               cut_copy_regions (op, selection->regions);
-                               
-                               if (op == Cut || op == Delete) {
-                                       selection->clear_regions ();
-                               }
-                       }
-                       
-                       if (!selection->points.empty()) {
-                               cut_copy_points (op);
-                               
-                               if (op == Cut || op == Delete) {
-                                       selection->clear_points ();
-                               }
-                       }
-               } 
-               break;
+               if (!selection->regions.empty()) {
+                       cut_copy_regions (op, selection->regions);
                        
-       case MouseRange:
-               if (selection->time.empty()) {
-                       framepos_t start, end;
-                       /* no time selection, see if we can get an edit range
-                          and use that.
-                       */
-                       if (get_edit_op_range (start, end)) {
-                               selection->set (start, end);
+                       if (op == Cut || op == Delete) {
+                               selection->clear_regions ();
                        }
                }
-               if (!selection->time.empty()) {
-                       begin_reversible_command (opname + _(" range"));
-
-                       did_edit = true;
-                       cut_copy_ranges (op);
+               
+               if (!selection->points.empty()) {
+                       cut_copy_points (op);
                        
                        if (op == Cut || op == Delete) {
-                               selection->clear_time ();
+                               selection->clear_points ();
                        }
                }
-               break;
+       } else if (selection->time.empty()) {
+               framepos_t start, end;
+               /* no time selection, see if we can get an edit range
+                  and use that.
+               */
+               if (get_edit_op_range (start, end)) {
+                       selection->set (start, end);
+               }
+       } else if (!selection->time.empty()) {
+               begin_reversible_command (opname + ' ' + _("range"));
+
+               did_edit = true;
+               cut_copy_ranges (op);
                
-       default:
-               break;
+               if (op == Cut || op == Delete) {
+                       selection->clear_time ();
+               }
        }
        
        if (did_edit) {
+               /* reset repeated paste state */
+               paste_count    = 0;
+               last_paste_pos = 0;
                commit_reversible_command ();   
        }
        
@@ -3886,10 +3945,11 @@ Editor::cut_copy (CutCopyOp op)
 }
 
 struct AutomationRecord {
-       AutomationRecord () : state (0) {}
-       AutomationRecord (XMLNode* s) : state (s) {}
+       AutomationRecord () : state (0) , line(NULL) {}
+       AutomationRecord (XMLNode* s, const AutomationLine* l) : state (s) , line (l) {}
        
        XMLNode* state; ///< state before any operation
+       const AutomationLine* line; ///< line this came from
        boost::shared_ptr<Evoral::ControlList> copy; ///< copied events for the cut buffer
 };
 
@@ -3897,7 +3957,7 @@ struct AutomationRecord {
  *  @param op Operation (Cut, Copy or Clear)
  */
 void
-Editor::cut_copy_points (CutCopyOp op)
+Editor::cut_copy_points (Editing::CutCopyOp op, Evoral::MusicalTime earliest, bool midi)
 {
        if (selection->points.empty ()) {
                return;
@@ -3912,12 +3972,13 @@ Editor::cut_copy_points (CutCopyOp op)
 
        /* Go through all selected points, making an AutomationRecord for each distinct AutomationList */
        for (PointSelection::iterator i = selection->points.begin(); i != selection->points.end(); ++i) {
-               boost::shared_ptr<AutomationList> al = (*i)->line().the_list();
+               const AutomationLine&                   line = (*i)->line();
+               const boost::shared_ptr<AutomationList> al   = line.the_list();
                if (lists.find (al) == lists.end ()) {
                        /* We haven't seen this list yet, so make a record for it.  This includes
                           taking a copy of its current state, in case this is needed for undo later.
                        */
-                       lists[al] = AutomationRecord (&al->get_state ());
+                       lists[al] = AutomationRecord (&al->get_state (), &line);
                }
        }
 
@@ -3926,21 +3987,46 @@ Editor::cut_copy_points (CutCopyOp op)
                   ControlList for each of our source lists to put the cut buffer data in.
                */
                for (Lists::iterator i = lists.begin(); i != lists.end(); ++i) {
-                       i->second.copy = i->first->create (i->first->parameter ());
+                       i->second.copy = i->first->create (i->first->parameter (), i->first->descriptor());
                }
 
                /* Add all selected points to the relevant copy ControlLists */
+               framepos_t start = std::numeric_limits<framepos_t>::max();
                for (PointSelection::iterator i = selection->points.begin(); i != selection->points.end(); ++i) {
                        boost::shared_ptr<AutomationList> al = (*i)->line().the_list();
-                       AutomationList::const_iterator j = (*i)->model ();
-                       lists[al].copy->add ((*j)->when, (*j)->value);
+                       AutomationList::const_iterator    j  = (*i)->model();
+
+                       lists[al].copy->fast_simple_add ((*j)->when, (*j)->value);
+                       if (midi) {
+                               /* Update earliest MIDI start time in beats */
+                               earliest = std::min(earliest,  Evoral::MusicalTime((*j)->when));
+                       } else {
+                               /* Update earliest session start time in frames */
+                               start = std::min(start, (*i)->line().session_position(j));
+                       }
+               }
+
+               /* Snap start time backwards, so copy/paste is snap aligned. */
+               if (midi) {
+                       if (earliest == Evoral::MusicalTime::max()) {
+                               earliest = Evoral::MusicalTime();  // Weird... don't offset
+                       }
+                       earliest.round_down_to_beat();
+               } else {
+                       if (start == std::numeric_limits<double>::max()) {
+                               start = 0;  // Weird... don't offset
+                       }
+                       snap_to(start, RoundDownMaybe);
                }
 
+               const double line_offset = midi ? earliest.to_double() : start;
                for (Lists::iterator i = lists.begin(); i != lists.end(); ++i) {
-                       /* Correct this copy list so that it starts at time 0 */
-                       double const start = i->second.copy->front()->when;
+                       /* Correct this copy list so that it is relative to the earliest
+                          start time, so relative ordering between points is preserved
+                          when copying from several lists and the paste starts at the
+                          earliest copied piece of data. */
                        for (AutomationList::iterator j = i->second.copy->begin(); j != i->second.copy->end(); ++j) {
-                               (*j)->when -= start;
+                               (*j)->when -= line_offset;
                        }
 
                        /* And add it to the cut buffer */
@@ -3976,13 +4062,27 @@ Editor::cut_copy_points (CutCopyOp op)
 void
 Editor::cut_copy_midi (CutCopyOp op)
 {
+       Evoral::MusicalTime earliest = Evoral::MusicalTime::max();
        for (MidiRegionSelection::iterator i = selection->midi_regions.begin(); i != selection->midi_regions.end(); ++i) {
-               MidiRegionView* mrv = *i;
-               mrv->cut_copy_clear (op);
-       }
-}
+               MidiRegionView* mrv = dynamic_cast<MidiRegionView*>(*i);
+               if (mrv) {
+                       if (!mrv->selection().empty()) {
+                               earliest = std::min(earliest, (*mrv->selection().begin())->note()->time());
+                       }
+                       mrv->cut_copy_clear (op);
 
+                       /* XXX: not ideal, as there may be more than one track involved in the selection */
+                       _last_cut_copy_source_track = &mrv->get_time_axis_view();
+               }
+       }
 
+       if (!selection->points.empty()) {
+               cut_copy_points (op, earliest, true);
+               if (op == Cut || op == Delete) {
+                       selection->clear_points ();
+               }
+       }
+}
 
 struct lt_playlist {
     bool operator () (const PlaylistState& a, const PlaylistState& b) {
@@ -4005,6 +4105,8 @@ Editor::remove_clicked_region ()
                return;
        }
 
+       begin_reversible_command (_("remove region"));
+
        boost::shared_ptr<Playlist> playlist = clicked_routeview->playlist();
 
        playlist->clear_changes ();
@@ -4323,14 +4425,8 @@ Editor::paste_internal (framepos_t position, float times)
 {
         DEBUG_TRACE (DEBUG::CutNPaste, string_compose ("apparent paste position is %1\n", position));
 
-       if (internal_editing()) {
-               if (cut_buffer->midi_notes.empty()) {
-                       return;
-               }
-       } else {
-               if (cut_buffer->empty()) {
-                       return;
-               }
+       if (cut_buffer->empty(internal_editing())) {
+               return;
        }
 
        if (position == max_framepos) {
@@ -4338,60 +4434,99 @@ Editor::paste_internal (framepos_t position, float times)
                 DEBUG_TRACE (DEBUG::CutNPaste, string_compose ("preferred edit position is %1\n", position));
        }
 
-       TrackViewList ts;
-       TrackViewList::iterator i;
-       size_t nth;
+       if (position == last_paste_pos) {
+               /* repeated paste in the same position */
+               ++paste_count;
+       } else {
+               /* paste in new location, reset repeated paste state */
+               paste_count = 0;
+               last_paste_pos = position;
+       }
 
        /* get everything in the correct order */
 
-       if (_edit_point == Editing::EditAtMouse && entered_track) {
-               /* With the mouse edit point, paste onto the track under the mouse */
-               ts.push_back (entered_track);
-       } else if (!selection->tracks.empty()) {
-               /* Otherwise, if there are some selected tracks, paste to them */
+       TrackViewList ts;
+       if (!selection->tracks.empty()) {
+               /* If there is a track selection, paste into exactly those tracks and
+                  only those tracks.  This allows the user to be explicit and override
+                  the below "do the reasonable thing" logic. */
                ts = selection->tracks.filter_to_unique_playlists ();
                sort_track_selection (ts);
-       } else if (_last_cut_copy_source_track) {
-               /* Otherwise paste to the track that the cut/copy came from;
-                  see discussion in mantis #3333.
-               */
-               ts.push_back (_last_cut_copy_source_track);
-       }
-
-       if (internal_editing ()) {
+       } else {
+               /* Figure out which track to base the paste at. */
+               TimeAxisView* base_track = NULL;
+               if (_edit_point == Editing::EditAtMouse && entered_track) {
+                       /* With the mouse edit point, paste onto the track under the mouse. */
+                       base_track = entered_track;
+               } else if (_edit_point == Editing::EditAtMouse && entered_regionview) {
+                       /* With the mouse edit point, paste onto the track of the region under the mouse. */
+                       base_track = &entered_regionview->get_time_axis_view();
+               } else if (_last_cut_copy_source_track) {
+                       /* Paste to the track that the cut/copy came from (see mantis #333). */
+                       base_track = _last_cut_copy_source_track;
+               } else {
+                       /* This is "impossible" since we've copied... well, do nothing. */
+                       return;
+               }
 
-               /* undo/redo is handled by individual tracks/regions */
+               /* Walk up to parent if necessary, so base track is a route. */
+               while (base_track->get_parent()) {
+                       base_track = base_track->get_parent();
+               }
 
-               for (nth = 0, i = ts.begin(); i != ts.end(); ++i, ++nth) {
+               /* Add base track and all tracks below it.  The paste logic will select
+                  the appropriate object types from the cut buffer in relative order. */
+               for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
+                       if ((*i)->order() >= base_track->order()) {
+                               ts.push_back(*i);
+                       }
+               }
 
-                       RegionSelection rs;
-                       RegionSelection::iterator r;
-                       MidiNoteSelection::iterator cb;
+               /* Sort tracks so the nth track of type T will pick the nth object of type T. */
+               sort_track_selection (ts);
 
-                       get_regions_at (rs, position, ts);
+               /* Add automation children of each track in order, for pasting several lines. */
+               for (TrackViewList::iterator i = ts.begin(); i != ts.end();) {
+                       /* Add any automation children for pasting several lines */
+                       RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(*i++);
+                       if (!rtv) {
+                               continue;
+                       }
 
-                       for (cb = cut_buffer->midi_notes.begin(), r = rs.begin();
-                            cb != cut_buffer->midi_notes.end() && r != rs.end(); ++r) {
-                               MidiRegionView* mrv = dynamic_cast<MidiRegionView*> (*r);
-                               if (mrv) {
-                                       mrv->paste (position, times, **cb);
-                                       ++cb;
-                               }
+                       typedef RouteTimeAxisView::AutomationTracks ATracks;
+                       const ATracks& atracks = rtv->automation_tracks();
+                       for (ATracks::const_iterator a = atracks.begin(); a != atracks.end(); ++a) {
+                               i = ts.insert(i, a->second.get());
+                               ++i;
                        }
                }
 
-       } else {
+               /* We now have a list of trackviews starting at base_track, including
+                  automation children, in the order shown in the editor, e.g. R1,
+                  R1.A1, R1.A2, R2, R2.A1, ... */
+       }
 
-               /* we do redo (do you do voodoo?) */
+       begin_reversible_command (Operations::paste);
 
-               begin_reversible_command (Operations::paste);
+       if (ts.size() == 1 && cut_buffer->lines.size() == 1 &&
+           dynamic_cast<AutomationTimeAxisView*>(ts.front())) {
+           /* Only one line copied, and one automation track selected.  Do a
+              "greedy" paste from one automation type to another. */
 
-               for (nth = 0, i = ts.begin(); i != ts.end(); ++i, ++nth) {
-                       (*i)->paste (position, times, *cut_buffer, nth);
-               }
+           PasteContext ctx(paste_count, times, ItemCounts(), true);
+           ts.front()->paste (position, *cut_buffer, ctx);
 
-               commit_reversible_command ();
+       } else {
+
+               /* Paste into tracks */
+
+               PasteContext ctx(paste_count, times, ItemCounts(), false);
+               for (TrackViewList::iterator i = ts.begin(); i != ts.end(); ++i) {
+                       (*i)->paste (position, *cut_buffer, ctx);
+               }
        }
+
+       commit_reversible_command ();
 }
 
 void
@@ -4427,11 +4562,11 @@ Editor::duplicate_some_regions (RegionSelection& regions, float times)
                foo.insert (foo.end(), latest_regionviews.begin(), latest_regionviews.end());
        }
 
-       commit_reversible_command ();
-
        if (!foo.empty()) {
                selection->set (foo);
        }
+
+       commit_reversible_command ();
 }
 
 void
@@ -4462,7 +4597,13 @@ Editor::duplicate_selection (float times)
                        continue;
                }
                playlist->clear_changes ();
-               playlist->duplicate (*ri, selection->time[clicked_selection].end, times);
+               framepos_t end;
+               if (clicked_selection) {
+                       end = selection->time[clicked_selection].end;
+               } else {
+                       end = selection->time.end_frame();
+               }
+               playlist->duplicate (*ri, end, times);
                _session->add_command (new StatefulDiffCommand (playlist));
 
                ++ri;
@@ -4604,7 +4745,7 @@ Editor::normalize_region ()
                return;
        }
 
-       set_canvas_cursor (_cursors->wait);
+       CursorContext::Handle cursor_ctx = CursorContext::create(*this, _cursors->wait);
        gdk_flush ();
 
        /* XXX: should really only count audio regions here */
@@ -4623,7 +4764,6 @@ Editor::normalize_region ()
 
                        if (a == -1) {
                                /* the user cancelled the operation */
-                               set_canvas_cursor (current_canvas_cursor);
                                return;
                        }
 
@@ -4654,7 +4794,6 @@ Editor::normalize_region ()
        }
 
        commit_reversible_command ();
-       set_canvas_cursor (current_canvas_cursor);
 }
 
 
@@ -4775,33 +4914,29 @@ Editor::apply_midi_note_edit_op_to_region (MidiOperator& op, MidiRegionView& mrv
        vector<Evoral::Sequence<Evoral::MusicalTime>::Notes> v;
        v.push_back (selected);
 
-       framepos_t pos_frames = mrv.midi_region()->position() - mrv.midi_region()->start();
-       double     pos_beats  = _session->tempo_map().framewalk_to_beats(0, pos_frames);
+       framepos_t          pos_frames = mrv.midi_region()->position() - mrv.midi_region()->start();
+       Evoral::MusicalTime pos_beats  = _session->tempo_map().framewalk_to_beats(0, pos_frames);
 
        return op (mrv.midi_region()->model(), pos_beats, v);
 }
 
 void
-Editor::apply_midi_note_edit_op (MidiOperator& op)
+Editor::apply_midi_note_edit_op (MidiOperator& op, const RegionSelection& rs)
 {
-       Command* cmd;
-
-       RegionSelection rs = get_regions_from_selection_and_entered ();
-
        if (rs.empty()) {
                return;
        }
 
        begin_reversible_command (op.name ());
 
-       for (RegionSelection::iterator r = rs.begin(); r != rs.end(); ) {
-               RegionSelection::iterator tmp = r;
+       for (RegionSelection::const_iterator r = rs.begin(); r != rs.end(); ) {
+               RegionSelection::const_iterator tmp = r;
                ++tmp;
 
                MidiRegionView* const mrv = dynamic_cast<MidiRegionView*> (*r);
 
                if (mrv) {
-                       cmd = apply_midi_note_edit_op_to_region (op, *mrv);
+                       Command* cmd = apply_midi_note_edit_op_to_region (op, *mrv);
                        if (cmd) {
                                (*cmd)();
                                _session->add_command (cmd);
@@ -4825,7 +4960,7 @@ Editor::fork_region ()
 
        begin_reversible_command (_("Fork Region(s)"));
 
-       set_canvas_cursor (_cursors->wait);
+       CursorContext::Handle cursor_ctx = CursorContext::create(*this, _cursors->wait);
        gdk_flush ();
 
        for (RegionSelection::iterator r = rs.begin(); r != rs.end(); ) {
@@ -4852,33 +4987,20 @@ Editor::fork_region ()
        }
 
        commit_reversible_command ();
-
-       set_canvas_cursor (current_canvas_cursor);
 }
 
 void
 Editor::quantize_region ()
 {
-       int selected_midi_region_cnt = 0;
-
-       if (!_session) {
-               return;
-       }
-
-       RegionSelection rs = get_regions_from_selection_and_entered ();
-
-       if (rs.empty()) {
-               return;
-       }
-
-       for (RegionSelection::iterator r = rs.begin(); r != rs.end(); ++r) {
-               MidiRegionView* const mrv = dynamic_cast<MidiRegionView*> (*r);
-               if (mrv) {
-                       selected_midi_region_cnt++;
-               }
+       if (_session) {
+               quantize_regions(get_regions_from_selection_and_entered ());
        }
+}
 
-       if (selected_midi_region_cnt == 0) {
+void
+Editor::quantize_regions (const RegionSelection& rs)
+{
+       if (rs.n_midi_regions() == 0) {
                return;
        }
 
@@ -4889,12 +5011,31 @@ Editor::quantize_region ()
        qd->hide ();
 
        if (r == Gtk::RESPONSE_OK) {
-               Quantize quant (*_session, qd->snap_start(), qd->snap_end(),
+               Quantize quant (qd->snap_start(), qd->snap_end(),
                                qd->start_grid_size(), qd->end_grid_size(),
                                qd->strength(), qd->swing(), qd->threshold());
 
-               apply_midi_note_edit_op (quant);
+               apply_midi_note_edit_op (quant, rs);
+       }
+}
+
+void
+Editor::legatize_region (bool shrink_only)
+{
+       if (_session) {
+               legatize_regions(get_regions_from_selection_and_entered (), shrink_only);
+       }
+}
+
+void
+Editor::legatize_regions (const RegionSelection& rs, bool shrink_only)
+{
+       if (rs.n_midi_regions() == 0) {
+               return;
        }
+
+       Legatize legatize(shrink_only);
+       apply_midi_note_edit_op (legatize, rs);
 }
 
 void
@@ -4914,7 +5055,7 @@ Editor::insert_patch_change (bool from_context)
        */
        MidiRegionView* first = dynamic_cast<MidiRegionView*> (rs.front ());
 
-       Evoral::PatchChange<Evoral::MusicalTime> empty (0, 0, 0, 0);
+       Evoral::PatchChange<Evoral::MusicalTime> empty (Evoral::MusicalTime(), 0, 0, 0);
         PatchChangeDialog d (0, _session, empty, first->instrument_info(), Gtk::Stock::ADD);
 
        if (d.run() == RESPONSE_CANCEL) {
@@ -4942,7 +5083,7 @@ Editor::apply_filter (Filter& filter, string command, ProgressReporter* progress
 
        begin_reversible_command (command);
 
-       set_canvas_cursor (_cursors->wait);
+       CursorContext::Handle cursor_ctx = CursorContext::create(*this, _cursors->wait);
        gdk_flush ();
 
        int n = 0;
@@ -4995,7 +5136,7 @@ Editor::apply_filter (Filter& filter, string command, ProgressReporter* progress
                                
                                _session->add_command(new StatefulDiffCommand (playlist));
                        } else {
-                               goto out;
+                               return;
                        }
 
                        if (progress) {
@@ -5008,9 +5149,6 @@ Editor::apply_filter (Filter& filter, string command, ProgressReporter* progress
        }
 
        commit_reversible_command ();
-
-  out:
-       set_canvas_cursor (current_canvas_cursor);
 }
 
 void
@@ -5028,8 +5166,8 @@ Editor::reset_region_gain_envelopes ()
                return;
        }
 
-       _session->begin_reversible_command (_("reset region gain"));
-
+       begin_reversible_command (_("reset region gain"));
+       
        for (RegionSelection::iterator i = rs.begin(); i != rs.end(); ++i) {
                AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
                if (arv) {
@@ -5040,8 +5178,8 @@ Editor::reset_region_gain_envelopes ()
                        _session->add_command (new MementoCommand<AutomationList>(*arv->audio_region()->envelope().get(), &before, &alist->get_state()));
                }
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -5081,8 +5219,8 @@ Editor::toggle_gain_envelope_active ()
                return;
        }
 
-       _session->begin_reversible_command (_("region gain envelope active"));
-
+       begin_reversible_command (_("region gain envelope active"));
+       
        for (RegionSelection::iterator i = rs.begin(); i != rs.end(); ++i) {
                AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
                if (arv) {
@@ -5091,8 +5229,8 @@ Editor::toggle_gain_envelope_active ()
                        _session->add_command (new StatefulDiffCommand (arv->region()));
                }
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -5108,15 +5246,15 @@ Editor::toggle_region_lock ()
                return;
        }
 
-       _session->begin_reversible_command (_("toggle region lock"));
-
+       begin_reversible_command (_("toggle region lock"));
+       
        for (RegionSelection::iterator i = rs.begin(); i != rs.end(); ++i) {
                (*i)->region()->clear_changes ();
                (*i)->region()->set_locked (!(*i)->region()->locked());
                _session->add_command (new StatefulDiffCommand ((*i)->region()));
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -5132,15 +5270,15 @@ Editor::toggle_region_video_lock ()
                return;
        }
 
-       _session->begin_reversible_command (_("Toggle Video Lock"));
-
+       begin_reversible_command (_("Toggle Video Lock"));
+       
        for (RegionSelection::iterator i = rs.begin(); i != rs.end(); ++i) {
                (*i)->region()->clear_changes ();
                (*i)->region()->set_video_locked (!(*i)->region()->video_locked());
                _session->add_command (new StatefulDiffCommand ((*i)->region()));
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -5156,16 +5294,16 @@ Editor::toggle_region_lock_style ()
                return;
        }
 
-       _session->begin_reversible_command (_("region lock style"));
-
+       begin_reversible_command (_("region lock style"));
+       
        for (RegionSelection::iterator i = rs.begin(); i != rs.end(); ++i) {
                (*i)->region()->clear_changes ();
                PositionLockStyle const ns = (*i)->region()->position_lock_style() == AudioTime ? MusicTime : AudioTime;
                (*i)->region()->set_position_lock_style (ns);
                _session->add_command (new StatefulDiffCommand ((*i)->region()));
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -5181,15 +5319,15 @@ Editor::toggle_opaque_region ()
                return;
        }
 
-       _session->begin_reversible_command (_("change region opacity"));
-
+       begin_reversible_command (_("change region opacity"));
+       
        for (RegionSelection::iterator i = rs.begin(); i != rs.end(); ++i) {
                (*i)->region()->clear_changes ();
                (*i)->region()->set_opaque (!(*i)->region()->opaque());
                _session->add_command (new StatefulDiffCommand ((*i)->region()));
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -5268,6 +5406,22 @@ Editor::toggle_solo_isolate ()
 {
 }
 
+
+void
+Editor::fade_range ()
+{
+       TrackViewList ts = selection->tracks.filter_to_unique_playlists ();
+
+       begin_reversible_command (_("fade range"));
+
+       for (TrackViewList::iterator i = ts.begin(); i != ts.end(); ++i) {
+               (*i)->fade_range (selection->time);
+       }
+
+       commit_reversible_command ();
+}
+
+
 void
 Editor::set_fade_length (bool in)
 {
@@ -5571,8 +5725,9 @@ Editor::set_playhead_cursor ()
                }
        }
 
-       if ( Config->get_always_play_range() )
+       if (ARDOUR_UI::config()->get_follow_edits()) {
                cancel_time_selection();
+       }
 }
 
 void
@@ -5629,7 +5784,7 @@ Editor::select_next_route()
 
        selection->set(current);
 
-       ensure_time_axis_view_is_visible (*current);
+       ensure_time_axis_view_is_visible (*current, false);
 }
 
 void
@@ -5660,7 +5815,7 @@ Editor::select_prev_route()
 
        selection->set (current);
 
-       ensure_time_axis_view_is_visible (*current);
+       ensure_time_axis_view_is_visible (*current, false);
 }
 
 void
@@ -5676,8 +5831,8 @@ Editor::set_loop_from_selection (bool play)
        set_loop_range (start, end,  _("set loop range from selection"));
 
        if (play) {
-               _session->request_play_loop (true);
                _session->request_locate (start, true);
+               _session->request_play_loop (true);
        }
 }
 
@@ -5698,8 +5853,8 @@ Editor::set_loop_from_edit_range (bool play)
        set_loop_range (start, end,  _("set loop range from edit range"));
 
        if (play) {
-               _session->request_play_loop (true);
                _session->request_locate (start, true);
+               _session->request_play_loop (true);
        }
 }
 
@@ -5727,8 +5882,8 @@ Editor::set_loop_from_region (bool play)
        set_loop_range (start, end, _("set loop range from region"));
 
        if (play) {
-               _session->request_play_loop (true);
                _session->request_locate (start, true);
+               _session->request_play_loop (true);
        }
 }
 
@@ -5745,6 +5900,34 @@ Editor::set_punch_from_selection ()
        set_punch_range (start, end,  _("set punch range from selection"));
 }
 
+void
+Editor::set_session_extents_from_selection ()
+{
+       if (_session == 0 || selection->time.empty()) {
+               return;
+       }
+
+       begin_reversible_command (_("set session start/stop from selection"));
+
+       framepos_t start = selection->time[clicked_selection].start;
+       framepos_t end = selection->time[clicked_selection].end;
+
+       Location* loc;
+       if ((loc = _session->locations()->session_range_location()) == 0) {
+               _session->set_session_extents ( start, end );  // this will create a new session range;  no need for UNDO
+       } else {
+               XMLNode &before = loc->get_state();
+
+               _session->set_session_extents ( start, end );
+
+               XMLNode &after = loc->get_state();
+
+               _session->add_command (new MementoCommand<Location>(*loc, &before, &after));
+
+               commit_reversible_command ();
+       }
+}
+
 void
 Editor::set_punch_from_edit_range ()
 {
@@ -5953,8 +6136,8 @@ Editor::split_region_at_transients ()
                return;
        }
 
-       _session->begin_reversible_command (_("split regions"));
-
+       begin_reversible_command (_("split regions"));
+       
        for (RegionSelection::iterator i = rs.begin(); i != rs.end(); ) {
 
                RegionSelection::iterator tmp;
@@ -5971,8 +6154,8 @@ Editor::split_region_at_transients ()
 
                i = tmp;
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 
 }
 
@@ -6160,14 +6343,14 @@ Editor::place_transient()
 
        framepos_t where = get_preferred_edit_position();
 
-       _session->begin_reversible_command (_("place transient"));
-
+       begin_reversible_command (_("place transient"));
+       
        for (RegionSelection::iterator r = rs.begin(); r != rs.end(); ++r) {
                framepos_t position = (*r)->region()->position();
                (*r)->region()->add_transient(where - position);
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -6195,8 +6378,8 @@ Editor::snap_regions_to_grid ()
                return;
        }
 
-       _session->begin_reversible_command (_("snap regions to grid"));
-
+       begin_reversible_command (_("snap regions to grid"));
+       
        for (RegionSelection::iterator r = rs.begin(); r != rs.end(); ++r) {
 
                boost::shared_ptr<Playlist> pl = (*r)->region()->playlist();
@@ -6219,8 +6402,8 @@ Editor::snap_regions_to_grid ()
                (*i)->thaw();
                used_playlists.pop_front();
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -6278,8 +6461,8 @@ Editor::close_region_gaps ()
 
        /* Iterate over the region list and make adjacent regions overlap by crossfade_len_ms */
 
-       _session->begin_reversible_command (_("close region gaps"));
-
+       begin_reversible_command (_("close region gaps"));
+       
        int idx = 0;
        boost::shared_ptr<Region> last_region;
 
@@ -6318,8 +6501,8 @@ Editor::close_region_gaps ()
                (*i)->thaw();
                used_playlists.pop_front();
        }
-
-       _session->commit_reversible_command ();
+       
+       commit_reversible_command ();
 }
 
 void
@@ -6412,7 +6595,7 @@ Editor::playhead_forward_to_grid ()
        framepos_t pos = playhead_cursor->current_frame ();
        if (pos < max_framepos - 1) {
                pos += 2;
-               snap_to_internal (pos, 1, false);
+               snap_to_internal (pos, RoundUpAlways, false);
                _session->request_locate (pos);
        }
 }
@@ -6428,7 +6611,7 @@ Editor::playhead_backward_to_grid ()
        framepos_t pos = playhead_cursor->current_frame ();
        if (pos > 2) {
                pos -= 2;
-               snap_to_internal (pos, -1, false);
+               snap_to_internal (pos, RoundDownAlways, false);
                _session->request_locate (pos);
        }
 }
@@ -6524,6 +6707,7 @@ edit your ardour.rc file to set the\n\
                return;
        }
 
+       // XXX should be using gettext plural forms, maybe?
        if (ntracks > 1) {
                trackstr = _("tracks");
        } else {
@@ -6550,7 +6734,7 @@ edit your ardour.rc file to set the\n\
                }
        } else if (nbusses) {
                prompt  = string_compose (_("Do you really want to remove %1 %2?\n\n"
-                                           "This action cannot be undon, and the session file will be overwritten"),
+                                           "This action cannot be undone, and the session file will be overwritten"),
                                          nbusses, busstr);
        }
 
@@ -6576,6 +6760,7 @@ edit your ardour.rc file to set the\n\
 
        {
                Session::StateProtector sp (_session);
+               DisplaySuspender ds;
                for (vector<boost::shared_ptr<Route> >::iterator x = routes.begin(); x != routes.end(); ++x) {
                        _session->remove_route (*x);
                }
@@ -6758,6 +6943,7 @@ Editor::fit_selected_tracks ()
                         }
                 }
         }
+
 }
 
 void
@@ -6786,7 +6972,7 @@ Editor::fit_tracks (TrackViewList & tracks)
                  height that will be taken by visible children of selected
                  tracks - height of the ruler/hscroll area 
        */
-       uint32_t h = (uint32_t) floor ((_visible_canvas_height - (child_heights + _trackview_group->canvas_origin().y)) / visible_tracks);
+       uint32_t h = (uint32_t) floor ((trackviews_height() - child_heights) / visible_tracks);
        double first_y_pos = DBL_MAX;
 
        if (h < TimeAxisView::preset_height (HeightSmall)) {
@@ -6809,9 +6995,9 @@ Editor::fit_tracks (TrackViewList & tracks)
                }
        }
 
-       /* operate on all tracks, hide unselected ones that are in the middle of selected ones */
-
-       bool within_selected = false;
+       bool prev_was_selected = false;
+       bool is_selected = tracks.contains (all.front());
+       bool next_is_selected;
 
        for (TrackViewList::iterator t = all.begin(); t != all.end(); ++t) {
 
@@ -6819,16 +7005,26 @@ Editor::fit_tracks (TrackViewList & tracks)
 
                next = t;
                ++next;
-               
+
+               if (next != all.end()) {
+                       next_is_selected = tracks.contains (*next);
+               } else {
+                       next_is_selected = false;
+               }
+
                if ((*t)->marked_for_display ()) {
-                       if (tracks.contains (*t)) { 
+                       if (is_selected) {
                                (*t)->set_height (h);
                                first_y_pos = std::min ((*t)->y_position (), first_y_pos);
-                               within_selected = true;
-                       } else if (within_selected) {
-                               hide_track_in_display (*t);
+                       } else {
+                               if (prev_was_selected && next_is_selected) {
+                                       hide_track_in_display (*t);
+                               }
                        }
                }
+
+               prev_was_selected = is_selected;
+               is_selected = next_is_selected;
        }
 
        /*
@@ -6840,6 +7036,8 @@ Editor::fit_tracks (TrackViewList & tracks)
        vertical_adjustment.set_value (first_y_pos);
 
        redo_visual_stack.push_back (current_visual_state (true));
+
+       visible_tracks_selector.set_text (_("Sel"));
 }
 
 void
@@ -6912,7 +7110,7 @@ Editor::toggle_region_mute ()
 
                (*i)->region()->playlist()->clear_changes ();
                (*i)->region()->set_muted (!(*i)->region()->muted ());
-               _session->add_command (new StatefulDiffCommand ((*i)->region()->playlist()));
+               _session->add_command (new StatefulDiffCommand ((*i)->region()));
 
        }
 
@@ -7024,7 +7222,7 @@ Editor::lock ()
 
                ArdourButton* b = manage (new ArdourButton);
                b->set_name ("lock button");
-               b->set_markup (string_compose ("<span size=\"large\" weight=\"bold\">%1</span>", _("Click to unlock")));
+               b->set_text (_("Click to unlock"));
                b->signal_clicked.connect (sigc::mem_fun (*this, &Editor::unlock));
                lock_dialog->get_vbox()->pack_start (*b);
                
@@ -7056,3 +7254,39 @@ Editor::unlock ()
                start_lock_event_timing ();
        }
 }
+
+void
+Editor::bring_in_callback (Gtk::Label* label, uint32_t n, uint32_t total, string name)
+{
+       Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&Editor::update_bring_in_message, this, label, n, total, name));
+}
+
+void
+Editor::update_bring_in_message (Gtk::Label* label, uint32_t n, uint32_t total, string name)
+{
+       label->set_text (string_compose ("Copying %1, %2 of %3", name, n, total));
+       Gtkmm2ext::UI::instance()->flush_pending ();
+}
+
+void
+Editor::bring_all_sources_into_session ()
+{
+       if (!_session) {
+               return;
+       }
+
+       Gtk::Label msg;
+       ArdourDialog w (_("Moving embedded files into session folder"));
+       w.get_vbox()->pack_start (msg);
+       w.present ();
+       
+       /* flush all pending GUI events because we're about to start copying
+        * files
+        */
+       
+       Gtkmm2ext::UI::instance()->flush_pending ();
+
+       cerr << " Do it\n";
+
+       _session->bring_all_sources_into_session (boost::bind (&Editor::bring_in_callback, this, &msg, _1, _2, _3));
+}