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