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