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