combobox width fixes from mtaht, backported from 2.X
[ardour.git] / gtk2_ardour / editor.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /* Note: public Editor methods are documented in public_editor.h */
21
22 #include <unistd.h>
23 #include <cstdlib>
24 #include <cmath>
25 #include <string>
26 #include <algorithm>
27
28 #include <boost/none.hpp>
29
30 #include <sigc++/bind.h>
31
32 #include "pbd/convert.h"
33 #include "pbd/error.h"
34 #include "pbd/enumwriter.h"
35 #include "pbd/memento_command.h"
36
37 #include <glibmm/miscutils.h>
38 #include <gtkmm/image.h>
39 #include <gdkmm/color.h>
40 #include <gdkmm/bitmap.h>
41
42 #include <gtkmm2ext/grouped_buttons.h>
43 #include <gtkmm2ext/gtk_ui.h>
44 #include <gtkmm2ext/tearoff.h>
45 #include <gtkmm2ext/utils.h>
46 #include <gtkmm2ext/window_title.h>
47 #include <gtkmm2ext/choice.h>
48
49 #include "ardour/audio_diskstream.h"
50 #include "ardour/audio_track.h"
51 #include "ardour/audioplaylist.h"
52 #include "ardour/audioregion.h"
53 #include "ardour/location.h"
54 #include "ardour/midi_region.h"
55 #include "ardour/plugin_manager.h"
56 #include "ardour/profile.h"
57 #include "ardour/route_group.h"
58 #include "ardour/session_directory.h"
59 #include "ardour/session_route.h"
60 #include "ardour/session_state_utils.h"
61 #include "ardour/tempo.h"
62 #include "ardour/utils.h"
63
64 #include "control_protocol/control_protocol.h"
65
66 #include "ardour_ui.h"
67 #include "editor.h"
68 #include "keyboard.h"
69 #include "marker.h"
70 #include "playlist_selector.h"
71 #include "audio_region_view.h"
72 #include "rgb_macros.h"
73 #include "selection.h"
74 #include "audio_streamview.h"
75 #include "time_axis_view.h"
76 #include "audio_time_axis.h"
77 #include "utils.h"
78 #include "crossfade_view.h"
79 #include "editing.h"
80 #include "public_editor.h"
81 #include "crossfade_edit.h"
82 #include "canvas_impl.h"
83 #include "actions.h"
84 #include "sfdb_ui.h"
85 #include "gui_thread.h"
86 #include "simpleline.h"
87 #include "rhythm_ferret.h"
88 #include "actions.h"
89 #include "tempo_lines.h"
90 #include "analysis_window.h"
91 #include "bundle_manager.h"
92 #include "global_port_matrix.h"
93
94 #include "i18n.h"
95
96 #ifdef WITH_CMT
97 #include "imageframe_socket_handler.h"
98 #endif
99
100 using namespace std;
101 using namespace sigc;
102 using namespace ARDOUR;
103 using namespace PBD;
104 using namespace Gtk;
105 using namespace Glib;
106 using namespace Gtkmm2ext;
107 using namespace Editing;
108
109 using PBD::internationalize;
110 using PBD::atoi;
111
112 const double Editor::timebar_height = 15.0;
113
114 #include "editor_xpms"
115
116 static const gchar *_snap_type_strings[] = {
117         N_("CD Frames"),
118         N_("SMPTE Frames"),
119         N_("SMPTE Seconds"),
120         N_("SMPTE Minutes"),
121         N_("Seconds"),
122         N_("Minutes"),
123         N_("Beats/32"),
124         N_("Beats/16"),
125         N_("Beats/8"),
126         N_("Beats/4"),
127         N_("Beats/3"),
128         N_("Beats"),
129         N_("Bars"),
130         N_("Marks"),
131         N_("Region starts"),
132         N_("Region ends"),
133         N_("Region syncs"),
134         N_("Region bounds"),
135         0
136 };
137
138 static const gchar *_snap_mode_strings[] = {
139         N_("No Grid"),
140         N_("Grid"),
141         N_("Magnetic"),
142         0
143 };
144
145 static const gchar *_edit_point_strings[] = {
146         N_("Playhead"),
147         N_("Marker"),
148         N_("Mouse"),
149         0
150 };
151
152 static const gchar *_zoom_focus_strings[] = {
153         N_("Left"),
154         N_("Right"),
155         N_("Center"),
156         N_("Playhead"),
157         N_("Mouse"),
158         N_("Active Mark"),
159         0
160 };
161
162 #ifdef USE_RUBBERBAND
163 static const gchar *_rb_opt_strings[] = {
164         N_("Mushy"),
165         N_("Smooth"),
166         N_("Balanced multitimbral mixture"),
167         N_("Unpitched percussion with stable notes"),
168         N_("Crisp monophonic instrumental"),
169         N_("Unpitched solo percussion"),
170         0
171 };
172 #endif
173
174 /* Soundfile  drag-n-drop */
175
176 Gdk::Cursor* Editor::cross_hair_cursor = 0;
177 Gdk::Cursor* Editor::selector_cursor = 0;
178 Gdk::Cursor* Editor::trimmer_cursor = 0;
179 Gdk::Cursor* Editor::grabber_cursor = 0;
180 Gdk::Cursor* Editor::grabber_edit_point_cursor = 0;
181 Gdk::Cursor* Editor::zoom_cursor = 0;
182 Gdk::Cursor* Editor::time_fx_cursor = 0;
183 Gdk::Cursor* Editor::fader_cursor = 0;
184 Gdk::Cursor* Editor::speaker_cursor = 0;
185 Gdk::Cursor* Editor::midi_pencil_cursor = 0;
186 Gdk::Cursor* Editor::midi_select_cursor = 0;
187 Gdk::Cursor* Editor::midi_resize_cursor = 0;
188 Gdk::Cursor* Editor::midi_erase_cursor = 0;
189 Gdk::Cursor* Editor::wait_cursor = 0;
190 Gdk::Cursor* Editor::timebar_cursor = 0;
191 Gdk::Cursor* Editor::transparent_cursor = 0;
192
193 void
194 show_me_the_size (Requisition* r, const char* what)
195 {
196         cerr << "size of " << what << " = " << r->width << " x " << r->height << endl;
197 }
198
199 void
200 DragInfo::clear_copied_locations ()
201 {
202         for (list<Location*>::iterator i = copied_locations.begin(); i != copied_locations.end(); ++i) {
203                 delete *i;
204         }
205         copied_locations.clear ();
206 }
207
208 Editor::Editor ()
209         : 
210           /* time display buttons */
211
212           minsec_label (_("Mins:Secs")),
213           bbt_label (_("Bars:Beats")),
214           smpte_label (_("Timecode")),
215           frame_label (_("Samples")),
216           tempo_label (_("Tempo")),
217           meter_label (_("Meter")),
218           mark_label (_("Location Markers")),
219           range_mark_label (_("Range Markers")),
220           transport_mark_label (_("Loop/Punch Ranges")),
221           cd_mark_label (_("CD Markers")),
222           edit_packer (3, 4, true),
223
224           /* the values here don't matter: layout widgets
225              reset them as needed.
226           */
227
228           vertical_adjustment (0.0, 0.0, 10.0, 400.0),
229           horizontal_adjustment (0.0, 0.0, 20.0, 1200.0),
230
231           /* tool bar related */
232
233           edit_point_clock (X_("editpoint"), false, X_("EditPointClock"), true),
234           zoom_range_clock (X_("zoomrange"), false, X_("ZoomRangeClock"), true, true),
235           
236           toolbar_selection_clock_table (2,3),
237           
238           automation_mode_button (_("mode")),
239           global_automation_button (_("automation")),
240
241           midi_panic_button (_("Panic")),
242           midi_tools_tearoff (0),
243
244 #ifdef WITH_CMT
245           image_socket_listener(0),
246 #endif
247
248           /* nudge */
249
250           nudge_clock (X_("nudge"), false, X_("NudgeClock"), true, true),
251           meters_running(false),
252           _pending_locate_request (false)
253
254 {
255         constructed = false;
256
257         /* we are a singleton */
258
259         PublicEditor::_instance = this;
260
261         session = 0;
262         _have_idled = false;
263
264         selection = new Selection (this);
265         cut_buffer = new Selection (this);
266
267         clicked_regionview = 0;
268         clicked_axisview = 0;
269         clicked_routeview = 0;
270         clicked_crossfadeview = 0;
271         clicked_control_point = 0;
272         last_update_frame = 0;
273         drag_info.item = 0;
274         current_mixer_strip = 0;
275         current_bbt_points = 0;
276         tempo_lines = 0;
277         
278         snap_type_strings =  I18N (_snap_type_strings);
279         snap_mode_strings =  I18N (_snap_mode_strings);
280         zoom_focus_strings = I18N (_zoom_focus_strings);
281         edit_point_strings = I18N (_edit_point_strings);
282 #ifdef USE_RUBBERBAND
283         rb_opt_strings = I18N (_rb_opt_strings);
284 #endif
285         
286         snap_threshold = 5.0;
287         bbt_beat_subdivision = 4;
288         canvas_width = 0;
289         canvas_height = 0;
290         last_autoscroll_x = 0;
291         last_autoscroll_y = 0;
292         autoscroll_active = false;
293         autoscroll_timeout_tag = -1;
294         interthread_progress_window = 0;
295         logo_item = 0;
296
297         analysis_window = 0;
298
299         current_interthread_info = 0;
300         _show_measures = true;
301         _show_waveforms = true;
302         _show_waveforms_recording = true;
303         first_action_message = 0;
304         show_gain_after_trim = false;
305         route_redisplay_does_not_sync_order_keys = false;
306         route_redisplay_does_not_reset_order_keys = false;
307         no_route_list_redisplay = false;
308         verbose_cursor_on = true;
309         route_removal = false;
310         show_automatic_regions_in_region_list = true;
311         last_item_entered = 0;
312         last_item_entered_n = 0;
313
314         region_list_sort_type = (Editing::RegionListSortType) 0;
315         have_pending_keyboard_selection = false;
316         _follow_playhead = true;
317         _xfade_visibility = true;
318         editor_ruler_menu = 0;
319         no_ruler_shown_update = false;
320         edit_group_list_menu = 0;
321         route_list_menu = 0;
322         region_list_menu = 0;
323         marker_menu = 0;
324         start_end_marker_menu = 0;
325         range_marker_menu = 0;
326         marker_menu_item = 0;
327         tm_marker_menu = 0;
328         transport_marker_menu = 0;
329         new_transport_marker_menu = 0;
330         editor_mixer_strip_width = Wide;
331         show_editor_mixer_when_tracks_arrive = false;
332         region_edit_menu_split_multichannel_item = 0;
333         region_edit_menu_split_item = 0;
334         temp_location = 0;
335         leftmost_frame = 0;
336         ignore_mouse_mode_toggle = false;
337         ignore_midi_edit_mode_toggle = false;
338         current_stepping_trackview = 0;
339         entered_track = 0;
340         entered_regionview = 0;
341         entered_marker = 0;
342         clear_entered_track = false;
343         _new_regionviews_show_envelope = false;
344         current_timefx = 0;
345         in_edit_group_row_change = false;
346         playhead_cursor = 0;
347         button_release_can_deselect = true;
348         _dragging_playhead = false;
349         _dragging_edit_point = false;
350         _dragging_hscrollbar = false;
351         select_new_marker = false;
352         zoomed_to_region = false;
353         rhythm_ferret = 0;
354         _bundle_manager = 0;
355         for (ARDOUR::DataType::iterator i = ARDOUR::DataType::begin(); i != ARDOUR::DataType::end(); ++i) {
356                 _global_port_matrix[*i] = 0;
357         }
358         allow_vertical_scroll = false;
359         no_save_visual = false;
360         need_resize_line = false;
361         resize_line_y = 0;
362         old_resize_line_y = -1;
363         no_region_list_redisplay = false;
364         resize_idle_id = -1;
365
366         _scrubbing = false;
367         scrubbing_direction = 0;
368
369         sfbrowser = 0;
370
371         location_marker_color = ARDOUR_UI::config()->canvasvar_LocationMarker.get();
372         location_range_color = ARDOUR_UI::config()->canvasvar_LocationRange.get();
373         location_cd_marker_color = ARDOUR_UI::config()->canvasvar_LocationCDMarker.get();
374         location_loop_color = ARDOUR_UI::config()->canvasvar_LocationLoop.get();
375         location_punch_color = ARDOUR_UI::config()->canvasvar_LocationPunch.get();
376
377         range_marker_drag_rect = 0;
378         marker_drag_line = 0;
379         set_midi_edit_mode (MidiEditPencil, true);
380         _edit_point = EditAtMouse;
381         set_mouse_mode (MouseObject, true);
382
383         frames_per_unit = 2048; /* too early to use reset_zoom () */
384         reset_hscrollbar_stepping ();
385         
386         zoom_focus = ZoomFocusLeft;
387         set_zoom_focus (ZoomFocusLeft);
388         zoom_range_clock.ValueChanged.connect (mem_fun(*this, &Editor::zoom_adjustment_changed));
389
390         bbt_label.set_name ("EditorTimeButton");
391         bbt_label.set_size_request (-1, (int)timebar_height);
392         bbt_label.set_alignment (1.0, 0.5);
393         bbt_label.set_padding (5,0);
394         bbt_label.hide ();
395         bbt_label.set_no_show_all();
396         minsec_label.set_name ("EditorTimeButton");
397         minsec_label.set_size_request (-1, (int)timebar_height);
398         minsec_label.set_alignment (1.0, 0.5);
399         minsec_label.set_padding (5,0);
400         minsec_label.hide ();
401         minsec_label.set_no_show_all();
402         smpte_label.set_name ("EditorTimeButton");
403         smpte_label.set_size_request (-1, (int)timebar_height);
404         smpte_label.set_alignment (1.0, 0.5);
405         smpte_label.set_padding (5,0);
406         smpte_label.hide ();
407         smpte_label.set_no_show_all();
408         frame_label.set_name ("EditorTimeButton");
409         frame_label.set_size_request (-1, (int)timebar_height);
410         frame_label.set_alignment (1.0, 0.5);
411         frame_label.set_padding (5,0);
412         frame_label.hide ();
413         frame_label.set_no_show_all();
414
415         tempo_label.set_name ("EditorTimeButton");
416         tempo_label.set_size_request (-1, (int)timebar_height);
417         tempo_label.set_alignment (1.0, 0.5);
418         tempo_label.set_padding (5,0);
419         tempo_label.hide();
420         tempo_label.set_no_show_all();
421         meter_label.set_name ("EditorTimeButton");
422         meter_label.set_size_request (-1, (int)timebar_height);
423         meter_label.set_alignment (1.0, 0.5);
424         meter_label.set_padding (5,0);
425         meter_label.hide();
426         meter_label.set_no_show_all();
427         mark_label.set_name ("EditorTimeButton");
428         mark_label.set_size_request (-1, (int)timebar_height);
429         mark_label.set_alignment (1.0, 0.5);
430         mark_label.set_padding (5,0);
431         mark_label.hide();
432         mark_label.set_no_show_all();
433         cd_mark_label.set_name ("EditorTimeButton");
434         cd_mark_label.set_size_request (-1, (int)timebar_height);
435         cd_mark_label.set_alignment (1.0, 0.5);
436         cd_mark_label.set_padding (5,0);
437         cd_mark_label.hide();
438         cd_mark_label.set_no_show_all();
439         range_mark_label.set_name ("EditorTimeButton");
440         range_mark_label.set_size_request (-1, (int)timebar_height);
441         range_mark_label.set_alignment (1.0, 0.5);
442         range_mark_label.set_padding (5,0);
443         range_mark_label.hide();
444         range_mark_label.set_no_show_all();
445         transport_mark_label.set_name ("EditorTimeButton");
446         transport_mark_label.set_size_request (-1, (int)timebar_height);
447         transport_mark_label.set_alignment (1.0, 0.5);
448         transport_mark_label.set_padding (5,0);
449         transport_mark_label.hide();
450         transport_mark_label.set_no_show_all();
451
452         initialize_rulers ();
453         initialize_canvas ();
454
455         selection->TimeChanged.connect (mem_fun(*this, &Editor::time_selection_changed));
456         selection->TracksChanged.connect (mem_fun(*this, &Editor::track_selection_changed));
457         editor_regions_selection_changed_connection = selection->RegionsChanged.connect (mem_fun(*this, &Editor::region_selection_changed));
458         selection->PointsChanged.connect (mem_fun(*this, &Editor::point_selection_changed));
459         selection->MarkersChanged.connect (mem_fun(*this, &Editor::marker_selection_changed));
460
461         edit_controls_vbox.set_spacing (0);
462         horizontal_adjustment.signal_value_changed().connect (mem_fun(*this, &Editor::scroll_canvas_horizontally), false);
463         vertical_adjustment.signal_value_changed().connect (mem_fun(*this, &Editor::tie_vertical_scrolling), true);
464         track_canvas->signal_map_event().connect (mem_fun (*this, &Editor::track_canvas_map_handler));
465
466         controls_layout.add (edit_controls_vbox);
467         controls_layout.set_name ("EditControlsBase");
468         controls_layout.add_events (Gdk::SCROLL_MASK);
469         controls_layout.signal_scroll_event().connect (mem_fun(*this, &Editor::control_layout_scroll), false);
470         
471         controls_layout.add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK);
472         controls_layout.signal_button_release_event().connect (mem_fun(*this, &Editor::edit_controls_button_release));
473         controls_layout_size_request_connection = controls_layout.signal_size_request().connect (mem_fun (*this, &Editor::controls_layout_size_request));
474
475         edit_vscrollbar.set_adjustment (vertical_adjustment);
476         edit_hscrollbar.set_adjustment (horizontal_adjustment);
477
478         edit_hscrollbar.signal_button_press_event().connect (mem_fun(*this, &Editor::hscrollbar_button_press), false);
479         edit_hscrollbar.signal_button_release_event().connect (mem_fun(*this, &Editor::hscrollbar_button_release), false);
480         edit_hscrollbar.signal_size_allocate().connect (mem_fun(*this, &Editor::hscrollbar_allocate));
481
482         edit_hscrollbar.set_name ("EditorHScrollbar");
483
484         build_cursors ();
485         setup_toolbar ();
486         setup_midi_toolbar ();
487
488         edit_point_clock.ValueChanged.connect (mem_fun(*this, &Editor::edit_point_clock_changed));
489         
490         ArdourCanvas::Canvas* time_pad = manage(new ArdourCanvas::Canvas());
491         ArdourCanvas::SimpleLine* pad_line_1 = manage(new ArdourCanvas::SimpleLine(*time_pad->root(),
492                         0.0, 1.0, 100.0, 1.0));
493         pad_line_1->property_color_rgba() = 0xFF0000FF;
494         pad_line_1->show();
495         time_pad->show();
496
497         //time_canvas_vbox.set_size_request (-1, (int)(timebar_height * visible_timebars) + 2);
498         //time_canvas_vbox.set_size_request (-1, -1);
499
500         ruler_label_event_box.add (ruler_label_vbox);   
501         ruler_label_event_box.set_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
502         ruler_label_event_box.set_name ("TimebarLabelBase");
503         ruler_label_event_box.signal_button_release_event().connect (mem_fun(*this, &Editor::ruler_label_button_release));
504
505         time_button_event_box.add (time_button_vbox);
506         time_button_event_box.set_name ("TimebarLabelBase");
507         time_button_event_box.set_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
508         time_button_event_box.signal_button_release_event().connect (mem_fun(*this, &Editor::ruler_label_button_release));
509
510         /* these enable us to have a dedicated window (for cursor setting, etc.) 
511            for the canvas areas.
512         */
513
514         track_canvas_event_box.add (*track_canvas);
515
516         time_canvas_event_box.add (time_canvas_vbox);
517         time_canvas_event_box.set_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::POINTER_MOTION_MASK);
518         
519         edit_packer.set_col_spacings (0);
520         edit_packer.set_row_spacings (0);
521         edit_packer.set_homogeneous (false);
522         edit_packer.set_border_width (0);
523         edit_packer.set_name ("EditorWindow");
524
525 #ifndef THE_OLD_WAY
526
527         edit_packer.attach (ruler_label_event_box,   0, 1, 0, 1,    FILL,        SHRINK, 0, 0);
528
529         edit_packer.attach (time_button_event_box,   0, 1, 1, 2,    FILL,        SHRINK, 0, 0);
530         edit_packer.attach (time_canvas_event_box,   1, 2, 0, 1,    FILL|EXPAND, FILL, 0, 0);
531
532         edit_packer.attach (controls_layout,         0, 1, 2, 3,    FILL,        FILL|EXPAND, 0, 0);
533         edit_packer.attach (track_canvas_event_box,  1, 2, 1, 3,    FILL|EXPAND, FILL|EXPAND, 0, 0);
534
535         edit_packer.attach (zoom_box,                0, 1, 3, 4,    FILL,         FILL, 0, 0);
536         edit_packer.attach (edit_hscrollbar,         1, 2, 3, 4,    FILL|EXPAND,  FILL, 0, 0);
537
538         edit_packer.attach (edit_vscrollbar,         3, 4, 2, 3,    FILL,        FILL|EXPAND, 0, 0);
539
540 #else
541         
542         edit_packer.attach (edit_vscrollbar,         0, 1, 0, 4,    FILL,        FILL|EXPAND, 0, 0);
543
544         edit_packer.attach (ruler_label_event_box,   1, 2, 0, 1,    FILL,        SHRINK, 0, 0);
545         edit_packer.attach (time_button_event_box,   1, 2, 1, 2,    FILL,        SHRINK, 0, 0);
546         edit_packer.attach (time_canvas_event_box,   2, 3, 0, 1,    FILL|EXPAND, FILL, 0, 0);
547
548         edit_packer.attach (controls_layout,         1, 2, 2, 3,    FILL,        FILL|EXPAND, 0, 0);
549         edit_packer.attach (track_canvas_event_box,  2, 3, 1, 3,    FILL|EXPAND, FILL|EXPAND, 0, 0);
550
551         edit_packer.attach (zoom_box,                1, 2, 3, 4,    FILL,         FILL, 0, 0);
552         edit_packer.attach (edit_hscrollbar,         2, 3, 3, 4,    FILL|EXPAND,  FILL, 0, 0);
553 #endif
554
555         bottom_hbox.set_border_width (2);
556         bottom_hbox.set_spacing (3);
557
558         route_display_model = ListStore::create(route_display_columns);
559         route_list_display.set_model (route_display_model);
560         route_list_display.append_column (_("Show"), route_display_columns.visible);
561         route_list_display.append_column (_("Name"), route_display_columns.text);
562         route_list_display.get_column (0)->set_data (X_("colnum"), GUINT_TO_POINTER(0));
563         route_list_display.get_column (1)->set_data (X_("colnum"), GUINT_TO_POINTER(1));
564         route_list_display.set_headers_visible (true);
565         route_list_display.set_name ("TrackListDisplay");
566         route_list_display.get_selection()->set_mode (SELECTION_SINGLE);
567         route_list_display.set_reorderable (true);
568         route_list_display.set_size_request (100,-1);
569         route_list_display.add_object_drag (route_display_columns.route.index(), "routes");
570
571         CellRendererToggle* route_list_visible_cell = dynamic_cast<CellRendererToggle*>(route_list_display.get_column_cell_renderer (0));
572         route_list_visible_cell->property_activatable() = true;
573         route_list_visible_cell->property_radio() = false;
574
575         route_display_model->signal_row_deleted().connect (mem_fun (*this, &Editor::route_list_delete));
576         route_display_model->signal_row_changed().connect (mem_fun (*this, &Editor::route_list_change));
577
578         route_list_display.signal_button_press_event().connect (mem_fun (*this, &Editor::route_list_display_button_press), false);
579
580         route_list_scroller.add (route_list_display);
581         route_list_scroller.set_policy (POLICY_NEVER, POLICY_AUTOMATIC);
582
583         group_model = ListStore::create(group_columns);
584         edit_group_display.set_model (group_model);
585         edit_group_display.append_column (_("Name"), group_columns.text);
586         edit_group_display.append_column (_("Active"), group_columns.is_active);
587         edit_group_display.append_column (_("Show"), group_columns.is_visible);
588         edit_group_display.get_column (0)->set_data (X_("colnum"), GUINT_TO_POINTER(0));
589         edit_group_display.get_column (1)->set_data (X_("colnum"), GUINT_TO_POINTER(1));
590         edit_group_display.get_column (2)->set_data (X_("colnum"), GUINT_TO_POINTER(2));
591         edit_group_display.get_column (0)->set_expand (true);
592         edit_group_display.get_column (1)->set_expand (false);
593         edit_group_display.get_column (2)->set_expand (false);
594         edit_group_display.set_headers_visible (true);
595
596         /* name is directly editable */
597
598         CellRendererText* name_cell = dynamic_cast<CellRendererText*>(edit_group_display.get_column_cell_renderer (0));
599         name_cell->property_editable() = true;
600         name_cell->signal_edited().connect (mem_fun (*this, &Editor::edit_group_name_edit));
601
602         /* use checkbox for the active + visible columns */
603
604         CellRendererToggle* active_cell = dynamic_cast<CellRendererToggle*>(edit_group_display.get_column_cell_renderer (1));
605         active_cell->property_activatable() = true;
606         active_cell->property_radio() = false;
607
608         active_cell = dynamic_cast<CellRendererToggle*>(edit_group_display.get_column_cell_renderer (1));
609         active_cell->property_activatable() = true;
610         active_cell->property_radio() = false;
611
612         group_model->signal_row_changed().connect (mem_fun (*this, &Editor::edit_group_row_change));
613
614         edit_group_display.set_name ("EditGroupList");
615         edit_group_display.get_selection()->set_mode (SELECTION_SINGLE);
616         edit_group_display.set_headers_visible (true);
617         edit_group_display.set_reorderable (false);
618         edit_group_display.set_rules_hint (true);
619         edit_group_display.set_size_request (75, -1);
620
621         edit_group_display_scroller.add (edit_group_display);
622         edit_group_display_scroller.set_policy (POLICY_AUTOMATIC, POLICY_AUTOMATIC);
623
624         edit_group_display.signal_button_press_event().connect (mem_fun(*this, &Editor::edit_group_list_button_press_event), false);
625
626         VBox* edit_group_display_packer = manage (new VBox());
627         HBox* edit_group_display_button_box = manage (new HBox());
628         edit_group_display_button_box->set_homogeneous (true);
629
630         Button* edit_group_add_button = manage (new Button ());
631         Button* edit_group_remove_button = manage (new Button ());
632
633         Widget* w;
634
635         w = manage (new Image (Stock::ADD, ICON_SIZE_BUTTON));
636         w->show();
637         edit_group_add_button->add (*w);
638
639         w = manage (new Image (Stock::REMOVE, ICON_SIZE_BUTTON));
640         w->show();
641         edit_group_remove_button->add (*w);
642
643         edit_group_add_button->signal_clicked().connect (mem_fun (*this, &Editor::new_edit_group));
644         edit_group_remove_button->signal_clicked().connect (mem_fun (*this, &Editor::remove_selected_edit_group));
645         
646         edit_group_display_button_box->pack_start (*edit_group_add_button);
647         edit_group_display_button_box->pack_start (*edit_group_remove_button);
648
649         edit_group_display_packer->pack_start (edit_group_display_scroller, true, true);
650         edit_group_display_packer->pack_start (*edit_group_display_button_box, false, false);
651
652         region_list_display.set_size_request (100, -1);
653         region_list_display.set_name ("RegionListDisplay");
654         /* Try to prevent single mouse presses from initiating edits.
655            This relies on a hack in gtktreeview.c:gtk_treeview_button_press()
656         */
657         region_list_display.set_data ("mouse-edits-require-mod1", (gpointer) 0x1);
658
659         region_list_model = TreeStore::create (region_list_columns);
660         region_list_model->set_sort_func (0, mem_fun (*this, &Editor::region_list_sorter));
661         region_list_model->set_sort_column (0, SORT_ASCENDING);
662
663         region_list_display.set_model (region_list_model);
664         region_list_display.append_column (_("Regions"), region_list_columns.name);
665         region_list_display.append_column (_("Start"), region_list_columns.start);
666         region_list_display.append_column (_("End"), region_list_columns.end);
667         region_list_display.append_column (_("Length"), region_list_columns.length);
668         region_list_display.append_column (_("Sync"), region_list_columns.sync);
669         region_list_display.append_column (_("Fade In"), region_list_columns.fadein);
670         region_list_display.append_column (_("Fade Out"), region_list_columns.fadeout);
671         region_list_display.append_column (_("L"), region_list_columns.locked);
672         region_list_display.append_column (_("G"), region_list_columns.glued);
673         region_list_display.append_column (_("M"), region_list_columns.muted);
674         region_list_display.append_column (_("O"), region_list_columns.opaque);
675         region_list_display.append_column (_("Used"), region_list_columns.used);
676         region_list_display.append_column (_("Path"), region_list_columns.path);
677         region_list_display.set_headers_visible (true);
678         //region_list_display.set_grid_lines (TREE_VIEW_GRID_LINES_BOTH);
679         
680         CellRendererText* region_name_cell = dynamic_cast<CellRendererText*>(region_list_display.get_column_cell_renderer (0));
681         region_name_cell->property_editable() = true;
682         region_name_cell->signal_edited().connect (mem_fun (*this, &Editor::region_name_edit));
683
684         region_list_display.get_selection()->set_select_function (mem_fun (*this, &Editor::region_list_selection_filter));
685         
686         TreeViewColumn* tv_col = region_list_display.get_column(0);
687         CellRendererText* renderer = dynamic_cast<CellRendererText*>(region_list_display.get_column_cell_renderer (0));
688         tv_col->add_attribute(renderer->property_text(), region_list_columns.name);
689         tv_col->add_attribute(renderer->property_foreground_gdk(), region_list_columns.color_);
690         
691         region_list_display.get_selection()->set_mode (SELECTION_MULTIPLE);
692         region_list_display.add_object_drag (region_list_columns.region.index(), "regions");
693         
694         /* setup DnD handling */
695         
696         list<TargetEntry> region_list_target_table;
697         
698         region_list_target_table.push_back (TargetEntry ("text/plain"));
699         region_list_target_table.push_back (TargetEntry ("text/uri-list"));
700         region_list_target_table.push_back (TargetEntry ("application/x-rootwin-drop"));
701         
702         region_list_display.add_drop_targets (region_list_target_table);
703         region_list_display.signal_drag_data_received().connect (mem_fun(*this, &Editor::region_list_display_drag_data_received));
704
705         region_list_scroller.add (region_list_display);
706         region_list_scroller.set_policy (POLICY_AUTOMATIC, POLICY_AUTOMATIC);
707         
708         region_list_display.signal_key_press_event().connect (mem_fun(*this, &Editor::region_list_display_key_press));
709         region_list_display.signal_key_release_event().connect (mem_fun(*this, &Editor::region_list_display_key_release));
710         region_list_display.signal_button_press_event().connect (mem_fun(*this, &Editor::region_list_display_button_press), false);
711         region_list_display.signal_button_release_event().connect (mem_fun(*this, &Editor::region_list_display_button_release));
712         region_list_change_connection = region_list_display.get_selection()->signal_changed().connect (mem_fun(*this, &Editor::region_list_selection_changed));
713         // region_list_display.signal_popup_menu().connect (bind (mem_fun (*this, &Editor::show_region_list_display_context_menu), 1, 0));
714         
715         //ARDOUR_UI::instance()->secondary_clock.mode_changed.connect (mem_fun(*this, &Editor::redisplay_regions));
716         ARDOUR_UI::instance()->secondary_clock.mode_changed.connect (mem_fun(*this, &Editor::update_all_region_rows));
717         ARDOUR::Region::RegionPropertyChanged.connect (mem_fun(*this, &Editor::update_region_row));
718         
719         named_selection_scroller.add (named_selection_display);
720         named_selection_scroller.set_policy (POLICY_NEVER, POLICY_AUTOMATIC);
721
722         named_selection_model = TreeStore::create (named_selection_columns);
723         named_selection_display.set_model (named_selection_model);
724         named_selection_display.append_column (_("Chunks"), named_selection_columns.text);
725         named_selection_display.set_headers_visible (false);
726         named_selection_display.set_size_request (100, -1);
727         named_selection_display.set_name ("NamedSelectionDisplay");
728         
729         named_selection_display.get_selection()->set_mode (SELECTION_SINGLE);
730         named_selection_display.set_size_request (100, -1);
731         named_selection_display.signal_button_release_event().connect (mem_fun(*this, &Editor::named_selection_display_button_release), false);
732         named_selection_display.signal_key_release_event().connect (mem_fun(*this, &Editor::named_selection_display_key_release), false);
733         named_selection_display.get_selection()->signal_changed().connect (mem_fun (*this, &Editor::named_selection_display_selection_changed));
734
735         /* SNAPSHOTS */
736
737         snapshot_display_model = ListStore::create (snapshot_display_columns);
738         snapshot_display.set_model (snapshot_display_model);
739         snapshot_display.append_column (X_("snapshot"), snapshot_display_columns.visible_name);
740         snapshot_display.set_name ("SnapshotDisplay");
741         snapshot_display.set_size_request (75, -1);
742         snapshot_display.set_headers_visible (false);
743         snapshot_display.set_reorderable (false);
744         snapshot_display_scroller.add (snapshot_display);
745         snapshot_display_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
746
747         snapshot_display.get_selection()->signal_changed().connect (mem_fun(*this, &Editor::snapshot_display_selection_changed));
748         snapshot_display.signal_button_press_event().connect (mem_fun (*this, &Editor::snapshot_display_button_press), false);
749
750         Gtk::Label* nlabel;
751
752         nlabel = manage (new Label (_("Regions")));
753         nlabel->set_angle (-90);
754         the_notebook.append_page (region_list_scroller, *nlabel);
755         nlabel = manage (new Label (_("Tracks/Busses")));
756         nlabel->set_angle (-90);
757         the_notebook.append_page (route_list_scroller, *nlabel);
758         nlabel = manage (new Label (_("Snapshots")));
759         nlabel->set_angle (-90);
760         the_notebook.append_page (snapshot_display_scroller, *nlabel);
761         nlabel = manage (new Label (_("Edit Groups")));
762         nlabel->set_angle (-90);
763         the_notebook.append_page (*edit_group_display_packer, *nlabel);
764         
765         if (!Profile->get_sae()) {
766                 nlabel = manage (new Label (_("Chunks")));
767                 nlabel->set_angle (-90);
768                 the_notebook.append_page (named_selection_scroller, *nlabel);
769         }
770
771         the_notebook.set_show_tabs (true);
772         the_notebook.set_scrollable (true);
773         the_notebook.popup_enable ();
774         the_notebook.set_tab_pos (Gtk::POS_RIGHT);
775         the_notebook.show_all ();
776
777         post_maximal_editor_width = 0;
778         post_maximal_pane_position = 0;
779         edit_pane.pack1 (edit_packer, true, true);
780         edit_pane.pack2 (the_notebook, false, true);
781         
782         edit_pane.signal_size_allocate().connect (bind (mem_fun(*this, &Editor::pane_allocation_handler), static_cast<Paned*> (&edit_pane)));
783
784         top_hbox.pack_start (toolbar_frame, false, true);
785         top_hbox.pack_start (midi_toolbar_frame, false, true);
786
787         HBox *hbox = manage (new HBox);
788         hbox->pack_start (edit_pane, true, true);
789
790         global_vpacker.pack_start (top_hbox, false, false);
791         global_vpacker.pack_start (*hbox, true, true);
792
793         global_hpacker.pack_start (global_vpacker, true, true);
794
795         set_name ("EditorWindow");
796         add_accel_group (ActionManager::ui_manager->get_accel_group());
797
798         status_bar_hpacker.show ();
799
800         vpacker.pack_end (status_bar_hpacker, false, false);
801         vpacker.pack_end (global_hpacker, true, true);
802
803         /* register actions now so that set_state() can find them and set toggles/checks etc */
804         
805         register_actions ();
806
807         snap_type = SnapToBeat;
808         set_snap_to (snap_type);
809         snap_mode = SnapOff;
810         set_snap_mode (snap_mode);
811         set_edit_point_preference (EditAtMouse, true);
812
813         XMLNode* node = ARDOUR_UI::instance()->editor_settings();
814         set_state (*node);
815
816         _playlist_selector = new PlaylistSelector();
817         _playlist_selector->signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), static_cast<Window *> (_playlist_selector)));
818
819         RegionView::RegionViewGoingAway.connect (mem_fun(*this, &Editor::catch_vanishing_regionview));
820
821         /* nudge stuff */
822
823         nudge_forward_button.add (*(manage (new Image (::get_icon("nudge_right")))));
824         nudge_backward_button.add (*(manage (new Image (::get_icon("nudge_left")))));
825
826         ARDOUR_UI::instance()->tooltips().set_tip (nudge_forward_button, _("Nudge Region/Selection Forwards"));
827         ARDOUR_UI::instance()->tooltips().set_tip (nudge_backward_button, _("Nudge Region/Selection Backwards"));
828
829         nudge_forward_button.set_name ("TransportButton");
830         nudge_backward_button.set_name ("TransportButton");
831
832         fade_context_menu.set_name ("ArdourContextMenu");
833
834         /* icons, titles, WM stuff */
835
836         list<Glib::RefPtr<Gdk::Pixbuf> > window_icons;
837         Glib::RefPtr<Gdk::Pixbuf> icon;
838
839         if ((icon = ::get_icon ("ardour_icon_16px")) != 0) {
840                 window_icons.push_back (icon);
841         }
842         if ((icon = ::get_icon ("ardour_icon_22px")) != 0) {
843                 window_icons.push_back (icon);
844         }
845         if ((icon = ::get_icon ("ardour_icon_32px")) != 0) {
846                 window_icons.push_back (icon);
847         }
848         if ((icon = ::get_icon ("ardour_icon_48px")) != 0) {
849                 window_icons.push_back (icon);
850         }
851         if (!window_icons.empty()) {
852                 set_icon_list (window_icons);
853                 set_default_icon_list (window_icons);
854         }
855
856         WindowTitle title(Glib::get_application_name());
857         title += _("Editor");
858         set_title (title.get_string());
859         set_wmclass (X_("ardour_editor"), "Ardour");
860
861         add (vpacker);
862         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
863
864         signal_configure_event().connect (mem_fun (*ARDOUR_UI::instance(), &ARDOUR_UI::configure_handler));
865         signal_delete_event().connect (mem_fun (*ARDOUR_UI::instance(), &ARDOUR_UI::exit_on_main_window_close));
866
867         /* allow external control surfaces/protocols to do various things */
868
869         ControlProtocol::ZoomToSession.connect (mem_fun (*this, &Editor::temporal_zoom_session));
870         ControlProtocol::ZoomIn.connect (bind (mem_fun (*this, &Editor::temporal_zoom_step), false));
871         ControlProtocol::ZoomOut.connect (bind (mem_fun (*this, &Editor::temporal_zoom_step), true));
872         ControlProtocol::ScrollTimeline.connect (mem_fun (*this, &Editor::control_scroll));
873         BasicUI::AccessAction.connect (mem_fun (*this, &Editor::access_action));
874
875         Config->ParameterChanged.connect (mem_fun (*this, &Editor::parameter_changed));
876         Route::SyncOrderKeys.connect (mem_fun (*this, &Editor::sync_order_keys));
877
878         constructed = true;
879         instant_save ();
880 }
881
882 Editor::~Editor()
883 {
884 #ifdef WITH_CMT
885         if(image_socket_listener) {
886                 if(image_socket_listener->is_connected())
887                 {
888                         image_socket_listener->close_connection() ;
889                 }
890                 
891                 delete image_socket_listener ;
892                 image_socket_listener = 0 ;
893         }
894 #endif
895
896         delete track_canvas;
897         track_canvas = 0;
898 }
899
900 void
901 Editor::add_toplevel_controls (Container& cont)
902 {
903         vpacker.pack_start (cont, false, false);
904         cont.show_all ();
905 }
906
907 void
908 Editor::catch_vanishing_regionview (RegionView *rv)
909 {
910         /* note: the selection will take care of the vanishing
911            audioregionview by itself.
912         */
913
914         if (rv->get_canvas_group() == drag_info.item) {
915                 end_grab (drag_info.item, 0);
916         }
917
918         if (clicked_regionview == rv) {
919                 clicked_regionview = 0;
920         }
921
922         if (entered_regionview == rv) {
923                 set_entered_regionview (0);
924         }
925 }
926
927 void
928 Editor::set_entered_regionview (RegionView* rv)
929 {
930         if (rv == entered_regionview) {
931                 return;
932         }
933
934         if (entered_regionview) {
935                 entered_regionview->exited ();
936         }
937
938         if ((entered_regionview = rv) != 0) {
939                 entered_regionview->entered ();
940         }
941 }
942
943 void
944 Editor::set_entered_track (TimeAxisView* tav)
945 {
946         if (entered_track) {
947                 entered_track->exited ();
948         }
949
950         if ((entered_track = tav) != 0) {
951                 entered_track->entered ();
952         }
953 }
954
955 void
956 Editor::show_window ()
957 {
958         if (! is_visible ()) {
959                 show_all ();
960
961                  /* re-hide editor list if necessary */
962                  editor_list_button_toggled ();
963
964                 /* now reset all audio_time_axis heights, because widgets might need
965                    to be re-hidden
966                 */
967
968                 TimeAxisView *tv;
969         
970                 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
971                         tv = (static_cast<TimeAxisView*>(*i));
972                         tv->reset_height ();
973                 }
974         }
975
976         present ();
977 }
978
979 void
980 Editor::instant_save ()
981 {
982         if (!constructed || !ARDOUR_UI::instance()->session_loaded) {
983                 return;
984         }
985
986         if (session) {
987                 session->add_instant_xml(get_state());
988         } else {
989                 Config->add_instant_xml(get_state());
990         }
991 }
992
993 void
994 Editor::edit_point_clock_changed()
995 {
996         if (_dragging_edit_point) {
997                 return;
998         }
999
1000         if (selection->markers.empty()) {
1001                 return;
1002         }
1003
1004         bool ignored;
1005         Location* loc = find_location_from_marker (selection->markers.front(), ignored);
1006
1007         if (!loc) {
1008                 return;
1009         }
1010
1011         loc->move_to (edit_point_clock.current_time());
1012 }
1013
1014 void
1015 Editor::zoom_adjustment_changed ()
1016 {
1017         if (session == 0) {
1018                 return;
1019         }
1020
1021         double fpu = zoom_range_clock.current_duration() / canvas_width;
1022
1023         if (fpu < 1.0) {
1024                 fpu = 1.0;
1025                 zoom_range_clock.set ((nframes64_t) floor (fpu * canvas_width));
1026         } else if (fpu > session->current_end_frame() / canvas_width) {
1027                 fpu = session->current_end_frame() / canvas_width;
1028                 zoom_range_clock.set ((nframes64_t) floor (fpu * canvas_width));
1029         }
1030         
1031         temporal_zoom (fpu);
1032 }
1033
1034 void
1035 Editor::control_scroll (float fraction)
1036 {
1037         ENSURE_GUI_THREAD(bind (mem_fun (*this, &Editor::control_scroll), fraction));
1038
1039         if (!session) {
1040                 return;
1041         }
1042
1043         double step = fraction * current_page_frames();
1044
1045         /*
1046                 _control_scroll_target is an optional<T>
1047         
1048                 it acts like a pointer to an nframes64_t, with
1049                 a operator conversion to boolean to check
1050                 that it has a value could possibly use
1051                 playhead_cursor->current_frame to store the
1052                 value and a boolean in the class to know
1053                 when it's out of date
1054         */
1055
1056         if (!_control_scroll_target) {
1057                 _control_scroll_target = session->transport_frame();
1058                 _dragging_playhead = true;
1059         }
1060
1061         if ((fraction < 0.0f) && (*_control_scroll_target < (nframes64_t) fabs(step))) {
1062                 *_control_scroll_target = 0;
1063         } else if ((fraction > 0.0f) && (max_frames - *_control_scroll_target < step)) {
1064                 *_control_scroll_target = max_frames - (current_page_frames()*2); // allow room for slop in where the PH is on the screen
1065         } else {
1066                 *_control_scroll_target += (nframes64_t) floor (step);
1067         }
1068
1069         /* move visuals, we'll catch up with it later */
1070
1071         playhead_cursor->set_position (*_control_scroll_target);
1072         UpdateAllTransportClocks (*_control_scroll_target);
1073         
1074         if (*_control_scroll_target > (current_page_frames() / 2)) {
1075                 /* try to center PH in window */
1076                 reset_x_origin (*_control_scroll_target - (current_page_frames()/2));
1077         } else {
1078                 reset_x_origin (0);
1079         }
1080
1081         /*
1082                 Now we do a timeout to actually bring the session to the right place
1083                 according to the playhead. This is to avoid reading disk buffers on every
1084                 call to control_scroll, which is driven by ScrollTimeline and therefore
1085                 probably by a control surface wheel which can generate lots of events.
1086         */
1087         /* cancel the existing timeout */
1088
1089         control_scroll_connection.disconnect ();
1090
1091         /* add the next timeout */
1092
1093         control_scroll_connection = Glib::signal_timeout().connect (bind (mem_fun (*this, &Editor::deferred_control_scroll), *_control_scroll_target), 250);
1094 }
1095
1096 bool
1097 Editor::deferred_control_scroll (nframes64_t target)
1098 {
1099         session->request_locate (*_control_scroll_target, session->transport_rolling());
1100         // reset for next stream
1101         _control_scroll_target = boost::none;
1102         _dragging_playhead = false;
1103         return false;
1104 }
1105
1106 void
1107 Editor::access_action (std::string action_group, std::string action_item)
1108 {
1109         if (!session) {
1110                 return;
1111         }
1112
1113         ENSURE_GUI_THREAD (bind (mem_fun (*this, &Editor::access_action), action_group, action_item));
1114
1115         RefPtr<Action> act;
1116         act = ActionManager::get_action( action_group.c_str(), action_item.c_str() );
1117
1118         if (act) {
1119                 act->activate();
1120         }
1121                 
1122
1123 }
1124
1125 void
1126 Editor::on_realize ()
1127 {
1128         Window::on_realize ();
1129         Realized ();
1130 }
1131
1132 void
1133 Editor::start_scrolling ()
1134 {
1135         scroll_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect 
1136                 (mem_fun(*this, &Editor::update_current_screen));
1137
1138 }
1139
1140 void
1141 Editor::stop_scrolling ()
1142 {
1143         scroll_connection.disconnect ();
1144 }
1145
1146 void
1147 Editor::map_position_change (nframes64_t frame)
1148 {
1149         ENSURE_GUI_THREAD (bind (mem_fun(*this, &Editor::map_position_change), frame));
1150
1151         if (session == 0 || !_follow_playhead) {
1152                 return;
1153         }
1154
1155         center_screen (frame);
1156         playhead_cursor->set_position (frame);
1157 }       
1158
1159 void
1160 Editor::center_screen (nframes64_t frame)
1161 {
1162         double page = canvas_width * frames_per_unit;
1163
1164         /* if we're off the page, then scroll.
1165          */
1166         
1167         if (frame < leftmost_frame || frame >= leftmost_frame + page) {
1168                 center_screen_internal (frame, page);
1169         }
1170 }
1171
1172 void
1173 Editor::center_screen_internal (nframes64_t frame, float page)
1174 {
1175         page /= 2;
1176                 
1177         if (frame > page) {
1178                 frame -= (nframes64_t) page;
1179         } else {
1180                 frame = 0;
1181         }
1182
1183         reset_x_origin (frame);
1184 }
1185
1186 void
1187 Editor::handle_new_duration ()
1188 {
1189         if (!session) {
1190                 return;
1191         }
1192
1193         ENSURE_GUI_THREAD (mem_fun (*this, &Editor::handle_new_duration));
1194         nframes64_t new_end = session->current_end_frame() + (nframes64_t) floorf (current_page_frames() * 0.10f);
1195
1196         horizontal_adjustment.set_upper (new_end / frames_per_unit);
1197         horizontal_adjustment.set_page_size (current_page_frames()/frames_per_unit);
1198
1199         if (horizontal_adjustment.get_value() + canvas_width > horizontal_adjustment.get_upper()) {
1200                 horizontal_adjustment.set_value (horizontal_adjustment.get_upper() - canvas_width);
1201         }
1202         //cerr << "Editor::handle_new_duration () called ha v:l:u:ps:lcf = " << horizontal_adjustment.get_value() << ":" << horizontal_adjustment.get_lower() << ":" << horizontal_adjustment.get_upper() << ":" << horizontal_adjustment.get_page_size() << ":" << endl;//DEBUG
1203 }
1204
1205 void
1206 Editor::update_title_s (const string & snap_name)
1207 {
1208         ENSURE_GUI_THREAD(bind (mem_fun(*this, &Editor::update_title_s), snap_name));
1209         
1210         update_title ();
1211 }
1212
1213 void
1214 Editor::update_title ()
1215 {
1216         ENSURE_GUI_THREAD (mem_fun(*this, &Editor::update_title));
1217
1218         if (session) {
1219                 bool dirty = session->dirty();
1220
1221                 string session_name;
1222
1223                 if (session->snap_name() != session->name()) {
1224                         session_name = session->snap_name();
1225                 } else {
1226                         session_name = session->name();
1227                 }
1228
1229                 if (dirty) {
1230                         session_name = "*" + session_name;
1231                 }
1232
1233                 WindowTitle title(session_name);
1234                 title += Glib::get_application_name();
1235                 set_title (title.get_string());
1236         }
1237 }
1238
1239 void
1240 Editor::connect_to_session (Session *t)
1241 {
1242         session = t;
1243
1244         /* there are never any selected regions at startup */
1245
1246         sensitize_the_right_region_actions (false);
1247
1248         XMLNode* node = ARDOUR_UI::instance()->editor_settings();
1249         set_state (*node);
1250
1251         /* catch up with the playhead */
1252
1253         session->request_locate (playhead_cursor->current_frame);
1254
1255         if (first_action_message) {
1256                 first_action_message->hide();
1257         }
1258
1259         update_title ();
1260
1261         session->GoingAway.connect (mem_fun(*this, &Editor::session_going_away));
1262         session->history().Changed.connect (mem_fun (*this, &Editor::history_changed));
1263
1264         /* These signals can all be emitted by a non-GUI thread. Therefore the
1265            handlers for them must not attempt to directly interact with the GUI,
1266            but use Gtkmm2ext::UI::instance()->call_slot();
1267         */
1268
1269         session_connections.push_back (session->TransportStateChange.connect (mem_fun(*this, &Editor::map_transport_state)));
1270         session_connections.push_back (session->PositionChanged.connect (mem_fun(*this, &Editor::map_position_change)));
1271         session_connections.push_back (session->RouteAdded.connect (mem_fun(*this, &Editor::handle_new_route)));
1272         session_connections.push_back (session->RegionsAdded.connect (mem_fun(*this, &Editor::handle_new_regions)));
1273         session_connections.push_back (session->RegionRemoved.connect (mem_fun(*this, &Editor::handle_region_removed)));
1274         session_connections.push_back (session->DurationChanged.connect (mem_fun(*this, &Editor::handle_new_duration)));
1275         session_connections.push_back (session->edit_group_added.connect (mem_fun(*this, &Editor::add_edit_group)));
1276         session_connections.push_back (session->edit_group_removed.connect (mem_fun(*this, &Editor::edit_groups_changed)));
1277         session_connections.push_back (session->NamedSelectionAdded.connect (mem_fun(*this, &Editor::handle_new_named_selection)));
1278         session_connections.push_back (session->NamedSelectionRemoved.connect (mem_fun(*this, &Editor::handle_new_named_selection)));
1279         session_connections.push_back (session->DirtyChanged.connect (mem_fun(*this, &Editor::update_title)));
1280         session_connections.push_back (session->StateSaved.connect (mem_fun(*this, &Editor::update_title_s)));
1281         session_connections.push_back (session->AskAboutPlaylistDeletion.connect (mem_fun(*this, &Editor::playlist_deletion_dialog)));
1282         session_connections.push_back (session->RegionHiddenChange.connect (mem_fun(*this, &Editor::region_hidden)));
1283
1284         session_connections.push_back (session->SMPTEOffsetChanged.connect (mem_fun(*this, &Editor::update_just_smpte)));
1285
1286         session_connections.push_back (session->tempo_map().StateChanged.connect (mem_fun(*this, &Editor::tempo_map_changed)));
1287
1288         session_connections.push_back (session->Located.connect (mem_fun (*this, &Editor::located)));
1289
1290         edit_groups_changed ();
1291
1292         edit_point_clock.set_mode(AudioClock::BBT);
1293         edit_point_clock.set_session (session);
1294         zoom_range_clock.set_session (session);
1295         _playlist_selector->set_session (session);
1296         nudge_clock.set_session (session);
1297         if (Profile->get_sae()) {
1298                 BBT_Time bbt;
1299                 bbt.bars = 0;
1300                 bbt.beats = 0;
1301                 bbt.ticks = 120;
1302                 nframes_t pos = session->tempo_map().bbt_duration_at (0, bbt, 1);
1303                 nudge_clock.set_mode(AudioClock::BBT);
1304                 nudge_clock.set (pos, true, 0, AudioClock::BBT);
1305                 
1306         } else {
1307                 nudge_clock.set (session->frame_rate() * 5, true, 0, AudioClock::SMPTE); // default of 5 seconds
1308         }
1309
1310         playhead_cursor->canvas_item.show ();
1311
1312         if (rhythm_ferret) {
1313                 rhythm_ferret->set_session (session);
1314         }
1315
1316         if (analysis_window != 0)
1317                 analysis_window->set_session (session);
1318
1319         Location* loc = session->locations()->auto_loop_location();
1320         if (loc == 0) {
1321                 loc = new Location (0, session->current_end_frame(), _("Loop"),(Location::Flags) (Location::IsAutoLoop | Location::IsHidden));
1322                 if (loc->start() == loc->end()) {
1323                         loc->set_end (loc->start() + 1);
1324                 }
1325                 session->locations()->add (loc, false);
1326                 session->set_auto_loop_location (loc);
1327         } else {
1328                 // force name
1329                 loc->set_name (_("Loop"));
1330         }
1331         
1332         loc = session->locations()->auto_punch_location();
1333         if (loc == 0) {
1334                 loc = new Location (0, session->current_end_frame(), _("Punch"), (Location::Flags) (Location::IsAutoPunch | Location::IsHidden));
1335                 if (loc->start() == loc->end()) {
1336                         loc->set_end (loc->start() + 1);
1337                 }
1338                 session->locations()->add (loc, false);
1339                 session->set_auto_punch_location (loc);
1340         } else {
1341                 // force name
1342                 loc->set_name (_("Punch"));
1343         }
1344
1345         Config->map_parameters (mem_fun (*this, &Editor::parameter_changed));
1346         
1347         session->StateSaved.connect (mem_fun(*this, &Editor::session_state_saved));
1348         
1349         refresh_location_display ();
1350         session->locations()->added.connect (mem_fun(*this, &Editor::add_new_location));
1351         session->locations()->removed.connect (mem_fun(*this, &Editor::location_gone));
1352         session->locations()->changed.connect (mem_fun(*this, &Editor::refresh_location_display));
1353         session->locations()->StateChanged.connect (mem_fun(*this, &Editor::refresh_location_display_s));
1354         session->locations()->end_location()->changed.connect (mem_fun(*this, &Editor::end_location_changed));
1355
1356         if (sfbrowser) {
1357                 sfbrowser->set_session (session);
1358         }
1359
1360         handle_new_duration ();
1361
1362         redisplay_regions ();
1363         redisplay_named_selections ();
1364         redisplay_snapshots ();
1365
1366         restore_ruler_visibility ();
1367         //tempo_map_changed (Change (0));
1368         session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks);
1369
1370         initial_route_list_display ();
1371
1372         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
1373                 (static_cast<TimeAxisView*>(*i))->set_samples_per_unit (frames_per_unit);
1374         }
1375
1376         start_scrolling ();
1377
1378         /* don't show master bus in a new session */
1379
1380         if (ARDOUR_UI::instance()->session_is_new ()) {
1381
1382                 TreeModel::Children rows = route_display_model->children();
1383                 TreeModel::Children::iterator i;
1384         
1385                 no_route_list_redisplay = true;
1386                 
1387                 for (i = rows.begin(); i != rows.end(); ++i) {
1388                         TimeAxisView *tv =  (*i)[route_display_columns.tv];
1389                         RouteTimeAxisView *rtv;
1390                         
1391                         if ((rtv = dynamic_cast<RouteTimeAxisView*>(tv)) != 0) {
1392                                 if (rtv->route()->is_master()) {
1393                                         route_list_display.get_selection()->unselect (i);
1394                                 }
1395                         }
1396                 }
1397                 
1398                 no_route_list_redisplay = false;
1399                 redisplay_route_list ();
1400         }
1401         
1402         switch (snap_type) {
1403         case SnapToRegionStart:
1404         case SnapToRegionEnd:
1405         case SnapToRegionSync:
1406         case SnapToRegionBoundary:
1407                 build_region_boundary_cache ();
1408                 break;
1409
1410         default:
1411                 break;
1412         }
1413
1414         /* register for undo history */
1415         session->register_with_memento_command_factory(_id, this);
1416
1417         start_updating ();
1418 }
1419
1420 void
1421 Editor::build_cursors ()
1422 {
1423         using namespace Gdk;
1424         
1425         Gdk::Color mbg ("#000000" ); /* Black */
1426         Gdk::Color mfg ("#0000ff" ); /* Blue. */
1427
1428         {
1429                 RefPtr<Bitmap> source, mask;
1430                 source = Bitmap::create (mag_bits, mag_width, mag_height);
1431                 mask = Bitmap::create (magmask_bits, mag_width, mag_height);
1432                 zoom_cursor = new Gdk::Cursor (source, mask, mfg, mbg, mag_x_hot, mag_y_hot);
1433         }
1434
1435         Gdk::Color fbg ("#ffffff" );
1436         Gdk::Color ffg  ("#000000" );
1437         
1438         {
1439                 RefPtr<Bitmap> source, mask;
1440                 
1441                 source = Bitmap::create (fader_cursor_bits, fader_cursor_width, fader_cursor_height);
1442                 mask = Bitmap::create (fader_cursor_mask_bits, fader_cursor_width, fader_cursor_height);
1443                 fader_cursor = new Gdk::Cursor (source, mask, ffg, fbg, fader_cursor_x_hot, fader_cursor_y_hot);
1444         }
1445         
1446         { 
1447                 RefPtr<Bitmap> source, mask;
1448                 source = Bitmap::create (speaker_cursor_bits, speaker_cursor_width, speaker_cursor_height);
1449                 mask = Bitmap::create (speaker_cursor_mask_bits, speaker_cursor_width, speaker_cursor_height);
1450                 speaker_cursor = new Gdk::Cursor (source, mask, ffg, fbg, speaker_cursor_x_hot, speaker_cursor_y_hot);
1451         }
1452         
1453         { 
1454                 RefPtr<Bitmap> bits;
1455                 char pix[4] = { 0, 0, 0, 0 };
1456                 bits = Bitmap::create (pix, 2, 2);
1457                 Gdk::Color c;
1458                 transparent_cursor = new Gdk::Cursor (bits, bits, c, c, 0, 0);
1459         }
1460
1461         { 
1462                 RefPtr<Bitmap> bits;
1463                 char pix[4] = { 0, 0, 0, 0 };
1464                 bits = Bitmap::create (pix, 2, 2);
1465                 Gdk::Color c;
1466                 transparent_cursor = new Gdk::Cursor (bits, bits, c, c, 0, 0);
1467         }
1468         
1469
1470         grabber_cursor = new Gdk::Cursor (HAND2);
1471         
1472         {
1473                 Glib::RefPtr<Gdk::Pixbuf> grabber_edit_point_pixbuf (::get_icon ("grabber_edit_point"));
1474                 grabber_edit_point_cursor = new Gdk::Cursor (Gdk::Display::get_default(), grabber_edit_point_pixbuf, 5, 17);
1475         }
1476
1477         cross_hair_cursor = new Gdk::Cursor (CROSSHAIR);
1478         trimmer_cursor =  new Gdk::Cursor (SB_H_DOUBLE_ARROW);
1479         selector_cursor = new Gdk::Cursor (XTERM);
1480         time_fx_cursor = new Gdk::Cursor (SIZING);
1481         wait_cursor = new Gdk::Cursor  (WATCH);
1482         timebar_cursor = new Gdk::Cursor(LEFT_PTR);
1483         midi_pencil_cursor = new Gdk::Cursor (PENCIL);
1484         midi_select_cursor = new Gdk::Cursor (CENTER_PTR);
1485         midi_resize_cursor = new Gdk::Cursor (SIZING);
1486         midi_erase_cursor = new Gdk::Cursor (DRAPED_BOX);
1487 }
1488
1489 /** Pop up a context menu for when the user clicks on a fade in or fade out */
1490 void
1491 Editor::popup_fade_context_menu (int button, int32_t time, ArdourCanvas::Item* item, ItemType item_type)
1492 {
1493         using namespace Menu_Helpers;
1494         AudioRegionView* arv = static_cast<AudioRegionView*> (item->get_data ("regionview"));
1495
1496         if (arv == 0) {
1497                 fatal << _("programming error: fade in canvas item has no regionview data pointer!") << endmsg;
1498                 /*NOTREACHED*/
1499         }
1500
1501         MenuList& items (fade_context_menu.items());
1502
1503         items.clear ();
1504
1505         switch (item_type) {
1506         case FadeInItem:
1507         case FadeInHandleItem:
1508                 if (arv->audio_region()->fade_in_active()) {
1509                         items.push_back (MenuElem (_("Deactivate"), bind (mem_fun (*this, &Editor::set_fade_in_active), false)));
1510                 } else {
1511                         items.push_back (MenuElem (_("Activate"), bind (mem_fun (*this, &Editor::set_fade_in_active), true)));
1512                 }
1513                 
1514                 items.push_back (SeparatorElem());
1515
1516                 if (Profile->get_sae()) {
1517                         items.push_back (MenuElem (_("Linear"), bind (mem_fun (*this, &Editor::set_fade_in_shape), AudioRegion::Linear)));
1518                         items.push_back (MenuElem (_("Slowest"), bind (mem_fun (*this, &Editor::set_fade_in_shape), AudioRegion::Fast)));
1519                 } else {
1520                         items.push_back (MenuElem (_("Linear"), bind (mem_fun (*this, &Editor::set_fade_in_shape), AudioRegion::Linear)));
1521                         items.push_back (MenuElem (_("Slowest"), bind (mem_fun (*this, &Editor::set_fade_in_shape), AudioRegion::Fast)));
1522                         items.push_back (MenuElem (_("Slow"), bind (mem_fun (*this, &Editor::set_fade_in_shape), AudioRegion::LogB)));
1523                         items.push_back (MenuElem (_("Fast"), bind (mem_fun (*this, &Editor::set_fade_in_shape), AudioRegion::LogA)));
1524                         items.push_back (MenuElem (_("Fastest"), bind (mem_fun (*this, &Editor::set_fade_in_shape), AudioRegion::Slow)));
1525                 }
1526
1527                 break;
1528
1529         case FadeOutItem:
1530         case FadeOutHandleItem:
1531                 if (arv->audio_region()->fade_out_active()) {
1532                         items.push_back (MenuElem (_("Deactivate"), bind (mem_fun (*this, &Editor::set_fade_out_active), false)));
1533                 } else {
1534                         items.push_back (MenuElem (_("Activate"), bind (mem_fun (*this, &Editor::set_fade_out_active), true)));
1535                 }
1536                 
1537                 items.push_back (SeparatorElem());
1538                 
1539                 if (Profile->get_sae()) {
1540                         items.push_back (MenuElem (_("Linear"), bind (mem_fun (*this, &Editor::set_fade_out_shape), AudioRegion::Linear)));
1541                         items.push_back (MenuElem (_("Slowest"), bind (mem_fun (*this, &Editor::set_fade_out_shape), AudioRegion::Slow)));
1542                 } else {
1543                         items.push_back (MenuElem (_("Linear"), bind (mem_fun (*this, &Editor::set_fade_out_shape), AudioRegion::Linear)));
1544                         items.push_back (MenuElem (_("Slowest"), bind (mem_fun (*this, &Editor::set_fade_out_shape), AudioRegion::Slow)));
1545                         items.push_back (MenuElem (_("Slow"), bind (mem_fun (*this, &Editor::set_fade_out_shape), AudioRegion::LogA)));
1546                         items.push_back (MenuElem (_("Fast"), bind (mem_fun (*this, &Editor::set_fade_out_shape), AudioRegion::LogB)));
1547                         items.push_back (MenuElem (_("Fastest"), bind (mem_fun (*this, &Editor::set_fade_out_shape), AudioRegion::Fast)));
1548                 }
1549
1550                 break;
1551
1552         default:
1553                 fatal << _("programming error: ")
1554                       << X_("non-fade canvas item passed to popup_fade_context_menu()")
1555                       << endmsg;
1556                 /*NOTREACHED*/
1557         }
1558
1559         fade_context_menu.popup (button, time);
1560 }
1561
1562 void
1563 Editor::popup_track_context_menu (int button, int32_t time, ItemType item_type, bool with_selection, nframes64_t frame)
1564 {
1565         using namespace Menu_Helpers;
1566         Menu* (Editor::*build_menu_function)(nframes64_t);
1567         Menu *menu;
1568
1569         switch (item_type) {
1570         case RegionItem:
1571         case RegionViewName:
1572         case RegionViewNameHighlight:
1573                 if (with_selection) {
1574                         build_menu_function = &Editor::build_track_selection_context_menu;
1575                 } else {
1576                         build_menu_function = &Editor::build_track_region_context_menu;
1577                 }
1578                 break;
1579
1580         case SelectionItem:
1581                 if (with_selection) {
1582                         build_menu_function = &Editor::build_track_selection_context_menu;
1583                 } else {
1584                         build_menu_function = &Editor::build_track_context_menu;
1585                 }
1586                 break;
1587
1588         case CrossfadeViewItem:
1589                 build_menu_function = &Editor::build_track_crossfade_context_menu;
1590                 break;
1591
1592         case StreamItem:
1593                 if (clicked_routeview->get_diskstream()) {
1594                         build_menu_function = &Editor::build_track_context_menu;
1595                 } else {
1596                         build_menu_function = &Editor::build_track_bus_context_menu;
1597                 }
1598                 break;
1599
1600         default:
1601                 /* probably shouldn't happen but if it does, we don't care */
1602                 return;
1603         }
1604
1605         menu = (this->*build_menu_function)(frame);
1606         menu->set_name ("ArdourContextMenu");
1607         
1608         /* now handle specific situations */
1609
1610         switch (item_type) {
1611         case RegionItem:
1612         case RegionViewName:
1613         case RegionViewNameHighlight:
1614                 if (!with_selection) {
1615                         if (region_edit_menu_split_item) {
1616                                 if (clicked_regionview && clicked_regionview->region()->covers (get_preferred_edit_position())) {
1617                                         ActionManager::set_sensitive (ActionManager::edit_point_in_region_sensitive_actions, true);
1618                                 } else {
1619                                         ActionManager::set_sensitive (ActionManager::edit_point_in_region_sensitive_actions, false);
1620                                 }
1621                         }
1622                         /*
1623                         if (region_edit_menu_split_multichannel_item) {
1624                                 if (clicked_regionview && clicked_regionview->region().n_channels() > 1) {
1625                                         // GTK2FIX find the action, change its sensitivity
1626                                         // region_edit_menu_split_multichannel_item->set_sensitive (true);
1627                                 } else {
1628                                         // GTK2FIX see above
1629                                         // region_edit_menu_split_multichannel_item->set_sensitive (false);
1630                                 }
1631                         }*/
1632                 }
1633                 break;
1634
1635         case SelectionItem:
1636                 break;
1637
1638         case CrossfadeViewItem:
1639                 break;
1640
1641         case StreamItem:
1642                 break;
1643
1644         default:
1645                 /* probably shouldn't happen but if it does, we don't care */
1646                 return;
1647         }
1648
1649         if (item_type != SelectionItem && clicked_routeview && clicked_routeview->audio_track()) {
1650
1651                 /* Bounce to disk */
1652                 
1653                 using namespace Menu_Helpers;
1654                 MenuList& edit_items  = menu->items();
1655                 
1656                 edit_items.push_back (SeparatorElem());
1657
1658                 switch (clicked_routeview->audio_track()->freeze_state()) {
1659                 case AudioTrack::NoFreeze:
1660                         edit_items.push_back (MenuElem (_("Freeze"), mem_fun(*this, &Editor::freeze_route)));
1661                         break;
1662
1663                 case AudioTrack::Frozen:
1664                         edit_items.push_back (MenuElem (_("Unfreeze"), mem_fun(*this, &Editor::unfreeze_route)));
1665                         break;
1666                         
1667                 case AudioTrack::UnFrozen:
1668                         edit_items.push_back (MenuElem (_("Freeze"), mem_fun(*this, &Editor::freeze_route)));
1669                         break;
1670                 }
1671
1672         }
1673
1674         if (item_type == StreamItem && clicked_routeview) {
1675                 clicked_routeview->build_underlay_menu(menu);
1676         }
1677
1678         menu->popup (button, time);
1679 }
1680
1681 Menu*
1682 Editor::build_track_context_menu (nframes64_t ignored)
1683 {
1684         using namespace Menu_Helpers;
1685
1686         MenuList& edit_items = track_context_menu.items();
1687         edit_items.clear();
1688
1689         add_dstream_context_items (edit_items);
1690         return &track_context_menu;
1691 }
1692
1693 Menu*
1694 Editor::build_track_bus_context_menu (nframes64_t ignored)
1695 {
1696         using namespace Menu_Helpers;
1697
1698         MenuList& edit_items = track_context_menu.items();
1699         edit_items.clear();
1700
1701         add_bus_context_items (edit_items);
1702         return &track_context_menu;
1703 }
1704
1705 Menu*
1706 Editor::build_track_region_context_menu (nframes64_t frame)
1707 {
1708         using namespace Menu_Helpers;
1709         MenuList& edit_items  = track_region_context_menu.items();
1710         edit_items.clear();
1711
1712         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*> (clicked_axisview);
1713
1714         if (rtv) {
1715                 boost::shared_ptr<Diskstream> ds;
1716                 boost::shared_ptr<Playlist> pl;
1717                 
1718                 if ((ds = rtv->get_diskstream()) && ((pl = ds->playlist()))) {
1719                         Playlist::RegionList* regions = pl->regions_at ((nframes64_t) floor ( (double)frame * ds->speed()));
1720
1721                         if (selection->regions.size() > 1) {
1722                                 // there's already a multiple selection: just add a 
1723                                 // single region context menu that will act on all 
1724                                 // selected regions
1725                                 boost::shared_ptr<Region> dummy_region; // = NULL               
1726                                 add_region_context_items (rtv->view(), dummy_region, edit_items);                       
1727                         } else {
1728                                 for (Playlist::RegionList::iterator i = regions->begin(); i != regions->end(); ++i) {
1729                                         add_region_context_items (rtv->view(), (*i), edit_items);
1730                                 }
1731                         }
1732
1733                         delete regions;
1734                 }
1735         }
1736
1737         add_dstream_context_items (edit_items);
1738
1739         return &track_region_context_menu;
1740 }
1741
1742 Menu*
1743 Editor::build_track_crossfade_context_menu (nframes64_t frame)
1744 {
1745         using namespace Menu_Helpers;
1746         MenuList& edit_items  = track_crossfade_context_menu.items();
1747         edit_items.clear ();
1748
1749         AudioTimeAxisView* atv = dynamic_cast<AudioTimeAxisView*> (clicked_axisview);
1750
1751         if (atv) {
1752                 boost::shared_ptr<Diskstream> ds;
1753                 boost::shared_ptr<Playlist> pl;
1754                 boost::shared_ptr<AudioPlaylist> apl;
1755
1756                 if ((ds = atv->get_diskstream()) && ((pl = ds->playlist()) != 0) && ((apl = boost::dynamic_pointer_cast<AudioPlaylist> (pl)) != 0)) {
1757
1758                         Playlist::RegionList* regions = pl->regions_at (frame);
1759                         AudioPlaylist::Crossfades xfades;
1760
1761                         apl->crossfades_at (frame, xfades);
1762
1763                         bool many = xfades.size() > 1;
1764
1765                         for (AudioPlaylist::Crossfades::iterator i = xfades.begin(); i != xfades.end(); ++i) {
1766                                 add_crossfade_context_items (atv->audio_view(), (*i), edit_items, many);
1767                         }
1768
1769                         if (selection->regions.size() > 1) {
1770                                 // there's already a multiple selection: just add a 
1771                                 // single region context menu that will act on all 
1772                                 // selected regions
1773                                 boost::shared_ptr<Region> dummy_region; // = NULL               
1774                                 add_region_context_items (atv->audio_view(), dummy_region, edit_items);                 
1775                         } else {
1776                                 for (Playlist::RegionList::iterator i = regions->begin(); i != regions->end(); ++i) {
1777                                         add_region_context_items (atv->audio_view(), (*i), edit_items);
1778                                 }
1779                         }
1780                         delete regions;
1781                 }
1782         }
1783
1784         add_dstream_context_items (edit_items);
1785
1786         return &track_crossfade_context_menu;
1787 }
1788
1789 void
1790 Editor::analyze_region_selection()
1791 {
1792         if (analysis_window == 0) {
1793                 analysis_window = new AnalysisWindow();
1794
1795                 if (session != 0)
1796                         analysis_window->set_session(session);
1797
1798                 analysis_window->show_all();
1799         }
1800
1801         analysis_window->set_regionmode();
1802         analysis_window->analyze();
1803         
1804         analysis_window->present();
1805 }
1806
1807 void
1808 Editor::analyze_range_selection()
1809 {
1810         if (analysis_window == 0) {
1811                 analysis_window = new AnalysisWindow();
1812
1813                 if (session != 0)
1814                         analysis_window->set_session(session);
1815
1816                 analysis_window->show_all();
1817         }
1818
1819         analysis_window->set_rangemode();
1820         analysis_window->analyze();
1821         
1822         analysis_window->present();
1823 }
1824
1825 Menu*
1826 Editor::build_track_selection_context_menu (nframes64_t ignored)
1827 {
1828         using namespace Menu_Helpers;
1829         MenuList& edit_items  = track_selection_context_menu.items();
1830         edit_items.clear ();
1831
1832         add_selection_context_items (edit_items);
1833         // edit_items.push_back (SeparatorElem());
1834         // add_dstream_context_items (edit_items);
1835
1836         return &track_selection_context_menu;
1837 }
1838
1839 /** Add context menu items relevant to crossfades.
1840  * @param edit_items List to add the items to.
1841  */
1842 void
1843 Editor::add_crossfade_context_items (AudioStreamView* view, boost::shared_ptr<Crossfade> xfade, Menu_Helpers::MenuList& edit_items, bool many)
1844 {
1845         using namespace Menu_Helpers;
1846         Menu     *xfade_menu = manage (new Menu);
1847         MenuList& items       = xfade_menu->items();
1848         xfade_menu->set_name ("ArdourContextMenu");
1849         string str;
1850
1851         if (xfade->active()) {
1852                 str = _("Mute");
1853         } else { 
1854                 str = _("Unmute");
1855         }
1856
1857         items.push_back (MenuElem (str, bind (mem_fun(*this, &Editor::toggle_xfade_active), boost::weak_ptr<Crossfade> (xfade))));
1858         items.push_back (MenuElem (_("Edit"), bind (mem_fun(*this, &Editor::edit_xfade), boost::weak_ptr<Crossfade> (xfade))));
1859
1860         if (xfade->can_follow_overlap()) {
1861
1862                 if (xfade->following_overlap()) {
1863                         str = _("Convert to short");
1864                 } else {
1865                         str = _("Convert to full");
1866                 }
1867
1868                 items.push_back (MenuElem (str, bind (mem_fun(*this, &Editor::toggle_xfade_length), xfade)));
1869         }
1870
1871         if (many) {
1872                 str = xfade->out()->name();
1873                 str += "->";
1874                 str += xfade->in()->name();
1875         } else {
1876                 str = _("Crossfade");
1877         }
1878
1879         edit_items.push_back (MenuElem (str, *xfade_menu));
1880         edit_items.push_back (SeparatorElem());
1881 }
1882
1883 void
1884 Editor::xfade_edit_left_region ()
1885 {
1886         if (clicked_crossfadeview) {
1887                 clicked_crossfadeview->left_view.show_region_editor ();
1888         }
1889 }
1890
1891 void
1892 Editor::xfade_edit_right_region ()
1893 {
1894         if (clicked_crossfadeview) {
1895                 clicked_crossfadeview->right_view.show_region_editor ();
1896         }
1897 }
1898
1899 /** Add an element to a menu, settings its sensitivity.
1900  * @param m Menu to add to.
1901  * @param e Element to add.
1902  * @param s true to make sensitive, false to make insensitive
1903  */
1904 void
1905 Editor::add_item_with_sensitivity (Menu_Helpers::MenuList& m, Menu_Helpers::MenuElem e, bool s) const
1906 {
1907         m.push_back (e);
1908         if (!s) {
1909                 m.back().set_sensitive (false);
1910         }
1911 }
1912
1913 void
1914 Editor::add_region_context_items (StreamView* sv, boost::shared_ptr<Region> region, Menu_Helpers::MenuList& edit_items)
1915 {
1916         using namespace Menu_Helpers;
1917         Gtk::MenuItem* foo_item;
1918         Menu     *region_menu = manage (new Menu);
1919         MenuList& items       = region_menu->items();
1920         region_menu->set_name ("ArdourContextMenu");
1921
1922         boost::shared_ptr<AudioRegion> ar;
1923         boost::shared_ptr<MidiRegion>  mr;
1924
1925         if (region) {
1926                 ar = boost::dynamic_pointer_cast<AudioRegion> (region);
1927                 mr = boost::dynamic_pointer_cast<MidiRegion> (region);
1928
1929                 /* when this particular menu pops up, make the relevant region 
1930                    become selected.
1931                 */
1932
1933                 region_menu->signal_map_event().connect (
1934                         bind (mem_fun(*this, &Editor::set_selected_regionview_from_map_event), sv, boost::weak_ptr<Region>(region)));
1935                 
1936                 items.push_back (MenuElem (_("Rename"), mem_fun(*this, &Editor::rename_region)));
1937                 items.push_back (MenuElem (_("Popup region editor"), mem_fun(*this, &Editor::edit_region)));
1938         }
1939
1940         items.push_back (MenuElem (_("Raise to top layer"), mem_fun(*this, &Editor::raise_region_to_top)));
1941         items.push_back (MenuElem (_("Lower to bottom layer"), mem_fun  (*this, &Editor::lower_region_to_bottom)));
1942         items.push_back (SeparatorElem());
1943         items.push_back (MenuElem (_("Define sync point"), mem_fun(*this, &Editor::set_region_sync_from_edit_point)));
1944         items.push_back (MenuElem (_("Remove sync point"), mem_fun(*this, &Editor::remove_region_sync)));
1945         items.push_back (SeparatorElem());
1946
1947         items.push_back (MenuElem (_("Audition"), mem_fun(*this, &Editor::play_selected_region)));
1948         items.push_back (MenuElem (_("Export"), mem_fun(*this, &Editor::export_region)));
1949         items.push_back (MenuElem (_("Bounce"), mem_fun(*this, &Editor::bounce_region_selection)));
1950
1951         if (ar) {
1952                 items.push_back (MenuElem (_("Spectral Analysis"), mem_fun(*this, &Editor::analyze_region_selection)));
1953         }
1954
1955         items.push_back (SeparatorElem());
1956
1957         sigc::connection fooc;
1958         boost::shared_ptr<Region> region_to_check;
1959
1960         if (region) {
1961                 region_to_check = region;
1962         } else {
1963                 region_to_check = selection->regions.front()->region();
1964         }
1965
1966         items.push_back (CheckMenuElem (_("Lock")));
1967         CheckMenuItem* region_lock_item = static_cast<CheckMenuItem*>(&items.back());
1968         if (region_to_check->locked()) {
1969                 region_lock_item->set_active();
1970         }
1971         region_lock_item->signal_activate().connect (mem_fun(*this, &Editor::toggle_region_lock));
1972         
1973         items.push_back (CheckMenuElem (_("Glue to Bars&Beats")));
1974         CheckMenuItem* bbt_glue_item = static_cast<CheckMenuItem*>(&items.back());
1975         
1976         switch (region_to_check->positional_lock_style()) {
1977         case Region::MusicTime:
1978                 bbt_glue_item->set_active (true);
1979                 break;
1980         default:
1981                 bbt_glue_item->set_active (false);
1982                 break;
1983         }
1984         
1985         bbt_glue_item->signal_activate().connect (bind (mem_fun (*this, &Editor::set_region_lock_style), Region::MusicTime));
1986         
1987         items.push_back (CheckMenuElem (_("Mute")));
1988         CheckMenuItem* region_mute_item = static_cast<CheckMenuItem*>(&items.back());
1989         fooc = region_mute_item->signal_activate().connect (mem_fun(*this, &Editor::toggle_region_mute));
1990         if (region_to_check->muted()) {
1991                 fooc.block (true);
1992                 region_mute_item->set_active();
1993                 fooc.block (false);
1994         }
1995         
1996         if (!Profile->get_sae()) {
1997                 items.push_back (CheckMenuElem (_("Opaque")));
1998                 CheckMenuItem* region_opaque_item = static_cast<CheckMenuItem*>(&items.back());
1999                 fooc = region_opaque_item->signal_activate().connect (mem_fun(*this, &Editor::toggle_region_opaque));
2000                 if (region_to_check->opaque()) {
2001                         fooc.block (true);
2002                         region_opaque_item->set_active();
2003                         fooc.block (false);
2004                 }
2005         }
2006         
2007         items.push_back (CheckMenuElem (_("Original position"), mem_fun(*this, &Editor::naturalize)));
2008         if (region_to_check->at_natural_position()) {
2009                 items.back().set_sensitive (false);
2010         }
2011         
2012         items.push_back (SeparatorElem());
2013         
2014         if (ar) {
2015                 
2016                 RegionView* rv = sv->find_view (ar);
2017                 AudioRegionView* arv = dynamic_cast<AudioRegionView*>(rv);
2018                 
2019                 if (!Profile->get_sae()) {
2020                         items.push_back (MenuElem (_("Reset Envelope"), mem_fun(*this, &Editor::reset_region_gain_envelopes)));
2021
2022                         items.push_back (CheckMenuElem (_("Envelope Visible")));
2023                         CheckMenuItem* region_envelope_visible_item = static_cast<CheckMenuItem*> (&items.back());
2024                         fooc = region_envelope_visible_item->signal_activate().connect (mem_fun(*this, &Editor::toggle_gain_envelope_visibility));
2025                         if (arv->envelope_visible()) {
2026                                 fooc.block (true);
2027                                 region_envelope_visible_item->set_active (true);
2028                                 fooc.block (false);
2029                         }
2030                 
2031                         items.push_back (CheckMenuElem (_("Envelope Active")));
2032                         CheckMenuItem* region_envelope_active_item = static_cast<CheckMenuItem*> (&items.back());
2033                         fooc = region_envelope_active_item->signal_activate().connect (mem_fun(*this, &Editor::toggle_gain_envelope_active));
2034                         
2035                         if (ar->envelope_active()) {
2036                                 fooc.block (true);
2037                                 region_envelope_active_item->set_active (true);
2038                                 fooc.block (false);
2039                         }
2040
2041                         items.push_back (SeparatorElem());
2042                 }
2043
2044                 if (ar->scale_amplitude() != 1.0f) {
2045                         items.push_back (MenuElem (_("DeNormalize"), mem_fun(*this, &Editor::denormalize_region)));
2046                 } else {
2047                         items.push_back (MenuElem (_("Normalize"), mem_fun(*this, &Editor::normalize_region)));
2048                 }
2049
2050         } else if (mr) {
2051                 items.push_back (MenuElem (_("Quantize"), mem_fun(*this, &Editor::quantize_region)));
2052                 items.push_back (SeparatorElem());
2053         }
2054
2055         items.push_back (MenuElem (_("Reverse"), mem_fun(*this, &Editor::reverse_region)));
2056         items.push_back (SeparatorElem());
2057
2058         /* range related stuff */
2059
2060         items.push_back (MenuElem (_("Add Single Range"), mem_fun (*this, &Editor::add_location_from_audio_region)));
2061         items.push_back (MenuElem (_("Add Range Markers"), mem_fun (*this, &Editor::add_locations_from_audio_region)));
2062         if (selection->regions.size() < 2) {
2063                 items.back().set_sensitive (false);
2064         }
2065
2066         items.push_back (MenuElem (_("Set Range Selection"), mem_fun (*this, &Editor::set_selection_from_region)));
2067         items.push_back (SeparatorElem());
2068                          
2069         /* Nudge region */
2070
2071         Menu *nudge_menu = manage (new Menu());
2072         MenuList& nudge_items = nudge_menu->items();
2073         nudge_menu->set_name ("ArdourContextMenu");
2074         
2075         nudge_items.push_back (MenuElem (_("Nudge fwd"), (bind (mem_fun(*this, &Editor::nudge_forward), false, false))));
2076         nudge_items.push_back (MenuElem (_("Nudge bwd"), (bind (mem_fun(*this, &Editor::nudge_backward), false, false))));
2077         nudge_items.push_back (MenuElem (_("Nudge fwd by capture offset"), (mem_fun(*this, &Editor::nudge_forward_capture_offset))));
2078         nudge_items.push_back (MenuElem (_("Nudge bwd by capture offset"), (mem_fun(*this, &Editor::nudge_backward_capture_offset))));
2079
2080         items.push_back (MenuElem (_("Nudge"), *nudge_menu));
2081         items.push_back (SeparatorElem());
2082
2083         Menu *trim_menu = manage (new Menu);
2084         MenuList& trim_items = trim_menu->items();
2085         trim_menu->set_name ("ArdourContextMenu");
2086         
2087         trim_items.push_back (MenuElem (_("Start to edit point"), mem_fun(*this, &Editor::trim_region_from_edit_point)));
2088         foo_item = &trim_items.back();
2089         if (_edit_point == EditAtMouse) {
2090                 foo_item->set_sensitive (false);
2091         }
2092         trim_items.push_back (MenuElem (_("Edit point to end"), mem_fun(*this, &Editor::trim_region_to_edit_point)));
2093         foo_item = &trim_items.back();
2094         if (_edit_point == EditAtMouse) {
2095                 foo_item->set_sensitive (false);
2096         }
2097         trim_items.push_back (MenuElem (_("Trim To Loop"), mem_fun(*this, &Editor::trim_region_to_loop)));
2098         trim_items.push_back (MenuElem (_("Trim To Punch"), mem_fun(*this, &Editor::trim_region_to_punch)));
2099                              
2100         items.push_back (MenuElem (_("Trim"), *trim_menu));
2101         items.push_back (SeparatorElem());
2102
2103         items.push_back (MenuElem (_("Split"), (mem_fun(*this, &Editor::split_region))));
2104         region_edit_menu_split_item = &items.back();
2105         
2106         if (_edit_point == EditAtMouse) {
2107                 region_edit_menu_split_item->set_sensitive (false);
2108         }
2109
2110         items.push_back (MenuElem (_("Make mono regions"), (mem_fun(*this, &Editor::split_multichannel_region))));
2111         region_edit_menu_split_multichannel_item = &items.back();
2112
2113         items.push_back (MenuElem (_("Duplicate"), (bind (mem_fun(*this, &Editor::duplicate_dialog), false))));
2114         items.push_back (MenuElem (_("Multi-Duplicate"), (bind (mem_fun(*this, &Editor::duplicate_dialog), true))));
2115         items.push_back (MenuElem (_("Fill Track"), (mem_fun(*this, &Editor::region_fill_track))));
2116         items.push_back (SeparatorElem());
2117         items.push_back (MenuElem (_("Remove"), mem_fun(*this, &Editor::remove_selected_regions)));
2118
2119         /* OK, stick the region submenu at the top of the list, and then add
2120            the standard items.
2121         */
2122
2123         /* we have to hack up the region name because "_" has a special
2124            meaning for menu titles.
2125         */
2126
2127         string::size_type pos = 0;
2128         string menu_item_name = (region) ? region->name() : _("Selected regions");
2129
2130         while ((pos = menu_item_name.find ("_", pos)) != string::npos) {
2131                 menu_item_name.replace (pos, 1, "__");
2132                 pos += 2;
2133         }
2134         
2135         edit_items.push_back (MenuElem (menu_item_name, *region_menu));
2136         edit_items.push_back (SeparatorElem());
2137 }
2138
2139 /** Add context menu items relevant to selection ranges.
2140  * @param edit_items List to add the items to.
2141  */
2142 void
2143 Editor::add_selection_context_items (Menu_Helpers::MenuList& edit_items)
2144 {
2145         using namespace Menu_Helpers;
2146
2147         edit_items.push_back (MenuElem (_("Play range"), mem_fun(*this, &Editor::play_selection)));
2148         edit_items.push_back (MenuElem (_("Loop range"), bind (mem_fun(*this, &Editor::set_loop_from_selection), true)));
2149
2150         edit_items.push_back (SeparatorElem());
2151         edit_items.push_back (MenuElem (_("Spectral Analysis"), mem_fun(*this, &Editor::analyze_range_selection)));
2152         
2153         edit_items.push_back (SeparatorElem());
2154         edit_items.push_back (MenuElem (_("Extend Range to End of Region"), bind (mem_fun(*this, &Editor::extend_selection_to_end_of_region), false)));
2155         edit_items.push_back (MenuElem (_("Extend Range to Start of Region"), bind (mem_fun(*this, &Editor::extend_selection_to_start_of_region), false)));
2156
2157         edit_items.push_back (SeparatorElem());
2158         edit_items.push_back (MenuElem (_("Convert to region in-place"), mem_fun(*this, &Editor::separate_region_from_selection)));
2159         edit_items.push_back (MenuElem (_("Convert to region in region list"), mem_fun(*this, &Editor::new_region_from_selection)));
2160         
2161         edit_items.push_back (SeparatorElem());
2162         edit_items.push_back (MenuElem (_("Select all in range"), mem_fun(*this, &Editor::select_all_selectables_using_time_selection)));
2163
2164         edit_items.push_back (SeparatorElem());
2165         edit_items.push_back (MenuElem (_("Set loop from selection"), bind (mem_fun(*this, &Editor::set_loop_from_selection), false)));
2166         edit_items.push_back (MenuElem (_("Set punch from selection"), mem_fun(*this, &Editor::set_punch_from_selection)));
2167         
2168         edit_items.push_back (SeparatorElem());
2169         edit_items.push_back (MenuElem (_("Add Range Markers"), mem_fun (*this, &Editor::add_location_from_selection)));
2170         edit_items.push_back (SeparatorElem());
2171         edit_items.push_back (MenuElem (_("Crop region to range"), mem_fun(*this, &Editor::crop_region_to_selection)));
2172         edit_items.push_back (MenuElem (_("Fill range with region"), mem_fun(*this, &Editor::region_fill_selection)));
2173         edit_items.push_back (MenuElem (_("Duplicate range"), bind (mem_fun(*this, &Editor::duplicate_dialog), false)));
2174         edit_items.push_back (MenuElem (_("Create chunk from range"), mem_fun(*this, &Editor::create_named_selection)));
2175         edit_items.push_back (SeparatorElem());
2176         edit_items.push_back (MenuElem (_("Consolidate range"), bind (mem_fun(*this, &Editor::bounce_range_selection), true)));
2177         edit_items.push_back (MenuElem (_("Bounce range to region list"), bind (mem_fun(*this, &Editor::bounce_range_selection), false)));
2178         edit_items.push_back (MenuElem (_("Export range"), mem_fun(*this, &Editor::export_range)));
2179 }
2180
2181         
2182 void
2183 Editor::add_dstream_context_items (Menu_Helpers::MenuList& edit_items)
2184 {
2185         using namespace Menu_Helpers;
2186
2187         /* Playback */
2188
2189         Menu *play_menu = manage (new Menu);
2190         MenuList& play_items = play_menu->items();
2191         play_menu->set_name ("ArdourContextMenu");
2192         
2193         play_items.push_back (MenuElem (_("Play from edit point"), mem_fun(*this, &Editor::play_from_edit_point)));
2194         play_items.push_back (MenuElem (_("Play from start"), mem_fun(*this, &Editor::play_from_start)));
2195         play_items.push_back (MenuElem (_("Play region"), mem_fun(*this, &Editor::play_selected_region)));
2196         play_items.push_back (SeparatorElem());
2197         play_items.push_back (MenuElem (_("Loop Region"), mem_fun(*this, &Editor::loop_selected_region)));
2198         
2199         edit_items.push_back (MenuElem (_("Play"), *play_menu));
2200
2201         /* Selection */
2202
2203         Menu *select_menu = manage (new Menu);
2204         MenuList& select_items = select_menu->items();
2205         select_menu->set_name ("ArdourContextMenu");
2206         
2207         select_items.push_back (MenuElem (_("Select All in track"), bind (mem_fun(*this, &Editor::select_all_in_track), Selection::Set)));
2208         select_items.push_back (MenuElem (_("Select All"), bind (mem_fun(*this, &Editor::select_all), Selection::Set)));
2209         select_items.push_back (MenuElem (_("Invert selection in track"), mem_fun(*this, &Editor::invert_selection_in_track)));
2210         select_items.push_back (MenuElem (_("Invert selection"), mem_fun(*this, &Editor::invert_selection)));
2211         select_items.push_back (SeparatorElem());
2212         select_items.push_back (MenuElem (_("Set range to loop range"), mem_fun(*this, &Editor::set_selection_from_loop)));
2213         select_items.push_back (MenuElem (_("Set range to punch range"), mem_fun(*this, &Editor::set_selection_from_punch)));
2214         select_items.push_back (SeparatorElem());
2215         select_items.push_back (MenuElem (_("Select All After Edit Point"), bind (mem_fun(*this, &Editor::select_all_selectables_using_edit), true)));
2216         select_items.push_back (MenuElem (_("Select All Before Edit Point"), bind (mem_fun(*this, &Editor::select_all_selectables_using_edit), false)));
2217         select_items.push_back (MenuElem (_("Select All After Playhead"), bind (mem_fun(*this, &Editor::select_all_selectables_using_cursor), playhead_cursor, true)));
2218         select_items.push_back (MenuElem (_("Select All Before Playhead"), bind (mem_fun(*this, &Editor::select_all_selectables_using_cursor), playhead_cursor, false)));
2219         select_items.push_back (MenuElem (_("Select All Between Playhead & Edit Point"), bind (mem_fun(*this, &Editor::select_all_selectables_between), false)));
2220         select_items.push_back (MenuElem (_("Select All Within Playhead & Edit Point"), bind (mem_fun(*this, &Editor::select_all_selectables_between), true)));
2221         select_items.push_back (MenuElem (_("Select Range Between Playhead & Edit Point"), mem_fun(*this, &Editor::select_range_between)));
2222
2223         select_items.push_back (SeparatorElem());
2224
2225         edit_items.push_back (MenuElem (_("Select"), *select_menu));
2226
2227         /* Cut-n-Paste */
2228
2229         Menu *cutnpaste_menu = manage (new Menu);
2230         MenuList& cutnpaste_items = cutnpaste_menu->items();
2231         cutnpaste_menu->set_name ("ArdourContextMenu");
2232         
2233         cutnpaste_items.push_back (MenuElem (_("Cut"), mem_fun(*this, &Editor::cut)));
2234         cutnpaste_items.push_back (MenuElem (_("Copy"), mem_fun(*this, &Editor::copy)));
2235         cutnpaste_items.push_back (MenuElem (_("Paste"), bind (mem_fun(*this, &Editor::paste), 1.0f)));
2236
2237         cutnpaste_items.push_back (SeparatorElem());
2238
2239         cutnpaste_items.push_back (MenuElem (_("Align"), bind (mem_fun(*this, &Editor::align), ARDOUR::SyncPoint)));
2240         cutnpaste_items.push_back (MenuElem (_("Align Relative"), bind (mem_fun(*this, &Editor::align_relative), ARDOUR::SyncPoint)));
2241
2242         cutnpaste_items.push_back (SeparatorElem());
2243
2244         cutnpaste_items.push_back (MenuElem (_("Insert chunk"), bind (mem_fun(*this, &Editor::paste_named_selection), 1.0f)));
2245
2246         edit_items.push_back (MenuElem (_("Edit"), *cutnpaste_menu));
2247
2248         /* Adding new material */
2249         
2250         edit_items.push_back (SeparatorElem());
2251         edit_items.push_back (MenuElem (_("Insert Selected Region"), bind (mem_fun(*this, &Editor::insert_region_list_selection), 1.0f)));
2252         edit_items.push_back (MenuElem (_("Insert Existing Media"), bind (mem_fun(*this, &Editor::add_external_audio_action), ImportToTrack)));
2253
2254         /* Nudge track */
2255
2256         Menu *nudge_menu = manage (new Menu());
2257         MenuList& nudge_items = nudge_menu->items();
2258         nudge_menu->set_name ("ArdourContextMenu");
2259         
2260         edit_items.push_back (SeparatorElem());
2261         nudge_items.push_back (MenuElem (_("Nudge entire track fwd"), (bind (mem_fun(*this, &Editor::nudge_track), false, true))));
2262         nudge_items.push_back (MenuElem (_("Nudge track after edit point fwd"), (bind (mem_fun(*this, &Editor::nudge_track), true, true))));
2263         nudge_items.push_back (MenuElem (_("Nudge entire track bwd"), (bind (mem_fun(*this, &Editor::nudge_track), false, false))));
2264         nudge_items.push_back (MenuElem (_("Nudge track after edit point bwd"), (bind (mem_fun(*this, &Editor::nudge_track), true, false))));
2265
2266         edit_items.push_back (MenuElem (_("Nudge"), *nudge_menu));
2267 }
2268
2269 void
2270 Editor::add_bus_context_items (Menu_Helpers::MenuList& edit_items)
2271 {
2272         using namespace Menu_Helpers;
2273
2274         /* Playback */
2275
2276         Menu *play_menu = manage (new Menu);
2277         MenuList& play_items = play_menu->items();
2278         play_menu->set_name ("ArdourContextMenu");
2279         
2280         play_items.push_back (MenuElem (_("Play from edit point"), mem_fun(*this, &Editor::play_from_edit_point)));
2281         play_items.push_back (MenuElem (_("Play from start"), mem_fun(*this, &Editor::play_from_start)));
2282         edit_items.push_back (MenuElem (_("Play"), *play_menu));
2283
2284         /* Selection */
2285
2286         Menu *select_menu = manage (new Menu);
2287         MenuList& select_items = select_menu->items();
2288         select_menu->set_name ("ArdourContextMenu");
2289         
2290         select_items.push_back (MenuElem (_("Select All in track"), bind (mem_fun(*this, &Editor::select_all_in_track), Selection::Set)));
2291         select_items.push_back (MenuElem (_("Select All"), bind (mem_fun(*this, &Editor::select_all), Selection::Set)));
2292         select_items.push_back (MenuElem (_("Invert selection in track"), mem_fun(*this, &Editor::invert_selection_in_track)));
2293         select_items.push_back (MenuElem (_("Invert selection"), mem_fun(*this, &Editor::invert_selection)));
2294         select_items.push_back (SeparatorElem());
2295         select_items.push_back (MenuElem (_("Select all after edit point"), bind (mem_fun(*this, &Editor::select_all_selectables_using_edit), true)));
2296         select_items.push_back (MenuElem (_("Select all before edit point"), bind (mem_fun(*this, &Editor::select_all_selectables_using_edit), false)));
2297         select_items.push_back (MenuElem (_("Select all after playhead"), bind (mem_fun(*this, &Editor::select_all_selectables_using_cursor), playhead_cursor, true)));
2298         select_items.push_back (MenuElem (_("Select all before playhead"), bind (mem_fun(*this, &Editor::select_all_selectables_using_cursor), playhead_cursor, false)));
2299
2300         edit_items.push_back (MenuElem (_("Select"), *select_menu));
2301
2302         /* Cut-n-Paste */
2303
2304         Menu *cutnpaste_menu = manage (new Menu);
2305         MenuList& cutnpaste_items = cutnpaste_menu->items();
2306         cutnpaste_menu->set_name ("ArdourContextMenu");
2307         
2308         cutnpaste_items.push_back (MenuElem (_("Cut"), mem_fun(*this, &Editor::cut)));
2309         cutnpaste_items.push_back (MenuElem (_("Copy"), mem_fun(*this, &Editor::copy)));
2310         cutnpaste_items.push_back (MenuElem (_("Paste"), bind (mem_fun(*this, &Editor::paste), 1.0f)));
2311
2312         Menu *nudge_menu = manage (new Menu());
2313         MenuList& nudge_items = nudge_menu->items();
2314         nudge_menu->set_name ("ArdourContextMenu");
2315         
2316         edit_items.push_back (SeparatorElem());
2317         nudge_items.push_back (MenuElem (_("Nudge entire track fwd"), (bind (mem_fun(*this, &Editor::nudge_track), false, true))));
2318         nudge_items.push_back (MenuElem (_("Nudge track after edit point fwd"), (bind (mem_fun(*this, &Editor::nudge_track), true, true))));
2319         nudge_items.push_back (MenuElem (_("Nudge entire track bwd"), (bind (mem_fun(*this, &Editor::nudge_track), false, false))));
2320         nudge_items.push_back (MenuElem (_("Nudge track after edit point bwd"), (bind (mem_fun(*this, &Editor::nudge_track), true, false))));
2321
2322         edit_items.push_back (MenuElem (_("Nudge"), *nudge_menu));
2323 }
2324
2325 void
2326 Editor::set_snap_to (SnapType st)
2327 {
2328         unsigned int snap_ind = (unsigned int)st;
2329
2330         snap_type = st;
2331         
2332         if (snap_ind > snap_type_strings.size() - 1) {
2333                 snap_ind = 0;
2334                 snap_type = (SnapType)snap_ind;
2335         }
2336         
2337         string str = snap_type_strings[snap_ind];
2338
2339         if (str != snap_type_selector.get_active_text()) {
2340                 snap_type_selector.set_active_text (str);
2341         }
2342
2343         instant_save ();
2344
2345         switch (snap_type) {
2346         case SnapToAThirtysecondBeat:
2347         case SnapToASixteenthBeat:
2348         case SnapToAEighthBeat:
2349         case SnapToAQuarterBeat:
2350         case SnapToAThirdBeat:
2351                 compute_bbt_ruler_scale (leftmost_frame, leftmost_frame + current_page_frames());
2352                 update_tempo_based_rulers ();
2353                 break;
2354
2355         case SnapToRegionStart:
2356         case SnapToRegionEnd:
2357         case SnapToRegionSync:
2358         case SnapToRegionBoundary:
2359                 build_region_boundary_cache ();
2360                 break;
2361
2362         default:
2363                 /* relax */
2364                 break;
2365     }
2366 }
2367
2368 void
2369 Editor::set_snap_mode (SnapMode mode)
2370 {
2371         snap_mode = mode;
2372         string str = snap_mode_strings[(int)mode];
2373
2374         if (str != snap_mode_selector.get_active_text ()) {
2375                 snap_mode_selector.set_active_text (str);
2376         }
2377
2378         instant_save ();
2379 }
2380 void
2381 Editor::set_edit_point_preference (EditPoint ep, bool force)
2382 {
2383         bool changed = (_edit_point != ep);
2384
2385         _edit_point = ep;
2386         string str = edit_point_strings[(int)ep];
2387
2388         if (str != edit_point_selector.get_active_text ()) {
2389                 edit_point_selector.set_active_text (str);
2390         }
2391
2392         set_canvas_cursor ();
2393
2394         if (!force && !changed) {
2395                 return;
2396         }
2397
2398         switch (zoom_focus) {
2399         case ZoomFocusMouse:
2400         case ZoomFocusPlayhead:
2401         case ZoomFocusEdit:
2402                 switch (_edit_point) {
2403                 case EditAtMouse:
2404                         set_zoom_focus (ZoomFocusMouse);
2405                         break;
2406                 case EditAtPlayhead:
2407                         set_zoom_focus (ZoomFocusPlayhead);
2408                         break;
2409                 case EditAtSelectedMarker:
2410                         set_zoom_focus (ZoomFocusEdit);
2411                         break;
2412                 }
2413                 break;
2414         default:
2415                 break;
2416         }
2417
2418         const char* action=NULL;
2419
2420         switch (_edit_point) {
2421         case EditAtPlayhead:
2422                 action = "edit-at-playhead";
2423                 break;
2424         case EditAtSelectedMarker:
2425                 action = "edit-at-marker";
2426                 break;
2427         case EditAtMouse:
2428                 action = "edit-at-mouse";
2429                 break;
2430         }
2431
2432         Glib::RefPtr<Action> act = ActionManager::get_action ("Editor", action);
2433         if (act) {
2434                 Glib::RefPtr<RadioAction>::cast_dynamic(act)->set_active (true);
2435         }
2436
2437         nframes64_t foo;
2438         bool in_track_canvas;
2439
2440         if (!mouse_frame (foo, in_track_canvas)) {
2441                 in_track_canvas = false;
2442         }
2443
2444         reset_canvas_action_sensitivity (in_track_canvas);
2445
2446         instant_save ();
2447 }
2448
2449 int
2450 Editor::set_state (const XMLNode& node)
2451 {
2452         const XMLProperty* prop;
2453         XMLNode* geometry;
2454         int x, y, xoff, yoff;
2455         Gdk::Geometry g;
2456
2457         if ((prop = node.property ("id")) != 0) {
2458                 _id = prop->value ();
2459         }
2460
2461         g.base_width = default_width;
2462         g.base_height = default_height;
2463         x = 1;
2464         y = 1;
2465         xoff = 0;
2466         yoff = 21;
2467
2468         if ((geometry = find_named_node (node, "geometry")) != 0) {
2469
2470                 XMLProperty* prop;
2471
2472                 if ((prop = geometry->property("x_size")) == 0) {
2473                         prop = geometry->property ("x-size");
2474                 }
2475                 if (prop) {
2476                         g.base_width = atoi(prop->value());
2477                 }
2478                 if ((prop = geometry->property("y_size")) == 0) {
2479                         prop = geometry->property ("y-size");
2480                 }
2481                 if (prop) {
2482                         g.base_height = atoi(prop->value());
2483                 }
2484
2485                 if ((prop = geometry->property ("x_pos")) == 0) {
2486                         prop = geometry->property ("x-pos");
2487                 }
2488                 if (prop) {
2489                         x = atoi (prop->value());
2490
2491                 }
2492                 if ((prop = geometry->property ("y_pos")) == 0) {
2493                         prop = geometry->property ("y-pos");
2494                 }
2495                 if (prop) {
2496                         y = atoi (prop->value());
2497                 }
2498
2499                 if ((prop = geometry->property ("x_off")) == 0) {
2500                         prop = geometry->property ("x-off");
2501                 }
2502                 if (prop) {
2503                         xoff = atoi (prop->value());
2504                 }
2505                 if ((prop = geometry->property ("y_off")) == 0) {
2506                         prop = geometry->property ("y-off");
2507                 }
2508                 if (prop) {
2509                         yoff = atoi (prop->value());
2510                 }
2511         }
2512
2513         set_default_size (g.base_width, g.base_height);
2514         move (x, y);
2515
2516         if (session && (prop = node.property ("playhead"))) {
2517                 nframes64_t pos = atol (prop->value().c_str());
2518                 playhead_cursor->set_position (pos);
2519         } else {
2520                 playhead_cursor->set_position (0);
2521
2522                 /* reset_x_origin() doesn't work right here, since the old
2523                    position may be zero already, and it does nothing in such
2524                    circumstances.
2525                 */
2526                 
2527                 leftmost_frame = 0;
2528                 horizontal_adjustment.set_value (0);
2529         }
2530
2531         if ((prop = node.property ("mixer-width"))) {
2532                 editor_mixer_strip_width = Width (string_2_enum (prop->value(), editor_mixer_strip_width));
2533         }
2534
2535         if ((prop = node.property ("zoom-focus"))) {
2536                 set_zoom_focus ((ZoomFocus) atoi (prop->value()));
2537         }
2538
2539         if ((prop = node.property ("zoom"))) {
2540                 reset_zoom (PBD::atof (prop->value()));
2541         }
2542
2543         if ((prop = node.property ("snap-to"))) {
2544                 set_snap_to ((SnapType) atoi (prop->value()));
2545         }
2546
2547         if ((prop = node.property ("snap-mode"))) {
2548                 set_snap_mode ((SnapMode) atoi (prop->value()));
2549         }
2550
2551         if ((prop = node.property ("edit-point"))) {
2552                 set_edit_point_preference ((EditPoint) string_2_enum (prop->value(), _edit_point), true);
2553         }
2554
2555         if ((prop = node.property ("mouse-mode"))) {
2556                 MouseMode m = str2mousemode(prop->value());
2557                 mouse_mode = MouseMode ((int) m + 1); /* lie, force mode switch */
2558                 set_mouse_mode (m, true);
2559         } else {
2560                 mouse_mode = MouseGain; /* lie, to force the mode switch */
2561                 set_mouse_mode (MouseObject, true);
2562         }
2563
2564         if ((prop = node.property ("show-waveforms"))) {
2565                 bool yn = (prop->value() == "yes");
2566                 _show_waveforms = !yn;
2567                 RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-waveform-visible"));
2568                 if (act) {
2569                         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
2570                         /* do it twice to force the change */
2571                         tact->set_active (!yn);
2572                         tact->set_active (yn);
2573                 }
2574         }
2575
2576         if ((prop = node.property ("show-waveforms-recording"))) {
2577                 bool yn = (prop->value() == "yes");
2578                 _show_waveforms_recording = !yn;
2579                 RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleWaveformsWhileRecording"));
2580                 if (act) {
2581                         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
2582                         /* do it twice to force the change */
2583                         tact->set_active (!yn);
2584                         tact->set_active (yn);
2585                 }
2586         }
2587         
2588         if ((prop = node.property ("show-measures"))) {
2589                 bool yn = (prop->value() == "yes");
2590                 _show_measures = !yn;
2591                 RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleMeasureVisibility"));
2592                 if (act) {
2593                         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
2594                         /* do it twice to force the change */
2595                         tact->set_active (!yn);
2596                         tact->set_active (yn);
2597                 }
2598         }
2599
2600         if ((prop = node.property ("follow-playhead"))) {
2601                 bool yn = (prop->value() == "yes");
2602                 set_follow_playhead (yn);
2603                 RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-follow-playhead"));
2604                 if (act) {
2605                         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
2606                         if (tact->get_active() != yn) {
2607                                 tact->set_active (yn);
2608                         }
2609                 }
2610         }
2611
2612         if ((prop = node.property ("region-list-sort-type"))) {
2613                 region_list_sort_type = (Editing::RegionListSortType) -1; // force change 
2614                 reset_region_list_sort_type(str2regionlistsorttype(prop->value()));
2615         }
2616
2617         if ((prop = node.property ("xfades-visible"))) {
2618                 bool yn = (prop->value() == "yes");
2619                 _xfade_visibility = !yn;
2620                 // set_xfade_visibility (yn);
2621         }
2622
2623         if ((prop = node.property ("show-editor-mixer"))) {
2624
2625                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
2626                 if (act) {
2627
2628                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
2629                         bool yn = (prop->value() == X_("yes"));
2630
2631                         /* do it twice to force the change */
2632                         
2633                         tact->set_active (!yn);
2634                         tact->set_active (yn);
2635                 }
2636         }
2637         
2638         if ((prop = node.property ("show-editor-list"))) {
2639
2640                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-list"));
2641                 assert(act);
2642                 if (act) {
2643
2644                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
2645                         bool yn = (prop->value() == X_("yes"));
2646
2647                         /* do it twice to force the change */
2648                         
2649                         tact->set_active (!yn);
2650                         tact->set_active (yn);
2651                 }
2652         }
2653
2654
2655         return 0;
2656 }
2657
2658 XMLNode&
2659 Editor::get_state ()
2660 {
2661         XMLNode* node = new XMLNode ("Editor");
2662         char buf[32];
2663
2664         _id.print (buf, sizeof (buf));
2665         node->add_property ("id", buf);
2666         
2667         if (is_realized()) {
2668                 Glib::RefPtr<Gdk::Window> win = get_window();
2669                 
2670                 int x, y, xoff, yoff, width, height;
2671                 win->get_root_origin(x, y);
2672                 win->get_position(xoff, yoff);
2673                 win->get_size(width, height);
2674                 
2675                 XMLNode* geometry = new XMLNode ("geometry");
2676
2677                 snprintf(buf, sizeof(buf), "%d", width);
2678                 geometry->add_property("x-size", string(buf));
2679                 snprintf(buf, sizeof(buf), "%d", height);
2680                 geometry->add_property("y-size", string(buf));
2681                 snprintf(buf, sizeof(buf), "%d", x);
2682                 geometry->add_property("x-pos", string(buf));
2683                 snprintf(buf, sizeof(buf), "%d", y);
2684                 geometry->add_property("y-pos", string(buf));
2685                 snprintf(buf, sizeof(buf), "%d", xoff);
2686                 geometry->add_property("x-off", string(buf));
2687                 snprintf(buf, sizeof(buf), "%d", yoff);
2688                 geometry->add_property("y-off", string(buf));
2689                 snprintf(buf,sizeof(buf), "%d",gtk_paned_get_position (static_cast<Paned*>(&edit_pane)->gobj()));
2690                 geometry->add_property("edit_pane_pos", string(buf));
2691
2692                 node->add_child_nocopy (*geometry);
2693         }
2694
2695         maybe_add_mixer_strip_width (*node);
2696         
2697         snprintf (buf, sizeof(buf), "%d", (int) zoom_focus);
2698         node->add_property ("zoom-focus", buf);
2699         snprintf (buf, sizeof(buf), "%f", frames_per_unit);
2700         node->add_property ("zoom", buf);
2701         snprintf (buf, sizeof(buf), "%d", (int) snap_type);
2702         node->add_property ("snap-to", buf);
2703         snprintf (buf, sizeof(buf), "%d", (int) snap_mode);
2704         node->add_property ("snap-mode", buf);
2705
2706         node->add_property ("edit-point", enum_2_string (_edit_point));
2707
2708         snprintf (buf, sizeof (buf), "%" PRIi64, playhead_cursor->current_frame);
2709         node->add_property ("playhead", buf);
2710
2711         node->add_property ("show-waveforms", _show_waveforms ? "yes" : "no");
2712         node->add_property ("show-waveforms-recording", _show_waveforms_recording ? "yes" : "no");
2713         node->add_property ("show-measures", _show_measures ? "yes" : "no");
2714         node->add_property ("follow-playhead", _follow_playhead ? "yes" : "no");
2715         node->add_property ("xfades-visible", _xfade_visibility ? "yes" : "no");
2716         node->add_property ("region-list-sort-type", enum2str(region_list_sort_type));
2717         node->add_property ("mouse-mode", enum2str(mouse_mode));
2718         
2719         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
2720         if (act) {
2721                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
2722                 node->add_property (X_("show-editor-mixer"), tact->get_active() ? "yes" : "no");
2723         }
2724         
2725         act = ActionManager::get_action (X_("Editor"), X_("show-editor-list"));
2726         if (act) {
2727                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
2728                 node->add_property (X_("show-editor-list"), tact->get_active() ? "yes" : "no");
2729         }
2730
2731         return *node;
2732 }
2733
2734
2735
2736 /** @param y y offset from the top of all trackviews.
2737  *  @return pair: TimeAxisView that y is over, layer index.
2738  *  TimeAxisView may be 0.  Layer index is the layer number if the TimeAxisView is valid and is
2739  *  in stacked region display mode, otherwise 0.
2740  */
2741 std::pair<TimeAxisView *, layer_t>
2742 Editor::trackview_by_y_position (double y)
2743 {
2744         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
2745
2746                 std::pair<TimeAxisView*, int> const r = (*iter)->covers_y_position (y);
2747                 if (r.first) {
2748                         return r;
2749                 }
2750         }
2751
2752         return std::make_pair ( (TimeAxisView *) 0, 0);
2753 }
2754
2755 void
2756 Editor::snap_to (nframes64_t& start, int32_t direction, bool for_mark)
2757 {
2758         if (!session || snap_mode == SnapOff) {
2759                 return;
2760         }
2761
2762         snap_to_internal (start, direction, for_mark);
2763 }
2764
2765 void
2766 Editor::snap_to_internal (nframes64_t& start, int32_t direction, bool for_mark)
2767 {
2768         Location* before = 0;
2769         Location* after = 0;
2770
2771         const nframes64_t one_second = session->frame_rate();
2772         const nframes64_t one_minute = session->frame_rate() * 60;
2773         const nframes64_t one_smpte_second = (nframes64_t)(rint(session->smpte_frames_per_second()) * session->frames_per_smpte_frame());
2774         nframes64_t one_smpte_minute = (nframes64_t)(rint(session->smpte_frames_per_second()) * session->frames_per_smpte_frame() * 60);
2775         nframes64_t presnap = start;
2776
2777         switch (snap_type) {
2778         case SnapToCDFrame:
2779                 if (((direction == 0) && (start % (one_second/75) > (one_second/75) / 2)) || (direction > 0)) {
2780                         start = (nframes64_t) ceil ((double) start / (one_second / 75)) * (one_second / 75);
2781                 } else {
2782                         start = (nframes64_t) floor ((double) start / (one_second / 75)) * (one_second / 75);
2783                 }
2784                 break;
2785
2786         case SnapToSMPTEFrame:
2787                 if (((direction == 0) && (fmod((double)start, (double)session->frames_per_smpte_frame()) > (session->frames_per_smpte_frame() / 2))) || (direction > 0)) {
2788                         start = (nframes64_t) (ceil ((double) start / session->frames_per_smpte_frame()) * session->frames_per_smpte_frame());
2789                 } else {
2790                         start = (nframes64_t) (floor ((double) start / session->frames_per_smpte_frame()) *  session->frames_per_smpte_frame());
2791                 }
2792                 break;
2793
2794         case SnapToSMPTESeconds:
2795                 if (session->smpte_offset_negative())
2796                 {
2797                         start += session->smpte_offset ();
2798                 } else {
2799                         start -= session->smpte_offset ();
2800                 }    
2801                 if (((direction == 0) && (start % one_smpte_second > one_smpte_second / 2)) || direction > 0) {
2802                         start = (nframes64_t) ceil ((double) start / one_smpte_second) * one_smpte_second;
2803                 } else {
2804                         start = (nframes64_t) floor ((double) start / one_smpte_second) * one_smpte_second;
2805                 }
2806                 
2807                 if (session->smpte_offset_negative())
2808                 {
2809                         start -= session->smpte_offset ();
2810                 } else {
2811                         start += session->smpte_offset ();
2812                 }
2813                 break;
2814                 
2815         case SnapToSMPTEMinutes:
2816                 if (session->smpte_offset_negative())
2817                 {
2818                         start += session->smpte_offset ();
2819                 } else {
2820                         start -= session->smpte_offset ();
2821                 }
2822                 if (((direction == 0) && (start % one_smpte_minute > one_smpte_minute / 2)) || direction > 0) {
2823                         start = (nframes64_t) ceil ((double) start / one_smpte_minute) * one_smpte_minute;
2824                 } else {
2825                         start = (nframes64_t) floor ((double) start / one_smpte_minute) * one_smpte_minute;
2826                 }
2827                 if (session->smpte_offset_negative())
2828                 {
2829                         start -= session->smpte_offset ();
2830                 } else {
2831                         start += session->smpte_offset ();
2832                 }
2833                 break;
2834                 
2835         case SnapToSeconds:
2836                 if (((direction == 0) && (start % one_second > one_second / 2)) || (direction > 0)) {
2837                         start = (nframes64_t) ceil ((double) start / one_second) * one_second;
2838                 } else {
2839                         start = (nframes64_t) floor ((double) start / one_second) * one_second;
2840                 }
2841                 break;
2842                 
2843         case SnapToMinutes:
2844                 if (((direction == 0) && (start % one_minute > one_minute / 2)) || (direction > 0)) {
2845                         start = (nframes64_t) ceil ((double) start / one_minute) * one_minute;
2846                 } else {
2847                         start = (nframes64_t) floor ((double) start / one_minute) * one_minute;
2848                 }
2849                 break;
2850
2851         case SnapToBar:
2852                 start = session->tempo_map().round_to_bar (start, direction);
2853                 break;
2854
2855         case SnapToBeat:
2856                 start = session->tempo_map().round_to_beat (start, direction);
2857                 break;
2858
2859         case SnapToAThirtysecondBeat:
2860                 start = session->tempo_map().round_to_beat_subdivision (start, 32);
2861                 break;
2862
2863         case SnapToASixteenthBeat:
2864                 start = session->tempo_map().round_to_beat_subdivision (start, 16);
2865                 break;
2866
2867         case SnapToAEighthBeat:
2868                 start = session->tempo_map().round_to_beat_subdivision (start, 8);
2869                 break;
2870
2871         case SnapToAQuarterBeat:
2872                 start = session->tempo_map().round_to_beat_subdivision (start, 4);
2873                 break;
2874
2875         case SnapToAThirdBeat:
2876                 start = session->tempo_map().round_to_beat_subdivision (start, 3);
2877                 break;
2878
2879         case SnapToMark:
2880                 if (for_mark) {
2881                         return;
2882                 }
2883
2884                 before = session->locations()->first_location_before (start);
2885                 after = session->locations()->first_location_after (start);
2886
2887                 if (direction < 0) {
2888                         if (before) {
2889                                 start = before->start();
2890                         } else {
2891                                 start = 0;
2892                         }
2893                 } else if (direction > 0) {
2894                         if (after) {
2895                                 start = after->start();
2896                         } else {
2897                                 start = session->current_end_frame();
2898                         }
2899                 } else {
2900                         if (before) {
2901                                 if (after) {
2902                                         /* find nearest of the two */
2903                                         if ((start - before->start()) < (after->start() - start)) {
2904                                                 start = before->start();
2905                                         } else {
2906                                                 start = after->start();
2907                                         }
2908                                 } else {
2909                                         start = before->start();
2910                                 }
2911                         } else if (after) {
2912                                 start = after->start();
2913                         } else {
2914                                 /* relax */
2915                         }
2916                 }
2917                 break;
2918
2919         case SnapToRegionStart:
2920         case SnapToRegionEnd:
2921         case SnapToRegionSync:
2922         case SnapToRegionBoundary:
2923                 if (!region_boundary_cache.empty()) {
2924                         vector<nframes64_t>::iterator i;
2925
2926                         if (direction > 0) {
2927                                 i = std::upper_bound (region_boundary_cache.begin(), region_boundary_cache.end(), start);
2928                         } else {
2929                                 i = std::lower_bound (region_boundary_cache.begin(), region_boundary_cache.end(), start);
2930                         }
2931                         
2932                         if (i != region_boundary_cache.end()) {
2933
2934                                 /* lower bound doesn't quite to the right thing for our purposes */
2935
2936                                 if (direction < 0 && i != region_boundary_cache.begin()) {
2937                                         --i;
2938                                 }
2939
2940                                 start = *i;
2941
2942                         } else {
2943                                 start = region_boundary_cache.back();
2944                         }
2945                 } 
2946                 break;
2947         }
2948
2949         switch (snap_mode) {
2950         case SnapNormal:
2951                 return;                 
2952                 
2953         case SnapMagnetic:
2954                 
2955                 if (presnap > start) {
2956                         if (presnap > (start + unit_to_frame(snap_threshold))) {
2957                                 start = presnap;
2958                         }
2959                         
2960                 } else if (presnap < start) {
2961                         if (presnap < (start - unit_to_frame(snap_threshold))) {
2962                                 start = presnap;
2963                         }
2964                 }
2965                 
2966         default:
2967                 /* handled at entry */
2968                 return;
2969                 
2970         }
2971 }
2972
2973 double
2974 Editor::snap_length_beats (nframes64_t start)
2975 {
2976         if (!session) {
2977                 return 1.0;
2978         }
2979
2980         /* FIXME: This could/should also work with non-tempo based snap settings (ie seconds) */
2981
2982         switch (snap_type) {
2983         case SnapToBar:
2984                 return session->tempo_map().meter_at(start).beats_per_bar();
2985
2986         case SnapToBeat:
2987                 return 1.0;
2988
2989         case SnapToAThirtysecondBeat:
2990                 return 1.0 / (double)32.0;
2991                 break;
2992
2993         case SnapToASixteenthBeat:
2994                 return 1.0 / (double)16.0;
2995                 break;
2996
2997         case SnapToAEighthBeat:
2998                 return 1.0 / (double)8.0;
2999                 break;
3000
3001         case SnapToAQuarterBeat:
3002                 return 1.0 / (double)4.0;
3003                 break;
3004
3005         case SnapToAThirdBeat:
3006                 return 1.0 / (double)3.0;
3007
3008         default:
3009                 return 1.0;
3010         }
3011 }
3012
3013 void
3014 Editor::setup_toolbar ()
3015 {
3016         string pixmap_path;
3017
3018 #ifdef GTKOSX
3019         const guint32 FUDGE = 38; // Combo's are stupid - they steal space from the entry for the button
3020 #else
3021         const guint32 FUDGE = 24; // Combo's are stupid - they steal space from the entry for the button
3022 #endif
3023
3024         /* Mode Buttons (tool selection) */
3025
3026         vector<ToggleButton *> mouse_mode_buttons;
3027
3028         mouse_move_button.add (*(manage (new Image (::get_icon("tool_object")))));
3029         mouse_move_button.set_relief(Gtk::RELIEF_NONE);
3030         mouse_mode_buttons.push_back (&mouse_move_button);
3031
3032         if (!Profile->get_sae()) {
3033                 mouse_select_button.add (*(manage (new Image (get_xpm("tool_range.xpm")))));
3034                 mouse_select_button.set_relief(Gtk::RELIEF_NONE);
3035                 mouse_mode_buttons.push_back (&mouse_select_button);
3036
3037                 mouse_gain_button.add (*(manage (new Image (::get_icon("tool_gain")))));
3038                 mouse_gain_button.set_relief(Gtk::RELIEF_NONE);
3039                 mouse_mode_buttons.push_back (&mouse_gain_button);
3040         }
3041
3042         mouse_zoom_button.add (*(manage (new Image (::get_icon("tool_zoom")))));
3043         mouse_zoom_button.set_relief(Gtk::RELIEF_NONE);
3044         mouse_mode_buttons.push_back (&mouse_zoom_button);
3045         mouse_timefx_button.add (*(manage (new Image (::get_icon("tool_stretch")))));
3046         mouse_timefx_button.set_relief(Gtk::RELIEF_NONE);
3047         mouse_mode_buttons.push_back (&mouse_timefx_button);
3048         mouse_audition_button.add (*(manage (new Image (::get_icon("tool_audition")))));
3049         mouse_audition_button.set_relief(Gtk::RELIEF_NONE);
3050         mouse_note_button.add (*(manage (new Image (::get_icon("tool_note")))));
3051         mouse_note_button.set_relief(Gtk::RELIEF_NONE);
3052         mouse_mode_buttons.push_back (&mouse_note_button);
3053         mouse_mode_buttons.push_back (&mouse_audition_button);
3054         
3055         mouse_mode_button_set = new GroupedButtons (mouse_mode_buttons);
3056
3057         HBox* mode_box = manage(new HBox);
3058         mode_box->set_border_width (2);
3059         mode_box->set_spacing(4);
3060         mouse_mode_button_box.set_spacing(1);
3061         mouse_mode_button_box.pack_start(mouse_move_button, true, true);
3062         if (!Profile->get_sae()) {
3063                 mouse_mode_button_box.pack_start(mouse_select_button, true, true);
3064         }
3065         mouse_mode_button_box.pack_start(mouse_zoom_button, true, true);
3066         if (!Profile->get_sae()) {
3067                 mouse_mode_button_box.pack_start(mouse_gain_button, true, true);
3068         }
3069         mouse_mode_button_box.pack_start(mouse_timefx_button, true, true);
3070         mouse_mode_button_box.pack_start(mouse_audition_button, true, true);
3071         mouse_mode_button_box.pack_start(mouse_note_button, true, true);
3072         mouse_mode_button_box.set_homogeneous(true);
3073
3074         vector<string> edit_mode_strings;
3075         edit_mode_strings.push_back (edit_mode_to_string (Slide));
3076         if (!Profile->get_sae()) {
3077                 edit_mode_strings.push_back (edit_mode_to_string (Splice));
3078         }
3079         edit_mode_strings.push_back (edit_mode_to_string (Lock));
3080
3081         edit_mode_selector.set_name ("EditModeSelector");
3082         Gtkmm2ext::set_size_request_to_display_given_text (edit_mode_selector, edit_mode_strings, 7+FUDGE, 10);
3083         set_popdown_strings (edit_mode_selector, edit_mode_strings);
3084         edit_mode_selector.signal_changed().connect (mem_fun(*this, &Editor::edit_mode_selection_done));
3085
3086         mode_box->pack_start(edit_mode_selector);
3087         mode_box->pack_start(mouse_mode_button_box);
3088         
3089         mouse_mode_tearoff = manage (new TearOff (*mode_box));
3090         mouse_mode_tearoff->set_name ("MouseModeBase");
3091
3092         if (Profile->get_sae()) {
3093                 mouse_mode_tearoff->set_can_be_torn_off (false);
3094         }
3095
3096         mouse_mode_tearoff->Detach.connect (bind (mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox), 
3097                                                   &mouse_mode_tearoff->tearoff_window()));
3098         mouse_mode_tearoff->Attach.connect (bind (mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox), 
3099                                                   &mouse_mode_tearoff->tearoff_window(), 1));
3100         mouse_mode_tearoff->Hidden.connect (bind (mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox), 
3101                                                   &mouse_mode_tearoff->tearoff_window()));
3102         mouse_mode_tearoff->Visible.connect (bind (mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox), 
3103                                                    &mouse_mode_tearoff->tearoff_window(), 1));
3104
3105         mouse_move_button.set_name ("MouseModeButton");
3106         mouse_select_button.set_name ("MouseModeButton");
3107         mouse_gain_button.set_name ("MouseModeButton");
3108         mouse_zoom_button.set_name ("MouseModeButton");
3109         mouse_timefx_button.set_name ("MouseModeButton");
3110         mouse_audition_button.set_name ("MouseModeButton");
3111         mouse_note_button.set_name ("MouseModeButton");
3112
3113         ARDOUR_UI::instance()->tooltips().set_tip (mouse_move_button, _("Select/Move Objects"));
3114         ARDOUR_UI::instance()->tooltips().set_tip (mouse_select_button, _("Select/Move Ranges"));
3115         ARDOUR_UI::instance()->tooltips().set_tip (mouse_gain_button, _("Draw Gain Automation"));
3116         ARDOUR_UI::instance()->tooltips().set_tip (mouse_zoom_button, _("Select Zoom Range"));
3117         ARDOUR_UI::instance()->tooltips().set_tip (mouse_timefx_button, _("Stretch/Shrink Regions"));
3118         ARDOUR_UI::instance()->tooltips().set_tip (mouse_audition_button, _("Listen to Specific Regions"));
3119         ARDOUR_UI::instance()->tooltips().set_tip (mouse_note_button, _("Edit MIDI Notes"));
3120
3121         mouse_move_button.unset_flags (CAN_FOCUS);
3122         mouse_select_button.unset_flags (CAN_FOCUS);
3123         mouse_gain_button.unset_flags (CAN_FOCUS);
3124         mouse_zoom_button.unset_flags (CAN_FOCUS);
3125         mouse_timefx_button.unset_flags (CAN_FOCUS);
3126         mouse_audition_button.unset_flags (CAN_FOCUS);
3127         mouse_note_button.unset_flags (CAN_FOCUS);
3128
3129         mouse_select_button.signal_toggled().connect (bind (mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseRange));
3130         mouse_select_button.signal_button_release_event().connect (mem_fun(*this, &Editor::mouse_select_button_release));
3131
3132         mouse_move_button.signal_toggled().connect (bind (mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseObject));
3133         mouse_gain_button.signal_toggled().connect (bind (mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseGain));
3134         mouse_zoom_button.signal_toggled().connect (bind (mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseZoom));
3135         mouse_timefx_button.signal_toggled().connect (bind (mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseTimeFX));
3136         mouse_audition_button.signal_toggled().connect (bind (mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseAudition));
3137         mouse_note_button.signal_toggled().connect (bind (mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseNote));
3138
3139         // mouse_move_button.set_active (true);
3140         
3141
3142         /* Zoom */
3143         
3144         zoom_box.set_spacing (1);
3145         zoom_box.set_border_width (0);
3146
3147         zoom_in_button.set_name ("EditorTimeButton");
3148         zoom_in_button.set_size_request(-1,16);
3149         zoom_in_button.add (*(manage (new Image (::get_icon("zoom_in")))));
3150         zoom_in_button.signal_clicked().connect (bind (mem_fun(*this, &Editor::temporal_zoom_step), false));
3151         ARDOUR_UI::instance()->tooltips().set_tip (zoom_in_button, _("Zoom In"));
3152         
3153         zoom_out_button.set_name ("EditorTimeButton");
3154         zoom_out_button.set_size_request(-1,16);
3155         zoom_out_button.add (*(manage (new Image (::get_icon("zoom_out")))));
3156         zoom_out_button.signal_clicked().connect (bind (mem_fun(*this, &Editor::temporal_zoom_step), true));
3157         ARDOUR_UI::instance()->tooltips().set_tip (zoom_out_button, _("Zoom Out"));
3158
3159         zoom_out_full_button.set_name ("EditorTimeButton");
3160         zoom_out_full_button.set_size_request(-1,16);
3161         zoom_out_full_button.add (*(manage (new Image (::get_icon("zoom_full")))));
3162         zoom_out_full_button.signal_clicked().connect (mem_fun(*this, &Editor::temporal_zoom_session));
3163         ARDOUR_UI::instance()->tooltips().set_tip (zoom_out_full_button, _("Zoom to Session"));
3164
3165         zoom_focus_selector.set_name ("ZoomFocusSelector");
3166         Gtkmm2ext::set_size_request_to_display_given_text (zoom_focus_selector, zoom_focus_strings, 2+FUDGE, 10);
3167         set_popdown_strings (zoom_focus_selector, zoom_focus_strings);
3168         zoom_focus_selector.signal_changed().connect (mem_fun(*this, &Editor::zoom_focus_selection_done));
3169         ARDOUR_UI::instance()->tooltips().set_tip (zoom_focus_selector, _("Zoom focus"));
3170
3171         zoom_box.pack_start (zoom_focus_selector, true, true);
3172         zoom_box.pack_start (zoom_out_button, false, false);
3173         zoom_box.pack_start (zoom_in_button, false, false);
3174         zoom_box.pack_start (zoom_out_full_button, false, false);
3175
3176         snap_box.set_spacing (1);
3177         snap_box.set_border_width (2);
3178
3179         snap_type_selector.set_name ("SnapTypeSelector");
3180         Gtkmm2ext::set_size_request_to_display_given_text (snap_type_selector, snap_type_strings, 7+FUDGE, 10);
3181         set_popdown_strings (snap_type_selector, snap_type_strings);
3182         snap_type_selector.signal_changed().connect (mem_fun(*this, &Editor::snap_type_selection_done));
3183         ARDOUR_UI::instance()->tooltips().set_tip (snap_type_selector, _("Snap/Grid Units"));
3184
3185         snap_mode_selector.set_name ("SnapModeSelector");
3186         Gtkmm2ext::set_size_request_to_display_given_text (snap_mode_selector, snap_mode_strings, 7+FUDGE, 10);
3187         set_popdown_strings (snap_mode_selector, snap_mode_strings);
3188         snap_mode_selector.signal_changed().connect (mem_fun(*this, &Editor::snap_mode_selection_done));
3189         ARDOUR_UI::instance()->tooltips().set_tip (snap_mode_selector, _("Snap/Grid Mode"));
3190
3191         edit_point_selector.set_name ("EditPointSelector");
3192         Gtkmm2ext::set_size_request_to_display_given_text (edit_point_selector, edit_point_strings, 7+FUDGE, 10);
3193         set_popdown_strings (edit_point_selector, edit_point_strings);
3194         edit_point_selector.signal_changed().connect (mem_fun(*this, &Editor::edit_point_selection_done));
3195         ARDOUR_UI::instance()->tooltips().set_tip (edit_point_selector, _("Edit point"));
3196
3197         snap_box.pack_start (edit_point_clock, false, false);
3198         snap_box.pack_start (snap_mode_selector, false, false);
3199         snap_box.pack_start (snap_type_selector, false, false);
3200         snap_box.pack_start (edit_point_selector, false, false);
3201
3202         /* Nudge */
3203
3204         HBox *nudge_box = manage (new HBox);
3205         nudge_box->set_spacing(1);
3206         nudge_box->set_border_width (2);
3207
3208         nudge_forward_button.signal_button_release_event().connect (mem_fun(*this, &Editor::nudge_forward_release), false);
3209         nudge_backward_button.signal_button_release_event().connect (mem_fun(*this, &Editor::nudge_backward_release), false);
3210
3211         nudge_box->pack_start (nudge_backward_button, false, false);
3212         nudge_box->pack_start (nudge_forward_button, false, false);
3213         nudge_box->pack_start (nudge_clock, false, false);
3214
3215
3216         /* Pack everything in... */
3217
3218         HBox* hbox = manage (new HBox);
3219         hbox->set_spacing(10);
3220
3221         tools_tearoff = manage (new TearOff (*hbox));
3222         tools_tearoff->set_name ("MouseModeBase");
3223
3224         if (Profile->get_sae()) {
3225                 tools_tearoff->set_can_be_torn_off (false);
3226         }
3227
3228         tools_tearoff->Detach.connect (bind (mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox), 
3229                                              &tools_tearoff->tearoff_window()));
3230         tools_tearoff->Attach.connect (bind (mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox), 
3231                                              &tools_tearoff->tearoff_window(), 0));
3232         tools_tearoff->Hidden.connect (bind (mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox), 
3233                                              &tools_tearoff->tearoff_window()));
3234         tools_tearoff->Visible.connect (bind (mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox), 
3235                                               &tools_tearoff->tearoff_window(), 0));
3236
3237         toolbar_hbox.set_spacing (10);
3238         toolbar_hbox.set_border_width (1);
3239
3240         toolbar_hbox.pack_start (*mouse_mode_tearoff, false, false);
3241         toolbar_hbox.pack_start (*tools_tearoff, false, false);
3242
3243         
3244         hbox->pack_start (snap_box, false, false);
3245         // hbox->pack_start (zoom_box, false, false); 
3246         hbox->pack_start (*nudge_box, false, false);
3247
3248         hbox->show_all ();
3249         
3250         toolbar_base.set_name ("ToolBarBase");
3251         toolbar_base.add (toolbar_hbox);
3252
3253         toolbar_frame.set_shadow_type (SHADOW_OUT);
3254         toolbar_frame.set_name ("BaseFrame");
3255         toolbar_frame.add (toolbar_base);
3256 }
3257
3258 void
3259 Editor::midi_panic_button_pressed ()
3260 {
3261         if (session) {
3262                 session->midi_panic();
3263         }
3264 }
3265
3266 void
3267 Editor::setup_midi_toolbar ()
3268 {
3269         string pixmap_path;
3270
3271         /* Mode Buttons (tool selection) */
3272
3273         vector<ToggleButton *> midi_tool_buttons;
3274
3275         midi_tool_pencil_button.add (*(manage (new Image (::get_icon("midi_tool_pencil")))));
3276         midi_tool_pencil_button.set_relief(Gtk::RELIEF_NONE);
3277         midi_tool_buttons.push_back (&midi_tool_pencil_button);
3278         midi_tool_select_button.add (*(manage (new Image (::get_icon("midi_tool_select")))));
3279         midi_tool_select_button.set_relief(Gtk::RELIEF_NONE);
3280         midi_tool_buttons.push_back (&midi_tool_select_button);
3281         midi_tool_resize_button.add (*(manage (new Image (::get_icon("strip_width")))));
3282         midi_tool_resize_button.set_relief(Gtk::RELIEF_NONE);
3283         midi_tool_buttons.push_back (&midi_tool_resize_button);
3284         midi_tool_erase_button.add (*(manage (new Image (::get_icon("midi_tool_erase")))));
3285         midi_tool_erase_button.set_relief(Gtk::RELIEF_NONE);
3286         midi_tool_buttons.push_back (&midi_tool_erase_button);
3287
3288         midi_tool_pencil_button.set_active(true);
3289         
3290         midi_tool_button_set = new GroupedButtons (midi_tool_buttons);
3291
3292         midi_tool_button_box.set_border_width (2);
3293         midi_tool_button_box.set_spacing(1);
3294         midi_tool_button_box.pack_start(midi_tool_pencil_button, true, true);
3295         midi_tool_button_box.pack_start(midi_tool_select_button, true, true);
3296         midi_tool_button_box.pack_start(midi_tool_resize_button, true, true);
3297         midi_tool_button_box.pack_start(midi_tool_erase_button , true, true);
3298         midi_tool_button_box.set_homogeneous(true);
3299
3300         midi_tool_pencil_button.set_name ("MouseModeButton");
3301         midi_tool_select_button.set_name ("MouseModeButton");
3302         midi_tool_resize_button.set_name ("MouseModeButton");
3303         midi_tool_erase_button .set_name ("MouseModeButton");
3304
3305         ARDOUR_UI::instance()->tooltips().set_tip (midi_tool_pencil_button, _("Add/Move/Stretch Notes"));
3306         ARDOUR_UI::instance()->tooltips().set_tip (midi_tool_select_button, _("Select/Move Notes"));
3307         ARDOUR_UI::instance()->tooltips().set_tip (midi_tool_resize_button, _("Resize Notes"));
3308         ARDOUR_UI::instance()->tooltips().set_tip (midi_tool_erase_button,  _("Erase Notes"));
3309
3310         midi_tool_pencil_button.unset_flags (CAN_FOCUS);
3311         midi_tool_select_button.unset_flags (CAN_FOCUS);
3312         midi_tool_resize_button.unset_flags (CAN_FOCUS);
3313         midi_tool_erase_button.unset_flags (CAN_FOCUS);
3314         
3315         midi_tool_pencil_button.signal_toggled().connect (bind (mem_fun(*this,
3316                                 &Editor::midi_edit_mode_toggled), Editing::MidiEditPencil));
3317         midi_tool_select_button.signal_toggled().connect (bind (mem_fun(*this,
3318                                 &Editor::midi_edit_mode_toggled), Editing::MidiEditSelect));
3319         midi_tool_resize_button.signal_toggled().connect (bind (mem_fun(*this,
3320                                 &Editor::midi_edit_mode_toggled), Editing::MidiEditResize));
3321         midi_tool_erase_button.signal_toggled().connect (bind (mem_fun(*this,
3322                                 &Editor::midi_edit_mode_toggled), Editing::MidiEditErase));
3323
3324         
3325         /* Midi sound notes */
3326         midi_sound_notes.add (*(manage (new Image (::get_icon("midi_sound_notes")))));
3327         midi_sound_notes.set_relief(Gtk::RELIEF_NONE);
3328         ARDOUR_UI::instance()->tooltips().set_tip (midi_sound_notes, _("Sound Notes"));
3329         midi_sound_notes.unset_flags (CAN_FOCUS);
3330         
3331         /* Panic */
3332         
3333         HBox* panic_box = manage (new HBox);
3334         midi_panic_button.set_name("MidiPanicButton");
3335         midi_panic_button.signal_pressed().connect (
3336                         mem_fun(this, &Editor::midi_panic_button_pressed));
3337         panic_box->pack_start (midi_sound_notes , true, true);
3338         panic_box->pack_start (midi_panic_button, true, true);
3339         
3340         /* Pack everything in... */
3341
3342         midi_tools_tearoff = manage (new TearOff (midi_tool_button_box));
3343         midi_tools_tearoff->set_name ("MouseModeBase");
3344
3345         /*
3346         midi_tools_tearoff->Detach.connect (bind (mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&midi_toolbar_hbox), 
3347                                              &midi_tools_tearoff->tearoff_window()));
3348         midi_tools_tearoff->Attach.connect (bind (mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&midi_toolbar_hbox), 
3349                                              &midi_tools_tearoff->tearoff_window(), 0));
3350         midi_tools_tearoff->Hidden.connect (bind (mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&midi_toolbar_hbox), 
3351                                              &midi_tools_tearoff->tearoff_window()));
3352         midi_tools_tearoff->Visible.connect (bind (mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&midi_toolbar_hbox), 
3353                                               &midi_tools_tearoff->tearoff_window(), 0));
3354         */
3355
3356         midi_toolbar_hbox.set_spacing (10);
3357         midi_toolbar_hbox.set_border_width (1);
3358
3359         midi_toolbar_hbox.pack_start (*midi_tools_tearoff, false, true);
3360         
3361         midi_toolbar_hbox.pack_start(*panic_box, false, true, 4);
3362
3363         midi_tool_button_box.show_all ();
3364         midi_toolbar_hbox.show_all();
3365         midi_tools_tearoff->show_all();
3366         
3367         midi_toolbar_base.set_name ("ToolBarBase");
3368         midi_toolbar_base.add (midi_toolbar_hbox);
3369
3370         midi_toolbar_frame.set_shadow_type (SHADOW_OUT);
3371         midi_toolbar_frame.set_name ("BaseFrame");
3372         midi_toolbar_frame.add (midi_toolbar_base);
3373 }
3374
3375 int
3376 Editor::convert_drop_to_paths (vector<ustring>& paths, 
3377                                const RefPtr<Gdk::DragContext>& context,
3378                                gint                x,
3379                                gint                y,
3380                                const SelectionData& data,
3381                                guint               info,
3382                                guint               time)                               
3383
3384 {       
3385         if (session == 0) {
3386                 return -1;
3387         }
3388
3389         vector<ustring> uris = data.get_uris();
3390
3391         if (uris.empty()) {
3392
3393                 /* This is seriously fucked up. Nautilus doesn't say that its URI lists
3394                    are actually URI lists. So do it by hand.
3395                 */
3396
3397                 if (data.get_target() != "text/plain") {
3398                         return -1;
3399                 }
3400   
3401                 /* Parse the "uri-list" format that Nautilus provides, 
3402                    where each pathname is delimited by \r\n.
3403
3404                    THERE MAY BE NO NULL TERMINATING CHAR!!!
3405                 */
3406
3407                 ustring txt = data.get_text();
3408                 const char* p;
3409                 const char* q;
3410
3411                 p = (const char *) malloc (txt.length() + 1);
3412                 txt.copy ((char *) p, txt.length(), 0);
3413                 ((char*)p)[txt.length()] = '\0';
3414
3415                 while (p)
3416                 {
3417                         if (*p != '#')
3418                         {
3419                                 while (g_ascii_isspace (*p))
3420                                         p++;
3421                                 
3422                                 q = p;
3423                                 while (*q && (*q != '\n') && (*q != '\r')) {
3424                                         q++;
3425                                 }
3426                                 
3427                                 if (q > p)
3428                                 {
3429                                         q--;
3430                                         while (q > p && g_ascii_isspace (*q))
3431                                                 q--;
3432                                         
3433                                         if (q > p)
3434                                         {
3435                                                 uris.push_back (ustring (p, q - p + 1));
3436                                         }
3437                                 }
3438                         }
3439                         p = strchr (p, '\n');
3440                         if (p)
3441                                 p++;
3442                 }
3443
3444                 free ((void*)p);
3445                 
3446                 if (uris.empty()) {
3447                         return -1;
3448                 }
3449         }
3450         
3451         for (vector<ustring>::iterator i = uris.begin(); i != uris.end(); ++i) {
3452
3453                 if ((*i).substr (0,7) == "file://") {
3454                         
3455                         ustring p = *i;
3456                         PBD::url_decode (p);
3457
3458                         // scan forward past three slashes
3459                         
3460                         ustring::size_type slashcnt = 0;
3461                         ustring::size_type n = 0;
3462                         ustring::iterator x = p.begin();
3463
3464                         while (slashcnt < 3 && x != p.end()) {
3465                                 if ((*x) == '/') {
3466                                         slashcnt++;
3467                                 } else if (slashcnt == 3) {
3468                                         break;
3469                                 }
3470                                 ++n;
3471                                 ++x;
3472                         }
3473
3474                         if (slashcnt != 3 || x == p.end()) {
3475                                 error << _("malformed URL passed to drag-n-drop code") << endmsg;
3476                                 continue;
3477                         }
3478
3479                         paths.push_back (p.substr (n - 1));
3480                 }
3481         }
3482
3483         return 0;
3484 }
3485
3486 void
3487 Editor::new_tempo_section ()
3488
3489 {
3490 }
3491
3492 void
3493 Editor::map_transport_state ()
3494 {
3495         ENSURE_GUI_THREAD (mem_fun(*this, &Editor::map_transport_state));
3496
3497         if (session->transport_stopped()) {
3498                 have_pending_keyboard_selection = false;
3499         }
3500
3501         update_loop_range_view (true);
3502 }
3503
3504 /* UNDO/REDO */
3505
3506 Editor::State::State (PublicEditor const * e)
3507 {
3508         selection = new Selection (e);
3509 }
3510
3511 Editor::State::~State ()
3512 {
3513         delete selection;
3514 }
3515
3516 void
3517 Editor::store_state (State& state) const
3518 {
3519         *state.selection = *selection;
3520 }
3521
3522 void
3523 Editor::restore_state (State *state)
3524 {
3525         if (*selection == *state->selection) {
3526                 return;
3527         }
3528
3529         *selection = *state->selection;
3530         time_selection_changed ();
3531         region_selection_changed ();
3532
3533         /* XXX other selection change handlers? */
3534 }
3535
3536 void
3537 Editor::begin_reversible_command (string name)
3538 {
3539         if (session) {
3540                 before = &get_state();
3541                 session->begin_reversible_command (name);
3542         }
3543 }
3544
3545 void
3546 Editor::commit_reversible_command ()
3547 {
3548         if (session) {
3549                 session->commit_reversible_command (new MementoCommand<Editor>(*this, before, &get_state()));
3550         }
3551 }
3552
3553 void
3554 Editor::set_edit_group_solo (Route& route, bool yn)
3555 {
3556         RouteGroup *edit_group;
3557
3558         if ((edit_group = route.edit_group()) != 0) {
3559                 edit_group->apply (&Route::set_solo, yn, this);
3560         } else {
3561                 route.set_solo (yn, this);
3562         }
3563 }
3564
3565 void
3566 Editor::set_edit_group_mute (Route& route, bool yn)
3567 {
3568         RouteGroup *edit_group = 0;
3569
3570         if ((edit_group == route.edit_group()) != 0) {
3571                 edit_group->apply (&Route::set_mute, yn, this);
3572         } else {
3573                 route.set_mute (yn, this);
3574         }
3575 }
3576                 
3577 void
3578 Editor::history_changed ()
3579 {
3580         string label;
3581
3582         if (undo_action && session) {
3583                 if (session->undo_depth() == 0) {
3584                         label = _("Undo");
3585                 } else {
3586                         label = string_compose(_("Undo (%1)"), session->next_undo());
3587                 }
3588                 undo_action->property_label() = label;
3589         }
3590
3591         if (redo_action && session) {
3592                 if (session->redo_depth() == 0) {
3593                         label = _("Redo");
3594                 } else {
3595                         label = string_compose(_("Redo (%1)"), session->next_redo());
3596                 }
3597                 redo_action->property_label() = label;
3598         }
3599 }
3600
3601 void
3602 Editor::duplicate_dialog (bool with_dialog)
3603 {
3604         float times = 1.0f;
3605
3606         if (mouse_mode == MouseRange) {
3607                 if (selection->time.length() == 0) {
3608                         return;
3609                 }
3610         }
3611
3612         RegionSelection rs;
3613         get_regions_for_action (rs);
3614         
3615         if (mouse_mode != MouseRange) {
3616
3617                 if (rs.empty()) {
3618                         return;
3619                 }
3620         }
3621
3622         if (with_dialog) {
3623
3624                 ArdourDialog win ("Duplication Dialog");
3625                 Label  label (_("Number of Duplications:"));
3626                 Adjustment adjustment (1.0, 1.0, 1000000.0, 1.0, 5.0);
3627                 SpinButton spinner (adjustment, 0.0, 1);
3628                 HBox hbox;
3629                 
3630                 win.get_vbox()->set_spacing (12);
3631                 win.get_vbox()->pack_start (hbox);
3632                 hbox.set_border_width (6);
3633                 hbox.pack_start (label, PACK_EXPAND_PADDING, 12);
3634                 
3635                 /* dialogs have ::add_action_widget() but that puts the spinner in the wrong
3636                    place, visually. so do this by hand.
3637                 */
3638                 
3639                 hbox.pack_start (spinner, PACK_EXPAND_PADDING, 12);
3640                 spinner.signal_activate().connect (sigc::bind (mem_fun (win, &ArdourDialog::response), RESPONSE_ACCEPT));
3641                 spinner.grab_focus();
3642
3643                 hbox.show ();
3644                 label.show ();
3645                 spinner.show ();
3646                 
3647                 win.add_button (Stock::CANCEL, RESPONSE_CANCEL);
3648                 win.add_button (_("Duplicate"), RESPONSE_ACCEPT);
3649                 win.set_default_response (RESPONSE_ACCEPT);
3650                 
3651                 win.set_position (WIN_POS_MOUSE);
3652                 
3653                 spinner.grab_focus ();
3654                 
3655                 switch (win.run ()) {
3656                 case RESPONSE_ACCEPT:
3657                         break;
3658                 default:
3659                         return;
3660                 }
3661                 
3662                 times = adjustment.get_value();
3663         }
3664
3665         if (mouse_mode == MouseRange) {
3666                 duplicate_selection (times);
3667         } else {
3668                 duplicate_some_regions (rs, times);
3669         }
3670 }
3671
3672 void
3673 Editor::show_verbose_canvas_cursor ()
3674 {
3675         verbose_canvas_cursor->raise_to_top();
3676         verbose_canvas_cursor->show();
3677         verbose_cursor_visible = true;
3678 }
3679
3680 void
3681 Editor::hide_verbose_canvas_cursor ()
3682 {
3683         verbose_canvas_cursor->hide();
3684         verbose_cursor_visible = false;
3685 }
3686
3687 double
3688 Editor::clamp_verbose_cursor_x (double x)
3689 {
3690         if (x < 0) {
3691                 x = 0;
3692         } else {
3693                 x = min (canvas_width - 200.0, x);
3694         }
3695         return x;
3696 }
3697
3698 double
3699 Editor::clamp_verbose_cursor_y (double y)
3700 {
3701         if (y < canvas_timebars_vsize) {
3702                 y = canvas_timebars_vsize;
3703         } else {
3704                 y = min (canvas_height - 50, y);
3705         }
3706         return y;
3707 }
3708
3709 void
3710 Editor::set_verbose_canvas_cursor (const string & txt, double x, double y)
3711 {
3712         verbose_canvas_cursor->property_text() = txt.c_str();
3713         /* don't get too close to the edge */
3714         verbose_canvas_cursor->property_x() = clamp_verbose_cursor_x (x);
3715         verbose_canvas_cursor->property_y() = clamp_verbose_cursor_y (y);
3716 }
3717
3718 void
3719 Editor::set_verbose_canvas_cursor_text (const string & txt)
3720 {
3721         verbose_canvas_cursor->property_text() = txt.c_str();
3722 }
3723
3724 void
3725 Editor::set_edit_mode (EditMode m)
3726 {
3727         Config->set_edit_mode (m);
3728 }
3729
3730 void
3731 Editor::cycle_edit_mode ()
3732 {
3733         switch (Config->get_edit_mode()) {
3734         case Slide:
3735                 if (Profile->get_sae()) {
3736                         Config->set_edit_mode (Lock);
3737                 } else {
3738                         Config->set_edit_mode (Splice);
3739                 }
3740                 break;
3741         case Splice:
3742                 Config->set_edit_mode (Lock);
3743                 break;
3744         case Lock:
3745                 Config->set_edit_mode (Slide);
3746                 break;
3747         }
3748 }
3749
3750 void
3751 Editor::edit_mode_selection_done ()
3752 {
3753         if (session == 0) {
3754                 return;
3755         }
3756
3757         string choice = edit_mode_selector.get_active_text();
3758         EditMode mode = Slide;
3759
3760         if (choice == _("Splice Edit")) {
3761                 mode = Splice;
3762         } else if (choice == _("Slide Edit")) {
3763                 mode = Slide;
3764         } else if (choice == _("Lock Edit")) {
3765                 mode = Lock;
3766         }
3767
3768         Config->set_edit_mode (mode);
3769 }       
3770
3771 void
3772 Editor::snap_type_selection_done ()
3773 {
3774         string choice = snap_type_selector.get_active_text();
3775         SnapType snaptype = SnapToBeat;
3776
3777         if (choice == _("Beats/3")) {
3778                 snaptype = SnapToAThirdBeat;
3779         } else if (choice == _("Beats/4")) {
3780                 snaptype = SnapToAQuarterBeat;
3781         } else if (choice == _("Beats/8")) {
3782                 snaptype = SnapToAEighthBeat;
3783         } else if (choice == _("Beats/16")) {
3784                 snaptype = SnapToASixteenthBeat;
3785         } else if (choice == _("Beats/32")) {
3786                 snaptype = SnapToAThirtysecondBeat;
3787         } else if (choice == _("Beats")) {
3788                 snaptype = SnapToBeat;
3789         } else if (choice == _("Bars")) {
3790                 snaptype = SnapToBar;
3791         } else if (choice == _("Marks")) {
3792                 snaptype = SnapToMark;
3793         } else if (choice == _("Region starts")) {
3794                 snaptype = SnapToRegionStart;
3795         } else if (choice == _("Region ends")) {
3796                 snaptype = SnapToRegionEnd;
3797         } else if (choice == _("Region bounds")) {
3798                 snaptype = SnapToRegionBoundary;
3799         } else if (choice == _("Region syncs")) {
3800                 snaptype = SnapToRegionSync;
3801         } else if (choice == _("CD Frames")) {
3802                 snaptype = SnapToCDFrame;
3803         } else if (choice == _("SMPTE Frames")) {
3804                 snaptype = SnapToSMPTEFrame;
3805         } else if (choice == _("SMPTE Seconds")) {
3806                 snaptype = SnapToSMPTESeconds;
3807         } else if (choice == _("SMPTE Minutes")) {
3808                 snaptype = SnapToSMPTEMinutes;
3809         } else if (choice == _("Seconds")) {
3810                 snaptype = SnapToSeconds;
3811         } else if (choice == _("Minutes")) {
3812                 snaptype = SnapToMinutes;
3813         }
3814
3815         RefPtr<RadioAction> ract = snap_type_action (snaptype);
3816         if (ract) {
3817                 ract->set_active ();
3818         }
3819 }       
3820
3821 void
3822 Editor::snap_mode_selection_done ()
3823 {
3824         string choice = snap_mode_selector.get_active_text();
3825         SnapMode mode = SnapNormal;
3826
3827         if (choice == _("No Grid")) {
3828                 mode = SnapOff;
3829         } else if (choice == _("Grid")) {
3830                 mode = SnapNormal;
3831         } else if (choice == _("Magnetic")) {
3832                 mode = SnapMagnetic;
3833         }
3834
3835         RefPtr<RadioAction> ract = snap_mode_action (mode);
3836
3837         if (ract) {
3838                 ract->set_active (true);
3839         }
3840 }
3841
3842 void
3843 Editor::cycle_edit_point (bool with_marker)
3844 {
3845         switch (_edit_point) {
3846         case EditAtMouse:
3847                 set_edit_point_preference (EditAtPlayhead);
3848                 break;
3849         case EditAtPlayhead:
3850                 if (with_marker) {
3851                         set_edit_point_preference (EditAtSelectedMarker);
3852                 } else {
3853                         set_edit_point_preference (EditAtMouse);
3854                 }
3855                 break;
3856         case EditAtSelectedMarker:
3857                 set_edit_point_preference (EditAtMouse);
3858                 break;
3859         }
3860 }
3861
3862 void
3863 Editor::edit_point_selection_done ()
3864 {
3865         string choice = edit_point_selector.get_active_text();
3866         EditPoint ep = EditAtSelectedMarker;
3867
3868         if (choice == _("Marker")) {
3869                 set_edit_point_preference (EditAtSelectedMarker);
3870         } else if (choice == _("Playhead")) {
3871                 set_edit_point_preference (EditAtPlayhead);
3872         } else {
3873                 set_edit_point_preference (EditAtMouse);
3874         }
3875
3876         RefPtr<RadioAction> ract = edit_point_action (ep);
3877
3878         if (ract) {
3879                 ract->set_active (true);
3880         }
3881 }
3882
3883 void
3884 Editor::zoom_focus_selection_done ()
3885 {
3886         string choice = zoom_focus_selector.get_active_text();
3887         ZoomFocus focus_type = ZoomFocusLeft;
3888
3889         if (choice == _("Left")) {
3890                 focus_type = ZoomFocusLeft;
3891         } else if (choice == _("Right")) {
3892                 focus_type = ZoomFocusRight;
3893         } else if (choice == _("Center")) {
3894                 focus_type = ZoomFocusCenter;
3895         } else if (choice == _("Play")) {
3896                 focus_type = ZoomFocusPlayhead;
3897         } else if (choice == _("Edit")) {
3898                 focus_type = ZoomFocusEdit;
3899         } else if (choice == _("Active Mark")) {
3900                 focus_type = ZoomFocusEdit;
3901         } else if (choice == _("Active Mark")) {
3902                 focus_type = ZoomFocusEdit;
3903         } else {
3904                 focus_type = ZoomFocusMouse;
3905         } 
3906         
3907         RefPtr<RadioAction> ract = zoom_focus_action (focus_type);
3908
3909         if (ract) {
3910                 ract->set_active ();
3911         }
3912 }       
3913
3914 gint
3915 Editor::edit_controls_button_release (GdkEventButton* ev)
3916 {
3917         if (Keyboard::is_context_menu_event (ev)) {
3918                 ARDOUR_UI::instance()->add_route (this);
3919         }
3920         return TRUE;
3921 }
3922
3923 gint
3924 Editor::mouse_select_button_release (GdkEventButton* ev)
3925 {
3926         /* this handles just right-clicks */
3927
3928         if (ev->button != 3) {
3929                 return false;
3930         }
3931
3932         return true;
3933 }
3934
3935 Editor::TrackViewList *
3936 Editor::get_valid_views (TimeAxisView* track, RouteGroup* group)
3937 {
3938         TrackViewList *v;
3939         TrackViewList::iterator i;
3940
3941         v = new TrackViewList;
3942
3943         if (track == 0 && group == 0) {
3944
3945                 /* all views */
3946
3947                 for (i = track_views.begin(); i != track_views.end (); ++i) {
3948                         v->push_back (*i);
3949                 }
3950
3951         } else if ((track != 0 && group == 0) || (track != 0 && group != 0 && !group->is_active())) {
3952                 
3953                 /* just the view for this track
3954                  */
3955
3956                 v->push_back (track);
3957
3958         } else {
3959                 
3960                 /* views for all tracks in the edit group */
3961                 
3962                 for (i  = track_views.begin(); i != track_views.end (); ++i) {
3963
3964                         if (group == 0 || (*i)->edit_group() == group) {
3965                                 v->push_back (*i);
3966                         }
3967                 }
3968         }
3969         
3970         return v;
3971 }
3972
3973 void
3974 Editor::set_zoom_focus (ZoomFocus f)
3975 {
3976         string str = zoom_focus_strings[(int)f];
3977
3978         if (str != zoom_focus_selector.get_active_text()) {
3979                 zoom_focus_selector.set_active_text (str);
3980         }
3981         
3982         if (zoom_focus != f) {
3983                 zoom_focus = f;
3984
3985                 ZoomFocusChanged (); /* EMIT_SIGNAL */
3986
3987                 instant_save ();
3988         }
3989 }
3990
3991 void
3992 Editor::ensure_float (Window& win)
3993 {
3994         win.set_transient_for (*this);
3995 }
3996
3997 void 
3998 Editor::pane_allocation_handler (Allocation &alloc, Paned* which)
3999 {
4000         /* recover or initialize pane positions. do this here rather than earlier because
4001            we don't want the positions to change the child allocations, which they seem to do.
4002          */
4003
4004         int pos;
4005         XMLProperty* prop;
4006         char buf[32];
4007         XMLNode* node = ARDOUR_UI::instance()->editor_settings();
4008         int width, height;
4009         static int32_t done;
4010         XMLNode* geometry;
4011
4012         width = default_width;
4013         height = default_height;
4014
4015         if ((geometry = find_named_node (*node, "geometry")) != 0) {
4016
4017                 if ((prop = geometry->property ("x_size")) == 0) {
4018                         prop = geometry->property ("x-size");
4019                 }
4020                 if (prop) {
4021                         width = atoi (prop->value());
4022                 }
4023                 if ((prop = geometry->property ("y_size")) == 0) {
4024                         prop = geometry->property ("y-size");
4025                 }
4026                 if (prop) {
4027                         height = atoi (prop->value());
4028                 }
4029         }
4030
4031         if (which == static_cast<Paned*> (&edit_pane)) {
4032
4033                 if (done) {
4034                         return;
4035                 }
4036
4037                 if (!geometry || (prop = geometry->property ("edit-pane-pos")) == 0) {
4038                         /* initial allocation is 90% to canvas, 10% to notebook */
4039                         pos = (int) floor (alloc.get_width() * 0.90f);
4040                         snprintf (buf, sizeof(buf), "%d", pos);
4041                 } else {
4042                         pos = atoi (prop->value());
4043                 }
4044
4045                 if ((done = GTK_WIDGET(edit_pane.gobj())->allocation.width > pos)) {
4046                         edit_pane.set_position (pos);
4047                         pre_maximal_pane_position = pos;
4048                 }
4049         }
4050 }
4051
4052 void
4053 Editor::detach_tearoff (Box* b, Window* w)
4054 {
4055         if (tools_tearoff->torn_off() && 
4056             mouse_mode_tearoff->torn_off()) {
4057                 top_hbox.remove (toolbar_frame);
4058         }
4059 }
4060
4061 void
4062 Editor::reattach_tearoff (Box* b, Window* w, int32_t n)
4063 {
4064         if (toolbar_frame.get_parent() == 0) {
4065                 top_hbox.pack_end (toolbar_frame);
4066         }
4067 }
4068
4069 void
4070 Editor::set_show_measures (bool yn)
4071 {
4072         if (_show_measures != yn) {
4073                 hide_measures ();
4074
4075                 if ((_show_measures = yn) == true) {
4076                         if (tempo_lines)
4077                                 tempo_lines->show();
4078                         draw_measures ();
4079                 }
4080                 instant_save ();
4081         }
4082 }
4083
4084 void
4085 Editor::toggle_follow_playhead ()
4086 {
4087         RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-follow-playhead"));
4088         if (act) {
4089                 RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
4090                 set_follow_playhead (tact->get_active());
4091         }
4092 }
4093
4094 void
4095 Editor::set_follow_playhead (bool yn)
4096 {
4097         if (_follow_playhead != yn) {
4098                 if ((_follow_playhead = yn) == true) {
4099                         /* catch up */
4100                         update_current_screen ();
4101                 }
4102                 instant_save ();
4103         }
4104 }
4105
4106 void
4107 Editor::toggle_xfade_active (boost::weak_ptr<Crossfade> wxfade)
4108 {
4109         boost::shared_ptr<Crossfade> xfade (wxfade.lock());
4110         if (xfade) {
4111                 xfade->set_active (!xfade->active());
4112         }
4113 }
4114
4115 void
4116 Editor::toggle_xfade_length (boost::weak_ptr<Crossfade> wxfade)
4117 {
4118         boost::shared_ptr<Crossfade> xfade (wxfade.lock());
4119         if (xfade) {
4120                 xfade->set_follow_overlap (!xfade->following_overlap());
4121         }
4122 }
4123
4124 void
4125 Editor::edit_xfade (boost::weak_ptr<Crossfade> wxfade)
4126 {
4127         boost::shared_ptr<Crossfade> xfade (wxfade.lock());
4128
4129         if (!xfade) {
4130                 return;
4131         }
4132
4133         CrossfadeEditor cew (*session, xfade, xfade->fade_in().get_min_y(), 1.0);
4134                 
4135         ensure_float (cew);
4136         
4137         switch (cew.run ()) {
4138         case RESPONSE_ACCEPT:
4139                 break;
4140         default:
4141                 return;
4142         }
4143         
4144         cew.apply ();
4145         xfade->StateChanged (Change (~0));
4146 }
4147
4148 PlaylistSelector&
4149 Editor::playlist_selector () const
4150 {
4151         return *_playlist_selector;
4152 }
4153
4154 nframes64_t
4155 Editor::get_nudge_distance (nframes64_t pos, nframes64_t& next)
4156 {
4157         nframes64_t ret;
4158
4159         ret = nudge_clock.current_duration (pos);
4160         next = ret + 1; /* XXXX fix me */
4161
4162         return ret;
4163 }
4164
4165 void
4166 Editor::end_location_changed (Location* location)
4167 {
4168         ENSURE_GUI_THREAD (bind (mem_fun(*this, &Editor::end_location_changed), location));
4169         //reset_scrolling_region ();
4170         nframes64_t session_span = location->start() + (nframes64_t) floorf (current_page_frames() * 0.10f);
4171         horizontal_adjustment.set_upper (session_span / frames_per_unit);
4172 }
4173
4174 int
4175 Editor::playlist_deletion_dialog (boost::shared_ptr<Playlist> pl)
4176 {
4177         ArdourDialog dialog ("playlist deletion dialog");
4178         Label  label (string_compose (_("Playlist %1 is currently unused.\n"
4179                                         "If left alone, no audio files used by it will be cleaned.\n"
4180                                         "If deleted, audio files used by it alone by will cleaned."),
4181                                       pl->name()));
4182         
4183         dialog.set_position (WIN_POS_CENTER);
4184         dialog.get_vbox()->pack_start (label);
4185
4186         label.show ();
4187
4188         dialog.add_button (_("Delete playlist"), RESPONSE_ACCEPT);
4189         dialog.add_button (_("Keep playlist"), RESPONSE_REJECT);
4190         dialog.add_button (_("Cancel"), RESPONSE_CANCEL);
4191
4192         switch (dialog.run ()) {
4193         case RESPONSE_ACCEPT:
4194                 /* delete the playlist */
4195                 return 0;
4196                 break;
4197
4198         case RESPONSE_REJECT:
4199                 /* keep the playlist */
4200                 return 1;
4201                 break;
4202
4203         default:
4204                 break;
4205         }
4206
4207         return -1;
4208 }
4209
4210 bool
4211 Editor::audio_region_selection_covers (nframes64_t where)
4212 {
4213         for (RegionSelection::iterator a = selection->regions.begin(); a != selection->regions.end(); ++a) {
4214                 if ((*a)->region()->covers (where)) {
4215                         return true;
4216                 }
4217         }
4218
4219         return false;
4220 }
4221
4222 void
4223 Editor::prepare_for_cleanup ()
4224 {
4225         cut_buffer->clear_regions ();
4226         cut_buffer->clear_playlists ();
4227
4228         selection->clear_regions ();
4229         selection->clear_playlists ();
4230
4231         no_region_list_redisplay = true;
4232 }
4233
4234 void
4235 Editor::finish_cleanup ()
4236 {
4237         no_region_list_redisplay = false;
4238         redisplay_regions ();
4239 }
4240
4241 Location*
4242 Editor::transport_loop_location()
4243 {
4244         if (session) {
4245                 return session->locations()->auto_loop_location();
4246         } else {
4247                 return 0;
4248         }
4249 }
4250
4251 Location*
4252 Editor::transport_punch_location()
4253 {
4254         if (session) {
4255                 return session->locations()->auto_punch_location();
4256         } else {
4257                 return 0;
4258         }
4259 }
4260
4261 bool
4262 Editor::control_layout_scroll (GdkEventScroll* ev)
4263 {
4264         switch (ev->direction) {
4265         case GDK_SCROLL_UP:
4266                 scroll_tracks_up_line ();
4267                 return true;
4268                 break;
4269
4270         case GDK_SCROLL_DOWN:
4271                 scroll_tracks_down_line ();
4272                 return true;
4273                 
4274         default:
4275                 /* no left/right handling yet */
4276                 break;
4277         }
4278
4279         return false;
4280 }
4281
4282
4283 /** A new snapshot has been selected.
4284  */
4285 void
4286 Editor::snapshot_display_selection_changed ()
4287 {
4288         if (snapshot_display.get_selection()->count_selected_rows() > 0) {
4289
4290                 TreeModel::iterator i = snapshot_display.get_selection()->get_selected();
4291                 
4292                 Glib::ustring snap_name = (*i)[snapshot_display_columns.real_name];
4293
4294                 if (snap_name.length() == 0) {
4295                         return;
4296                 }
4297                 
4298                 if (session->snap_name() == snap_name) {
4299                         return;
4300                 }
4301                 
4302                 ARDOUR_UI::instance()->load_session(session->path(), string (snap_name));
4303         }
4304 }
4305
4306 bool
4307 Editor::snapshot_display_button_press (GdkEventButton* ev)
4308 {
4309         if (ev->button == 3) {
4310                 /* Right-click on the snapshot list. Work out which snapshot it
4311                    was over. */
4312                 Gtk::TreeModel::Path path;
4313                 Gtk::TreeViewColumn* col;
4314                 int cx;
4315                 int cy;
4316                 snapshot_display.get_path_at_pos ((int) ev->x, (int) ev->y, path, col, cx, cy);
4317                 Gtk::TreeModel::iterator iter = snapshot_display_model->get_iter (path);
4318                 if (iter) {
4319                         Gtk::TreeModel::Row row = *iter;
4320                         popup_snapshot_context_menu (ev->button, ev->time, row[snapshot_display_columns.real_name]);
4321                 }
4322                 return true;
4323         }
4324
4325         return false;
4326 }
4327
4328
4329 /** Pop up the snapshot display context menu.
4330  * @param button Button used to open the menu.
4331  * @param time Menu open time.
4332  * @snapshot_name Name of the snapshot that the menu click was over.
4333  */
4334
4335 void
4336 Editor::popup_snapshot_context_menu (int button, int32_t time, Glib::ustring snapshot_name)
4337 {
4338         using namespace Menu_Helpers;
4339
4340         MenuList& items (snapshot_context_menu.items());
4341         items.clear ();
4342
4343         const bool modification_allowed = (session->snap_name() != snapshot_name && session->name() != snapshot_name);
4344
4345         add_item_with_sensitivity (items, MenuElem (_("Remove"), bind (mem_fun (*this, &Editor::remove_snapshot), snapshot_name)), modification_allowed);
4346
4347         add_item_with_sensitivity (items, MenuElem (_("Rename"), bind (mem_fun (*this, &Editor::rename_snapshot), snapshot_name)), modification_allowed);
4348
4349         snapshot_context_menu.popup (button, time);
4350 }
4351
4352 void
4353 Editor::rename_snapshot (Glib::ustring old_name)
4354 {
4355         ArdourPrompter prompter(true);
4356
4357         string new_name;
4358
4359         prompter.set_name ("Prompter");
4360         prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
4361         prompter.set_prompt (_("New name of snapshot"));
4362         prompter.set_initial_text (old_name);
4363         
4364         if (prompter.run() == RESPONSE_ACCEPT) {
4365                 prompter.get_result (new_name);
4366                 if (new_name.length()) {
4367                         session->rename_state (old_name, new_name);
4368                         redisplay_snapshots ();
4369                 }
4370         }
4371 }
4372
4373
4374 void
4375 Editor::remove_snapshot (Glib::ustring name)
4376 {
4377         vector<string> choices;
4378
4379         std::string prompt  = string_compose (_("Do you really want to remove snapshot \"%1\" ?\n(cannot be undone)"), name);
4380
4381         choices.push_back (_("No, do nothing."));
4382         choices.push_back (_("Yes, remove it."));
4383
4384         Gtkmm2ext::Choice prompter (prompt, choices);
4385
4386         if (prompter.run () == 1) {
4387                 session->remove_state (name);
4388                 redisplay_snapshots ();
4389         }
4390 }
4391
4392 void
4393 Editor::redisplay_snapshots ()
4394 {
4395         if (session == 0) {
4396                 return;
4397         }
4398
4399         vector<sys::path> state_file_paths;
4400
4401         get_state_files_in_directory (session->session_directory().root_path(),
4402                         state_file_paths);
4403
4404         if (state_file_paths.empty()) return;
4405
4406         vector<string> state_file_names(get_file_names_no_extension(state_file_paths));
4407
4408         snapshot_display_model->clear ();
4409
4410         for (vector<string>::iterator i = state_file_names.begin();
4411                         i != state_file_names.end(); ++i)
4412         {
4413                 string statename = (*i);
4414                 TreeModel::Row row = *(snapshot_display_model->append());
4415                 
4416                 /* this lingers on in case we ever want to change the visible
4417                    name of the snapshot.
4418                 */
4419                 
4420                 string display_name;
4421                 display_name = statename;
4422
4423                 if (statename == session->snap_name()) {
4424                         snapshot_display.get_selection()->select(row);
4425                 } 
4426                 
4427                 row[snapshot_display_columns.visible_name] = display_name;
4428                 row[snapshot_display_columns.real_name] = statename;
4429         }
4430 }
4431
4432 void
4433 Editor::session_state_saved (string snap_name)
4434 {
4435         ENSURE_GUI_THREAD (bind (mem_fun(*this, &Editor::session_state_saved), snap_name));
4436         redisplay_snapshots ();
4437 }
4438
4439 void
4440 Editor::maximise_editing_space ()
4441 {
4442         mouse_mode_tearoff->set_visible (false);
4443         tools_tearoff->set_visible (false);
4444
4445         pre_maximal_pane_position = edit_pane.get_position();
4446         pre_maximal_editor_width = this->get_width();
4447
4448         if(post_maximal_pane_position == 0) {
4449                 post_maximal_pane_position = edit_pane.get_width();
4450         }
4451
4452         fullscreen();
4453
4454         if(post_maximal_editor_width) {
4455                 edit_pane.set_position (post_maximal_pane_position - 
4456                         abs(post_maximal_editor_width - pre_maximal_editor_width));
4457         } else {
4458                 edit_pane.set_position (post_maximal_pane_position);
4459         }
4460 }
4461
4462 void
4463 Editor::restore_editing_space ()
4464 {
4465         // user changed width of pane during fullscreen
4466
4467         if(post_maximal_pane_position != edit_pane.get_position()) {
4468                 post_maximal_pane_position = edit_pane.get_position();
4469         }
4470
4471         unfullscreen();
4472
4473         mouse_mode_tearoff->set_visible (true);
4474         tools_tearoff->set_visible (true);
4475         post_maximal_editor_width = this->get_width();
4476
4477         edit_pane.set_position (pre_maximal_pane_position + abs(this->get_width() - pre_maximal_editor_width));
4478 }
4479
4480 /**
4481  *  Make new playlists for a given track and also any others that belong
4482  *  to the same active edit group.
4483  *  @param v Track.
4484  */
4485
4486 void 
4487 Editor::new_playlists (TimeAxisView* v)
4488 {
4489         begin_reversible_command (_("new playlists"));
4490         vector<boost::shared_ptr<ARDOUR::Playlist> > playlists;
4491         session->get_playlists(playlists);
4492         mapover_tracks ( bind(mem_fun (*this, &Editor::mapped_use_new_playlist), playlists), v );
4493         commit_reversible_command ();
4494 }
4495
4496 /**
4497  *  Use a copy of the current playlist for a given track and also any others that belong
4498  *  to the same active edit group.
4499  *  @param v Track.
4500  */
4501
4502 void
4503 Editor::copy_playlists (TimeAxisView* v)
4504 {
4505         begin_reversible_command (_("copy playlists"));
4506         vector<boost::shared_ptr<ARDOUR::Playlist> > playlists;
4507         session->get_playlists(playlists);
4508         mapover_tracks ( bind(mem_fun (*this, &Editor::mapped_use_copy_playlist), playlists), v );
4509         commit_reversible_command ();
4510 }
4511
4512 /**
4513  *  Clear the current playlist for a given track and also any others that belong
4514  *  to the same active edit group.
4515  *  @param v Track.
4516  */
4517
4518 void 
4519 Editor::clear_playlists (TimeAxisView* v)
4520 {
4521         begin_reversible_command (_("clear playlists"));
4522         vector<boost::shared_ptr<ARDOUR::Playlist> > playlists;
4523         session->get_playlists(playlists);
4524         mapover_tracks ( mem_fun (*this, &Editor::mapped_clear_playlist), v );
4525         commit_reversible_command ();
4526 }
4527
4528 void 
4529 Editor::mapped_use_new_playlist (RouteTimeAxisView& atv, uint32_t sz, vector<boost::shared_ptr<ARDOUR::Playlist> > const & playlists)
4530 {
4531         atv.use_new_playlist (sz > 1 ? false : true, playlists);
4532 }
4533
4534 void
4535 Editor::mapped_use_copy_playlist (RouteTimeAxisView& atv, uint32_t sz, vector<boost::shared_ptr<ARDOUR::Playlist> > const & playlists)
4536 {
4537         atv.use_copy_playlist (sz > 1 ? false : true, playlists);
4538 }
4539
4540 void 
4541 Editor::mapped_clear_playlist (RouteTimeAxisView& atv, uint32_t sz)
4542 {
4543         atv.clear_playlist ();
4544 }
4545
4546 bool
4547 Editor::on_key_press_event (GdkEventKey* ev)
4548 {
4549         return key_press_focus_accelerator_handler (*this, ev);
4550 }
4551
4552 bool
4553 Editor::on_key_release_event (GdkEventKey* ev)
4554 {
4555         return Gtk::Window::on_key_release_event (ev);
4556         // return key_press_focus_accelerator_handler (*this, ev);
4557 }
4558
4559 void
4560 Editor::reset_x_origin (nframes64_t frame)
4561 {
4562         //cerr << "resetting x origin" << endl;
4563         queue_visual_change (frame);
4564 }
4565
4566 void
4567 Editor::reset_zoom (double fpu)
4568 {
4569         queue_visual_change (fpu);
4570 }
4571
4572 void
4573 Editor::reposition_and_zoom (nframes64_t frame, double fpu)
4574 {
4575         //cerr << "Editor::reposition_and_zoom () called ha v:l:u:ps:fpu = " << horizontal_adjustment.get_value() << ":" << horizontal_adjustment.get_lower() << ":" << horizontal_adjustment.get_upper() << ":" << horizontal_adjustment.get_page_size() << ":" << frames_per_unit << endl;//DEBUG
4576         reset_x_origin (frame);
4577         reset_zoom (fpu);
4578
4579         if (!no_save_visual) {
4580                 undo_visual_stack.push_back (current_visual_state(false));
4581         }
4582 }
4583
4584 Editor::VisualState*
4585 Editor::current_visual_state (bool with_tracks)
4586 {
4587         VisualState* vs = new VisualState;
4588         vs->y_position = vertical_adjustment.get_value();
4589         vs->frames_per_unit = frames_per_unit;
4590         vs->leftmost_frame = leftmost_frame;
4591         vs->zoom_focus = zoom_focus;
4592         vs->zoomed_to_region = zoomed_to_region;
4593
4594         if (with_tracks) {
4595                 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
4596                         vs->track_states.push_back (TAVState ((*i), &(*i)->get_state()));
4597                 }
4598         }
4599         
4600         return vs;
4601 }
4602
4603 void
4604 Editor::undo_visual_state ()
4605 {
4606         if (undo_visual_stack.empty()) {
4607                 return;
4608         }
4609
4610         VisualState* vs = undo_visual_stack.back();
4611         undo_visual_stack.pop_back();
4612         use_visual_state (*vs);
4613         redo_visual_stack.push_back (vs);
4614 }
4615
4616 void
4617 Editor::redo_visual_state ()
4618 {
4619         if (redo_visual_stack.empty()) {
4620                 return;
4621         }
4622
4623         VisualState* vs = redo_visual_stack.back();
4624         redo_visual_stack.pop_back();
4625         use_visual_state (*vs);
4626         undo_visual_stack.push_back (vs);
4627 }
4628
4629 void
4630 Editor::swap_visual_state ()
4631 {
4632         if (undo_visual_stack.empty()) {
4633                 redo_visual_state ();
4634         } else {
4635                 undo_visual_state ();
4636         }
4637 }
4638
4639 void
4640 Editor::use_visual_state (VisualState& vs)
4641 {
4642         no_save_visual = true;
4643         no_route_list_redisplay = true;
4644
4645         vertical_adjustment.set_value (vs.y_position);
4646
4647         set_zoom_focus (vs.zoom_focus);
4648         reposition_and_zoom (vs.leftmost_frame, vs.frames_per_unit);
4649         zoomed_to_region = vs.zoomed_to_region;
4650         
4651         for (list<TAVState>::iterator i = vs.track_states.begin(); i != vs.track_states.end(); ++i) {
4652                 TrackViewList::iterator t;
4653
4654                 /* check if the track still exists - it could have been deleted */
4655
4656                 if ((t = find (track_views.begin(), track_views.end(), i->first)) != track_views.end()) {
4657                         (*t)->set_state (*(i->second));
4658                 }
4659         }
4660
4661
4662         if (!vs.track_states.empty()) {
4663                 update_route_visibility ();
4664         } 
4665
4666         no_route_list_redisplay = false;
4667         redisplay_route_list ();
4668
4669         no_save_visual = false;
4670 }
4671
4672 void
4673 Editor::set_frames_per_unit (double fpu)
4674 {
4675         /* this is the core function that controls the zoom level of the canvas. it is called
4676            whenever one or more calls are made to reset_zoom(). it executes in an idle handler.
4677         */
4678
4679         if (fpu == frames_per_unit) {
4680                 return;
4681         }
4682
4683         if (fpu < 2.0) {
4684                 fpu = 2.0;
4685         }
4686
4687         
4688         /* don't allow zooms that fit more than the maximum number
4689            of frames into an 800 pixel wide space.
4690         */
4691
4692         if (max_frames / fpu < 800.0) {
4693                 return;
4694         }
4695         
4696         if (tempo_lines)
4697                 tempo_lines->tempo_map_changed();
4698
4699         frames_per_unit = fpu;
4700         post_zoom ();
4701 }
4702
4703 void
4704 Editor::post_zoom ()
4705 {
4706         nframes64_t cef = 0;
4707
4708         // convert fpu to frame count
4709
4710         nframes64_t frames = (nframes64_t) floor (frames_per_unit * canvas_width);
4711
4712         if (frames_per_unit != zoom_range_clock.current_duration()) {
4713                 zoom_range_clock.set (frames);
4714         }
4715
4716         if (mouse_mode == MouseRange && selection->time.start () != selection->time.end_frame ()) {
4717                 if (!selection->tracks.empty()) {
4718                         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
4719                                 (*i)->reshow_selection (selection->time);
4720                         }
4721                 } else {
4722                         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
4723                                 (*i)->reshow_selection (selection->time);
4724                         }
4725                 }
4726         }
4727
4728
4729         ZoomChanged (); /* EMIT_SIGNAL */
4730
4731         reset_hscrollbar_stepping ();
4732
4733         if (session) {
4734                 cef = session->current_end_frame() + (current_page_frames() / 10);// Add a little extra so we can see the end marker
4735         }
4736         horizontal_adjustment.set_upper (cef / frames_per_unit);
4737
4738         //reset_scrolling_region ();
4739
4740         if (playhead_cursor) {
4741                 playhead_cursor->set_position (playhead_cursor->current_frame);
4742         }
4743
4744         instant_save ();
4745 }
4746
4747 void
4748 Editor::queue_visual_change (nframes64_t where)
4749 {
4750 //      pending_visual_change.pending = VisualChange::Type (pending_visual_change.pending | VisualChange::TimeOrigin);
4751 //      pending_visual_change.time_origin = where;
4752
4753         if (pending_visual_change.idle_handler_id < 0) {
4754                 pending_visual_change.pending = VisualChange::Type (pending_visual_change.pending | VisualChange::TimeOrigin);
4755                 pending_visual_change.time_origin = where;
4756                 pending_visual_change.idle_handler_id = g_idle_add (_idle_visual_changer, this);
4757         }
4758 }
4759
4760 void
4761 Editor::queue_visual_change (double fpu)
4762 {
4763         pending_visual_change.pending = VisualChange::Type (pending_visual_change.pending | VisualChange::ZoomLevel);
4764         pending_visual_change.frames_per_unit = fpu;
4765
4766         if (pending_visual_change.idle_handler_id < 0) {
4767                 pending_visual_change.idle_handler_id = g_idle_add ( _idle_visual_changer, this);
4768         }
4769         
4770 }
4771
4772 int
4773 Editor::_idle_visual_changer (void* arg)
4774 {
4775         return static_cast<Editor*>(arg)->idle_visual_changer ();
4776 }
4777
4778 int
4779 Editor::idle_visual_changer ()
4780 {
4781         VisualChange::Type p = pending_visual_change.pending;
4782         pending_visual_change.pending = (VisualChange::Type) 0;
4783
4784 #ifdef FIX_THIS_FOR_V3
4785         double last_time_origin = horizontal_adjustment.get_value();
4786 #endif
4787
4788         if (p & VisualChange::ZoomLevel) {
4789                 set_frames_per_unit (pending_visual_change.frames_per_unit);
4790
4791                 compute_fixed_ruler_scale ();
4792                 compute_current_bbt_points(pending_visual_change.time_origin, pending_visual_change.time_origin + current_page_frames());
4793                 compute_bbt_ruler_scale (pending_visual_change.time_origin, pending_visual_change.time_origin + current_page_frames());
4794                 update_tempo_based_rulers ();
4795         }
4796         if (p & VisualChange::TimeOrigin) {
4797                 horizontal_adjustment.set_value (pending_visual_change.time_origin / frames_per_unit);
4798         }
4799
4800         nframes64_t csf=0, cef=0;
4801         nframes64_t current_time_origin = (nframes64_t) floor (horizontal_adjustment.get_value() * frames_per_unit);
4802         
4803         if (session) {
4804                 csf = session->current_start_frame();
4805                 cef = session->current_end_frame();
4806         }
4807         
4808         /* if we seek beyond the current end of the canvas, move the end */
4809
4810 #ifdef FIX_THIS_FOR_V3
4811         if (last_time_origin == horizontal_adjustment.get_value() ) {
4812                 /* changed signal not emitted */
4813                 update_fixed_rulers ();
4814                 redisplay_tempo (true);
4815         }
4816 #endif
4817         
4818         if (current_time_origin != pending_visual_change.time_origin) {
4819                 cef += current_page_frames() / 10; // Add a little extra so we can see the end marker
4820                 horizontal_adjustment.set_upper (cef / frames_per_unit);
4821                 horizontal_adjustment.set_value (pending_visual_change.time_origin / frames_per_unit);
4822         } else {
4823                 update_fixed_rulers();
4824                 redisplay_tempo (true);
4825         }
4826         //cerr << "Editor::idle_visual_changer () called ha v:l:u:ps:fpu = " << horizontal_adjustment.get_value() << ":" << horizontal_adjustment.get_lower() << ":" << horizontal_adjustment.get_upper() << ":" << horizontal_adjustment.get_page_size() << ":" << frames_per_unit << endl;//DEBUG
4827         pending_visual_change.idle_handler_id = -1;
4828         return 0; /* this is always a one-shot call */
4829 }
4830
4831 struct EditorOrderTimeAxisSorter {
4832     bool operator() (const TimeAxisView* a, const TimeAxisView* b) const {
4833             return a->order () < b->order ();
4834     }
4835 };
4836         
4837 void
4838 Editor::sort_track_selection (TrackSelection* sel)
4839 {
4840         EditorOrderTimeAxisSorter cmp;
4841
4842         if (sel) {
4843                 sel->sort (cmp);
4844         } else {
4845                 selection->tracks.sort (cmp);
4846         }
4847 }
4848
4849 nframes64_t
4850 Editor::get_preferred_edit_position (bool ignore_playhead)
4851 {
4852         bool ignored;
4853         nframes64_t where = 0;
4854         EditPoint ep = _edit_point;
4855
4856         if (entered_marker) {
4857                 return entered_marker->position();
4858         }
4859
4860         if (ignore_playhead && ep == EditAtPlayhead) {
4861                 ep = EditAtSelectedMarker;
4862         }
4863
4864         switch (ep) {
4865         case EditAtPlayhead:
4866                 where = session->audible_frame();
4867                 break;
4868                 
4869         case EditAtSelectedMarker:
4870                 if (!selection->markers.empty()) {
4871                         bool is_start;
4872                         Location* loc = find_location_from_marker (selection->markers.front(), is_start);
4873                         if (loc) {
4874                                 if (is_start) {
4875                                         where =  loc->start();
4876                                 } else {
4877                                         where = loc->end();
4878                                 }
4879                                 break;
4880                         }
4881                 } 
4882                 /* fallthru */
4883                 
4884         default:
4885         case EditAtMouse:
4886                 if (!mouse_frame (where, ignored)) {
4887                         /* XXX not right but what can we do ? */
4888                         return 0;
4889                 }
4890                 snap_to (where);
4891                 break;
4892         }
4893
4894         return where;
4895 }
4896
4897 void
4898 Editor::set_loop_range (nframes64_t start, nframes64_t end, string cmd)
4899 {
4900         if (!session) return;
4901
4902         begin_reversible_command (cmd);
4903         
4904         Location* tll;
4905
4906         if ((tll = transport_loop_location()) == 0) {
4907                 Location* loc = new Location (start, end, _("Loop"),  Location::IsAutoLoop);
4908                 XMLNode &before = session->locations()->get_state();
4909                 session->locations()->add (loc, true);
4910                 session->set_auto_loop_location (loc);
4911                 XMLNode &after = session->locations()->get_state();
4912                 session->add_command (new MementoCommand<Locations>(*(session->locations()), &before, &after));
4913         } else {
4914                 XMLNode &before = tll->get_state();
4915                 tll->set_hidden (false, this);
4916                 tll->set (start, end);
4917                 XMLNode &after = tll->get_state();
4918                 session->add_command (new MementoCommand<Location>(*tll, &before, &after));
4919         }
4920         
4921         commit_reversible_command ();
4922 }
4923
4924 void
4925 Editor::set_punch_range (nframes64_t start, nframes64_t end, string cmd)
4926 {
4927         if (!session) return;
4928
4929         begin_reversible_command (cmd);
4930         
4931         Location* tpl;
4932
4933         if ((tpl = transport_punch_location()) == 0) {
4934                 Location* loc = new Location (start, end, _("Loop"),  Location::IsAutoPunch);
4935                 XMLNode &before = session->locations()->get_state();
4936                 session->locations()->add (loc, true);
4937                 session->set_auto_loop_location (loc);
4938                 XMLNode &after = session->locations()->get_state();
4939                 session->add_command (new MementoCommand<Locations>(*(session->locations()), &before, &after));
4940         }
4941         else {
4942                 XMLNode &before = tpl->get_state();
4943                 tpl->set_hidden (false, this);
4944                 tpl->set (start, end);
4945                 XMLNode &after = tpl->get_state();
4946                 session->add_command (new MementoCommand<Location>(*tpl, &before, &after));
4947         }
4948         
4949         commit_reversible_command ();
4950 }
4951
4952 void
4953 Editor::get_regions_at (RegionSelection& rs, nframes64_t where, const TrackSelection& ts) const
4954 {
4955         const TrackSelection* tracks;
4956
4957         if (ts.empty()) {
4958                 tracks = &track_views;
4959         } else {
4960                 tracks = &ts;
4961         }
4962
4963         for (TrackSelection::const_iterator t = tracks->begin(); t != tracks->end(); ++t) {
4964                 RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(*t);
4965                 if (rtv) {
4966                         boost::shared_ptr<Diskstream> ds;
4967                         boost::shared_ptr<Playlist> pl;
4968                         
4969                         if ((ds = rtv->get_diskstream()) && ((pl = ds->playlist()))) {
4970
4971                                 Playlist::RegionList* regions = pl->regions_at (
4972                                                 (nframes64_t) floor ( (double)where * ds->speed()));
4973
4974                                 for (Playlist::RegionList::iterator i = regions->begin(); i != regions->end(); ++i) {
4975                                         RegionView* rv = rtv->view()->find_view (*i);
4976                                         if (rv) {
4977                                                 rs.add (rv);
4978                                         }
4979                                 }
4980
4981                                 delete regions;
4982                         }
4983                 }
4984         }
4985 }
4986
4987 void
4988 Editor::get_regions_after (RegionSelection& rs, nframes64_t where, const TrackSelection& ts) const
4989 {
4990         const TrackSelection* tracks;
4991
4992         if (ts.empty()) {
4993                 tracks = &track_views;
4994         } else {
4995                 tracks = &ts;
4996         }
4997
4998         for (TrackSelection::const_iterator t = tracks->begin(); t != tracks->end(); ++t) {
4999                 RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(*t);
5000                 if (rtv) {
5001                         boost::shared_ptr<Diskstream> ds;
5002                         boost::shared_ptr<Playlist> pl;
5003                         
5004                         if ((ds = rtv->get_diskstream()) && ((pl = ds->playlist()))) {
5005
5006                                 Playlist::RegionList* regions = pl->regions_touched (
5007                                                 (nframes64_t) floor ( (double)where * ds->speed()), max_frames);
5008
5009                                 for (Playlist::RegionList::iterator i = regions->begin(); i != regions->end(); ++i) {
5010
5011                                         RegionView* rv = rtv->view()->find_view (*i);
5012
5013                                         if (rv) {
5014                                                 rs.push_back (rv);
5015                                         }
5016                                 }
5017
5018                                 delete regions;
5019                         }
5020                 }
5021         }
5022 }
5023
5024 void
5025 Editor::get_regions_for_action (RegionSelection& rs, bool allow_entered)
5026 {
5027         if (selection->regions.empty()) {
5028
5029                 if (selection->tracks.empty()) {
5030
5031                         /* no regions or tracks selected
5032                         */
5033                         
5034                         if (entered_regionview && mouse_mode == Editing::MouseObject) {
5035
5036                                 /*  entered regionview is valid and we're in object mode - 
5037                                     just use entered regionview
5038                                 */
5039
5040                                 rs.add (entered_regionview);
5041                         }
5042
5043                         return;
5044
5045                 } else {
5046
5047                         /* no regions selected, so get all regions at the edit point across
5048                            all selected tracks. 
5049                         */
5050
5051                         nframes64_t where = get_preferred_edit_position();
5052                         get_regions_at (rs, where, selection->tracks);
5053
5054                         /* if the entered regionview wasn't selected and neither was its track
5055                            then add it.
5056                         */
5057
5058                         if (entered_regionview != 0 &&
5059                             !selection->selected (entered_regionview) && 
5060                             !selection->selected (&entered_regionview->get_time_axis_view())) {
5061                                 rs.add (entered_regionview);
5062                         }
5063                 }
5064
5065         } else {
5066                 
5067                 /* just use the selected regions */
5068
5069                 rs = selection->regions;
5070
5071                 /* if the entered regionview wasn't selected and we allow this sort of thing,
5072                    then add it.
5073                 */
5074
5075                 if (allow_entered && entered_regionview && !selection->selected (entered_regionview)) {
5076                         rs.add (entered_regionview);
5077                 }
5078
5079         }
5080 }
5081
5082 void
5083 Editor::get_regions_corresponding_to (boost::shared_ptr<Region> region, vector<RegionView*>& regions)
5084 {
5085
5086         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
5087                 
5088                 RouteTimeAxisView* tatv;
5089                 
5090                 if ((tatv = dynamic_cast<RouteTimeAxisView*> (*i)) != 0) {
5091                         
5092                         boost::shared_ptr<Playlist> pl;
5093                         vector<boost::shared_ptr<Region> > results;
5094                         RegionView* marv;
5095                         boost::shared_ptr<Diskstream> ds;
5096                         
5097                         if ((ds = tatv->get_diskstream()) == 0) {
5098                                 /* bus */
5099                                 continue;
5100                         }
5101                         
5102                         if ((pl = (ds->playlist())) != 0) {
5103                                 pl->get_region_list_equivalent_regions (region, results);
5104                         }
5105                         
5106                         for (vector<boost::shared_ptr<Region> >::iterator ir = results.begin(); ir != results.end(); ++ir) {
5107                                 if ((marv = tatv->view()->find_view (*ir)) != 0) {
5108                                         regions.push_back (marv);
5109                                 }
5110                         }
5111                         
5112                 }
5113         }
5114 }       
5115
5116 void
5117 Editor::show_rhythm_ferret ()
5118 {
5119         if (rhythm_ferret == 0) {
5120                 rhythm_ferret = new RhythmFerret(*this);
5121         }
5122
5123         rhythm_ferret->set_session (session);
5124         rhythm_ferret->show ();
5125         rhythm_ferret->present ();
5126 }
5127
5128 void
5129 Editor::show_bundle_manager ()
5130 {
5131         if (_bundle_manager == 0) {
5132                 _bundle_manager = new BundleManager (*session);
5133         }
5134
5135         _bundle_manager->show ();
5136 }
5137
5138 void
5139 Editor::show_global_port_matrix (ARDOUR::DataType t)
5140 {
5141         if (_global_port_matrix[t] == 0) {
5142                 _global_port_matrix[t] = new GlobalPortMatrixWindow (*session, t);
5143         }
5144
5145         _global_port_matrix[t]->show ();
5146 }
5147
5148 void
5149 Editor::first_idle ()
5150 {
5151         MessageDialog* dialog = 0;
5152
5153         if (track_views.size() > 1) { 
5154                 dialog = new MessageDialog (*this, 
5155                                             _("Please wait while Ardour loads visual data"),
5156                                             true,
5157                                             Gtk::MESSAGE_INFO,
5158                                             Gtk::BUTTONS_NONE);
5159                 dialog->present ();
5160                 ARDOUR_UI::instance()->flush_pending ();
5161         }
5162
5163         for (TrackViewList::iterator t = track_views.begin(); t != track_views.end(); ++t) {
5164                 (*t)->first_idle();
5165         }
5166
5167         // first idle adds route children (automation tracks), so we need to redisplay here
5168         redisplay_route_list();
5169         
5170         delete dialog;
5171
5172         _have_idled = true;
5173 }
5174
5175 void
5176 Editor::start_resize_line_ops ()
5177 {
5178 #if 0
5179         old_resize_line_y = -1;
5180         resize_line_y = -1;
5181         need_resize_line = true;
5182 #endif  
5183 }
5184
5185 void
5186 Editor::end_resize_line_ops ()
5187 {
5188 #if 0
5189         need_resize_line = false;
5190
5191         if (old_resize_line_y >= 0) {
5192                 Gdk::Rectangle r (0, old_resize_line_y, (int) canvas_width, 3);
5193                 Glib::RefPtr<Gdk::Window> win = get_window();
5194                 cerr << "Final invalidation at " << old_resize_line_y << endl;
5195                 win->invalidate_rect (r, false);
5196         }
5197 #endif
5198 }
5199
5200 void
5201 Editor::queue_draw_resize_line (int at)
5202 {
5203 #if 0   
5204         Glib::RefPtr<Gdk::Window> win = get_window();
5205
5206         resize_line_y = at;
5207
5208         if (win && canvas_width) {
5209
5210                 int controls_width = controls_layout.get_width();
5211                 int xroot, discard;
5212                 
5213                 controls_layout.get_window()->get_origin (xroot, discard);
5214
5215                 if (old_resize_line_y >= 0) {
5216                         
5217                         /* redraw where it used to be */
5218                         
5219                         
5220                         Gdk::Rectangle r (0, old_resize_line_y - 1, controls_width + (int) canvas_width, 3);
5221                         win->invalidate_rect (r, true);
5222                         cerr << "invalidate " << xroot << "," << old_resize_line_y - 1 << ' ' 
5223                              << controls_width + canvas_width << " x 3\n";
5224                 }
5225
5226                 /* draw where it is */
5227
5228                 Gdk::Rectangle r (0, at - 1, controls_width + (int) canvas_width, 3);
5229                 win->invalidate_rect (r, true);
5230         }
5231 #endif
5232 }
5233
5234 bool
5235 Editor::on_expose_event (GdkEventExpose* ev)
5236 {
5237         /* cerr << "+++ editor expose "
5238              << ev->area.x << ',' << ev->area.y
5239              << ' '
5240              << ev->area.width << " x " << ev->area.height
5241              << " need reize ? " << need_resize_line
5242              << endl;
5243         */
5244         bool ret = Window::on_expose_event (ev);
5245
5246 #if 0
5247         if (need_resize_line) {
5248                 
5249                 int xroot, yroot, discard;
5250                 int controls_width;
5251
5252                 /* Our root coordinates for drawing the line will be the left edge 
5253                    of the track controls, and the upper left edge of our own window.
5254                 */
5255
5256                 get_window()->get_origin (discard, yroot);
5257                 controls_layout.get_window()->get_origin (xroot, discard);
5258                 controls_width = controls_layout.get_width();
5259                 
5260                 GdkRectangle lr;
5261                 GdkRectangle intersection;
5262
5263                 lr.x = 0;
5264                 lr.y = resize_line_y;
5265                 lr.width = controls_width + (int) canvas_width;
5266                 lr.height = 3;
5267
5268                 if (gdk_rectangle_intersect (&lr, &ev->area, &intersection)) {
5269                         
5270                         Glib::RefPtr<Gtk::Style> style (get_style());
5271                         Glib::RefPtr<Gdk::GC> black_gc (style->get_black_gc ());
5272                         Glib::RefPtr<Gdk::GC> gc = wrap (black_gc->gobj_copy(), false);
5273
5274                         /* draw on root window */
5275
5276                         GdkWindow* win = gdk_get_default_root_window();
5277                         
5278                         gc->set_subwindow (Gdk::INCLUDE_INFERIORS);
5279                         gc->set_line_attributes (3, Gdk::LINE_SOLID, 
5280                                                  Gdk::CAP_NOT_LAST,
5281                                                  Gdk::JOIN_MITER);
5282                         
5283                         gdk_draw_line (win, gc->gobj(), 
5284                                        0,
5285                                        resize_line_y, 
5286                                        (int) canvas_width + controls_width,
5287                                        resize_line_y);
5288 #if 0
5289                         cerr << "drew line @ " << xroot << ", " << yroot + resize_line_y 
5290                              << " to " << xroot + (int) canvas_width + controls_width
5291                              << ", " << yroot + resize_line_y
5292                              << endl;
5293 #endif
5294                         old_resize_line_y = resize_line_y;
5295                         cerr << "NEXT EXPOSE SHOULD BE AT " << old_resize_line_y << endl;
5296                 } else {
5297                         cerr << "no intersect with "
5298                              << lr.x << ',' << lr.y
5299                              << ' '
5300                              << lr.width << " x " << lr.height
5301                              << endl;
5302                 }
5303         }
5304
5305         //cerr << "--- editor expose\n";
5306 #endif
5307
5308         return ret;
5309 }
5310
5311 static gboolean
5312 _idle_resizer (gpointer arg)
5313 {
5314         return ((Editor*)arg)->idle_resize ();
5315 }
5316
5317 void
5318 Editor::add_to_idle_resize (TimeAxisView* view, uint32_t h)
5319 {
5320         if (resize_idle_id < 0) {
5321                 resize_idle_id = g_idle_add (_idle_resizer, this);
5322         } 
5323
5324         resize_idle_target = h;
5325
5326         pending_resizes.push_back (view);
5327
5328         if (selection->selected (view) && !selection->tracks.empty()) {
5329                 pending_resizes.insert (pending_resizes.end(), selection->tracks.begin(), selection->tracks.end());
5330         }
5331 }
5332
5333 bool
5334 Editor::idle_resize ()
5335 {
5336         for (vector<TimeAxisView*>::iterator i = pending_resizes.begin(); i != pending_resizes.end(); ++i) {
5337                 (*i)->idle_resize (resize_idle_target);
5338         }
5339         pending_resizes.clear();
5340         flush_canvas ();
5341         resize_idle_id = -1;
5342         return false;
5343 }
5344
5345 void
5346 Editor::located ()
5347 {
5348         ENSURE_GUI_THREAD (mem_fun (*this, &Editor::located));
5349
5350         _pending_locate_request = false;
5351 }