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