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