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