Editor Actions Scripts & Manager
[ardour.git] / gtk2_ardour / editor.h
1 /*
2     Copyright (C) 2000-2003 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 #ifndef __ardour_editor_h__
21 #define __ardour_editor_h__
22
23 #include <sys/time.h>
24
25 #include <cmath>
26 #include <list>
27 #include <map>
28 #include <set>
29 #include <string>
30 #include <vector>
31
32 #include <boost/optional.hpp>
33
34 #include <gtkmm/comboboxtext.h>
35 #include <gtkmm/layout.h>
36
37 #include "gtkmm2ext/selector.h"
38 #include "gtkmm2ext/click_box.h"
39 #include "gtkmm2ext/dndtreeview.h"
40 #include "gtkmm2ext/stateful_button.h"
41 #include "gtkmm2ext/bindings.h"
42
43 #include "pbd/stateful.h"
44 #include "pbd/signals.h"
45
46 #include "ardour/import_status.h"
47 #include "ardour/tempo.h"
48 #include "ardour/location.h"
49 #include "ardour/types.h"
50
51 #include "canvas/fwd.h"
52 #include "canvas/ruler.h"
53
54 #include "ardour_button.h"
55 #include "ardour_dialog.h"
56 #include "ardour_dropdown.h"
57 #include "public_editor.h"
58 #include "editing.h"
59 #include "enums.h"
60 #include "editor_items.h"
61 #include "region_selection.h"
62 #include "selection_memento.h"
63
64 namespace Gtkmm2ext {
65         class Bindings;
66 }
67
68 namespace ARDOUR {
69         class AudioPlaylist;
70         class AudioRegion;
71         class AudioTrack;
72         class ChanCount;
73         class Filter;
74         class Location;
75         class MidiOperator;
76         class MidiRegion;
77         class MidiTrack;
78         class Playlist;
79         class Region;
80         class RouteGroup;
81         class Session;
82         class TempoSection;
83         class Track;
84 }
85
86 namespace LADSPA {
87         class Plugin;
88 }
89
90 class AnalysisWindow;
91 class AudioClock;
92 class AudioRegionView;
93 class AudioStreamView;
94 class AudioTimeAxisView;
95 class AutomationLine;
96 class AutomationSelection;
97 class AutomationTimeAxisView;
98 class BundleManager;
99 class ButtonJoiner;
100 class ControlPoint;
101 class CursorContext;
102 class DragManager;
103 class EditNoteDialog;
104 class EditorCursor;
105 class EditorGroupTabs;
106 class EditorLocations;
107 class EditorRegions;
108 class EditorRoutes;
109 class EditorRouteGroups;
110 class EditorSnapshots;
111 class EditorSummary;
112 class GroupedButtons;
113 class GUIObjectState;
114 class ArdourMarker;
115 class MidiRegionView;
116 class MidiExportDialog;
117 class MixerStrip;
118 class MouseCursors;
119 class NoteBase;
120 class PlaylistSelector;
121 class PluginSelector;
122 class ProgressReporter;
123 class QuantizeDialog;
124 class RhythmFerret;
125 class RulerDialog;
126 class Selection;
127 class SoundFileOmega;
128 class StreamView;
129 class TempoLines;
130 class TimeAxisView;
131 class TimeFXDialog;
132 class TimeSelection;
133 class RegionLayeringOrderEditor;
134 class VerboseCursor;
135
136 class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARDOUR::SessionHandlePtr
137 {
138  public:
139         Editor ();
140         ~Editor ();
141
142         void             set_session (ARDOUR::Session *);
143         ARDOUR::Session* session() const { return _session; }
144
145         Gtk::Window* use_own_window (bool and_fill_it);
146
147         void             first_idle ();
148         virtual bool     have_idled () const { return _have_idled; }
149
150         framepos_t leftmost_sample() const { return leftmost_frame; }
151
152         framecnt_t current_page_samples() const {
153                 return (framecnt_t) _visible_canvas_width * samples_per_pixel;
154         }
155
156         double visible_canvas_height () const {
157                 return _visible_canvas_height;
158         }
159         double trackviews_height () const;
160
161         void cycle_snap_mode ();
162         void next_snap_choice ();
163         void next_snap_choice_music_only ();
164         void next_snap_choice_music_and_time ();
165         void prev_snap_choice ();
166         void prev_snap_choice_music_only ();
167         void prev_snap_choice_music_and_time ();
168         void set_snap_to (Editing::SnapType);
169         void set_snap_mode (Editing::SnapMode);
170         void set_snap_threshold (double pixel_distance) {snap_threshold = pixel_distance;}
171
172         Editing::SnapMode  snap_mode () const;
173         Editing::SnapType  snap_type () const;
174
175         void undo (uint32_t n = 1);
176         void redo (uint32_t n = 1);
177
178         XMLNode& get_state ();
179         int set_state (const XMLNode&, int version);
180
181         void set_mouse_mode (Editing::MouseMode, bool force=true);
182         void step_mouse_mode (bool next);
183         Editing::MouseMode current_mouse_mode () const { return mouse_mode; }
184         Editing::MidiEditMode current_midi_edit_mode () const;
185         void remove_midi_note (ArdourCanvas::Item *, GdkEvent *);
186
187         bool internal_editing() const;
188
189         void foreach_time_axis_view (sigc::slot<void,TimeAxisView&>);
190         void add_to_idle_resize (TimeAxisView*, int32_t);
191
192         RouteTimeAxisView* get_route_view_by_route_id (const PBD::ID& id) const;
193
194         void consider_auditioning (boost::shared_ptr<ARDOUR::Region>);
195         void hide_a_region (boost::shared_ptr<ARDOUR::Region>);
196         void show_a_region (boost::shared_ptr<ARDOUR::Region>);
197
198 #ifdef USE_RUBBERBAND
199         std::vector<std::string> rb_opt_strings;
200         int rb_current_opt;
201 #endif
202
203         /* things that need to be public to be used in the main menubar */
204
205         void new_region_from_selection ();
206         void separate_regions_between (const TimeSelection&);
207         void separate_region_from_selection ();
208         void separate_under_selected_regions ();
209         void separate_region_from_punch ();
210         void separate_region_from_loop ();
211         void separate_regions_using_location (ARDOUR::Location&);
212         void transition_to_rolling (bool forward);
213
214         /* NOTE: these functions assume that the "pixel" coordinate is
215            in canvas coordinates. These coordinates already take into
216            account any scrolling offsets.
217         */
218
219         framepos_t pixel_to_sample_from_event (double pixel) const {
220
221                 /* pixel can be less than zero when motion events
222                    are processed. since we've already run the world->canvas
223                    affine, that means that the location *really* is "off
224                    to the right" and thus really is "before the start".
225                 */
226
227                 if (pixel >= 0) {
228                         return pixel * samples_per_pixel;
229                 } else {
230                         return 0;
231                 }
232         }
233
234         framepos_t pixel_to_sample (double pixel) const {
235                 return pixel * samples_per_pixel;
236         }
237
238         double sample_to_pixel (framepos_t sample) const {
239                 return round (sample / (double) samples_per_pixel);
240         }
241
242         double sample_to_pixel_unrounded (framepos_t sample) const {
243                 return sample / (double) samples_per_pixel;
244         }
245
246         /* selection */
247
248         Selection& get_selection() const { return *selection; }
249         bool get_selection_extents ( framepos_t &start, framepos_t &end );  // the time extents of the current selection, whether Range, Region(s), Control Points, or Notes
250         Selection& get_cut_buffer() const { return *cut_buffer; }
251         void track_mixer_selection ();
252
253         bool extend_selection_to_track (TimeAxisView&);
254
255         void play_selection ();
256         framepos_t get_preroll ();
257         void maybe_locate_with_edit_preroll (framepos_t);
258         void play_with_preroll ();
259         void select_all_in_track (Selection::Operation op);
260         void select_all_objects (Selection::Operation op);
261         void invert_selection_in_track ();
262         void invert_selection ();
263         void deselect_all ();
264         long select_range (framepos_t, framepos_t);
265
266         void set_selected_regionview_from_region_list (boost::shared_ptr<ARDOUR::Region> region, Selection::Operation op = Selection::Set);
267
268         void remove_tracks ();
269
270         /* tempo */
271
272         void set_show_measures (bool yn);
273         bool show_measures () const { return _show_measures; }
274
275         /* analysis window */
276
277         void analyze_region_selection();
278         void analyze_range_selection();
279
280         /* export */
281
282         void export_audio ();
283         void stem_export ();
284         void export_selection ();
285         void export_range ();
286         void export_region ();
287
288         bool process_midi_export_dialog (MidiExportDialog& dialog, boost::shared_ptr<ARDOUR::MidiRegion> midi_region);
289
290         void               set_zoom_focus (Editing::ZoomFocus);
291         Editing::ZoomFocus get_zoom_focus () const { return zoom_focus; }
292         framecnt_t         get_current_zoom () const { return samples_per_pixel; }
293         void               cycle_zoom_focus ();
294         void temporal_zoom_step (bool coarser);
295         void temporal_zoom_step_mouse_focus (bool coarser);
296         void ensure_time_axis_view_is_visible (TimeAxisView const & tav, bool at_top);
297         void tav_zoom_step (bool coarser);
298         void tav_zoom_smooth (bool coarser, bool force_all);
299
300         /* stuff that AudioTimeAxisView and related classes use */
301
302         PlaylistSelector& playlist_selector() const;
303         void clear_playlist (boost::shared_ptr<ARDOUR::Playlist>);
304
305         void new_playlists (TimeAxisView* v);
306         void copy_playlists (TimeAxisView* v);
307         void clear_playlists (TimeAxisView* v);
308
309         void get_onscreen_tracks (TrackViewList&);
310
311         Width editor_mixer_strip_width;
312         void maybe_add_mixer_strip_width (XMLNode&);
313         void show_editor_mixer (bool yn);
314         void create_editor_mixer ();
315         void show_editor_list (bool yn);
316         void set_selected_mixer_strip (TimeAxisView&);
317         void mixer_strip_width_changed ();
318         void hide_track_in_display (TimeAxisView* tv, bool apply_to_selection = false);
319
320         /* nudge is initiated by transport controls owned by ARDOUR_UI */
321
322         framecnt_t get_nudge_distance (framepos_t pos, framecnt_t& next);
323         framecnt_t get_paste_offset (framepos_t pos, unsigned paste_count, framecnt_t duration);
324         unsigned get_grid_beat_divisions(framepos_t position);
325         Evoral::Beats get_grid_type_as_beats (bool& success, framepos_t position);
326
327         void nudge_forward (bool next, bool force_playhead);
328         void nudge_backward (bool next, bool force_playhead);
329
330         /* nudge initiated from context menu */
331
332         void nudge_forward_capture_offset ();
333         void nudge_backward_capture_offset ();
334
335         void sequence_regions ();
336
337         /* playhead/screen stuff */
338
339         void set_stationary_playhead (bool yn);
340         void toggle_stationary_playhead ();
341         bool stationary_playhead() const { return _stationary_playhead; }
342
343         void set_follow_playhead (bool yn, bool catch_up = true);
344         void toggle_follow_playhead ();
345         bool follow_playhead() const { return _follow_playhead; }
346         bool dragging_playhead () const { return _dragging_playhead; }
347
348         void toggle_zero_line_visibility ();
349         void set_summary ();
350         void set_group_tabs ();
351         void toggle_measure_visibility ();
352
353         /* fades */
354
355         void toggle_region_fades (int dir);
356         void update_region_fade_visibility ();
357
358         /* redirect shared ops menu. caller must free returned menu */
359
360         Gtk::Menu* redirect_menu ();
361
362         /* floating windows/transient */
363
364         void ensure_float (Gtk::Window&);
365
366         void scroll_tracks_down_line ();
367         void scroll_tracks_up_line ();
368
369         bool scroll_up_one_track (bool skip_child_views = false);
370         bool scroll_down_one_track (bool skip_child_views = false);
371
372         void scroll_left_step ();
373         void scroll_right_step ();
374
375         void scroll_left_half_page ();
376         void scroll_right_half_page ();
377
378         void prepare_for_cleanup ();
379         void finish_cleanup ();
380
381         void maximise_editing_space();
382         void restore_editing_space();
383
384         double get_y_origin () const;
385         void reset_x_origin (framepos_t);
386         void reset_x_origin_to_follow_playhead ();
387         void reset_y_origin (double);
388         void reset_zoom (framecnt_t);
389         void reposition_and_zoom (framepos_t, double);
390
391         framepos_t get_preferred_edit_position (Editing::EditIgnoreOption = Editing::EDIT_IGNORE_NONE,
392                                                 bool use_context_click = false,
393                                                 bool from_outside_canvas = false);
394
395         bool update_mouse_speed ();
396         bool decelerate_mouse_speed ();
397
398         void toggle_meter_updating();
399
400         void show_rhythm_ferret();
401
402         void goto_visual_state (uint32_t);
403         void save_visual_state (uint32_t);
404
405         void queue_draw_resize_line (int at);
406         void start_resize_line_ops ();
407         void end_resize_line_ops ();
408
409         TrackViewList const & get_track_views () {
410                 return track_views;
411         }
412
413         int get_regionview_count_from_region_list (boost::shared_ptr<ARDOUR::Region>);
414
415         void do_ptimport(std::string path, ARDOUR::SrcQuality quality);
416
417         void do_import (std::vector<std::string>              paths,
418                         Editing::ImportDisposition            disposition,
419                         Editing::ImportMode                   mode,
420                         ARDOUR::SrcQuality                    quality,
421                         framepos_t&                           pos,
422                         boost::shared_ptr<ARDOUR::PluginInfo> instrument = boost::shared_ptr<ARDOUR::PluginInfo>());
423
424         void do_embed (std::vector<std::string>              paths,
425                        Editing::ImportDisposition            disposition,
426                        Editing::ImportMode                   mode,
427                        framepos_t&                           pos,
428                        boost::shared_ptr<ARDOUR::PluginInfo> instrument = boost::shared_ptr<ARDOUR::PluginInfo>());
429
430         void get_regions_corresponding_to (boost::shared_ptr<ARDOUR::Region> region, std::vector<RegionView*>& regions, bool src_comparison);
431
432         void get_regionviews_by_id (PBD::ID const id, RegionSelection & regions) const;
433         void get_per_region_note_selection (std::list<std::pair<PBD::ID, std::set<boost::shared_ptr<Evoral::Note<Evoral::Beats> > > > >&) const;
434
435         void center_screen (framepos_t);
436
437         TrackViewList axis_views_from_routes (boost::shared_ptr<ARDOUR::RouteList>) const;
438
439         void snap_to (framepos_t&       first,
440                       ARDOUR::RoundMode direction = ARDOUR::RoundNearest,
441                       bool              for_mark  = false,
442                       bool              ensure_snap = false);
443
444         void snap_to_with_modifier (framepos_t&       first,
445                                     GdkEvent const *  ev,
446                                     ARDOUR::RoundMode direction = ARDOUR::RoundNearest,
447                                     bool              for_mark  = false);
448
449         void snap_to (framepos_t&       first,
450                       framepos_t&       last,
451                       ARDOUR::RoundMode direction = ARDOUR::RoundNearest,
452                       bool              for_mark  = false);
453
454         void begin_selection_op_history ();
455         void begin_reversible_selection_op (std::string cmd_name);
456         void commit_reversible_selection_op ();
457         void undo_selection_op ();
458         void redo_selection_op ();
459         void begin_reversible_command (std::string cmd_name);
460         void begin_reversible_command (GQuark);
461         void abort_reversible_command ();
462         void commit_reversible_command ();
463
464         DragManager* drags () const {
465                 return _drags;
466         }
467
468         void maybe_autoscroll (bool, bool, bool);
469         bool autoscroll_active() const;
470
471         Gdk::Cursor* get_canvas_cursor () const;
472
473         void set_current_trimmable (boost::shared_ptr<ARDOUR::Trimmable>);
474         void set_current_movable (boost::shared_ptr<ARDOUR::Movable>);
475
476         MouseCursors const * cursors () const {
477                 return _cursors;
478         }
479
480         VerboseCursor* verbose_cursor () const {
481                 return _verbose_cursor;
482         }
483
484         double clamp_verbose_cursor_x (double);
485         double clamp_verbose_cursor_y (double);
486
487         void get_pointer_position (double &, double &) const;
488
489         /** Context for mouse entry (stored in a stack). */
490         struct EnterContext {
491                 ItemType                         item_type;
492                 boost::shared_ptr<CursorContext> cursor_ctx;
493         };
494
495         /** Get the topmost enter context for the given item type.
496          *
497          * This is used to change the cursor associated with a given enter context,
498          * which may not be on the top of the stack.
499          */
500         EnterContext* get_enter_context(ItemType type);
501
502         TimeAxisView* stepping_axis_view () {
503                 return _stepping_axis_view;
504         }
505
506         void set_stepping_axis_view (TimeAxisView* v) {
507                 _stepping_axis_view = v;
508         }
509
510         ArdourCanvas::Container* get_trackview_group () const { return _trackview_group; }
511         ArdourCanvas::Container* get_noscroll_group () const { return no_scroll_group; }
512         ArdourCanvas::ScrollGroup* get_hscroll_group () const { return h_scroll_group; }
513         ArdourCanvas::ScrollGroup* get_hvscroll_group () const { return hv_scroll_group; }
514         ArdourCanvas::ScrollGroup* get_cursor_scroll_group () const { return cursor_scroll_group; }
515
516         ArdourCanvas::GtkCanvasViewport* get_track_canvas () const;
517
518         void override_visible_track_count ();
519
520         /* Ruler metrics methods */
521
522         void metric_get_timecode (std::vector<ArdourCanvas::Ruler::Mark>&, gdouble, gdouble, gint);
523         void metric_get_bbt (std::vector<ArdourCanvas::Ruler::Mark>&, gdouble, gdouble, gint);
524         void metric_get_samples (std::vector<ArdourCanvas::Ruler::Mark>&, gdouble, gdouble, gint);
525         void metric_get_minsec (std::vector<ArdourCanvas::Ruler::Mark>&, gdouble, gdouble, gint);
526
527         /* editing operations that need to be public */
528         void mouse_add_new_marker (framepos_t where, bool is_cd=false);
529         void split_regions_at (framepos_t, RegionSelection&);
530         void split_region_at_points (boost::shared_ptr<ARDOUR::Region>, ARDOUR::AnalysisFeatureList&, bool can_ferret, bool select_new = false);
531         RegionSelection get_regions_from_selection_and_mouse (framepos_t);
532
533         void mouse_add_new_tempo_event (framepos_t where);
534         void mouse_add_new_meter_event (framepos_t where);
535         void edit_tempo_section (ARDOUR::TempoSection*);
536         void edit_meter_section (ARDOUR::MeterSection*);
537
538   protected:
539         void map_transport_state ();
540         void map_position_change (framepos_t);
541
542         void on_realize();
543
544         void suspend_route_redisplay ();
545         void resume_route_redisplay ();
546
547   private:
548
549         void color_handler ();
550
551         bool                 constructed;
552
553         // to keep track of the playhead position for control_scroll
554         boost::optional<framepos_t> _control_scroll_target;
555
556         PlaylistSelector* _playlist_selector;
557
558         typedef std::pair<TimeAxisView*,XMLNode*> TAVState;
559
560         struct VisualState {
561             VisualState (bool with_tracks);
562             ~VisualState ();
563             double              y_position;
564             framecnt_t          samples_per_pixel;
565             framepos_t          leftmost_frame;
566             Editing::ZoomFocus  zoom_focus;
567             GUIObjectState*     gui_state;
568         };
569
570         std::list<VisualState*> undo_visual_stack;
571         std::list<VisualState*> redo_visual_stack;
572         VisualState* current_visual_state (bool with_tracks = true);
573         void undo_visual_state ();
574         void redo_visual_state ();
575         void use_visual_state (VisualState&);
576         bool no_save_visual;
577         void swap_visual_state ();
578
579         std::vector<VisualState*> visual_states;
580         void start_visual_state_op (uint32_t n);
581         void cancel_visual_state_op (uint32_t n);
582
583         framepos_t         leftmost_frame;
584         framecnt_t         samples_per_pixel;
585         Editing::ZoomFocus zoom_focus;
586
587         void set_samples_per_pixel (framecnt_t);
588
589         Editing::MouseMode mouse_mode;
590         Editing::SnapType  pre_internal_snap_type;
591         Editing::SnapMode  pre_internal_snap_mode;
592         Editing::SnapType  internal_snap_type;
593         Editing::SnapMode  internal_snap_mode;
594         Editing::MouseMode effective_mouse_mode () const;
595
596         enum JoinObjectRangeState {
597                 JOIN_OBJECT_RANGE_NONE,
598                 /** `join object/range' mode is active and the mouse is over a place where object mode should happen */
599                 JOIN_OBJECT_RANGE_OBJECT,
600                 /** `join object/range' mode is active and the mouse is over a place where range mode should happen */
601                 JOIN_OBJECT_RANGE_RANGE
602         };
603
604         JoinObjectRangeState _join_object_range_state;
605
606         void update_join_object_range_location (double);
607
608         boost::optional<int>  pre_notebook_shrink_pane_width;
609
610         void pane_allocation_handler (Gtk::Allocation&, Gtk::Paned*);
611
612         Gtk::Notebook _the_notebook;
613         bool _notebook_shrunk;
614         void add_notebook_page (std::string const &, Gtk::Widget &);
615         bool notebook_tab_clicked (GdkEventButton *, Gtk::Widget *);
616
617         Gtk::HPaned   edit_pane;
618         Gtk::VPaned   editor_summary_pane;
619
620         Gtk::EventBox meter_base;
621         Gtk::HBox     meter_box;
622         Gtk::EventBox marker_base;
623         Gtk::HBox     marker_box;
624         Gtk::VBox     scrollers_rulers_markers_box;
625
626         void location_changed (ARDOUR::Location *);
627         void location_flags_changed (ARDOUR::Location *);
628         void refresh_location_display ();
629         void refresh_location_display_internal (const ARDOUR::Locations::LocationList&);
630         void add_new_location (ARDOUR::Location *);
631         ArdourCanvas::Container* add_new_location_internal (ARDOUR::Location *);
632         void location_gone (ARDOUR::Location *);
633         void remove_marker (ArdourCanvas::Item&, GdkEvent*);
634         gint really_remove_marker (ARDOUR::Location* loc);
635         void goto_nth_marker (int nth);
636         void trigger_script (int nth);
637         void toggle_marker_lines ();
638         void set_marker_line_visibility (bool);
639
640         uint32_t location_marker_color;
641         uint32_t location_range_color;
642         uint32_t location_loop_color;
643         uint32_t location_punch_color;
644         uint32_t location_cd_marker_color;
645
646         struct LocationMarkers {
647                 ArdourMarker* start;
648                 ArdourMarker* end;
649                 bool    valid;
650
651                 LocationMarkers () : start(0), end(0), valid (true) {}
652
653                 ~LocationMarkers ();
654
655                 void hide ();
656                 void show ();
657
658                 void set_show_lines (bool);
659                 void set_selected (bool);
660                 void canvas_height_set (double);
661                 void setup_lines ();
662
663                 void set_name (const std::string&);
664                 void set_position (framepos_t start, framepos_t end = 0);
665                 void set_color_rgba (uint32_t);
666         };
667
668         LocationMarkers  *find_location_markers (ARDOUR::Location *) const;
669         ARDOUR::Location* find_location_from_marker (ArdourMarker *, bool& is_start) const;
670         ArdourMarker* find_marker_from_location_id (PBD::ID const &, bool) const;
671         ArdourMarker* entered_marker;
672         bool _show_marker_lines;
673
674         typedef std::map<ARDOUR::Location*,LocationMarkers *> LocationMarkerMap;
675         LocationMarkerMap location_markers;
676
677         void update_marker_labels ();
678         void update_marker_labels (ArdourCanvas::Container *);
679         void check_marker_label (ArdourMarker *);
680
681         /** A set of lists of Markers that are in each of the canvas groups
682          *  for the marker sections at the top of the editor.  These lists
683          *  are kept sorted in time order between marker movements, so that after
684          *  a marker has moved we can decide whether we need to update the labels
685          *  for all markers or for just a few.
686          */
687         std::map<ArdourCanvas::Container *, std::list<ArdourMarker *> > _sorted_marker_lists;
688         void remove_sorted_marker (ArdourMarker *);
689
690         void hide_marker (ArdourCanvas::Item*, GdkEvent*);
691         void clear_marker_display ();
692         void mouse_add_new_range (framepos_t);
693         void mouse_add_new_loop (framepos_t);
694         void mouse_add_new_punch (framepos_t);
695         bool choose_new_marker_name(std::string &name);
696         void update_cd_marker_display ();
697         void ensure_cd_marker_updated (LocationMarkers * lam, ARDOUR::Location * location);
698
699         TimeAxisView*      clicked_axisview;
700         RouteTimeAxisView* clicked_routeview;
701         /** The last RegionView that was clicked on, or 0 if the last click was not
702          * on a RegionView.  This is set up by the canvas event handlers in
703          * editor_canvas_events.cc
704          */
705         RegionView*        clicked_regionview;
706         RegionSelection    latest_regionviews;
707         uint32_t           clicked_selection;
708         ControlPoint*      clicked_control_point;
709
710         void sort_track_selection (TrackViewList&);
711
712         void get_equivalent_regions (RegionView* rv, std::vector<RegionView*> &, PBD::PropertyID) const;
713         RegionSelection get_equivalent_regions (RegionSelection &, PBD::PropertyID) const;
714         void mapover_tracks (sigc::slot<void,RouteTimeAxisView&,uint32_t> sl, TimeAxisView*, PBD::PropertyID) const;
715         void mapover_tracks_with_unique_playlists (sigc::slot<void,RouteTimeAxisView&,uint32_t> sl, TimeAxisView*, PBD::PropertyID) const;
716
717         /* functions to be passed to mapover_tracks(), possibly with sigc::bind()-supplied arguments */
718         void mapped_get_equivalent_regions (RouteTimeAxisView&, uint32_t, RegionView *, std::vector<RegionView*>*) const;
719         void mapped_use_new_playlist (RouteTimeAxisView&, uint32_t, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
720         void mapped_use_copy_playlist (RouteTimeAxisView&, uint32_t, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
721         void mapped_clear_playlist (RouteTimeAxisView&, uint32_t);
722
723         void button_selection (ArdourCanvas::Item* item, GdkEvent* event, ItemType item_type);
724         bool button_release_can_deselect;
725         bool _mouse_changed_selection;
726
727         void catch_vanishing_regionview (RegionView *);
728
729         void set_selected_track (TimeAxisView&, Selection::Operation op = Selection::Set, bool no_remove=false);
730         void select_all_tracks ();
731         bool select_all_internal_edit (Selection::Operation);
732
733         bool set_selected_control_point_from_click (bool press, Selection::Operation op = Selection::Set);
734         void set_selected_track_from_click (bool press, Selection::Operation op = Selection::Set, bool no_remove=false);
735         void set_selected_track_as_side_effect (Selection::Operation op);
736         bool set_selected_regionview_from_click (bool press, Selection::Operation op = Selection::Set);
737
738         bool set_selected_regionview_from_map_event (GdkEventAny*, StreamView*, boost::weak_ptr<ARDOUR::Region>);
739         void collect_new_region_view (RegionView *);
740         void collect_and_select_new_region_view (RegionView *);
741
742         Gtk::Menu track_context_menu;
743         Gtk::Menu track_region_context_menu;
744         Gtk::Menu track_selection_context_menu;
745
746         Gtk::MenuItem* region_edit_menu_split_item;
747         Gtk::MenuItem* region_edit_menu_split_multichannel_item;
748         Gtk::Menu * track_region_edit_playlist_menu;
749         Gtk::Menu * track_edit_playlist_submenu;
750         Gtk::Menu * track_selection_edit_playlist_submenu;
751
752         GdkEvent context_click_event;
753
754         void popup_track_context_menu (int, int, ItemType, bool);
755         Gtk::Menu* build_track_context_menu ();
756         Gtk::Menu* build_track_bus_context_menu ();
757         Gtk::Menu* build_track_region_context_menu ();
758         Gtk::Menu* build_track_selection_context_menu ();
759         void add_dstream_context_items (Gtk::Menu_Helpers::MenuList&);
760         void add_bus_context_items (Gtk::Menu_Helpers::MenuList&);
761         void add_region_context_items (Gtk::Menu_Helpers::MenuList&, boost::shared_ptr<ARDOUR::Track>);
762         void add_selection_context_items (Gtk::Menu_Helpers::MenuList&);
763         Gtk::MenuItem* _popup_region_menu_item;
764
765         void popup_control_point_context_menu (ArdourCanvas::Item *, GdkEvent *);
766         Gtk::Menu _control_point_context_menu;
767
768         void popup_note_context_menu (ArdourCanvas::Item *, GdkEvent *);
769         Gtk::Menu _note_context_menu;
770
771         void add_routes (ARDOUR::RouteList&);
772         void timeaxisview_deleted (TimeAxisView *);
773
774         Gtk::HBox global_hpacker;
775         Gtk::VBox global_vpacker;
776
777         /* Cursor stuff.  Do not use directly, use via CursorContext. */
778         friend class CursorContext;
779         std::vector<Gdk::Cursor*> _cursor_stack;
780         void set_canvas_cursor (Gdk::Cursor*);
781         size_t push_canvas_cursor (Gdk::Cursor*);
782         void pop_canvas_cursor ();
783
784         Gdk::Cursor* which_grabber_cursor () const;
785         Gdk::Cursor* which_track_cursor () const;
786         Gdk::Cursor* which_mode_cursor () const;
787         Gdk::Cursor* which_trim_cursor (bool left_side) const;
788         Gdk::Cursor* which_canvas_cursor (ItemType type) const;
789
790         /** Push the appropriate enter/cursor context on item entry. */
791         void choose_canvas_cursor_on_entry (ItemType);
792
793         /** Update all enter cursors based on current settings. */
794         void update_all_enter_cursors ();
795
796         ArdourCanvas::GtkCanvas* _track_canvas;
797         ArdourCanvas::GtkCanvasViewport* _track_canvas_viewport;
798
799         bool within_track_canvas;
800
801         friend class VerboseCursor;
802         VerboseCursor* _verbose_cursor;
803
804         void parameter_changed (std::string);
805         void ui_parameter_changed (std::string);
806
807         Gtk::EventBox             time_bars_event_box;
808         Gtk::VBox                 time_bars_vbox;
809
810         ArdourCanvas::Container      *tempo_group;
811         ArdourCanvas::Container      *meter_group;
812         ArdourCanvas::Container      *marker_group;
813         ArdourCanvas::Container      *range_marker_group;
814         ArdourCanvas::Container      *transport_marker_group;
815         ArdourCanvas::Container*      cd_marker_group;
816
817         /* parent for groups which themselves contain time markers */
818         ArdourCanvas::Container*     _time_markers_group;
819
820         /* The group containing all other groups that are scrolled vertically
821            and horizontally.
822         */
823         ArdourCanvas::ScrollGroup* hv_scroll_group;
824
825         /* The group containing all other groups that are scrolled horizontally ONLY
826         */
827         ArdourCanvas::ScrollGroup* h_scroll_group;
828
829         /* Scroll group for cursors, scrolled horizontally, above everything else
830         */
831         ArdourCanvas::ScrollGroup* cursor_scroll_group;
832
833         /* The group containing all trackviews. */
834         ArdourCanvas::Container* no_scroll_group;
835
836         /* The group containing all trackviews. */
837         ArdourCanvas::Container* _trackview_group;
838
839         /* The group holding things (mostly regions) while dragging so they
840          * are on top of everything else
841          */
842         ArdourCanvas::Container* _drag_motion_group;
843
844         /* a rect that sits at the bottom of all tracks to act as a drag-no-drop/clickable
845          * target area.
846          */
847         ArdourCanvas::Rectangle* _canvas_drop_zone;
848         bool canvas_drop_zone_event (GdkEvent* event);
849
850         enum RulerType {
851                 ruler_metric_timecode = 0,
852                 ruler_metric_bbt = 1,
853                 ruler_metric_samples = 2,
854                 ruler_metric_minsec = 3,
855
856                 ruler_time_tempo = 4,
857                 ruler_time_meter = 5,
858                 ruler_time_marker = 6,
859                 ruler_time_range_marker = 7,
860                 ruler_time_transport_marker = 8,
861                 ruler_time_cd_marker = 9,
862                 ruler_video_timeline = 10,
863         };
864
865         Glib::RefPtr<Gtk::ToggleAction> ruler_timecode_action;
866         Glib::RefPtr<Gtk::ToggleAction> ruler_bbt_action;
867         Glib::RefPtr<Gtk::ToggleAction> ruler_samples_action;
868         Glib::RefPtr<Gtk::ToggleAction> ruler_minsec_action;
869         Glib::RefPtr<Gtk::ToggleAction> ruler_tempo_action;
870         Glib::RefPtr<Gtk::ToggleAction> ruler_meter_action;
871         Glib::RefPtr<Gtk::ToggleAction> ruler_marker_action;
872         Glib::RefPtr<Gtk::ToggleAction> ruler_range_action;
873         Glib::RefPtr<Gtk::ToggleAction> ruler_loop_punch_action;
874         Glib::RefPtr<Gtk::ToggleAction> ruler_cd_marker_action;
875         bool                            no_ruler_shown_update;
876
877         Gtk::Widget * ruler_grabbed_widget;
878
879         RulerDialog* ruler_dialog;
880
881         void initialize_rulers ();
882         void update_just_timecode ();
883         void compute_fixed_ruler_scale (); //calculates the RulerScale of the fixed rulers
884         void update_fixed_rulers ();
885         void update_tempo_based_rulers (ARDOUR::TempoMap::BBTPointList::const_iterator& begin,
886                                         ARDOUR::TempoMap::BBTPointList::const_iterator& end);
887         void popup_ruler_menu (framepos_t where = 0, ItemType type = RegionItem);
888         void update_ruler_visibility ();
889         void set_ruler_visible (RulerType, bool);
890         void toggle_ruler_visibility (RulerType rt);
891         void ruler_toggled (int);
892         bool ruler_label_button_release (GdkEventButton*);
893         void store_ruler_visibility ();
894         void restore_ruler_visibility ();
895
896
897
898                 enum MinsecRulerScale {
899                 minsec_show_msecs,
900                 minsec_show_seconds,
901                 minsec_show_minutes,
902                 minsec_show_hours,
903                 minsec_show_many_hours
904         };
905
906         MinsecRulerScale minsec_ruler_scale;
907
908         framecnt_t minsec_mark_interval;
909         gint minsec_mark_modulo;
910         gint minsec_nmarks;
911         void set_minsec_ruler_scale (framepos_t, framepos_t);
912
913         enum TimecodeRulerScale {
914                 timecode_show_bits,
915                 timecode_show_frames,
916                 timecode_show_seconds,
917                 timecode_show_minutes,
918                 timecode_show_hours,
919                 timecode_show_many_hours
920         };
921
922         TimecodeRulerScale timecode_ruler_scale;
923
924         gint timecode_mark_modulo;
925         gint timecode_nmarks;
926         void set_timecode_ruler_scale (framepos_t, framepos_t);
927
928         framecnt_t _samples_ruler_interval;
929         void set_samples_ruler_scale (framepos_t, framepos_t);
930
931         enum BBTRulerScale {
932                 bbt_show_many,
933                 bbt_show_64,
934                 bbt_show_16,
935                 bbt_show_4,
936                 bbt_show_1,
937                 bbt_show_beats,
938                 bbt_show_ticks,
939                 bbt_show_ticks_detail,
940                 bbt_show_ticks_super_detail
941         };
942
943         BBTRulerScale bbt_ruler_scale;
944
945         uint32_t bbt_bars;
946         gint bbt_nmarks;
947         uint32_t bbt_bar_helper_on;
948         uint32_t bbt_accent_modulo;
949         void compute_bbt_ruler_scale (framepos_t lower, framepos_t upper,
950                                       ARDOUR::TempoMap::BBTPointList::const_iterator current_bbt_points_begin,
951                                       ARDOUR::TempoMap::BBTPointList::const_iterator current_bbt_points_end);
952
953         ArdourCanvas::Ruler* timecode_ruler;
954         ArdourCanvas::Ruler* bbt_ruler;
955         ArdourCanvas::Ruler* samples_ruler;
956         ArdourCanvas::Ruler* minsec_ruler;
957
958         static double timebar_height;
959         guint32 visible_timebars;
960         Gtk::Menu          *editor_ruler_menu;
961
962         ArdourCanvas::Rectangle* tempo_bar;
963         ArdourCanvas::Rectangle* meter_bar;
964         ArdourCanvas::Rectangle* marker_bar;
965         ArdourCanvas::Rectangle* range_marker_bar;
966         ArdourCanvas::Rectangle* transport_marker_bar;
967         ArdourCanvas::Rectangle* cd_marker_bar;
968
969         Gtk::Label  minsec_label;
970         Gtk::Label  bbt_label;
971         Gtk::Label  timecode_label;
972         Gtk::Label  samples_label;
973         Gtk::Label  tempo_label;
974         Gtk::Label  meter_label;
975         Gtk::Label  mark_label;
976         Gtk::Label  range_mark_label;
977         Gtk::Label  transport_mark_label;
978         Gtk::Label  cd_mark_label;
979
980         /* videtimline related actions */
981         Gtk::Label                videotl_label;
982         ArdourCanvas::Container*      videotl_group;
983         Glib::RefPtr<Gtk::ToggleAction> ruler_video_action;
984         Glib::RefPtr<Gtk::ToggleAction> xjadeo_proc_action;
985         Glib::RefPtr<Gtk::ToggleAction> xjadeo_ontop_action;
986         Glib::RefPtr<Gtk::ToggleAction> xjadeo_timecode_action;
987         Glib::RefPtr<Gtk::ToggleAction> xjadeo_frame_action;
988         Glib::RefPtr<Gtk::ToggleAction> xjadeo_osdbg_action;
989         Glib::RefPtr<Gtk::ToggleAction> xjadeo_fullscreen_action;
990         Glib::RefPtr<Gtk::ToggleAction> xjadeo_letterbox_action;
991         Glib::RefPtr<Gtk::Action> xjadeo_zoom_100;
992         void set_xjadeo_proc ();
993         void toggle_xjadeo_proc (int state=-1);
994         void set_close_video_sensitive (bool onoff);
995         void set_xjadeo_sensitive (bool onoff);
996         void set_xjadeo_viewoption (int);
997         void toggle_xjadeo_viewoption (int what, int state=-1);
998         void toggle_ruler_video (bool onoff) {ruler_video_action->set_active(onoff);}
999         int videotl_bar_height; /* in units of timebar_height; default: 4 */
1000         int get_videotl_bar_height () const { return videotl_bar_height; }
1001         void toggle_region_video_lock ();
1002
1003         friend class EditorCursor;
1004
1005         EditorCursor*        playhead_cursor;
1006
1007         framepos_t get_region_boundary (framepos_t pos, int32_t dir, bool with_selection, bool only_onscreen);
1008
1009         void    cursor_to_region_boundary (bool with_selection, int32_t dir);
1010         void    cursor_to_next_region_boundary (bool with_selection);
1011         void    cursor_to_previous_region_boundary (bool with_selection);
1012         void    cursor_to_next_region_point (EditorCursor*, ARDOUR::RegionPoint);
1013         void    cursor_to_previous_region_point (EditorCursor*, ARDOUR::RegionPoint);
1014         void    cursor_to_region_point (EditorCursor*, ARDOUR::RegionPoint, int32_t dir);
1015         void    cursor_to_selection_start (EditorCursor *);
1016         void    cursor_to_selection_end   (EditorCursor *);
1017
1018         void    selected_marker_to_region_boundary (bool with_selection, int32_t dir);
1019         void    selected_marker_to_next_region_boundary (bool with_selection);
1020         void    selected_marker_to_previous_region_boundary (bool with_selection);
1021         void    selected_marker_to_next_region_point (ARDOUR::RegionPoint);
1022         void    selected_marker_to_previous_region_point (ARDOUR::RegionPoint);
1023         void    selected_marker_to_region_point (ARDOUR::RegionPoint, int32_t dir);
1024         void    selected_marker_to_selection_start ();
1025         void    selected_marker_to_selection_end   ();
1026
1027         void    select_all_selectables_using_cursor (EditorCursor *, bool);
1028         void    select_all_selectables_using_edit (bool, bool);
1029         void    select_all_selectables_between (bool within);
1030         void    select_range_between ();
1031
1032         boost::shared_ptr<ARDOUR::Region> find_next_region (ARDOUR::framepos_t, ARDOUR::RegionPoint, int32_t dir, TrackViewList&, TimeAxisView ** = 0);
1033         ARDOUR::framepos_t find_next_region_boundary (ARDOUR::framepos_t, int32_t dir, const TrackViewList&);
1034
1035         std::vector<ARDOUR::framepos_t> region_boundary_cache;
1036         void build_region_boundary_cache ();
1037
1038         Gtk::HBox           toplevel_hpacker;
1039
1040         Gtk::HBox           top_hbox;
1041         Gtk::HBox           bottom_hbox;
1042
1043         Gtk::Table          edit_packer;
1044
1045         /** the adjustment that controls the overall editor vertical scroll position */
1046         Gtk::Adjustment     vertical_adjustment;
1047         Gtk::Adjustment     horizontal_adjustment;
1048
1049         Gtk::Adjustment     unused_adjustment; // yes, really; Gtk::Layout constructor requires refs
1050         Gtk::Layout         controls_layout;
1051         bool control_layout_scroll (GdkEventScroll* ev);
1052         void reset_controls_layout_width ();
1053         void reset_controls_layout_height (int32_t height);
1054
1055         enum Direction {
1056                 LEFT,
1057                 RIGHT,
1058                 UP,
1059                 DOWN
1060         };
1061
1062         bool scroll_press (Direction);
1063         void scroll_release ();
1064         sigc::connection _scroll_connection;
1065         int _scroll_callbacks;
1066
1067         double _visible_canvas_width;
1068         double _visible_canvas_height; ///< height of the visible area of the track canvas
1069         double _full_canvas_height;    ///< full height of the canvas
1070
1071         bool track_canvas_map_handler (GdkEventAny*);
1072
1073         bool edit_controls_button_release (GdkEventButton*);
1074         Gtk::Menu *edit_controls_left_menu;
1075         Gtk::Menu *edit_controls_right_menu;
1076
1077         Gtk::VBox           track_canvas_vbox;
1078         Gtk::VBox           edit_controls_vbox;
1079         Gtk::HBox           edit_controls_hbox;
1080
1081         void control_vertical_zoom_in_all ();
1082         void control_vertical_zoom_out_all ();
1083         void control_vertical_zoom_in_selected ();
1084         void control_vertical_zoom_out_selected ();
1085         void control_step_tracks_up ();
1086         void control_step_tracks_down ();
1087         void control_view (uint32_t);
1088         void control_scroll (float);
1089         void control_select (uint32_t rid, Selection::Operation);
1090         void control_unselect ();
1091         void access_action (std::string,std::string);
1092         bool deferred_control_scroll (framepos_t);
1093         sigc::connection control_scroll_connection;
1094
1095         void tie_vertical_scrolling ();
1096         void set_horizontal_position (double);
1097         double horizontal_position () const;
1098
1099         struct VisualChange {
1100                 enum Type {
1101                         TimeOrigin = 0x1,
1102                         ZoomLevel = 0x2,
1103                         YOrigin = 0x4
1104                 };
1105
1106                 Type       pending;
1107                 framepos_t time_origin;
1108                 framecnt_t samples_per_pixel;
1109                 double     y_origin;
1110
1111                 int idle_handler_id;
1112                 /** true if we are currently in the idle handler */
1113                 bool being_handled;
1114
1115                 VisualChange() : pending ((VisualChange::Type) 0), time_origin (0), samples_per_pixel (0), idle_handler_id (-1), being_handled (false) {}
1116                 void add (Type t) {
1117                         pending = Type (pending | t);
1118                 }
1119         };
1120
1121         VisualChange pending_visual_change;
1122
1123         static int _idle_visual_changer (void *arg);
1124         int idle_visual_changer ();
1125         void visual_changer (const VisualChange&);
1126         void ensure_visual_change_idle_handler ();
1127
1128         /* track views */
1129         TrackViewList track_views;
1130         std::pair<TimeAxisView*, double> trackview_by_y_position (double, bool trackview_relative_offset = true) const;
1131         RouteTimeAxisView* axis_view_from_route (boost::shared_ptr<ARDOUR::Route>) const;
1132
1133         TrackViewList get_tracks_for_range_action () const;
1134
1135         sigc::connection super_rapid_screen_update_connection;
1136         framepos_t last_update_frame;
1137         void center_screen_internal (framepos_t, float);
1138
1139         void super_rapid_screen_update ();
1140
1141         void session_going_away ();
1142
1143         framepos_t cut_buffer_start;
1144         framecnt_t cut_buffer_length;
1145
1146         boost::shared_ptr<CursorContext> _press_cursor_ctx;  ///< Button press cursor context
1147
1148         boost::weak_ptr<ARDOUR::Trimmable> _trimmable;
1149         boost::weak_ptr<ARDOUR::Movable> _movable;
1150
1151         bool typed_event (ArdourCanvas::Item*, GdkEvent*, ItemType);
1152         bool button_press_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1153         bool button_press_handler_1 (ArdourCanvas::Item *, GdkEvent *, ItemType);
1154         bool button_press_handler_2 (ArdourCanvas::Item *, GdkEvent *, ItemType);
1155         bool button_release_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1156         bool button_double_click_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1157         bool button_press_dispatch (GdkEventButton*);
1158         bool button_release_dispatch (GdkEventButton*);
1159         bool motion_handler (ArdourCanvas::Item*, GdkEvent*, bool from_autoscroll = false);
1160         bool enter_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1161         bool leave_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1162         bool key_press_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1163         bool key_release_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1164
1165         Gtkmm2ext::Bindings* button_bindings;
1166         XMLNode* button_settings () const;
1167
1168         /* KEYMAP HANDLING */
1169
1170         void register_actions ();
1171         void register_region_actions ();
1172
1173         void load_bindings ();
1174
1175         /* CUT/COPY/PASTE */
1176
1177         framepos_t last_paste_pos;
1178         unsigned   paste_count;
1179
1180         void cut_copy (Editing::CutCopyOp);
1181         bool can_cut_copy () const;
1182         void cut_copy_points (Editing::CutCopyOp, Evoral::Beats earliest=Evoral::Beats(), bool midi=false);
1183         void cut_copy_regions (Editing::CutCopyOp, RegionSelection&);
1184         void cut_copy_ranges (Editing::CutCopyOp);
1185         void cut_copy_midi (Editing::CutCopyOp);
1186
1187         void mouse_paste ();
1188         void paste_internal (framepos_t position, float times);
1189
1190         /* EDITING OPERATIONS */
1191
1192         void reset_point_selection ();
1193         void toggle_region_lock ();
1194         void toggle_opaque_region ();
1195         void toggle_record_enable ();
1196         void toggle_solo ();
1197         void toggle_solo_isolate ();
1198         void toggle_mute ();
1199         void toggle_region_lock_style ();
1200
1201         enum LayerOperation {
1202                 Raise,
1203                 RaiseToTop,
1204                 Lower,
1205                 LowerToBottom
1206         };
1207
1208         void do_layer_operation (LayerOperation);
1209         void raise_region ();
1210         void raise_region_to_top ();
1211         void change_region_layering_order (bool from_context_menu);
1212         void lower_region ();
1213         void lower_region_to_bottom ();
1214         void split_region_at_transients ();
1215         void crop_region_to_selection ();
1216         void crop_region_to (framepos_t start, framepos_t end);
1217         void set_sync_point (framepos_t, const RegionSelection&);
1218         void set_region_sync_position ();
1219         void remove_region_sync();
1220         void align_regions (ARDOUR::RegionPoint);
1221         void align_regions_relative (ARDOUR::RegionPoint point);
1222         void align_region (boost::shared_ptr<ARDOUR::Region>, ARDOUR::RegionPoint point, framepos_t position);
1223         void align_region_internal (boost::shared_ptr<ARDOUR::Region>, ARDOUR::RegionPoint point, framepos_t position);
1224         void remove_selected_regions ();
1225         void remove_clicked_region ();
1226         void show_region_properties ();
1227         void show_midi_list_editor ();
1228         void rename_region ();
1229         void duplicate_some_regions (RegionSelection&, float times);
1230         void duplicate_selection (float times);
1231         void region_fill_selection ();
1232         void combine_regions ();
1233         void uncombine_regions ();
1234
1235         void region_fill_track ();
1236         void audition_playlist_region_standalone (boost::shared_ptr<ARDOUR::Region>);
1237         void split_multichannel_region();
1238         void reverse_region ();
1239         void strip_region_silence ();
1240         void normalize_region ();
1241         void reset_region_scale_amplitude ();
1242         void adjust_region_gain (bool up);
1243         void quantize_region ();
1244         void quantize_regions (const RegionSelection& rs);
1245         void legatize_region (bool shrink_only);
1246         void legatize_regions (const RegionSelection& rs, bool shrink_only);
1247         void transform_region ();
1248         void transform_regions (const RegionSelection& rs);
1249         void transpose_region ();
1250         void transpose_regions (const RegionSelection& rs);
1251         void insert_patch_change (bool from_context);
1252         void fork_region ();
1253
1254         void do_insert_time ();
1255         void insert_time (framepos_t, framecnt_t, Editing::InsertTimeOption, bool, bool, bool, bool, bool, bool);
1256
1257         void do_remove_time ();
1258         void remove_time (framepos_t pos, framecnt_t distance, Editing::InsertTimeOption opt, bool ignore_music_glue, bool markers_too,
1259                         bool glued_markers_too, bool locked_markers_too, bool tempo_too);
1260
1261         void tab_to_transient (bool forward);
1262
1263         void set_tempo_from_region ();
1264         void use_range_as_bar ();
1265
1266         void define_one_bar (framepos_t start, framepos_t end);
1267
1268         void audition_region_from_region_list ();
1269         void hide_region_from_region_list ();
1270         void show_region_in_region_list ();
1271
1272         void naturalize_region ();
1273
1274         void reset_focus ();
1275
1276         void split_region ();
1277
1278         void delete_ ();
1279         void cut ();
1280         void copy ();
1281         void paste (float times, bool from_context_menu = false);
1282
1283         void place_transient ();
1284         void remove_transient (ArdourCanvas::Item* item);
1285         void snap_regions_to_grid ();
1286         void close_region_gaps ();
1287
1288         void keyboard_paste ();
1289
1290         void region_from_selection ();
1291         void create_region_from_selection (std::vector<boost::shared_ptr<ARDOUR::Region> >&);
1292
1293         void play_from_start ();
1294         void play_from_edit_point ();
1295         void play_from_edit_point_and_return ();
1296         void play_selected_region ();
1297         void play_edit_range ();
1298         void play_location (ARDOUR::Location&);
1299         void loop_location (ARDOUR::Location&);
1300
1301         void calc_extra_zoom_edges(framepos_t &start, framepos_t &end);
1302         void temporal_zoom_selection (bool both_axes = false);
1303         void temporal_zoom_region (bool both_axes);
1304         void temporal_zoom_session ();
1305         void temporal_zoom (framecnt_t samples_per_pixel);
1306         void temporal_zoom_by_frame (framepos_t start, framepos_t end);
1307         void temporal_zoom_to_frame (bool coarser, framepos_t frame);
1308
1309         void insert_region_list_selection (float times);
1310
1311         /* PT import */
1312         void external_pt_dialog ();
1313         typedef struct ptflookup {
1314                 uint16_t index1;
1315                 uint16_t index2;
1316                 PBD::ID  id;
1317
1318                 bool operator ==(const struct ptflookup& other) {
1319                         return (this->index1 == other.index1);
1320                 }
1321         } ptflookup_t;
1322
1323         /* import & embed */
1324
1325         void add_external_audio_action (Editing::ImportMode);
1326         void external_audio_dialog ();
1327         void session_import_dialog ();
1328
1329         int  check_whether_and_how_to_import(std::string, bool all_or_nothing = true);
1330         bool check_multichannel_status (const std::vector<std::string>& paths);
1331
1332         SoundFileOmega* sfbrowser;
1333
1334         void bring_in_external_audio (Editing::ImportMode mode,  framepos_t& pos);
1335
1336         bool  idle_drop_paths  (std::vector<std::string> paths, framepos_t frame, double ypos, bool copy);
1337         void  drop_paths_part_two  (const std::vector<std::string>& paths, framepos_t frame, double ypos, bool copy);
1338
1339         int import_sndfiles (std::vector<std::string>              paths,
1340                              Editing::ImportDisposition            disposition,
1341                              Editing::ImportMode                   mode,
1342                              ARDOUR::SrcQuality                    quality,
1343                              framepos_t&                           pos,
1344                              int                                   target_regions,
1345                              int                                   target_tracks,
1346                              boost::shared_ptr<ARDOUR::Track>&     track,
1347                              bool                                  replace,
1348                              boost::shared_ptr<ARDOUR::PluginInfo> instrument = boost::shared_ptr<ARDOUR::PluginInfo>());
1349
1350         int embed_sndfiles (std::vector<std::string>              paths,
1351                             bool                                  multiple_files,
1352                             bool&                                 check_sample_rate,
1353                             Editing::ImportDisposition            disposition,
1354                             Editing::ImportMode                   mode,
1355                             framepos_t&                           pos,
1356                             int                                   target_regions,
1357                             int                                   target_tracks,
1358                             boost::shared_ptr<ARDOUR::Track>&     track,
1359                             boost::shared_ptr<ARDOUR::PluginInfo> instrument = boost::shared_ptr<ARDOUR::PluginInfo>());
1360
1361         int add_sources (std::vector<std::string>              paths,
1362                          ARDOUR::SourceList&                   sources,
1363                          framepos_t&                           pos,
1364                          Editing::ImportDisposition            disposition,
1365                          Editing::ImportMode                   mode,
1366                          int                                   target_regions,
1367                          int                                   target_tracks,
1368                          boost::shared_ptr<ARDOUR::Track>&     track,
1369                          bool                                  add_channel_suffix,
1370                          boost::shared_ptr<ARDOUR::PluginInfo> instrument = boost::shared_ptr<ARDOUR::PluginInfo>());
1371
1372         int finish_bringing_in_material (boost::shared_ptr<ARDOUR::Region>     region,
1373                                          uint32_t                              in_chans,
1374                                          uint32_t                              out_chans,
1375                                          framepos_t&                           pos,
1376                                          Editing::ImportMode                   mode,
1377                                          boost::shared_ptr<ARDOUR::Track>&     existing_track,
1378                                          const std::string&                    new_track_name,
1379                                          boost::shared_ptr<ARDOUR::PluginInfo> instrument);
1380
1381         boost::shared_ptr<ARDOUR::AudioTrack> get_nth_selected_audio_track (int nth) const;
1382         boost::shared_ptr<ARDOUR::MidiTrack> get_nth_selected_midi_track (int nth) const;
1383
1384         void toggle_midi_input_active (bool flip_others);
1385
1386         ARDOUR::InterThreadInfo* current_interthread_info;
1387
1388         AnalysisWindow* analysis_window;
1389
1390         /* import specific info */
1391
1392         struct EditorImportStatus : public ARDOUR::ImportStatus {
1393             Editing::ImportMode mode;
1394             framepos_t pos;
1395             int target_tracks;
1396             int target_regions;
1397             boost::shared_ptr<ARDOUR::Track> track;
1398             bool replace;
1399         };
1400
1401         EditorImportStatus import_status;
1402         static void *_import_thread (void *);
1403         void* import_thread ();
1404         void finish_import ();
1405
1406         /* to support this ... */
1407
1408         void import_audio (bool as_tracks);
1409         void do_import (std::vector<std::string> paths, bool split, bool as_tracks);
1410
1411         void move_to_start ();
1412         void move_to_end ();
1413         void center_playhead ();
1414         void center_edit_point ();
1415         void playhead_forward_to_grid ();
1416         void playhead_backward_to_grid ();
1417         void scroll_playhead (bool forward);
1418         void scroll_backward (float pages=0.8f);
1419         void scroll_forward (float pages=0.8f);
1420         void scroll_tracks_down ();
1421         void scroll_tracks_up ();
1422         void set_mark ();
1423         void clear_markers ();
1424         void clear_ranges ();
1425         void clear_locations ();
1426         void unhide_markers ();
1427         void unhide_ranges ();
1428         void jump_forward_to_mark ();
1429         void jump_backward_to_mark ();
1430         void cursor_align (bool playhead_to_edit);
1431         void toggle_skip_playback ();
1432
1433         void remove_last_capture ();
1434         void select_all_selectables_using_time_selection ();
1435         void select_all_selectables_using_loop();
1436         void select_all_selectables_using_punch();
1437         void set_selection_from_range (ARDOUR::Location&);
1438         void set_selection_from_punch ();
1439         void set_selection_from_loop ();
1440         void set_selection_from_region ();
1441
1442         void add_location_mark (framepos_t where);
1443         void add_location_from_region ();
1444         void add_locations_from_region ();
1445         void add_location_from_selection ();
1446         void set_loop_from_selection (bool play);
1447         void set_punch_from_selection ();
1448         void set_punch_from_region ();
1449
1450         void set_session_start_from_playhead ();
1451         void set_session_end_from_playhead ();
1452         void set_session_extents_from_selection ();
1453
1454         void set_loop_from_region (bool play);
1455
1456         void set_loop_range (framepos_t start, framepos_t end, std::string cmd);
1457         void set_punch_range (framepos_t start, framepos_t end, std::string cmd);
1458
1459         void add_location_from_playhead_cursor ();
1460         void remove_location_at_playhead_cursor ();
1461         bool select_new_marker;
1462
1463         void reverse_selection ();
1464         void edit_envelope ();
1465
1466         double last_scrub_x;
1467         int scrubbing_direction;
1468         int scrub_reversals;
1469         int scrub_reverse_distance;
1470         void scrub (framepos_t, double);
1471
1472         void set_punch_start_from_edit_point ();
1473         void set_punch_end_from_edit_point ();
1474         void set_loop_start_from_edit_point ();
1475         void set_loop_end_from_edit_point ();
1476
1477         void keyboard_selection_begin ( Editing::EditIgnoreOption = Editing::EDIT_IGNORE_NONE );
1478         void keyboard_selection_finish (bool add, Editing::EditIgnoreOption = Editing::EDIT_IGNORE_NONE);
1479         bool have_pending_keyboard_selection;
1480         framepos_t pending_keyboard_selection_start;
1481
1482         void move_range_selection_start_or_end_to_region_boundary (bool, bool);
1483
1484         Editing::SnapType _snap_type;
1485         Editing::SnapMode _snap_mode;
1486
1487         /// Snap threshold in pixels
1488         double snap_threshold;
1489
1490         bool ignore_gui_changes;
1491
1492         DragManager* _drags;
1493
1494         void escape ();
1495         void lock ();
1496         void unlock ();
1497         Gtk::Dialog* lock_dialog;
1498
1499         struct timeval last_event_time;
1500         bool generic_event_handler (GdkEvent*);
1501         bool lock_timeout_callback ();
1502         void start_lock_event_timing ();
1503
1504         Gtk::Menu fade_context_menu;
1505
1506         Gtk::Menu xfade_in_context_menu;
1507         Gtk::Menu xfade_out_context_menu;
1508         void popup_xfade_in_context_menu (int, int, ArdourCanvas::Item*, ItemType);
1509         void popup_xfade_out_context_menu (int, int, ArdourCanvas::Item*, ItemType);
1510         void fill_xfade_menu (Gtk::Menu_Helpers::MenuList& items, bool start);
1511
1512         void set_fade_in_shape (ARDOUR::FadeShape);
1513         void set_fade_out_shape (ARDOUR::FadeShape);
1514
1515         void set_fade_length (bool in);
1516         void set_fade_in_active (bool);
1517         void set_fade_out_active (bool);
1518
1519         void fade_range ();
1520
1521         std::set<boost::shared_ptr<ARDOUR::Playlist> > motion_frozen_playlists;
1522
1523         bool _dragging_playhead;
1524         bool _dragging_edit_point;
1525
1526         void marker_drag_motion_callback (GdkEvent*);
1527         void marker_drag_finished_callback (GdkEvent*);
1528
1529         gint mouse_rename_region (ArdourCanvas::Item*, GdkEvent*);
1530
1531         void add_region_drag (ArdourCanvas::Item*, GdkEvent*, RegionView*);
1532         void start_create_region_grab (ArdourCanvas::Item*, GdkEvent*);
1533         void add_region_copy_drag (ArdourCanvas::Item*, GdkEvent*, RegionView*);
1534         void add_region_brush_drag (ArdourCanvas::Item*, GdkEvent*, RegionView*);
1535         void start_selection_grab (ArdourCanvas::Item*, GdkEvent*);
1536
1537         void region_view_item_click (AudioRegionView&, GdkEventButton*);
1538
1539         bool can_remove_control_point (ArdourCanvas::Item *);
1540         void remove_control_point (ArdourCanvas::Item *);
1541
1542         void mouse_brush_insert_region (RegionView*, framepos_t pos);
1543
1544         /* Canvas event handlers */
1545
1546         bool canvas_scroll_event (GdkEventScroll* event, bool from_canvas);
1547         bool canvas_control_point_event (GdkEvent* event,ArdourCanvas::Item*, ControlPoint*);
1548         bool canvas_line_event (GdkEvent* event,ArdourCanvas::Item*, AutomationLine*);
1549         bool canvas_selection_rect_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1550         bool canvas_selection_start_trim_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1551         bool canvas_selection_end_trim_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1552         bool canvas_start_xfade_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1553         bool canvas_end_xfade_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1554         bool canvas_fade_in_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1555         bool canvas_fade_in_handle_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*, bool trim = false);
1556         bool canvas_fade_out_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1557         bool canvas_fade_out_handle_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*, bool trim = false);
1558         bool canvas_region_view_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1559         bool canvas_wave_view_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1560         bool canvas_frame_handle_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1561         bool canvas_region_view_name_highlight_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1562         bool canvas_region_view_name_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1563         bool canvas_feature_line_event (GdkEvent* event, ArdourCanvas::Item*, RegionView*);
1564         bool canvas_stream_view_event (GdkEvent* event,ArdourCanvas::Item*, RouteTimeAxisView*);
1565         bool canvas_marker_event (GdkEvent* event,ArdourCanvas::Item*, ArdourMarker*);
1566         bool canvas_tempo_marker_event (GdkEvent* event,ArdourCanvas::Item*, TempoMarker*);
1567         bool canvas_meter_marker_event (GdkEvent* event,ArdourCanvas::Item*, MeterMarker*);
1568         bool canvas_automation_track_event(GdkEvent* event, ArdourCanvas::Item*, AutomationTimeAxisView*);
1569         bool canvas_note_event (GdkEvent* event, ArdourCanvas::Item *);
1570
1571         bool canvas_ruler_event (GdkEvent* event, ArdourCanvas::Item *, ItemType);
1572         bool canvas_tempo_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1573         bool canvas_meter_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1574         bool canvas_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1575         bool canvas_range_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1576         bool canvas_transport_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1577         bool canvas_cd_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1578
1579         bool canvas_videotl_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1580         void update_video_timeline (bool flush = false);
1581         void set_video_timeline_height (const int);
1582         bool is_video_timeline_locked ();
1583         void toggle_video_timeline_locked ();
1584         void set_video_timeline_locked (const bool);
1585         void queue_visual_videotimeline_update ();
1586         void embed_audio_from_video (std::string, framepos_t n = 0, bool lock_position_to_video = true);
1587
1588         PBD::Signal0<void> EditorFreeze;
1589         PBD::Signal0<void> EditorThaw;
1590
1591   private:
1592         friend class DragManager;
1593         friend class EditorRouteGroups;
1594         friend class EditorRegions;
1595
1596         /* non-public event handlers */
1597
1598         bool canvas_playhead_cursor_event (GdkEvent* event, ArdourCanvas::Item*);
1599         bool track_canvas_scroll (GdkEventScroll* event);
1600
1601         bool track_canvas_button_press_event (GdkEventButton* event);
1602         bool track_canvas_button_release_event (GdkEventButton* event);
1603         bool track_canvas_motion_notify_event (GdkEventMotion* event);
1604
1605         Gtk::Allocation _canvas_viewport_allocation;
1606         void track_canvas_viewport_allocate (Gtk::Allocation alloc);
1607         void track_canvas_viewport_size_allocated ();
1608         bool track_canvas_drag_motion (Glib::RefPtr<Gdk::DragContext> const &, int, int, guint);
1609         bool track_canvas_key_press (GdkEventKey *);
1610         bool track_canvas_key_release (GdkEventKey *);
1611
1612         void set_playhead_cursor ();
1613
1614         void toggle_region_mute ();
1615
1616         void initialize_canvas ();
1617
1618         void manage_action_scripts ();
1619         void set_script_action_name (int i, const std::string&);
1620
1621         /* display control */
1622
1623         bool _show_measures;
1624         /// true if the editor should follow the playhead, otherwise false
1625         bool _follow_playhead;
1626         /// true if we scroll the tracks rather than the playhead
1627         bool _stationary_playhead;
1628         /// true if we are in fullscreen mode
1629         bool _maximised;
1630
1631         TempoLines* tempo_lines;
1632
1633         ArdourCanvas::Container* global_rect_group;
1634         ArdourCanvas::Container* time_line_group;
1635
1636         void hide_measures ();
1637         void draw_measures (ARDOUR::TempoMap::BBTPointList::const_iterator& begin,
1638                             ARDOUR::TempoMap::BBTPointList::const_iterator& end);
1639
1640         void new_tempo_section ();
1641
1642
1643         void remove_tempo_marker (ArdourCanvas::Item*);
1644         void remove_meter_marker (ArdourCanvas::Item*);
1645         gint real_remove_tempo_marker (ARDOUR::TempoSection*);
1646         gint real_remove_meter_marker (ARDOUR::MeterSection*);
1647
1648         void edit_tempo_marker (TempoMarker&);
1649         void edit_meter_marker (MeterMarker&);
1650         void edit_control_point (ArdourCanvas::Item*);
1651         void edit_notes (MidiRegionView*);
1652
1653         void marker_menu_edit ();
1654         void marker_menu_remove ();
1655         void marker_menu_rename ();
1656         void rename_marker (ArdourMarker *marker);
1657         void toggle_marker_menu_lock ();
1658         void toggle_marker_menu_glue ();
1659         void marker_menu_hide ();
1660         void marker_menu_loop_range ();
1661         void marker_menu_select_all_selectables_using_range ();
1662         void marker_menu_select_using_range ();
1663         void marker_menu_separate_regions_using_location ();
1664         void marker_menu_play_from ();
1665         void marker_menu_play_range ();
1666         void marker_menu_set_playhead ();
1667         void marker_menu_set_from_playhead ();
1668         void marker_menu_set_from_selection (bool force_regions);
1669         void marker_menu_range_to_next ();
1670         void marker_menu_zoom_to_range ();
1671         void new_transport_marker_menu_set_loop ();
1672         void new_transport_marker_menu_set_punch ();
1673         void update_loop_range_view ();
1674         void update_punch_range_view ();
1675         void new_transport_marker_menu_popdown ();
1676         void marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1677         void tempo_or_meter_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1678         void new_transport_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1679         void build_range_marker_menu (bool, bool);
1680         void build_marker_menu (ARDOUR::Location *);
1681         void build_tempo_or_meter_marker_menu (bool);
1682         void build_new_transport_marker_menu ();
1683         void dynamic_cast_marker_object (void*, MeterMarker**, TempoMarker**) const;
1684
1685         Gtk::Menu* tempo_or_meter_marker_menu;
1686         Gtk::Menu* marker_menu;
1687         Gtk::Menu* range_marker_menu;
1688         Gtk::Menu* transport_marker_menu;
1689         Gtk::Menu* new_transport_marker_menu;
1690         Gtk::Menu* cd_marker_menu;
1691         ArdourCanvas::Item* marker_menu_item;
1692
1693         typedef std::list<ArdourMarker*> Marks;
1694         Marks metric_marks;
1695
1696         void remove_metric_marks ();
1697         void draw_metric_marks (const ARDOUR::Metrics& metrics);
1698
1699         void compute_current_bbt_points (framepos_t left, framepos_t right,
1700                                          ARDOUR::TempoMap::BBTPointList::const_iterator& begin,
1701                                          ARDOUR::TempoMap::BBTPointList::const_iterator& end);
1702
1703         void tempo_map_changed (const PBD::PropertyChange&);
1704         void redisplay_tempo (bool immediate_redraw);
1705
1706         uint32_t bbt_beat_subdivision;
1707
1708         /* toolbar */
1709
1710         Gtk::ToggleButton editor_mixer_button;
1711         Gtk::ToggleButton editor_list_button;
1712         void editor_mixer_button_toggled ();
1713         void editor_list_button_toggled ();
1714
1715         ArdourButton              zoom_in_button;
1716         ArdourButton              zoom_out_button;
1717         ArdourButton              zoom_out_full_button;
1718
1719         ArdourButton              tav_expand_button;
1720         ArdourButton              tav_shrink_button;
1721         ArdourDropdown            visible_tracks_selector;
1722         ArdourDropdown            zoom_preset_selector;
1723
1724         int32_t                   _visible_track_count;
1725         void build_track_count_menu ();
1726         void set_visible_track_count (int32_t);
1727
1728         void set_zoom_preset(int64_t);
1729
1730         Gtk::VBox                toolbar_clock_vbox;
1731         Gtk::VBox                toolbar_selection_clock_vbox;
1732         Gtk::Table               toolbar_selection_clock_table;
1733         Gtk::Label               toolbar_selection_cursor_label;
1734
1735         ArdourButton mouse_select_button;
1736         ArdourButton mouse_draw_button;
1737         ArdourButton mouse_move_button;
1738         ArdourButton mouse_timefx_button;
1739         ArdourButton mouse_content_button;
1740         ArdourButton mouse_audition_button;
1741         ArdourButton mouse_cut_button;
1742
1743         ArdourButton smart_mode_button;
1744         Glib::RefPtr<Gtk::ToggleAction> smart_mode_action;
1745
1746         void                     mouse_mode_toggled (Editing::MouseMode m);
1747         void                     mouse_mode_object_range_toggled ();
1748         bool                     ignore_mouse_mode_toggle;
1749
1750         bool                     mouse_select_button_release (GdkEventButton*);
1751
1752         Gtk::VBox                automation_box;
1753         Gtk::Button              automation_mode_button;
1754
1755         //edit mode menu stuff
1756         ArdourDropdown  edit_mode_selector;
1757         void edit_mode_selection_done ( ARDOUR::EditMode m );
1758         void build_edit_mode_menu ();
1759         Gtk::VBox         edit_mode_box;
1760
1761         void set_edit_mode (ARDOUR::EditMode);
1762         void cycle_edit_mode ();
1763
1764         ArdourDropdown snap_type_selector;
1765         void build_snap_type_menu ();
1766
1767         ArdourDropdown snap_mode_selector;
1768         void build_snap_mode_menu ();
1769         Gtk::HBox         snap_box;
1770
1771         std::vector<std::string> snap_type_strings;
1772         std::vector<std::string> snap_mode_strings;
1773
1774         void snap_type_selection_done (Editing::SnapType);
1775         void snap_mode_selection_done (Editing::SnapMode);
1776         void snap_mode_chosen (Editing::SnapMode);
1777         void snap_type_chosen (Editing::SnapType);
1778
1779         Glib::RefPtr<Gtk::RadioAction> snap_type_action (Editing::SnapType);
1780         Glib::RefPtr<Gtk::RadioAction> snap_mode_action (Editing::SnapMode);
1781
1782         //zoom focus meu stuff
1783         ArdourDropdown  zoom_focus_selector;
1784         void zoom_focus_selection_done ( Editing::ZoomFocus f );
1785         void build_zoom_focus_menu ();
1786         std::vector<std::string> zoom_focus_strings;
1787
1788         void zoom_focus_chosen (Editing::ZoomFocus);
1789
1790         Glib::RefPtr<Gtk::RadioAction> zoom_focus_action (Editing::ZoomFocus);
1791
1792         Gtk::HBox           _zoom_box;
1793         void                zoom_adjustment_changed();
1794
1795         void setup_toolbar ();
1796
1797         void setup_tooltips ();
1798
1799         Gtk::HBox                toolbar_hbox;
1800         Gtk::EventBox            toolbar_base;
1801         Gtk::Frame               toolbar_frame;
1802         Gtk::Viewport           _toolbar_viewport;
1803
1804         void setup_midi_toolbar ();
1805
1806         /* selection process */
1807
1808         Selection* selection;
1809         Selection* cut_buffer;
1810         SelectionMemento* _selection_memento;
1811
1812         void time_selection_changed ();
1813         void update_time_selection_display ();
1814         void track_selection_changed ();
1815         void region_selection_changed ();
1816         sigc::connection editor_regions_selection_changed_connection;
1817         void sensitize_all_region_actions (bool);
1818         void sensitize_the_right_region_actions ();
1819         bool _all_region_actions_sensitized;
1820         /** Flag to block region action handlers from doing what they normally do;
1821          *  I tried Gtk::Action::block_activate() but this doesn't work (ie it doesn't
1822          *  block) when setting a ToggleAction's active state.
1823          */
1824         bool _ignore_region_action;
1825         bool _last_region_menu_was_main;
1826         void point_selection_changed ();
1827         void marker_selection_changed ();
1828
1829         bool _ignore_follow_edits;
1830
1831         void cancel_selection ();
1832         void cancel_time_selection ();
1833
1834         bool get_smart_mode() const;
1835
1836         bool audio_region_selection_covers (framepos_t where);
1837
1838         /* transport range select process */
1839
1840         ArdourCanvas::Rectangle*  cd_marker_bar_drag_rect;
1841         ArdourCanvas::Rectangle*  range_bar_drag_rect;
1842         ArdourCanvas::Rectangle*  transport_bar_drag_rect;
1843         ArdourCanvas::Rectangle     *transport_bar_range_rect;
1844         ArdourCanvas::Rectangle     *transport_bar_preroll_rect;
1845         ArdourCanvas::Rectangle     *transport_bar_postroll_rect;
1846         ArdourCanvas::Rectangle     *transport_loop_range_rect;
1847         ArdourCanvas::Rectangle     *transport_punch_range_rect;
1848         ArdourCanvas::Line     *transport_punchin_line;
1849         ArdourCanvas::Line     *transport_punchout_line;
1850         ArdourCanvas::Rectangle     *transport_preroll_rect;
1851         ArdourCanvas::Rectangle     *transport_postroll_rect;
1852
1853         ARDOUR::Location*  transport_loop_location();
1854         ARDOUR::Location*  transport_punch_location();
1855
1856         ARDOUR::Location   *temp_location;
1857
1858         /* object rubberband select process */
1859
1860         void select_all_within (framepos_t, framepos_t, double, double, TrackViewList const &, Selection::Operation, bool);
1861
1862         ArdourCanvas::Rectangle   *rubberband_rect;
1863
1864         EditorRouteGroups* _route_groups;
1865         EditorRoutes* _routes;
1866         EditorRegions* _regions;
1867         EditorSnapshots* _snapshots;
1868         EditorLocations* _locations;
1869
1870         /* diskstream/route display management */
1871         Glib::RefPtr<Gdk::Pixbuf> rec_enabled_icon;
1872         Glib::RefPtr<Gdk::Pixbuf> rec_disabled_icon;
1873
1874         Glib::RefPtr<Gtk::TreeSelection> route_display_selection;
1875
1876         bool sync_track_view_list_and_routes ();
1877
1878         Gtk::VBox           list_vpacker;
1879
1880         /* autoscrolling */
1881
1882         sigc::connection autoscroll_connection;
1883         bool autoscroll_horizontal_allowed;
1884         bool autoscroll_vertical_allowed;
1885         uint32_t autoscroll_cnt;
1886         Gtk::Widget* autoscroll_widget;
1887         ArdourCanvas::Rect autoscroll_boundary;
1888
1889         bool autoscroll_canvas ();
1890         void start_canvas_autoscroll (bool allow_horiz, bool allow_vert, const ArdourCanvas::Rect& boundary);
1891         void stop_canvas_autoscroll ();
1892
1893         /* trimming */
1894         void point_trim (GdkEvent *, framepos_t);
1895
1896         void trim_region_front();
1897         void trim_region_back();
1898         void trim_region (bool front);
1899
1900         void trim_region_to_loop ();
1901         void trim_region_to_punch ();
1902         void trim_region_to_location (const ARDOUR::Location&, const char* cmd);
1903
1904         void trim_to_region(bool forward);
1905         void trim_region_to_previous_region_end();
1906         void trim_region_to_next_region_start();
1907
1908         bool show_gain_after_trim;
1909
1910         /* Drag-n-Drop */
1911
1912         int convert_drop_to_paths (
1913                 std::vector<std::string>&           paths,
1914                 const Glib::RefPtr<Gdk::DragContext>& context,
1915                 gint                                  x,
1916                 gint                                  y,
1917                 const Gtk::SelectionData&             data,
1918                 guint                                 info,
1919                 guint                                 time);
1920
1921         void track_canvas_drag_data_received (
1922                 const Glib::RefPtr<Gdk::DragContext>& context,
1923                 gint                                  x,
1924                 gint                                  y,
1925                 const Gtk::SelectionData&             data,
1926                 guint                                 info,
1927                 guint                                 time);
1928
1929         void drop_paths (
1930                 const Glib::RefPtr<Gdk::DragContext>& context,
1931                 gint                                  x,
1932                 gint                                  y,
1933                 const Gtk::SelectionData&             data,
1934                 guint                                 info,
1935                 guint                                 time);
1936
1937         void drop_regions (
1938                 const Glib::RefPtr<Gdk::DragContext>& context,
1939                 gint                                  x,
1940                 gint                                  y,
1941                 const Gtk::SelectionData&             data,
1942                 guint                                 info,
1943                 guint                                 time);
1944
1945         void drop_routes (
1946                 const Glib::RefPtr<Gdk::DragContext>& context,
1947                 gint                x,
1948                 gint                y,
1949                 const Gtk::SelectionData& data,
1950                 guint               info,
1951                 guint               time);
1952
1953         /* audio export */
1954
1955         int  write_region_selection(RegionSelection&);
1956         bool write_region (std::string path, boost::shared_ptr<ARDOUR::AudioRegion>);
1957         void bounce_region_selection (bool with_processing);
1958         void bounce_range_selection (bool replace, bool enable_processing);
1959         void external_edit_region ();
1960
1961         int write_audio_selection (TimeSelection&);
1962         bool write_audio_range (ARDOUR::AudioPlaylist&, const ARDOUR::ChanCount& channels, std::list<ARDOUR::AudioRange>&);
1963
1964         void write_selection ();
1965
1966         uint32_t selection_op_cmd_depth;
1967         uint32_t selection_op_history_it;
1968
1969         std::list<XMLNode *> selection_op_history; /* used in *_reversible_selection_op */
1970         std::list<XMLNode *> before; /* used in *_reversible_command */
1971
1972         void update_title ();
1973         void update_title_s (const std::string & snapshot_name);
1974
1975         void instant_save ();
1976
1977         boost::shared_ptr<ARDOUR::AudioRegion> last_audition_region;
1978
1979         /* freeze operations */
1980
1981         ARDOUR::InterThreadInfo freeze_status;
1982         static void* _freeze_thread (void*);
1983         void* freeze_thread ();
1984
1985         void freeze_route ();
1986         void unfreeze_route ();
1987
1988         /* duplication */
1989
1990         void duplicate_range (bool with_dialog);
1991
1992         /** computes the timeline frame (sample) of an event whose coordinates
1993          * are in canvas units (pixels, scroll offset included).
1994          */
1995         framepos_t canvas_event_sample (GdkEvent const *, double* px = 0, double* py = 0) const;
1996
1997         /** computes the timeline frame (sample) of an event whose coordinates
1998          * are in window units (pixels, no scroll offset).
1999          */
2000         framepos_t window_event_sample (GdkEvent const *, double* px = 0, double* py = 0) const;
2001
2002         /* returns false if mouse pointer is not in track or marker canvas
2003          */
2004         bool mouse_frame (framepos_t&, bool& in_track_canvas) const;
2005
2006         TimeFXDialog* current_timefx;
2007         static void* timefx_thread (void *arg);
2008         void do_timefx ();
2009
2010         int time_stretch (RegionSelection&, float fraction);
2011         int pitch_shift (RegionSelection&, float cents);
2012         void pitch_shift_region ();
2013
2014         /* editor-mixer strip */
2015
2016         MixerStrip *current_mixer_strip;
2017         bool show_editor_mixer_when_tracks_arrive;
2018         Gtk::VBox current_mixer_strip_vbox;
2019         void cms_new (boost::shared_ptr<ARDOUR::Route>);
2020         void current_mixer_strip_hidden ();
2021
2022 #ifdef __APPLE__
2023         void ensure_all_elements_drawn ();
2024 #endif
2025         /* nudging tracks */
2026
2027         void nudge_track (bool use_edit_point, bool forwards);
2028
2029         static const int32_t default_width = 995;
2030         static const int32_t default_height = 765;
2031
2032         /* nudge */
2033
2034         ArdourButton      nudge_forward_button;
2035         ArdourButton      nudge_backward_button;
2036         Gtk::HBox        nudge_hbox;
2037         Gtk::VBox        nudge_vbox;
2038         AudioClock*       nudge_clock;
2039
2040         bool nudge_forward_release (GdkEventButton*);
2041         bool nudge_backward_release (GdkEventButton*);
2042
2043         /* audio filters */
2044
2045         void apply_filter (ARDOUR::Filter&, std::string cmd, ProgressReporter* progress = 0);
2046
2047         Command* apply_midi_note_edit_op_to_region (ARDOUR::MidiOperator& op, MidiRegionView& mrv);
2048         void apply_midi_note_edit_op (ARDOUR::MidiOperator& op, const RegionSelection& rs);
2049
2050         /* handling cleanup */
2051
2052         int playlist_deletion_dialog (boost::shared_ptr<ARDOUR::Playlist>);
2053
2054         PBD::ScopedConnectionList session_connections;
2055
2056         /* tracking step changes of track height */
2057
2058         TimeAxisView* current_stepping_trackview;
2059         ARDOUR::microseconds_t last_track_height_step_timestamp;
2060         gint track_height_step_timeout();
2061         sigc::connection step_timeout;
2062
2063         TimeAxisView* entered_track;
2064         /** If the mouse is over a RegionView or one of its child canvas items, this is set up
2065             to point to the RegionView.  Otherwise it is 0.
2066         */
2067         RegionView*   entered_regionview;
2068
2069         std::vector<EnterContext> _enter_stack;
2070
2071         bool clear_entered_track;
2072         bool left_track_canvas (GdkEventCrossing*);
2073         bool entered_track_canvas (GdkEventCrossing*);
2074         void set_entered_track (TimeAxisView*);
2075         void set_entered_regionview (RegionView*);
2076         gint left_automation_track ();
2077
2078         void reset_canvas_action_sensitivity (bool);
2079         void set_gain_envelope_visibility ();
2080         void set_region_gain_visibility (RegionView*);
2081         void toggle_gain_envelope_active ();
2082         void reset_region_gain_envelopes ();
2083
2084         void session_state_saved (std::string);
2085
2086         Glib::RefPtr<Gtk::Action>              undo_action;
2087         Glib::RefPtr<Gtk::Action>              redo_action;
2088         Glib::RefPtr<Gtk::Action>              alternate_redo_action;
2089         Glib::RefPtr<Gtk::Action>              alternate_alternate_redo_action;
2090         Glib::RefPtr<Gtk::Action>              selection_undo_action;
2091         Glib::RefPtr<Gtk::Action>              selection_redo_action;
2092
2093         void history_changed ();
2094
2095         Editing::EditPoint _edit_point;
2096
2097         ArdourDropdown edit_point_selector;
2098         void build_edit_point_menu();
2099
2100         void set_edit_point_preference (Editing::EditPoint ep, bool force = false);
2101         void cycle_edit_point (bool with_marker);
2102         void set_edit_point ();
2103         void edit_point_selection_done (Editing::EditPoint);
2104         void edit_point_chosen (Editing::EditPoint);
2105         Glib::RefPtr<Gtk::RadioAction> edit_point_action (Editing::EditPoint);
2106         std::vector<std::string> edit_point_strings;
2107         std::vector<std::string> edit_mode_strings;
2108
2109         void selected_marker_moved (ARDOUR::Location*);
2110
2111         bool get_edit_op_range (framepos_t& start, framepos_t& end) const;
2112
2113         void get_regions_at (RegionSelection&, framepos_t where, const TrackViewList& ts) const;
2114         void get_regions_after (RegionSelection&, framepos_t where, const TrackViewList& ts) const;
2115
2116         RegionSelection get_regions_from_selection_and_edit_point ();
2117         RegionSelection get_regions_from_selection_and_entered ();
2118
2119         void start_updating_meters ();
2120         void stop_updating_meters ();
2121         bool meters_running;
2122
2123         void select_next_route ();
2124         void select_prev_route ();
2125
2126         void snap_to_internal (framepos_t&       first,
2127                                ARDOUR::RoundMode direction = ARDOUR::RoundNearest,
2128                                bool              for_mark  = false,
2129                                bool              ensure_snap = false);
2130
2131         void timecode_snap_to_internal (framepos_t&       first,
2132                                         ARDOUR::RoundMode direction = ARDOUR::RoundNearest,
2133                                         bool              for_mark  = false);
2134
2135         RhythmFerret* rhythm_ferret;
2136
2137         void fit_tracks (TrackViewList &);
2138         void fit_selection ();
2139         void set_track_height (Height);
2140
2141         void _remove_tracks ();
2142         bool idle_remove_tracks ();
2143         void toggle_tracks_active ();
2144
2145         bool _have_idled;
2146         int resize_idle_id;
2147         static gboolean _idle_resize (gpointer);
2148         bool idle_resize();
2149         int32_t _pending_resize_amount;
2150         TimeAxisView* _pending_resize_view;
2151
2152         void visible_order_range (int*, int*) const;
2153
2154         void located ();
2155
2156         /** true if we've made a locate request that hasn't yet been processed */
2157         bool _pending_locate_request;
2158
2159         /** if true, there is a pending Session locate which is the initial one when loading a session;
2160             we need to know this so that we don't (necessarily) set the viewport to show the playhead
2161             initially.
2162         */
2163         bool _pending_initial_locate;
2164
2165         Gtk::HBox _summary_hbox;
2166         EditorSummary* _summary;
2167
2168         void region_view_added (RegionView *);
2169         void region_view_removed ();
2170
2171         EditorGroupTabs* _group_tabs;
2172         void fit_route_group (ARDOUR::RouteGroup *);
2173
2174         void step_edit_status_change (bool);
2175         void start_step_editing ();
2176         void stop_step_editing ();
2177         bool check_step_edit ();
2178         sigc::connection step_edit_connection;
2179
2180         double _last_motion_y;
2181
2182         RegionLayeringOrderEditor* layering_order_editor;
2183         void update_region_layering_order_editor ();
2184
2185         /** Track that was the source for the last cut/copy operation.  Used as a place
2186             to paste things iff there is no selected track.
2187         */
2188         TimeAxisView* _last_cut_copy_source_track;
2189
2190         /** true if a change in Selection->regions should change the selection in the region list.
2191             See EditorRegions::selection_changed.
2192         */
2193         bool _region_selection_change_updates_region_list;
2194
2195         void setup_fade_images ();
2196         std::map<ARDOUR::FadeShape, Gtk::Image*> _fade_in_images;
2197         std::map<ARDOUR::FadeShape, Gtk::Image*> _fade_out_images;
2198         std::map<ARDOUR::FadeShape, Gtk::Image*> _xfade_in_images;
2199         std::map<ARDOUR::FadeShape, Gtk::Image*> _xfade_out_images;
2200
2201         Gtk::MenuItem& action_menu_item (std::string const &);
2202         void action_pre_activated (Glib::RefPtr<Gtk::Action> const &);
2203
2204         MouseCursors* _cursors;
2205
2206         void follow_mixer_selection ();
2207         bool _following_mixer_selection;
2208
2209         int time_fx (ARDOUR::RegionList&, float val, bool pitching);
2210         void note_edit_done (int, EditNoteDialog*);
2211         void toggle_sound_midi_notes ();
2212
2213         /** Flag for a bit of a hack wrt control point selection; see set_selected_control_point_from_click */
2214         bool _control_point_toggled_on_press;
2215
2216         /** This is used by TimeAxisView to keep a track of the TimeAxisView that is currently being
2217             stepped in height using ScrollZoomVerticalModifier+Scrollwheel.  When a scroll event
2218             occurs, we do the step on this _stepping_axis_view if it is non-0 (and we set up this
2219             _stepping_axis_view with the TimeAxisView underneath the mouse if it is 0).  Then Editor
2220             resets _stepping_axis_view when the modifier key is released.  In this (hacky) way,
2221             pushing the modifier key and moving the scroll wheel will operate on the same track
2222             until the key is released (rather than skipping about to whatever happens to be
2223             underneath the mouse at the time).
2224         */
2225         TimeAxisView* _stepping_axis_view;
2226         void zoom_vertical_modifier_released();
2227
2228         void bring_in_callback (Gtk::Label*, uint32_t n, uint32_t total, std::string name);
2229         void update_bring_in_message (Gtk::Label* label, uint32_t n, uint32_t total, std::string name);
2230         void bring_all_sources_into_session ();
2231
2232         QuantizeDialog* quantize_dialog;
2233         MainMenuDisabler* _main_menu_disabler;
2234
2235         /* private helper functions to help with registering axis */
2236
2237         Glib::RefPtr<Gtk::Action> reg_sens (Glib::RefPtr<Gtk::ActionGroup> group, char const * name, char const * label, sigc::slot<void> slot);
2238         void toggle_reg_sens (Glib::RefPtr<Gtk::ActionGroup> group, char const * name, char const * label, sigc::slot<void> slot);
2239         void radio_reg_sens (Glib::RefPtr<Gtk::ActionGroup> action_group, Gtk::RadioAction::Group& radio_group, char const * name, char const * label, sigc::slot<void> slot);
2240
2241         Gtkmm2ext::ActionMap myactions;
2242
2243         friend class Drag;
2244         friend class RegionDrag;
2245         friend class RegionMoveDrag;
2246         friend class RegionSpliceDrag;
2247         friend class RegionRippleDrag;
2248         friend class TrimDrag;
2249         friend class MeterMarkerDrag;
2250         friend class TempoMarkerDrag;
2251         friend class CursorDrag;
2252         friend class FadeInDrag;
2253         friend class FadeOutDrag;
2254         friend class MarkerDrag;
2255         friend class RegionGainDrag;
2256         friend class ControlPointDrag;
2257         friend class LineDrag;
2258         friend class RubberbandSelectDrag;
2259         friend class EditorRubberbandSelectDrag;
2260         friend class TimeFXDrag;
2261         friend class ScrubDrag;
2262         friend class SelectionDrag;
2263         friend class RangeMarkerBarDrag;
2264         friend class MouseZoomDrag;
2265         friend class RegionCreateDrag;
2266         friend class RegionMotionDrag;
2267         friend class RegionInsertDrag;
2268         friend class VideoTimeLineDrag;
2269
2270         friend class EditorSummary;
2271         friend class EditorGroupTabs;
2272
2273         friend class EditorRoutes;
2274         friend class RhythmFerret;
2275 };
2276
2277 #endif /* __ardour_editor_h__ */