Improve scrolling performance for sessions containing hundreds of regions over many...
[ardour.git] / gtk2_ardour / editor.h
1 /*
2     Copyright (C) 2000-2003 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_editor_h__
21 #define __ardour_editor_h__
22
23 #include <list>
24 #include <map>
25 #include <set>
26 #include <string>
27 #include <sys/time.h>
28 #include <glibmm/ustring.h>
29
30 #include <boost/optional.hpp>
31
32 #include <libgnomecanvasmm/canvas.h>
33 #include <libgnomecanvasmm/group.h>
34 #include <libgnomecanvasmm/line.h>
35 #include <libgnomecanvasmm/pixbuf.h>
36
37 #include <cmath>
38
39 #include <gtkmm/layout.h>
40 #include <gtkmm/comboboxtext.h>
41
42 #include <gtkmm2ext/selector.h>
43 #include <gtkmm2ext/click_box.h>
44 #include <gtkmm2ext/dndtreeview.h>
45
46 #include <pbd/stateful.h>
47 #include <ardour/session.h>
48 #include <ardour/tempo.h>
49 #include <ardour/stretch.h>
50 #include <ardour/location.h>
51 #include <ardour/audioregion.h>
52
53 #include "audio_clock.h"
54 #include "gtk-custom-ruler.h"
55 #include "ardour_dialog.h"
56 #include "public_editor.h"
57 #include "editing.h"
58 #include "enums.h"
59 #include "editor_items.h"
60 #include "region_selection.h"
61 #include "canvas.h"
62 #include "time_axis_view.h"
63 #include "draginfo.h"
64
65 namespace Gtkmm2ext {
66         class TearOff;
67 }
68
69 namespace ARDOUR {
70         class AudioDiskstream;
71         class RouteGroup;
72         class Playlist;
73         class AudioPlaylist;
74         class Region;
75         class Location;
76         class TempoSection;
77         class NamedSelection;
78         class Session;
79         class AudioFilter;
80         class Crossfade;
81 }
82
83 namespace LADSPA {
84         class Plugin;
85 }
86
87 class TimeAxisView;
88 class RouteTimeAxisView;
89 class AudioTimeAxisView;
90 class AutomationTimeAxisView;
91 class AudioRegionView;
92 class CrossfadeView;
93 class PluginSelector;
94 class PlaylistSelector;
95 class Marker;
96 class GroupedButtons;
97 class AutomationLine;
98 class UIExportSpecification;
99 class ExportDialog;
100 class Selection;
101 class TempoLines;
102 class TimeSelection;
103 class TrackSelection;
104 class AutomationSelection;
105 class MixerStrip;
106 class StreamView;
107 class AudioStreamView;
108 class ControlPoint;
109 class SoundFileOmega;
110 class RhythmFerret;
111 #ifdef FFT_ANALYSIS
112 class AnalysisWindow;
113 #endif
114
115 /* <CMT Additions> */
116 class ImageFrameView;
117 class ImageFrameTimeAxisView;
118 class ImageFrameTimeAxis;
119 class MarkerTimeAxis ;
120 class MarkerView ;
121 class ImageFrameSocketHandler ;
122 class TimeAxisViewItem ;
123 /* </CMT Additions> */
124
125
126 class Editor : public PublicEditor
127 {
128   public:
129         Editor ();
130         ~Editor ();
131
132         void             connect_to_session (ARDOUR::Session *);
133         ARDOUR::Session* current_session() const { return session; }
134         void             first_idle ();
135         virtual bool have_idled() const { return _have_idled; }
136
137         nframes64_t leftmost_position() const { return leftmost_frame; }
138         nframes64_t current_page_frames() const {
139                 return (nframes64_t) floor (canvas_width * frames_per_unit);
140         }
141
142         void cycle_snap_mode ();
143         void cycle_snap_choice ();
144         void set_snap_to (Editing::SnapType);
145         void set_snap_mode (Editing::SnapMode);
146         void set_snap_threshold (double pixel_distance) {snap_threshold = pixel_distance;}
147
148         void undo (uint32_t n = 1);
149         void redo (uint32_t n = 1);
150
151         XMLNode& get_state ();
152         int set_state (const XMLNode& );
153
154         void set_mouse_mode (Editing::MouseMode, bool force=true);
155         void step_mouse_mode (bool next);
156         Editing::MouseMode current_mouse_mode () { return mouse_mode; }
157
158         void add_imageframe_time_axis(const std::string & track_name, void*) ;
159         void add_imageframe_marker_time_axis(const std::string & track_name, TimeAxisView* marked_track, void*) ;
160         void connect_to_image_compositor() ;
161         void scroll_timeaxis_to_imageframe_item(const TimeAxisViewItem* item) ;
162         TimeAxisView* get_named_time_axis(const std::string & name) ;
163         void foreach_time_axis_view (sigc::slot<void,TimeAxisView&>);
164         void add_to_idle_resize (TimeAxisView*, uint32_t);
165
166         void consider_auditioning (boost::shared_ptr<ARDOUR::Region>);
167         void hide_a_region (boost::shared_ptr<ARDOUR::Region>);
168         void remove_a_region (boost::shared_ptr<ARDOUR::Region>);
169
170 #ifdef USE_RUBBERBAND
171         std::vector<std::string> rb_opt_strings;
172 #endif
173
174         /* option editor-access */
175
176         void set_show_waveforms (bool yn);
177         bool show_waveforms() const { return _show_waveforms; }
178
179         void set_waveform_scale (Editing::WaveformScale);
180
181         void set_show_waveforms_recording (bool yn);
182         bool show_waveforms_recording() const { return _show_waveforms_recording; }
183         
184         /* things that need to be public to be used in the main menubar */
185
186         void new_region_from_selection ();
187         void separate_regions_between (const TimeSelection&);
188         void separate_region_from_selection ();
189         void separate_region_from_punch ();
190         void separate_region_from_loop ();
191         void separate_regions_using_location (ARDOUR::Location&);
192         void toggle_playback (bool with_abort);
193         void transition_to_rolling (bool forward);
194
195         /* undo related */
196
197         nframes64_t unit_to_frame (double unit) const {
198                 return (nframes64_t) rint (unit * frames_per_unit);
199         }
200         
201         double frame_to_unit (nframes64_t frame) const {
202                 return rint ((double) frame / (double) frames_per_unit);
203         }
204
205         double frame_to_unit (double frame) const {
206                 return rint (frame / frames_per_unit);
207         }
208
209         /* NOTE: these functions assume that the "pixel" coordinate is
210            the result of using the world->canvas affine transform on a
211            world coordinate. These coordinates already take into
212            account any scrolling carried out by adjusting the
213            xscroll_adjustment.  
214         */
215
216         nframes64_t pixel_to_frame (double pixel) const {
217                 
218                 /* pixel can be less than zero when motion events
219                    are processed. since we've already run the world->canvas
220                    affine, that means that the location *really* is "off
221                    to the right" and thus really is "before the start".
222                 */
223
224                 if (pixel >= 0) {
225                         return (nframes64_t) rint (pixel * frames_per_unit * GNOME_CANVAS(track_canvas->gobj())->pixels_per_unit);
226                 } else {
227                         return 0;
228                 }
229         }
230
231         gulong frame_to_pixel (nframes64_t frame) const {
232                 return (gulong) rint ((frame / (frames_per_unit *  GNOME_CANVAS(track_canvas->gobj())->pixels_per_unit)));
233         }
234
235         void flush_canvas ();
236
237         /* selection */
238
239         Selection& get_selection() const { return *selection; }
240         Selection& get_cut_buffer() const { return *cut_buffer; }
241
242         bool extend_selection_to_track (TimeAxisView&);
243
244         void play_selection ();
245         void select_all_in_track (Selection::Operation op);
246         void select_all (Selection::Operation op);
247         void invert_selection_in_track ();
248         void invert_selection ();
249         void deselect_all ();
250
251         /* tempo */
252
253         void set_show_measures (bool yn);
254         bool show_measures () const { return _show_measures; }
255
256 #ifdef FFT_ANALYSIS
257         /* analysis window */
258         void analyze_region_selection();
259         void analyze_range_selection();
260 #endif
261
262         /* export */
263
264         /* these initiate export ... */
265         
266         void export_session();
267         void export_selection();
268
269         void add_toplevel_controls (Gtk::Container&);
270         Gtk::HBox& get_status_bar_packer()  { return status_bar_hpacker; }
271
272         void      set_zoom_focus (Editing::ZoomFocus);
273         Editing::ZoomFocus get_zoom_focus () const { return zoom_focus; }
274         double   get_current_zoom () const { return frames_per_unit; }
275
276         void temporal_zoom_step (bool coarser);
277
278         /* stuff that AudioTimeAxisView and related classes use */
279
280         PlaylistSelector& playlist_selector() const;
281         void route_name_changed (TimeAxisView *);
282         void clear_playlist (boost::shared_ptr<ARDOUR::Playlist>);
283
284         void new_playlists (TimeAxisView*);
285         void copy_playlists (TimeAxisView*);
286         void clear_playlists (TimeAxisView*);
287
288         TrackViewList* get_valid_views (TimeAxisView*, ARDOUR::RouteGroup* grp = 0);
289
290         Width editor_mixer_strip_width;
291         void maybe_add_mixer_strip_width (XMLNode&);
292         void show_editor_mixer (bool yn);
293         void set_selected_mixer_strip (TimeAxisView&);
294         void hide_track_in_display (TimeAxisView& tv, bool temporary = false);
295         void show_track_in_display (TimeAxisView& tv);
296
297         /* nudge is initiated by transport controls owned by ARDOUR_UI */
298
299         void nudge_forward (bool next, bool force_playhead);
300         void nudge_backward (bool next, bool force_playhead);
301
302         /* nudge initiated from context menu */
303
304         void nudge_forward_capture_offset ();
305         void nudge_backward_capture_offset ();
306
307         /* playhead/screen stuff */
308         
309         void set_follow_playhead (bool yn);
310         void toggle_follow_playhead ();
311         bool follow_playhead() const { return _follow_playhead; }
312         bool dragging_playhead () const { return _dragging_playhead; }
313
314         void toggle_waveform_visibility ();
315         void toggle_waveforms_while_recording ();
316         void toggle_measure_visibility ();
317         void toggle_logo_visibility ();
318
319         /* SMPTE timecode & video sync */
320
321         void smpte_fps_chosen (ARDOUR::SmpteFormat format);
322         void video_pullup_chosen (ARDOUR::Session::PullupFormat pullup);
323         void subframes_per_frame_chosen (uint32_t);
324
325         void update_smpte_mode();
326         void update_video_pullup();
327         void update_subframes_per_frame ();
328         /* xfades */
329
330         void toggle_auto_xfade ();
331         void toggle_xfades_active ();
332         void toggle_xfade_visibility ();
333         bool xfade_visibility() const { return _xfade_visibility; }
334         void update_xfade_visibility ();
335         void update_crossfade_model ();
336         void set_crossfade_model (ARDOUR::CrossfadeModel);
337
338         /* layers */
339         void set_layer_model (ARDOUR::LayerModel);
340         void update_layering_model ();
341         
342         void toggle_link_region_and_track_selection ();
343
344         /* redirect shared ops menu. caller must free returned menu */
345
346         Gtk::Menu* redirect_menu ();
347
348         /* floating windows/transient */
349
350         void ensure_float (Gtk::Window&);
351
352         void show_window ();
353
354         void scroll_tracks_down_line ();
355         void scroll_tracks_up_line ();
356
357         bool new_regionviews_display_gain () { return _new_regionviews_show_envelope; }
358         void prepare_for_cleanup ();
359         void finish_cleanup ();
360
361         void maximise_editing_space();
362         void restore_editing_space();
363
364         void reset_x_origin (nframes64_t);
365         void reset_zoom (double);
366         void reposition_and_zoom (nframes64_t, double);
367
368         nframes64_t get_preferred_edit_position (bool ignore_playhead = false);
369
370         bool update_mouse_speed ();
371         bool decelerate_mouse_speed ();
372
373         void toggle_meter_updating();
374
375         void show_rhythm_ferret();
376
377         void goto_visual_state (uint32_t);
378         void save_visual_state (uint32_t);
379
380         void queue_draw_resize_line (int at);
381         void start_resize_line_ops ();
382         void end_resize_line_ops ();
383
384   protected:
385         void map_transport_state ();
386         void map_position_change (nframes64_t);
387
388         void on_realize();
389         bool on_expose_event (GdkEventExpose*);
390
391   private:
392         
393         ARDOUR::Session     *session;
394         bool                 constructed;
395   
396         // to keep track of the playhead position for control_scroll
397         boost::optional<nframes64_t> _control_scroll_target;
398
399         PlaylistSelector* _playlist_selector;
400
401         typedef std::pair<TimeAxisView*,XMLNode*> TAVState;
402
403         struct VisualState {
404             double              y_position;
405             double              frames_per_unit;
406             nframes64_t         leftmost_frame;
407             Editing::ZoomFocus  zoom_focus;
408             bool                zoomed_to_region;
409             std::list<TAVState> track_states;
410         };
411         
412         std::list<VisualState*> undo_visual_stack;
413         std::list<VisualState*> redo_visual_stack;
414         VisualState* current_visual_state (bool with_tracks = true);
415         void undo_visual_state ();
416         void redo_visual_state ();
417         void use_visual_state (VisualState&);
418         bool no_save_visual;
419         void swap_visual_state ();
420         
421         std::vector<VisualState*> visual_states;
422         sigc::connection visual_state_op_connection;
423         void start_visual_state_op (uint32_t n);
424         void cancel_visual_state_op (uint32_t n);
425         bool end_visual_state_op (uint32_t n);
426
427         nframes64_t leftmost_frame;
428         double      frames_per_unit;
429         Editing::ZoomFocus zoom_focus;
430
431         void set_frames_per_unit (double);
432         void post_zoom ();
433
434         Editing::MouseMode mouse_mode;
435
436         int  post_maximal_editor_width;
437         int  post_maximal_pane_position;
438         int  pre_maximal_pane_position;
439         int  pre_maximal_editor_width;
440         void pane_allocation_handler (Gtk::Allocation&, Gtk::Paned*);
441
442         Gtk::Notebook the_notebook;
443         Gtk::HPaned   edit_pane;
444
445         Gtk::EventBox meter_base;
446         Gtk::HBox     meter_box;
447         Gtk::EventBox marker_base;
448         Gtk::HBox     marker_box;
449         Gtk::VBox     scrollers_rulers_markers_box;
450
451         void location_changed (ARDOUR::Location *);
452         void location_flags_changed (ARDOUR::Location *, void *);
453         void refresh_location_display ();
454         void refresh_location_display_s (ARDOUR::Change);
455         void refresh_location_display_internal (ARDOUR::Locations::LocationList&);
456         void add_new_location (ARDOUR::Location *);
457         void location_gone (ARDOUR::Location *);
458         void remove_marker (ArdourCanvas::Item&, GdkEvent*);
459         gint really_remove_marker (ARDOUR::Location* loc);
460         void goto_nth_marker (int nth);
461
462         uint32_t location_marker_color;
463         uint32_t location_range_color;
464         uint32_t location_loop_color;
465         uint32_t location_punch_color;
466         uint32_t location_cd_marker_color;
467
468         struct LocationMarkers {
469             Marker* start;
470             Marker* end;
471             bool    valid;
472
473             LocationMarkers () : start(0), end(0), valid (true) {}
474             
475             ~LocationMarkers ();
476
477             void hide();
478             void show ();
479             void set_name (const string&);
480             void set_position (nframes64_t start, nframes64_t end = 0);
481             void set_color_rgba (uint32_t);
482         };
483
484         LocationMarkers  *find_location_markers (ARDOUR::Location *) const;
485         ARDOUR::Location* find_location_from_marker (Marker *, bool& is_start) const;
486         Marker* entered_marker;
487
488         typedef std::map<ARDOUR::Location*,LocationMarkers *> LocationMarkerMap;
489         LocationMarkerMap location_markers;
490
491         void hide_marker (ArdourCanvas::Item*, GdkEvent*);
492         void clear_marker_display ();
493         void mouse_add_new_marker (nframes64_t where, bool is_cd=false, bool is_xrun=false);
494         bool choose_new_marker_name(string &name);
495         void update_cd_marker_display ();
496         void ensure_cd_marker_updated (LocationMarkers * lam, ARDOUR::Location * location);
497
498         TimeAxisView*      clicked_trackview;
499         AudioTimeAxisView* clicked_audio_trackview;
500         RegionView*        clicked_regionview;
501         RegionSelection    latest_regionviews;
502         uint32_t           clicked_selection;
503         CrossfadeView*     clicked_crossfadeview;
504         ControlPoint*      clicked_control_point;
505
506         void sort_track_selection (TrackSelection* sel = 0);
507
508         void get_relevant_audio_tracks (std::set<AudioTimeAxisView*>& relevant_tracks);
509         void get_equivalent_regions (RegionView* rv, std::vector<RegionView*>&);
510         void mapover_audio_tracks (sigc::slot<void,AudioTimeAxisView&,uint32_t> sl, TimeAxisView*);
511
512         /* functions to be passed to mapover_audio_tracks(), possibly with sigc::bind()-supplied arguments */
513
514         void mapped_get_equivalent_regions (RouteTimeAxisView&, uint32_t, RegionView*, vector<RegionView*>*);
515         void mapped_use_new_playlist (AudioTimeAxisView&, uint32_t);
516         void mapped_use_copy_playlist (AudioTimeAxisView&, uint32_t);
517         void mapped_clear_playlist (AudioTimeAxisView&, uint32_t);
518
519         /* end */
520
521         void button_selection (ArdourCanvas::Item* item, GdkEvent* event, ItemType item_type);
522         bool button_release_can_deselect;
523
524         void catch_vanishing_regionview (RegionView *);
525
526         void set_selected_track (TimeAxisView&, Selection::Operation op = Selection::Set, bool no_remove=false);
527         void select_all_tracks ();
528
529         bool set_selected_control_point_from_click (Selection::Operation op = Selection::Set, bool no_remove=false);
530         void set_selected_track_from_click (bool press, Selection::Operation op = Selection::Set, bool no_remove=false);
531         void set_selected_track_as_side_effect (bool force = false);
532         bool set_selected_regionview_from_click (bool press, Selection::Operation op = Selection::Set, bool no_track_remove=false);
533
534         void set_selected_regionview_from_region_list (boost::shared_ptr<ARDOUR::Region> region, Selection::Operation op = Selection::Set);
535         bool set_selected_regionview_from_map_event (GdkEventAny*, StreamView*, boost::weak_ptr<ARDOUR::Region>);
536         void collect_new_region_view (RegionView *);
537
538         Gtk::Menu track_context_menu;
539         Gtk::Menu track_region_context_menu;
540         Gtk::Menu track_selection_context_menu;
541         Gtk::Menu track_crossfade_context_menu;
542
543         Gtk::MenuItem* region_edit_menu_split_item;
544         Gtk::MenuItem* region_edit_menu_split_multichannel_item;
545         Gtk::Menu * track_region_edit_playlist_menu;
546         Gtk::Menu * track_edit_playlist_submenu;
547         Gtk::Menu * track_selection_edit_playlist_submenu;
548         
549         void popup_track_context_menu (int, int, ItemType, bool, nframes64_t);
550         Gtk::Menu* build_track_context_menu (nframes64_t);
551         Gtk::Menu* build_track_bus_context_menu (nframes64_t);
552         Gtk::Menu* build_track_region_context_menu (nframes64_t frame);
553         Gtk::Menu* build_track_crossfade_context_menu (nframes64_t);
554         Gtk::Menu* build_track_selection_context_menu (nframes64_t);
555         void add_dstream_context_items (Gtk::Menu_Helpers::MenuList&);
556         void add_bus_context_items (Gtk::Menu_Helpers::MenuList&);
557         void add_region_context_items (AudioStreamView*, boost::shared_ptr<ARDOUR::Region>, Gtk::Menu_Helpers::MenuList&);
558         void add_crossfade_context_items (AudioStreamView*, boost::shared_ptr<ARDOUR::Crossfade>, Gtk::Menu_Helpers::MenuList&, bool many);
559         void add_selection_context_items (Gtk::Menu_Helpers::MenuList&);
560
561         void handle_new_route (ARDOUR::Session::RouteList&);
562         void remove_route (TimeAxisView *);
563         bool route_removal;
564
565         Gtk::HBox           global_hpacker;
566         Gtk::VBox           global_vpacker;
567         Gtk::VBox           vpacker;
568
569         bool need_resize_line;
570         int  resize_line_y;
571         int  old_resize_line_y;
572
573         Gdk::Cursor*          current_canvas_cursor;
574         void set_canvas_cursor ();
575         Gdk::Cursor* which_grabber_cursor ();
576
577         ArdourCanvas::Canvas* track_canvas;
578
579         ArdourCanvas::Text* first_action_message;
580         ArdourCanvas::Text* verbose_canvas_cursor;
581         bool                 verbose_cursor_visible;
582
583         void parameter_changed (const char *);
584         
585         bool track_canvas_motion (GdkEvent*);
586
587         void set_verbose_canvas_cursor (const string &, double x, double y);
588         void set_verbose_canvas_cursor_text (const string &);
589         void show_verbose_canvas_cursor();
590         void hide_verbose_canvas_cursor();
591
592         bool verbose_cursor_on; // so far unused
593
594         Gtk::EventBox      time_canvas_event_box;
595         Gtk::EventBox      track_canvas_event_box;
596         Gtk::EventBox      time_button_event_box;
597         Gtk::EventBox      ruler_label_event_box;
598
599         ArdourCanvas::Pixbuf*     logo_item;
600         ArdourCanvas::Group*      minsec_group;
601         ArdourCanvas::Group*      bbt_group;
602         ArdourCanvas::Group*      smpte_group;
603         ArdourCanvas::Group*      frame_group;
604         ArdourCanvas::Group*      tempo_group;
605         ArdourCanvas::Group*      meter_group;
606         ArdourCanvas::Group*      marker_group;
607         ArdourCanvas::Group*      range_marker_group;
608         ArdourCanvas::Group*      transport_marker_group;
609         ArdourCanvas::Group*      cd_marker_group;
610
611         ArdourCanvas::Group*      timebar_group;
612
613         /* These bars never need to be scrolled */
614         ArdourCanvas::Group*      meter_bar_group;
615         ArdourCanvas::Group*      tempo_bar_group;
616         ArdourCanvas::Group*      marker_bar_group;
617         ArdourCanvas::Group*      range_marker_bar_group;
618         ArdourCanvas::Group*      transport_marker_bar_group;
619         ArdourCanvas::Group*      cd_marker_bar_group;
620
621         /* 
622            The _master_group is the group containing all items
623            that require horizontal scrolling..
624            It is primarily used to separate canvas items 
625            that require horizontal scrolling from those that do not. 
626         */
627         ArdourCanvas::Group* _master_group;
628         /* 
629            The _trackview_group is the group containing all trackviews.
630            It is only scrolled vertically.
631         */
632         ArdourCanvas::Group* _trackview_group;
633         /* 
634            This canvas group is used for region motion.
635            It sits on top of the _trackview_group 
636         */
637         ArdourCanvas::Group* _region_motion_group;
638         
639         enum RulerType {
640                 ruler_metric_smpte = 0,
641                 ruler_metric_bbt = 1,
642                 ruler_metric_frames = 2,
643                 ruler_metric_minsec = 3,
644
645                 ruler_time_tempo = 4,
646                 ruler_time_meter = 5,
647                 ruler_time_marker = 6,
648                 ruler_time_range_marker = 7,
649                 ruler_time_transport_marker = 8,
650                 ruler_time_cd_marker = 9,
651         };
652
653         static GtkCustomMetric ruler_metrics[4];
654         Glib::RefPtr<Gtk::ToggleAction> ruler_timecode_action;
655         Glib::RefPtr<Gtk::ToggleAction> ruler_bbt_action;
656         Glib::RefPtr<Gtk::ToggleAction> ruler_samples_action;
657         Glib::RefPtr<Gtk::ToggleAction> ruler_minsec_action;
658         Glib::RefPtr<Gtk::ToggleAction> ruler_tempo_action;
659         Glib::RefPtr<Gtk::ToggleAction> ruler_meter_action;
660         Glib::RefPtr<Gtk::ToggleAction> ruler_marker_action;
661         Glib::RefPtr<Gtk::ToggleAction> ruler_range_action;
662         Glib::RefPtr<Gtk::ToggleAction> ruler_loop_punch_action;
663         Glib::RefPtr<Gtk::ToggleAction> ruler_cd_marker_action;
664         bool                   no_ruler_shown_update;
665         
666         gint ruler_button_press (GdkEventButton*);
667         gint ruler_button_release (GdkEventButton*);
668         gint ruler_mouse_motion (GdkEventMotion*);
669         bool ruler_scroll (GdkEventScroll* event);
670
671         gint ruler_pressed_button;
672         Gtk::Widget * ruler_grabbed_widget;
673         
674         void initialize_rulers ();
675         void update_just_smpte ();
676         void update_fixed_rulers ();
677         void update_tempo_based_rulers (); 
678         void popup_ruler_menu (nframes64_t where = 0, ItemType type = RegionItem);
679         void update_ruler_visibility ();
680         void set_ruler_visible (RulerType, bool);
681         void toggle_ruler_visibility (RulerType rt);
682         void ruler_toggled (int);
683         gint ruler_label_button_release (GdkEventButton*);
684         void store_ruler_visibility ();
685         void restore_ruler_visibility ();
686         
687         static gint _metric_get_smpte (GtkCustomRulerMark **, gdouble, gdouble, gint);
688         static gint _metric_get_bbt (GtkCustomRulerMark **, gdouble, gdouble, gint);
689         static gint _metric_get_frames (GtkCustomRulerMark **, gdouble, gdouble, gint);
690         static gint _metric_get_minsec (GtkCustomRulerMark **, gdouble, gdouble, gint);
691         
692         gint metric_get_smpte (GtkCustomRulerMark **, gdouble, gdouble, gint);
693         gint metric_get_bbt (GtkCustomRulerMark **, gdouble, gdouble, gint);
694         gint metric_get_frames (GtkCustomRulerMark **, gdouble, gdouble, gint);
695         gint metric_get_minsec (GtkCustomRulerMark **, gdouble, gdouble, gint);
696
697         Gtk::Widget        *_ruler_separator;
698         GtkWidget          *_smpte_ruler;
699         GtkWidget          *_bbt_ruler;
700         GtkWidget          *_frames_ruler;
701         GtkWidget          *_minsec_ruler;
702         Gtk::Widget        *smpte_ruler;
703         Gtk::Widget        *bbt_ruler;
704         Gtk::Widget        *frames_ruler;
705         Gtk::Widget        *minsec_ruler;
706         static Editor      *ruler_editor;
707
708         static const double timebar_height;
709         guint32 visible_timebars;
710         gdouble canvas_timebars_vsize;
711         Gtk::Menu          *editor_ruler_menu;
712         
713         ArdourCanvas::SimpleRect* tempo_bar;
714         ArdourCanvas::SimpleRect* meter_bar;
715         ArdourCanvas::SimpleRect* marker_bar;
716         ArdourCanvas::SimpleRect* range_marker_bar;
717         ArdourCanvas::SimpleRect* transport_marker_bar;
718         ArdourCanvas::SimpleRect* cd_marker_bar;
719
720         
721         ArdourCanvas::SimpleLine* tempo_line;
722         ArdourCanvas::SimpleLine* meter_line;
723         ArdourCanvas::SimpleLine* marker_line;
724         ArdourCanvas::SimpleLine* range_marker_line;
725         ArdourCanvas::SimpleLine* transport_marker_line;
726         ArdourCanvas::SimpleLine* cd_marker_line;
727
728         Gtk::Label  minsec_label;
729         Gtk::Label  bbt_label;
730         Gtk::Label  smpte_label;
731         Gtk::Label  frame_label;
732         Gtk::Label  tempo_label;
733         Gtk::Label  meter_label;
734         Gtk::Label  mark_label;
735         Gtk::Label  range_mark_label;
736         Gtk::Label  transport_mark_label;
737         Gtk::Label  cd_mark_label;
738         
739
740         Gtk::VBox          time_button_vbox;
741         Gtk::HBox          time_button_hbox;
742
743         struct Cursor {
744             Editor&               editor;
745             ArdourCanvas::Points  points;
746             ArdourCanvas::Line    canvas_item;
747             nframes64_t           current_frame;
748             double                length;
749
750             Cursor (Editor&, bool (Editor::*)(GdkEvent*,ArdourCanvas::Item*));
751             ~Cursor ();
752
753             void set_position (nframes64_t);
754             void set_length (double units);
755             void set_y_axis (double position);
756         };
757
758         friend struct Cursor; /* it needs access to several private
759                                  fields. XXX fix me.
760                               */
761
762         Cursor* playhead_cursor;
763         ArdourCanvas::Group* cursor_group;
764
765         void    cursor_to_region_boundary (Cursor*, int32_t dir);
766         void    cursor_to_next_region_boundary (Cursor*);
767         void    cursor_to_previous_region_boundary (Cursor*);
768         void    cursor_to_next_region_point (Cursor*, ARDOUR::RegionPoint);
769         void    cursor_to_previous_region_point (Cursor*, ARDOUR::RegionPoint);
770         void    cursor_to_region_point (Cursor*, ARDOUR::RegionPoint, int32_t dir);
771         void    cursor_to_selection_start (Cursor *);
772         void    cursor_to_selection_end   (Cursor *);
773
774         void    selected_marker_to_region_boundary (int32_t dir);
775         void    selected_marker_to_next_region_boundary ();
776         void    selected_marker_to_previous_region_boundary ();
777         void    selected_marker_to_next_region_point (ARDOUR::RegionPoint);
778         void    selected_marker_to_previous_region_point (ARDOUR::RegionPoint);
779         void    selected_marker_to_region_point (ARDOUR::RegionPoint, int32_t dir);
780         void    selected_marker_to_selection_start ();
781         void    selected_marker_to_selection_end   ();
782
783         void    select_all_selectables_using_cursor (Cursor *, bool);
784         void    select_all_selectables_using_edit (bool);
785         void    select_all_selectables_between (bool within);
786         void    select_range_between ();
787
788         boost::shared_ptr<ARDOUR::Region> find_next_region (nframes64_t, ARDOUR::RegionPoint, int32_t dir, TrackViewList&, TimeAxisView ** = 0);
789         nframes64_t find_next_region_boundary (nframes64_t, int32_t dir, const TrackViewList&);
790
791         vector<nframes64_t> region_boundary_cache;
792         void build_region_boundary_cache ();
793
794         Gtk::HBox           top_hbox;
795         Gtk::HBox           bottom_hbox;
796         
797         Gtk::Table          edit_packer;
798         Gtk::VScrollbar     edit_vscrollbar;
799
800         Gtk::Adjustment     vertical_adjustment;
801         Gtk::Adjustment     horizontal_adjustment;
802
803         Gtk::Layout         controls_layout;
804         bool control_layout_scroll (GdkEventScroll* ev);
805         void controls_layout_size_request (Gtk::Requisition*);
806         sigc::connection controls_layout_size_request_connection;
807
808         Gtk::HScrollbar     edit_hscrollbar;
809         bool                _dragging_hscrollbar;
810
811         void reset_hscrollbar_stepping ();
812         
813         bool hscrollbar_button_press (GdkEventButton*);
814         bool hscrollbar_button_release (GdkEventButton*);
815         void hscrollbar_allocate (Gtk::Allocation &alloc);
816
817         double canvas_width;
818         double canvas_height;
819         double full_canvas_height;
820         nframes64_t last_canvas_frame;
821
822         bool track_canvas_map_handler (GdkEventAny*);
823
824         gint edit_controls_button_release (GdkEventButton*);
825         Gtk::Menu *edit_controls_left_menu;
826         Gtk::Menu *edit_controls_right_menu;
827
828         Gtk::VBox           ruler_label_vbox;
829         Gtk::VBox           track_canvas_vbox;
830         Gtk::VBox           time_canvas_vbox;
831         Gtk::VBox           edit_controls_vbox;
832         Gtk::HBox           edit_controls_hbox;
833
834         void control_scroll (float);
835         void access_action (std::string,std::string);
836         bool deferred_control_scroll (nframes64_t);
837         sigc::connection control_scroll_connection;
838
839         gdouble get_trackview_group_vertical_offset () const { return vertical_adjustment.get_value () - canvas_timebars_vsize;}
840         ArdourCanvas::Group* get_trackview_group () const { return _trackview_group; }
841         double last_trackview_group_vertical_offset;
842         void tie_vertical_scrolling ();
843         void scroll_canvas_horizontally ();
844         void scroll_canvas_vertically ();
845         void canvas_horizontally_scrolled ();
846         void canvas_scroll_to (nframes64_t);
847
848         struct VisualChange {
849             enum Type { 
850                     TimeOrigin = 0x1,
851                     ZoomLevel = 0x2
852             };
853
854             Type pending;
855             nframes64_t time_origin;
856             double frames_per_unit;
857
858             int idle_handler_id;
859
860             VisualChange() : pending ((VisualChange::Type) 0), time_origin (0), frames_per_unit (0), idle_handler_id (-1) {}
861         };
862
863
864         VisualChange pending_visual_change;
865
866         static int _idle_visual_changer (void *arg);
867         int idle_visual_changer ();
868
869         void queue_visual_change (nframes64_t);
870         void queue_visual_change (double);
871
872         void end_location_changed (ARDOUR::Location*);
873
874         struct RegionListDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
875             RegionListDisplayModelColumns() {
876                     add (name);
877                     add (region);
878                     add (color_);
879             }
880             Gtk::TreeModelColumn<Glib::ustring> name;
881             Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Region> > region;
882             Gtk::TreeModelColumn<Gdk::Color> color_;
883         };
884             
885         RegionListDisplayModelColumns          region_list_columns;
886         Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Region> > region_list_display;
887         
888         Glib::RefPtr<Gtk::TreeStore>           region_list_model;
889         Glib::RefPtr<Gtk::ToggleAction>        toggle_full_region_list_action;
890         Glib::RefPtr<Gtk::ToggleAction>        toggle_show_auto_regions_action;
891
892         void region_list_selection_changed ();
893         bool region_list_selection_filter (const Glib::RefPtr<Gtk::TreeModel>& model, const Gtk::TreeModel::Path& path, bool yn);
894         void region_name_edit (const Glib::ustring&, const Glib::ustring&);
895         void get_regions_corresponding_to (boost::shared_ptr<ARDOUR::Region> region, std::vector<RegionView*>& regions);
896
897         Gtk::Menu          *region_list_menu;
898         Gtk::ScrolledWindow region_list_scroller;
899         Gtk::Frame          region_list_frame;
900
901         bool region_list_display_key_press (GdkEventKey *);
902         bool region_list_display_key_release (GdkEventKey *);
903         bool region_list_display_button_press (GdkEventButton *);
904         bool region_list_display_button_release (GdkEventButton *);
905         void region_list_clear ();
906         void region_list_selection_mapover (sigc::slot<void,boost::shared_ptr<ARDOUR::Region> >);
907         void build_region_list_menu ();
908         void show_region_list_display_context_menu (int button, int time);
909
910         bool show_automatic_regions_in_region_list;
911         Editing::RegionListSortType region_list_sort_type;
912
913         void reset_region_list_sort_direction (bool);
914         void reset_region_list_sort_type (Editing::RegionListSortType);
915
916         void toggle_full_region_list ();
917         void toggle_show_auto_regions ();
918
919         int region_list_sorter (Gtk::TreeModel::iterator, Gtk::TreeModel::iterator);
920
921         /* snapshots */
922
923         Gtk::ScrolledWindow      snapshot_display_scroller;
924         struct SnapshotDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
925             SnapshotDisplayModelColumns() { 
926                     add (visible_name);
927                     add (real_name);
928             }
929             Gtk::TreeModelColumn<Glib::ustring> visible_name;
930             Gtk::TreeModelColumn<Glib::ustring> real_name;
931         };
932
933         SnapshotDisplayModelColumns snapshot_display_columns;
934         Glib::RefPtr<Gtk::ListStore> snapshot_display_model;
935         Gtk::TreeView snapshot_display;
936         Gtk::Menu snapshot_context_menu;
937
938         bool snapshot_display_button_press (GdkEventButton*);
939         void snapshot_display_selection_changed ();
940         void redisplay_snapshots();
941         void popup_snapshot_context_menu (int, int32_t, Glib::ustring);
942
943         /* named selections */
944
945         struct NamedSelectionDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
946             NamedSelectionDisplayModelColumns() { 
947                     add (text);
948                     add (selection);
949             }
950             Gtk::TreeModelColumn<Glib::ustring>  text;
951             Gtk::TreeModelColumn<ARDOUR::NamedSelection*>    selection;
952         };
953
954         NamedSelectionDisplayModelColumns named_selection_columns;
955         Glib::RefPtr<Gtk::TreeStore>     named_selection_model;
956
957         Gtkmm2ext::DnDTreeView<ARDOUR::NamedSelection*> named_selection_display;
958         Gtk::ScrolledWindow    named_selection_scroller;
959
960         void create_named_selection ();
961         void paste_named_selection (float times);
962         void remove_selected_named_selections ();
963         void remove_snapshot (Glib::ustring);
964         void rename_snapshot (Glib::ustring);
965
966         void handle_new_named_selection ();
967         void add_named_selection_to_named_selection_display (ARDOUR::NamedSelection&);
968         void redisplay_named_selections ();
969
970         bool named_selection_display_button_release (GdkEventButton *ev);
971         bool named_selection_display_key_release (GdkEventKey *ev);
972         void named_selection_display_selection_changed ();
973
974         /* track views */
975         TrackViewList  track_views;
976         TimeAxisView     *trackview_by_y_position (double ypos);
977
978         static Gdk::Cursor* cross_hair_cursor;
979         static Gdk::Cursor* trimmer_cursor;
980         static Gdk::Cursor* selector_cursor;
981         static Gdk::Cursor* grabber_cursor;
982         static Gdk::Cursor* grabber_edit_point_cursor;
983         static Gdk::Cursor* zoom_cursor;
984         static Gdk::Cursor* time_fx_cursor;
985         static Gdk::Cursor* fader_cursor;
986         static Gdk::Cursor* speaker_cursor;
987         static Gdk::Cursor* wait_cursor;
988         static Gdk::Cursor* timebar_cursor;
989         static Gdk::Cursor* transparent_cursor;
990
991         static void build_cursors ();
992
993         sigc::connection scroll_connection;
994         nframes64_t last_update_frame;
995         void center_screen (nframes64_t);
996         void center_screen_internal (nframes64_t, float);
997         
998         void update_current_screen ();
999         
1000         void session_going_away ();
1001
1002         nframes64_t cut_buffer_start;
1003         nframes64_t cut_buffer_length;
1004
1005         bool typed_event (ArdourCanvas::Item*, GdkEvent*, ItemType);
1006         bool button_press_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1007         bool button_release_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1008         bool motion_handler (ArdourCanvas::Item*, GdkEvent*, ItemType, bool from_autoscroll = false);
1009         bool enter_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1010         bool leave_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
1011         
1012         /* KEYMAP HANDLING */
1013
1014         void register_actions ();
1015
1016         int ensure_cursor (nframes64_t* pos);
1017
1018         void handle_new_audio_region (boost::weak_ptr<ARDOUR::AudioRegion>);
1019         void handle_new_audio_regions (vector<boost::weak_ptr<ARDOUR::AudioRegion> >& );
1020         void handle_audio_region_removed (boost::weak_ptr<ARDOUR::AudioRegion>);
1021         void add_audio_region_to_region_display (boost::shared_ptr<ARDOUR::AudioRegion>);
1022         void add_audio_regions_to_region_display (std::vector<boost::weak_ptr<ARDOUR::AudioRegion> > & );
1023         void region_hidden (boost::shared_ptr<ARDOUR::Region>);
1024         void redisplay_regions ();
1025         bool no_region_list_redisplay;
1026         void insert_into_tmp_audio_regionlist(boost::shared_ptr<ARDOUR::AudioRegion>);
1027
1028         list<boost::shared_ptr<ARDOUR::AudioRegion> > tmp_audio_region_list;
1029
1030         void cut_copy (Editing::CutCopyOp);
1031         void cut_copy_points (Editing::CutCopyOp);
1032         void cut_copy_regions (Editing::CutCopyOp, RegionSelection&);
1033         void cut_copy_ranges (Editing::CutCopyOp);
1034
1035         void mouse_paste ();
1036         void paste_internal (nframes64_t position, float times);
1037
1038         /* EDITING OPERATIONS */
1039         
1040         void reset_point_selection ();
1041         void toggle_region_mute ();
1042         void toggle_region_lock ();
1043         void toggle_region_opaque ();
1044         void set_region_lock_style (ARDOUR::Region::PositionLockStyle);
1045         void raise_region ();
1046         void raise_region_to_top ();
1047         void lower_region ();
1048         void lower_region_to_bottom ();
1049         void split_region ();
1050         void split_region_at (nframes64_t);
1051         void split_regions_at (nframes64_t, RegionSelection&);
1052         void split_region_at_transients ();
1053         void split_region_at_points (boost::shared_ptr<ARDOUR::Region>, ARDOUR::AnalysisFeatureList&, bool can_ferret);
1054         void crop_region_to_selection ();
1055         void crop_region_to (nframes64_t start, nframes64_t end);
1056         void set_sync_point (nframes64_t, const RegionSelection&);
1057         void set_region_sync_from_edit_point ();
1058         void remove_region_sync();
1059         void align_selection (ARDOUR::RegionPoint, nframes64_t position, const RegionSelection&);
1060         void align_selection_relative (ARDOUR::RegionPoint point, nframes64_t position, const RegionSelection&);
1061         void align_region (boost::shared_ptr<ARDOUR::Region>, ARDOUR::RegionPoint point, nframes64_t position);
1062         void align_region_internal (boost::shared_ptr<ARDOUR::Region>, ARDOUR::RegionPoint point, nframes64_t position);
1063         void remove_region ();
1064         void remove_clicked_region ();
1065         void edit_region ();
1066         void rename_region ();
1067         void duplicate_some_regions (RegionSelection&, float times);
1068         void duplicate_selection (float times);
1069         void region_fill_selection ();
1070
1071         void region_fill_track ();
1072         void audition_playlist_region_standalone (boost::shared_ptr<ARDOUR::Region>);
1073         void audition_playlist_region_via_route (boost::shared_ptr<ARDOUR::Region>, ARDOUR::Route&);
1074         void split_multichannel_region();
1075         void reverse_region ();
1076         void normalize_region ();
1077         void denormalize_region ();
1078         void adjust_region_scale_amplitude (bool up);
1079
1080         void do_insert_time ();
1081         void insert_time (nframes64_t pos, nframes64_t distance, Editing::InsertTimeOption opt, bool ignore_music_glue, bool markers_too);
1082
1083         void tab_to_transient (bool forward);
1084
1085         void use_region_as_bar ();
1086         void use_range_as_bar ();
1087
1088         void define_one_bar (nframes64_t start, nframes64_t end);
1089
1090         void audition_region_from_region_list ();
1091         void hide_region_from_region_list ();
1092         void remove_region_from_region_list ();
1093
1094         void align (ARDOUR::RegionPoint);
1095         void align_relative (ARDOUR::RegionPoint);
1096         void naturalize ();
1097
1098         void reset_focus ();
1099
1100         void split ();
1101
1102         void cut ();
1103         void copy ();
1104         void paste (float times);
1105
1106         int  get_prefix (float&, bool&);
1107
1108         void keyboard_paste ();
1109         void keyboard_insert_region_list_selection ();
1110
1111         void region_from_selection ();
1112         void create_region_from_selection (std::vector<boost::shared_ptr<ARDOUR::AudioRegion> >&);
1113
1114         void play_from_start ();
1115         void play_from_edit_point ();
1116         void play_from_edit_point_and_return ();
1117         void play_selected_region ();
1118         void play_edit_range ();
1119         void loop_selected_region ();
1120         void play_location (ARDOUR::Location&);
1121         void loop_location (ARDOUR::Location&);
1122
1123         void temporal_zoom_selection ();
1124         void temporal_zoom_region (bool both_axes);
1125         void toggle_zoom_region (bool both_axes);
1126         bool zoomed_to_region;
1127         void temporal_zoom_session ();
1128         void temporal_zoom (gdouble scale);
1129         void temporal_zoom_by_frame (nframes64_t start, nframes64_t end, const string & op);
1130         void temporal_zoom_to_frame (bool coarser, nframes64_t frame);
1131
1132         void amplitude_zoom (gdouble scale);
1133         void amplitude_zoom_step (bool in);
1134
1135         void insert_region_list_drag (boost::shared_ptr<ARDOUR::AudioRegion>, int x, int y);
1136         void insert_region_list_selection (float times);
1137
1138         void add_external_audio_action (Editing::ImportMode);
1139         void external_audio_dialog ();
1140
1141         int  check_whether_and_how_to_import(string, bool all_or_nothing = true);
1142         bool check_multichannel_status (const std::vector<Glib::ustring>& paths);
1143
1144         SoundFileOmega* sfbrowser;
1145         
1146         void bring_in_external_audio (Editing::ImportMode mode,  nframes64_t& pos);
1147
1148         void _do_import (vector<Glib::ustring> paths, Editing::ImportDisposition, Editing::ImportMode mode, ARDOUR::SrcQuality, nframes64_t&);
1149         void do_import (vector<Glib::ustring> paths, Editing::ImportDisposition, Editing::ImportMode mode, ARDOUR::SrcQuality, nframes64_t&);
1150         bool idle_do_import (vector<Glib::ustring> paths, Editing::ImportDisposition, Editing::ImportMode mode, ARDOUR::SrcQuality, nframes64_t&);
1151
1152         void _do_embed (vector<Glib::ustring> paths, Editing::ImportDisposition, Editing::ImportMode mode,  nframes64_t&);
1153         void do_embed (vector<Glib::ustring> paths, Editing::ImportDisposition, Editing::ImportMode mode,  nframes64_t&);
1154         bool idle_do_embed (vector<Glib::ustring> paths, Editing::ImportDisposition, Editing::ImportMode mode,  nframes64_t&);
1155
1156         int  import_sndfiles (vector<Glib::ustring> paths, Editing::ImportMode mode,  ARDOUR::SrcQuality, nframes64_t& pos,
1157                               int target_regions, int target_tracks, boost::shared_ptr<ARDOUR::AudioTrack>&, bool);
1158         int  embed_sndfiles (vector<Glib::ustring> paths, bool multiple_files, bool& check_sample_rate, Editing::ImportMode mode, 
1159                              nframes64_t& pos, int target_regions, int target_tracks, boost::shared_ptr<ARDOUR::AudioTrack>&);
1160
1161         int add_sources (vector<Glib::ustring> paths, ARDOUR::SourceList& sources, nframes64_t& pos, Editing::ImportMode,
1162                          int target_regions, int target_tracks, boost::shared_ptr<ARDOUR::AudioTrack>&, bool add_channel_suffix);
1163         int finish_bringing_in_audio (boost::shared_ptr<ARDOUR::AudioRegion> region, uint32_t, uint32_t,  nframes64_t& pos, Editing::ImportMode mode,
1164                                       boost::shared_ptr<ARDOUR::AudioTrack>& existing_track);
1165
1166         boost::shared_ptr<ARDOUR::AudioTrack> get_nth_selected_audio_track (int nth) const;
1167
1168         /* generic interthread progress window */
1169         
1170         ArdourDialog* interthread_progress_window;
1171         Gtk::Label interthread_progress_label;
1172         Gtk::VBox interthread_progress_vbox;
1173         Gtk::ProgressBar interthread_progress_bar;
1174         Gtk::Button interthread_cancel_button;
1175         Gtk::Label interthread_cancel_label;
1176         sigc::connection  interthread_progress_connection;
1177         void interthread_cancel_clicked ();
1178         void build_interthread_progress_window ();
1179         ARDOUR::InterThreadInfo* current_interthread_info;
1180
1181 #ifdef FFT_ANALYSIS
1182         AnalysisWindow* analysis_window;
1183 #endif
1184
1185         /* import specific info */
1186
1187         ARDOUR::Session::import_status import_status;
1188         gint import_progress_timeout (void *);
1189         static void *_import_thread (void *);
1190         void* import_thread ();
1191
1192         /* to support this ... */
1193
1194         void import_audio (bool as_tracks);
1195         void do_import (vector<Glib::ustring> paths, bool split, bool as_tracks);
1196
1197         void move_to_start ();
1198         void move_to_end ();
1199         void goto_frame ();
1200         void center_playhead ();
1201         void center_edit_point ();
1202         void edit_cursor_backward ();
1203         void edit_cursor_forward ();
1204         void playhead_forward_to_grid ();
1205         void playhead_backward_to_grid ();
1206         void playhead_backward ();
1207         void playhead_forward ();
1208         void scroll_playhead (bool forward);
1209         void scroll_backward (float pages=0.8f);
1210         void scroll_forward (float pages=0.8f);
1211         void scroll_tracks_down ();
1212         void scroll_tracks_up ();
1213         void delete_sample_forward ();
1214         void delete_sample_backward ();
1215         void delete_screen ();
1216         void search_backwards ();
1217         void search_forwards ();
1218         void set_mark ();
1219         void clear_markers ();
1220         void clear_ranges ();
1221         void clear_locations ();
1222         void unhide_markers ();
1223         void unhide_ranges ();
1224         void jump_forward_to_mark ();
1225         void jump_backward_to_mark ();
1226         void cursor_align (bool playhead_to_edit);
1227
1228         void remove_last_capture ();
1229         void select_all_selectables_using_time_selection ();
1230         void select_all_selectables_using_loop();
1231         void select_all_selectables_using_punch();
1232         void set_selection_from_range (ARDOUR::Location&);
1233         void set_selection_from_punch ();
1234         void set_selection_from_loop ();
1235         void set_selection_from_audio_region ();
1236
1237         void add_location_mark (nframes64_t where);
1238         void add_location_from_audio_region ();
1239         void add_location_from_selection ();
1240         void set_loop_from_selection (bool play);
1241         void set_punch_from_selection ();
1242         void set_punch_from_region ();
1243
1244         void set_loop_from_edit_range (bool play);
1245         void set_loop_from_region (bool play);
1246         void set_punch_from_edit_range ();
1247
1248         void set_loop_range (nframes64_t start, nframes64_t end, std::string cmd);
1249         void set_punch_range (nframes64_t start, nframes64_t end, std::string cmd);
1250
1251         void add_location_from_playhead_cursor ();
1252         bool select_new_marker;
1253
1254         void reverse_selection ();
1255         void edit_envelope ();
1256
1257         void start_scrolling ();
1258         void stop_scrolling ();
1259
1260         bool _scrubbing;
1261         double last_scrub_x;
1262         int scrubbing_direction;
1263         int scrub_reversals;
1264         int scrub_reverse_distance;
1265         void scrub ();
1266
1267         void keyboard_selection_begin ();
1268         void keyboard_selection_finish (bool add);
1269         bool have_pending_keyboard_selection;
1270         nframes64_t pending_keyboard_selection_start;
1271
1272         boost::shared_ptr<ARDOUR::Region> select_region_for_operation (int dir, TimeAxisView **tv);
1273         void extend_selection_to_end_of_region (bool next);
1274         void extend_selection_to_start_of_region (bool previous);
1275
1276         Editing::SnapType snap_type;
1277         Editing::SnapMode snap_mode;
1278         double snap_threshold;
1279
1280         void handle_gui_changes (const string &, void *);
1281
1282         void    hide_all_tracks (bool with_select);
1283
1284         DragInfo drag_info;
1285         LineDragInfo current_line_drag_info;
1286
1287         void start_grab (GdkEvent*, Gdk::Cursor* cursor = 0);
1288         bool end_grab (ArdourCanvas::Item*, GdkEvent*);
1289         void swap_grab (ArdourCanvas::Item*, Gdk::Cursor* cursor, uint32_t time);
1290         void break_drag ();
1291         void finalize_drag ();
1292
1293         Gtk::Menu fade_context_menu;
1294         void popup_fade_context_menu (int, int, ArdourCanvas::Item*, ItemType);
1295
1296         void start_fade_in_grab (ArdourCanvas::Item*, GdkEvent*);
1297         void start_fade_out_grab (ArdourCanvas::Item*, GdkEvent*);
1298         void fade_in_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1299         void fade_out_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1300         void fade_in_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1301         void fade_out_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1302
1303         void set_fade_in_shape (ARDOUR::AudioRegion::FadeShape);
1304         void set_fade_out_shape (ARDOUR::AudioRegion::FadeShape);
1305         
1306         void set_fade_length (bool in);
1307         void toggle_fade_active (bool in);
1308         void set_fade_in_active (bool);
1309         void set_fade_out_active (bool);
1310         
1311         std::set<boost::shared_ptr<ARDOUR::Playlist> > motion_frozen_playlists;
1312         RegionSelection pre_drag_region_selection;
1313         void region_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1314         void region_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1315         bool check_region_drag_possible (AudioTimeAxisView**);
1316         void possibly_copy_regions_during_grab (GdkEvent*);
1317         void region_drag_splice_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1318         void region_drag_splice_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1319
1320         bool _dragging_playhead;
1321         bool _dragging_edit_point;
1322
1323         void cursor_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1324         void cursor_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1325         void marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1326         void marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1327         void control_point_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1328         void control_point_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1329         void line_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1330         void line_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1331
1332         void tempo_marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1333         void tempo_marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1334         void meter_marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1335         void meter_marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1336
1337         gint mouse_rename_region (ArdourCanvas::Item*, GdkEvent*);
1338
1339         void start_region_grab (ArdourCanvas::Item*, GdkEvent*);
1340         void start_region_copy_grab (ArdourCanvas::Item*, GdkEvent*);
1341         void start_region_brush_grab (ArdourCanvas::Item*, GdkEvent*);
1342         void start_selection_grab (ArdourCanvas::Item*, GdkEvent*);
1343         void start_cursor_grab (ArdourCanvas::Item*, GdkEvent*);
1344         void start_marker_grab (ArdourCanvas::Item*, GdkEvent*);
1345         void start_control_point_grab (ArdourCanvas::Item*, GdkEvent*);
1346         void start_line_grab_from_regionview (ArdourCanvas::Item*, GdkEvent*);
1347         void start_line_grab_from_line (ArdourCanvas::Item*, GdkEvent*);
1348         void start_line_grab (AutomationLine *, GdkEvent*);
1349         void start_tempo_marker_grab (ArdourCanvas::Item*, GdkEvent*);
1350         void start_tempo_marker_copy_grab (ArdourCanvas::Item*, GdkEvent*);
1351         void start_meter_marker_grab (ArdourCanvas::Item*, GdkEvent*);
1352         void start_meter_marker_copy_grab (ArdourCanvas::Item*, GdkEvent*);
1353
1354         void region_view_item_click (AudioRegionView&, GdkEventButton*);
1355
1356         void remove_gain_control_point (ArdourCanvas::Item*, GdkEvent*);
1357         void remove_control_point (ArdourCanvas::Item*, GdkEvent*);
1358
1359         void mouse_brush_insert_region (RegionView*, nframes64_t pos);
1360         void brush (nframes64_t);
1361
1362         void show_verbose_time_cursor (nframes64_t frame, double offset = 0, double xpos=-1, double ypos=-1);
1363         void show_verbose_duration_cursor (nframes64_t start, nframes64_t end, double offset = 0, double xpos=-1, double ypos=-1);
1364         double clamp_verbose_cursor_x (double);
1365         double clamp_verbose_cursor_y (double);
1366
1367         /* Canvas event handlers */
1368
1369         bool canvas_control_point_event (GdkEvent* event,ArdourCanvas::Item*, ControlPoint*);
1370         bool canvas_line_event (GdkEvent* event,ArdourCanvas::Item*, AutomationLine*);
1371         bool canvas_selection_rect_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1372         bool canvas_selection_start_trim_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1373         bool canvas_selection_end_trim_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1374         bool canvas_crossfade_view_event (GdkEvent* event,ArdourCanvas::Item*, CrossfadeView*);
1375         bool canvas_fade_in_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1376         bool canvas_fade_in_handle_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1377         bool canvas_fade_out_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1378         bool canvas_fade_out_handle_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1379         
1380
1381         // These variables are used to detect a feedback loop and break it to avoid a gui hang
1382 private:
1383         ArdourCanvas::Item *last_item_entered;
1384         int last_item_entered_n;
1385 public:
1386
1387         bool canvas_region_view_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1388         bool canvas_region_view_name_highlight_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1389         bool canvas_region_view_name_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1390         bool canvas_stream_view_event (GdkEvent* event,ArdourCanvas::Item*, RouteTimeAxisView*);
1391         bool canvas_marker_event (GdkEvent* event,ArdourCanvas::Item*, Marker*);
1392         bool canvas_zoom_rect_event (GdkEvent* event,ArdourCanvas::Item*);
1393         bool canvas_tempo_marker_event (GdkEvent* event,ArdourCanvas::Item*, TempoMarker*);
1394         bool canvas_meter_marker_event (GdkEvent* event,ArdourCanvas::Item*, MeterMarker*);
1395         bool canvas_automation_track_event(GdkEvent* event, ArdourCanvas::Item*, AutomationTimeAxisView*) ;
1396
1397         bool canvas_tempo_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1398         bool canvas_meter_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1399         bool canvas_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1400         bool canvas_range_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1401         bool canvas_transport_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1402         bool canvas_cd_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1403
1404         bool canvas_imageframe_item_view_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
1405         bool canvas_imageframe_view_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameTimeAxis*);
1406         bool canvas_imageframe_start_handle_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
1407         bool canvas_imageframe_end_handle_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
1408         bool canvas_marker_time_axis_view_event(GdkEvent* event, ArdourCanvas::Item*,MarkerTimeAxis*);
1409         bool canvas_markerview_item_view_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
1410         bool canvas_markerview_start_handle_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
1411         bool canvas_markerview_end_handle_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
1412
1413         /* non-public event handlers */
1414
1415         bool canvas_playhead_cursor_event (GdkEvent* event, ArdourCanvas::Item*);
1416         bool track_canvas_scroll (GdkEventScroll* event);
1417
1418         bool track_canvas_scroll_event (GdkEventScroll* event);
1419         bool track_canvas_button_press_event (GdkEventButton* event);
1420         bool track_canvas_button_release_event (GdkEventButton* event);
1421         bool track_canvas_motion_notify_event (GdkEventMotion* event);
1422
1423         Gtk::Allocation canvas_allocation;
1424         void track_canvas_allocate (Gtk::Allocation alloc);
1425         bool track_canvas_size_allocated ();
1426
1427         void set_playhead_cursor ();
1428
1429         void kbd_driver (sigc::slot<void,GdkEvent*>, bool use_track_canvas = true, bool use_time_canvas = true, bool can_select = true);
1430         void kbd_mute_unmute_region ();
1431         void kbd_brush ();
1432
1433         void kbd_do_brush (GdkEvent*);
1434         void kbd_do_audition (GdkEvent*);
1435
1436         void handle_new_duration ();
1437         void initialize_canvas ();
1438
1439         /* display control */
1440         
1441         bool _show_measures;
1442         bool _show_waveforms;
1443         bool _follow_playhead;
1444         bool _show_waveforms_recording;
1445         
1446         ARDOUR::TempoMap::BBTPointList *current_bbt_points;
1447         
1448         TempoLines* tempo_lines;
1449         
1450         ArdourCanvas::Group* time_line_group;
1451         ArdourCanvas::SimpleLine* get_time_line ();
1452         void hide_measures ();
1453         void draw_measures ();
1454         bool redraw_measures ();
1455
1456         void new_tempo_section ();
1457
1458         void mouse_add_new_tempo_event (nframes64_t where);
1459         void mouse_add_new_meter_event (nframes64_t where);
1460
1461         void remove_tempo_marker (ArdourCanvas::Item*);
1462         void remove_meter_marker (ArdourCanvas::Item*);
1463         gint real_remove_tempo_marker (ARDOUR::TempoSection*);
1464         gint real_remove_meter_marker (ARDOUR::MeterSection*);
1465         
1466         void edit_tempo_section (ARDOUR::TempoSection*);
1467         void edit_meter_section (ARDOUR::MeterSection*);
1468         void edit_tempo_marker (ArdourCanvas::Item*);
1469         void edit_meter_marker (ArdourCanvas::Item*);
1470         
1471         void marker_menu_edit ();
1472         void marker_menu_remove ();
1473         void marker_menu_rename ();
1474         void marker_menu_lock (bool yn);
1475         void marker_menu_hide ();
1476         void marker_menu_loop_range ();
1477         void marker_menu_select_all_selectables_using_range ();
1478         void marker_menu_select_using_range ();
1479         void marker_menu_separate_regions_using_location ();
1480         void marker_menu_play_from ();
1481         void marker_menu_play_range ();
1482         void marker_menu_set_playhead ();
1483         void marker_menu_set_from_playhead ();
1484         void marker_menu_set_from_selection ();
1485         void marker_menu_range_to_next ();
1486         void marker_menu_export_range ();
1487         void new_transport_marker_menu_set_loop ();
1488         void new_transport_marker_menu_set_punch ();
1489         void update_loop_range_view (bool visibility=false);
1490         void update_punch_range_view (bool visibility=false);
1491         gint new_transport_marker_menu_popdown (GdkEventAny*);
1492         void marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1493         void tm_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1494         void transport_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1495         void new_transport_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1496         void build_range_marker_menu (bool loop_or_punch);
1497         void build_marker_menu (bool start_or_end);
1498         void build_tm_marker_menu ();
1499         void build_new_transport_marker_menu ();
1500
1501         Gtk::Menu* tm_marker_menu;
1502         Gtk::Menu* marker_menu;
1503         Gtk::Menu* start_end_marker_menu;
1504         Gtk::Menu* range_marker_menu;
1505         Gtk::Menu* transport_marker_menu;
1506         Gtk::Menu* new_transport_marker_menu;
1507         Gtk::Menu* cd_marker_menu;
1508         ArdourCanvas::Item* marker_menu_item;
1509
1510         typedef list<Marker*> Marks;
1511         Marks metric_marks;
1512
1513         void remove_metric_marks ();
1514         void draw_metric_marks (const ARDOUR::Metrics& metrics);
1515
1516         void compute_current_bbt_points (nframes_t left, nframes_t right);
1517         void tempo_map_changed (ARDOUR::Change);
1518         void redisplay_tempo (bool immediate_redraw);
1519         
1520         void snap_to (nframes64_t& first, int32_t direction = 0, bool for_mark = false);
1521
1522         uint32_t bbt_beat_subdivision;
1523
1524         /* toolbar */
1525
1526         void editor_mixer_button_toggled ();
1527
1528         AudioClock               edit_point_clock;
1529         AudioClock               zoom_range_clock;
1530         Gtk::Button              zoom_in_button;
1531         Gtk::Button              zoom_out_button;
1532         Gtk::Button              zoom_out_full_button;
1533         Gtk::Button              zoom_onetoone_button;
1534
1535         Gtk::VBox                toolbar_clock_vbox;
1536         Gtk::VBox                toolbar_selection_clock_vbox; 
1537         Gtk::Table               toolbar_selection_clock_table;
1538         Gtk::Label               toolbar_selection_cursor_label;
1539         
1540         Gtk::HBox                mouse_mode_button_box;
1541         Gtkmm2ext::TearOff*      mouse_mode_tearoff;
1542         Gtk::ToggleButton        mouse_select_button;
1543         Gtk::ToggleButton        mouse_move_button;
1544         Gtk::ToggleButton        mouse_gain_button;
1545         Gtk::ToggleButton        mouse_zoom_button;
1546         Gtk::ToggleButton        mouse_timefx_button;
1547         Gtk::ToggleButton        mouse_audition_button;
1548         GroupedButtons          *mouse_mode_button_set;
1549         void                     mouse_mode_toggled (Editing::MouseMode m);
1550         bool                     ignore_mouse_mode_toggle;
1551
1552         gint                     mouse_select_button_release (GdkEventButton*);
1553
1554         Gtk::VBox                automation_box;
1555         Gtk::Button              automation_mode_button;
1556         Gtk::ToggleButton        global_automation_button;
1557
1558         Gtk::ComboBoxText edit_mode_selector;
1559         Gtk::VBox         edit_mode_box;
1560
1561         void set_edit_mode (ARDOUR::EditMode);
1562         void cycle_edit_mode ();
1563         void edit_mode_selection_done ();
1564
1565         Gtk::ComboBoxText snap_type_selector;
1566         Gtk::ComboBoxText snap_mode_selector;
1567         Gtk::HBox         snap_box;
1568
1569         std::vector<std::string> snap_type_strings;
1570         std::vector<std::string> snap_mode_strings;
1571
1572         void snap_type_selection_done ();
1573         void snap_mode_selection_done ();
1574         void snap_mode_chosen (Editing::SnapMode);
1575         void snap_type_chosen (Editing::SnapType);
1576
1577         Glib::RefPtr<Gtk::RadioAction> snap_type_action (Editing::SnapType);
1578         Glib::RefPtr<Gtk::RadioAction> snap_mode_action (Editing::SnapMode);
1579
1580         Gtk::ComboBoxText zoom_focus_selector;
1581         Gtk::VBox         zoom_focus_box;
1582
1583         std::vector<std::string> zoom_focus_strings;
1584         
1585         void zoom_focus_selection_done ();
1586         void zoom_focus_chosen (Editing::ZoomFocus);
1587
1588         Glib::RefPtr<Gtk::RadioAction> zoom_focus_action (Editing::ZoomFocus);
1589
1590         Gtk::HBox           zoom_box;
1591
1592         void                zoom_adjustment_changed();
1593
1594         void                edit_point_clock_changed();
1595         
1596         void setup_toolbar ();
1597
1598         Gtkmm2ext::TearOff*       tools_tearoff;
1599         Gtk::HBox                toolbar_hbox;
1600         Gtk::EventBox            toolbar_base;
1601         Gtk::Frame               toolbar_frame;
1602
1603         /* selection process */
1604
1605         Selection* selection;
1606         Selection* cut_buffer;
1607
1608         void time_selection_changed ();
1609         void track_selection_changed ();
1610         void region_selection_changed ();
1611         void sensitize_the_right_region_actions (bool have_selected_regions);
1612         void point_selection_changed ();
1613         void marker_selection_changed ();
1614
1615         enum SelectionOp {
1616                 CreateSelection,
1617                 SelectionStartTrim,
1618                 SelectionEndTrim,
1619                 SelectionMove
1620         } selection_op;
1621
1622         void start_selection_op (ArdourCanvas::Item* item, GdkEvent* event, SelectionOp);
1623         void drag_selection (ArdourCanvas::Item* item, GdkEvent* event);
1624         void end_selection_op (ArdourCanvas::Item* item, GdkEvent* event);
1625         void cancel_selection ();
1626
1627         void region_selection_op (void (ARDOUR::Region::*pmf)(void));
1628         void region_selection_op (void (ARDOUR::Region::*pmf)(void*), void*);
1629         void region_selection_op (void (ARDOUR::Region::*pmf)(bool), bool);
1630
1631         bool audio_region_selection_covers (nframes64_t where);
1632
1633         /* transport range select process */
1634         enum RangeMarkerOp {
1635                 CreateRangeMarker,
1636                 CreateTransportMarker,
1637                 CreateCDMarker
1638         } range_marker_op;
1639
1640         void start_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event, RangeMarkerOp);
1641         void drag_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event);
1642         void end_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event);
1643
1644         ArdourCanvas::SimpleRect*  cd_marker_bar_drag_rect;
1645         ArdourCanvas::SimpleRect*  range_bar_drag_rect;
1646         ArdourCanvas::SimpleRect*  transport_bar_drag_rect;
1647         ArdourCanvas::Line*        marker_drag_line;
1648         ArdourCanvas::Points       marker_drag_line_points;
1649         ArdourCanvas::SimpleRect*  range_marker_drag_rect;
1650
1651         void update_marker_drag_item (ARDOUR::Location *);
1652         
1653         ArdourCanvas::SimpleRect     *transport_bar_range_rect;
1654         ArdourCanvas::SimpleRect     *transport_bar_preroll_rect;
1655         ArdourCanvas::SimpleRect     *transport_bar_postroll_rect;
1656         ArdourCanvas::SimpleRect     *transport_loop_range_rect;
1657         ArdourCanvas::SimpleRect     *transport_punch_range_rect;
1658         ArdourCanvas::SimpleLine     *transport_punchin_line;
1659         ArdourCanvas::SimpleLine     *transport_punchout_line;
1660         ArdourCanvas::SimpleRect     *transport_preroll_rect;
1661         ArdourCanvas::SimpleRect     *transport_postroll_rect;
1662
1663         ARDOUR::Location*  transport_loop_location();
1664         ARDOUR::Location*  transport_punch_location();
1665
1666         ARDOUR::Location   *temp_location;
1667         
1668         /* object rubberband select process */
1669         
1670         void start_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
1671         void drag_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
1672         void end_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
1673
1674         bool select_all_within (nframes64_t start, nframes64_t end, gdouble topy, gdouble boty, const TrackViewList&, Selection::Operation op);
1675         
1676         ArdourCanvas::SimpleRect   *rubberband_rect;
1677         
1678         /* mouse zoom process */
1679
1680         void start_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
1681         void drag_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
1682         void end_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
1683
1684         ArdourCanvas::SimpleRect   *zoom_rect;
1685         void reposition_zoom_rect (nframes64_t start, nframes64_t end);
1686         
1687         /* diskstream/route display management */
1688
1689         struct RouteDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
1690             RouteDisplayModelColumns() { 
1691                     add (text);
1692                     add (visible);
1693                     add (temporary_visible);
1694                     add (tv);
1695                     add (route);
1696             }
1697             Gtk::TreeModelColumn<Glib::ustring>  text;
1698             Gtk::TreeModelColumn<bool>           visible;
1699             Gtk::TreeModelColumn<bool>           temporary_visible;
1700             Gtk::TreeModelColumn<TimeAxisView*>  tv;
1701             Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Route> >  route;
1702         };
1703
1704         RouteDisplayModelColumns         route_display_columns;
1705         Glib::RefPtr<Gtk::ListStore>     route_display_model;
1706         Glib::RefPtr<Gtk::TreeSelection> route_display_selection;
1707
1708         Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Route> > route_list_display; 
1709         Gtk::ScrolledWindow                   route_list_scroller;
1710         Gtk::Menu*                            route_list_menu;
1711
1712         void update_route_visibility ();
1713
1714         void sync_order_keys (void*);
1715         bool ignore_route_order_sync;
1716
1717         bool route_list_display_button_press (GdkEventButton*);
1718         void route_list_display_drag_data_received  (const Glib::RefPtr<Gdk::DragContext>& context,
1719                                                      gint                x,
1720                                                      gint                y,
1721                                                      const Gtk::SelectionData& data,
1722                                                      guint               info,
1723                                                      guint               time);
1724
1725         bool route_list_selection_filter (const Glib::RefPtr<Gtk::TreeModel>& model, const Gtk::TreeModel::Path& path, bool yn);
1726
1727         void route_list_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&);
1728         void route_list_delete (const Gtk::TreeModel::Path&);
1729         void track_list_reorder (const Gtk::TreeModel::Path& path, const Gtk::TreeModel::iterator& iter, int* new_order);
1730
1731         void initial_route_list_display ();
1732         void redisplay_route_list();
1733         bool ignore_route_list_reorder;
1734         bool no_route_list_redisplay;
1735
1736         void build_route_list_menu ();
1737         void show_route_list_menu ();
1738
1739         void show_all_routes ();
1740         void hide_all_routes ();
1741         void show_all_audiotracks ();
1742         void hide_all_audiotracks ();
1743         void show_all_audiobus ();
1744         void hide_all_audiobus ();
1745
1746         void set_all_tracks_visibility (bool yn);
1747         void set_all_audio_visibility (int type, bool yn);
1748
1749         /* edit group management */
1750
1751         struct GroupListModelColumns : public Gtk::TreeModel::ColumnRecord {
1752                 GroupListModelColumns () {
1753                        add (is_active);
1754                        add (is_visible);
1755                        add (text);
1756                        add (routegroup);
1757                 }
1758                 Gtk::TreeModelColumn<bool> is_active;
1759                 Gtk::TreeModelColumn<bool> is_visible;
1760                 Gtk::TreeModelColumn<std::string> text;
1761                 Gtk::TreeModelColumn<ARDOUR::RouteGroup*>   routegroup;
1762         };
1763
1764         GroupListModelColumns group_columns;
1765         Glib::RefPtr<Gtk::ListStore> group_model;
1766         Glib::RefPtr<Gtk::TreeSelection> group_selection;
1767
1768         Gtk::TreeView          edit_group_display;
1769         Gtk::ScrolledWindow    edit_group_display_scroller;
1770         Gtk::Menu*             edit_group_list_menu;
1771
1772         void build_edit_group_list_menu ();
1773         void activate_all_edit_groups ();
1774         void disable_all_edit_groups ();
1775
1776         bool in_edit_group_row_change;
1777         void edit_group_row_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&);
1778         void edit_group_name_edit (const Glib::ustring&, const Glib::ustring&);
1779         void new_edit_group ();
1780         void edit_group_list_button_clicked ();
1781         gint edit_group_list_button_press_event (GdkEventButton* ev);
1782         void add_edit_group (ARDOUR::RouteGroup* group);
1783         void remove_selected_edit_group ();
1784         void edit_groups_changed ();
1785         void group_flags_changed (void*, ARDOUR::RouteGroup*);
1786
1787         Gtk::VBox           list_vpacker;
1788
1789         /* autoscrolling */
1790
1791         bool autoscroll_active;
1792         int autoscroll_timeout_tag;
1793         int autoscroll_x;
1794         int autoscroll_y;
1795         int last_autoscroll_x;
1796         int last_autoscroll_y;
1797         uint32_t autoscroll_cnt;
1798         nframes64_t autoscroll_x_distance;
1799         double autoscroll_y_distance;
1800
1801         static gint _autoscroll_canvas (void *);
1802         bool autoscroll_canvas ();
1803         void start_canvas_autoscroll (int x, int y);
1804         void stop_canvas_autoscroll ();
1805         void maybe_autoscroll (GdkEventMotion*);
1806         void maybe_autoscroll_horizontally (GdkEventMotion*);
1807         bool allow_vertical_scroll;
1808
1809         /* trimming */
1810         enum TrimOp {
1811                 StartTrim,
1812                 EndTrim,
1813                 ContentsTrim,
1814         } trim_op;
1815
1816         void start_trim (ArdourCanvas::Item*, GdkEvent*);
1817         void point_trim (GdkEvent*);
1818         void trim_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1819         void single_contents_trim (RegionView&, nframes64_t, bool, bool, bool);
1820         void single_start_trim (RegionView&, nframes64_t, bool, bool);
1821         void single_end_trim (RegionView&, nframes64_t, bool, bool);
1822
1823         void trim_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1824         void thaw_region_after_trim (RegionView& rv);
1825
1826         void trim_region_front();
1827         void trim_region_back();
1828         void trim_region (bool front);
1829
1830         void trim_region_to_edit_point ();
1831         void trim_region_from_edit_point ();
1832         void trim_region_to_loop ();
1833         void trim_region_to_punch ();
1834         void trim_region_to_location (const ARDOUR::Location&, const char* cmd);
1835
1836         bool show_gain_after_trim;
1837
1838         /* Drag-n-Drop */
1839
1840         int convert_drop_to_paths (std::vector<Glib::ustring>& paths,
1841                                    const Glib::RefPtr<Gdk::DragContext>& context,
1842                                    gint                x,
1843                                    gint                y,
1844                                    const Gtk::SelectionData& data,
1845                                    guint               info,
1846                                    guint               time);
1847
1848         void  track_canvas_drag_data_received  (const Glib::RefPtr<Gdk::DragContext>& context,
1849                                                 gint                x,
1850                                                 gint                y,
1851                                                 const Gtk::SelectionData& data,
1852                                                 guint               info,
1853                                                 guint               time);
1854         
1855         void  region_list_display_drag_data_received  (const Glib::RefPtr<Gdk::DragContext>& context,
1856                                                        gint                x,
1857                                                        gint                y,
1858                                                        const Gtk::SelectionData& data,
1859                                                        guint               info,
1860                                                        guint               time);
1861
1862
1863         void  drop_paths  (const Glib::RefPtr<Gdk::DragContext>& context,
1864                            gint                x,
1865                            gint                y,
1866                            const Gtk::SelectionData& data,
1867                            guint               info,
1868                            guint               time);
1869
1870         void  drop_regions  (const Glib::RefPtr<Gdk::DragContext>& context,
1871                              gint                x,
1872                              gint                y,
1873                              const Gtk::SelectionData& data,
1874                              guint               info,
1875                              guint               time);
1876
1877         /* audio export */
1878
1879         ExportDialog *export_dialog;
1880         ExportDialog *export_range_markers_dialog;
1881         
1882         void export_range (nframes64_t start, nframes64_t end);
1883         void export_range_markers ();
1884
1885         int  write_region_selection(RegionSelection&);
1886         bool write_region (string path, boost::shared_ptr<ARDOUR::AudioRegion>);
1887         void export_region ();
1888         void bounce_region_selection ();
1889         void bounce_range_selection (bool replace);
1890         void external_edit_region ();
1891
1892         int write_audio_selection (TimeSelection&);
1893         bool write_audio_range (ARDOUR::AudioPlaylist&, uint32_t channels, list<ARDOUR::AudioRange>&);
1894
1895         void write_selection ();
1896
1897         /* history */
1898
1899         UndoAction get_memento() const;
1900
1901         XMLNode *before; /* used in *_reversible_command */
1902         void begin_reversible_command (string cmd_name);
1903         void commit_reversible_command ();
1904
1905         void update_title ();   
1906         void update_title_s (const string & snapshot_name);
1907
1908         struct State {
1909             Selection* selection;
1910             double     frames_per_unit;
1911
1912             State();
1913             ~State();
1914         };
1915
1916         void store_state (State&) const;
1917         void restore_state (State *);
1918
1919         void instant_save ();
1920
1921         boost::shared_ptr<ARDOUR::AudioRegion> last_audition_region;
1922         
1923         /* freeze operations */
1924
1925         ARDOUR::InterThreadInfo freeze_status;
1926         gint freeze_progress_timeout (void *);
1927         static void* _freeze_thread (void*);
1928         void* freeze_thread ();
1929
1930         void freeze_route ();
1931         void unfreeze_route ();
1932
1933         /* edit-group solo + mute */
1934
1935         void set_edit_group_solo (ARDOUR::Route&, bool);
1936         void set_edit_group_mute (ARDOUR::Route&, bool);
1937
1938         /* duplication */
1939
1940         void duplicate_dialog (bool with_dialog);
1941         
1942         nframes64_t event_frame (GdkEvent*, double* px = 0, double* py = 0) const;
1943
1944         /* returns false if mouse pointer is not in track or marker canvas
1945          */
1946         bool mouse_frame (nframes64_t&, bool& in_track_canvas) const;
1947
1948         void time_fx_motion (ArdourCanvas::Item*, GdkEvent*);
1949         void start_time_fx (ArdourCanvas::Item*, GdkEvent*);
1950         void end_time_fx (ArdourCanvas::Item*, GdkEvent*);
1951
1952         struct TimeFXDialog : public ArdourDialog {
1953             ARDOUR::TimeFXRequest request;
1954             Editor&               editor;
1955             bool                  pitching;
1956             Gtk::Adjustment       pitch_octave_adjustment;
1957             Gtk::Adjustment       pitch_semitone_adjustment;
1958             Gtk::Adjustment       pitch_cent_adjustment;
1959             Gtk::SpinButton       pitch_octave_spinner;
1960             Gtk::SpinButton       pitch_semitone_spinner;
1961             Gtk::SpinButton       pitch_cent_spinner;
1962             RegionSelection       regions;
1963             Gtk::ProgressBar      progress_bar;
1964
1965             /* SoundTouch */
1966             Gtk::ToggleButton     quick_button;
1967             Gtk::ToggleButton     antialias_button;
1968             Gtk::HBox             upper_button_box;
1969
1970             /* RubberBand */
1971             Gtk::ComboBoxText     stretch_opts_selector;
1972             Gtk::Label            stretch_opts_label;
1973             Gtk::ToggleButton     precise_button;
1974             Gtk::HBox             opts_box;
1975
1976             Gtk::Button*          cancel_button;
1977             Gtk::Button*          action_button;
1978             Gtk::VBox             packer;
1979             int                   status;
1980
1981             TimeFXDialog (Editor& e, bool for_pitch);
1982
1983             gint update_progress ();
1984             sigc::connection first_cancel;
1985             sigc::connection first_delete;
1986             void cancel_in_progress ();
1987             gint delete_in_progress (GdkEventAny*);
1988         };
1989
1990         /* "whats mine is yours" */
1991
1992         friend class TimeFXDialog;
1993
1994         TimeFXDialog* current_timefx;
1995
1996         static void* timefx_thread (void *arg);
1997         void do_timefx (TimeFXDialog&);
1998
1999         int time_stretch (RegionSelection&, float fraction);
2000         int pitch_shift (RegionSelection&, float cents);
2001         void pitch_shift_regions ();
2002         int time_fx (RegionSelection&, float val, bool pitching);
2003
2004         /* editor-mixer strip */
2005
2006         MixerStrip *current_mixer_strip;
2007         bool show_editor_mixer_when_tracks_arrive;
2008         Gtk::VBox current_mixer_strip_vbox;
2009         void cms_deleted ();
2010         void current_mixer_strip_hidden ();
2011         void current_mixer_strip_removed ();
2012
2013         void detach_tearoff (Gtk::Box* b, Gtk::Window* w);
2014         void reattach_tearoff (Gtk::Box* b, Gtk::Window* w, int32_t n);
2015
2016         /* nudging tracks */
2017
2018         void nudge_track (bool use_edit_point, bool forwards);
2019
2020         /* xfades */
2021
2022         bool _xfade_visibility;
2023         
2024         /* <CMT Additions> */
2025         void handle_new_imageframe_time_axis_view(const string & track_name, void* src) ;
2026         void handle_new_imageframe_marker_time_axis_view(const string & track_name, TimeAxisView* marked_track) ;
2027
2028         void start_imageframe_grab(ArdourCanvas::Item*, GdkEvent*) ;
2029         void start_markerview_grab(ArdourCanvas::Item*, GdkEvent*) ;
2030
2031         void imageframe_drag_motion_callback(ArdourCanvas::Item*, GdkEvent*) ;
2032         void markerview_drag_motion_callback(ArdourCanvas::Item*, GdkEvent*) ;
2033         void timeaxis_item_drag_finished_callback(ArdourCanvas::Item*, GdkEvent*) ;
2034
2035         gint canvas_imageframe_item_view_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
2036         gint canvas_imageframe_view_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameTimeAxis* ifta);
2037         gint canvas_imageframe_start_handle_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
2038         gint canvas_imageframe_end_handle_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
2039
2040         gint canvas_marker_time_axis_view_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerTimeAxis* mta);
2041         gint canvas_markerview_item_view_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
2042         gint canvas_markerview_start_handle_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
2043         gint canvas_markerview_end_handle_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
2044
2045         void imageframe_start_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
2046         void imageframe_end_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
2047         void imageframe_start_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
2048         void imageframe_start_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
2049         void imageframe_end_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
2050         void imageframe_end_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
2051         
2052         void markerview_item_start_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
2053         void markerview_item_end_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
2054         void markerview_start_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
2055         void markerview_start_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
2056         void markerview_end_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
2057         void markerview_end_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
2058
2059         void popup_imageframe_edit_menu(int button, int32_t time, ArdourCanvas::Item* ifv, bool with_frame) ;
2060         void popup_marker_time_axis_edit_menu(int button, int32_t time, ArdourCanvas::Item* ifv, bool with_frame) ;
2061
2062         ImageFrameSocketHandler* image_socket_listener ;
2063         /* </CMT Additions> */
2064
2065         void toggle_xfade_active (boost::weak_ptr<ARDOUR::Crossfade>);
2066         void toggle_xfade_length (boost::weak_ptr<ARDOUR::Crossfade>);
2067         void edit_xfade (boost::weak_ptr<ARDOUR::Crossfade>);
2068         void xfade_edit_left_region ();
2069         void xfade_edit_right_region ();
2070
2071         static const int32_t default_width = 995;
2072         static const int32_t default_height = 765;
2073
2074         /* nudge */
2075
2076         Gtk::Button      nudge_forward_button;
2077         Gtk::Button      nudge_backward_button;
2078         Gtk::HBox        nudge_hbox;
2079         Gtk::VBox        nudge_vbox;
2080         AudioClock       nudge_clock;
2081
2082         nframes64_t get_nudge_distance (nframes64_t pos, nframes64_t& next);
2083
2084         bool nudge_forward_release (GdkEventButton*);
2085         bool nudge_backward_release (GdkEventButton*);
2086         
2087         /* audio filters */
2088
2089         void apply_filter (ARDOUR::AudioFilter&, string cmd);
2090
2091         /* handling cleanup */
2092
2093         int playlist_deletion_dialog (boost::shared_ptr<ARDOUR::Playlist>);
2094
2095         vector<sigc::connection> session_connections;
2096
2097         /* tracking step changes of track height */
2098
2099         TimeAxisView* current_stepping_trackview;
2100         ARDOUR::microseconds_t last_track_height_step_timestamp;
2101         gint track_height_step_timeout();
2102         sigc::connection step_timeout;
2103
2104         TimeAxisView* entered_track;
2105         RegionView*   entered_regionview;
2106
2107
2108         void ensure_entered_track_selected (bool op_acts_on_objects = false);
2109         bool clear_entered_track;
2110         bool left_track_canvas (GdkEventCrossing*);
2111         bool entered_track_canvas (GdkEventCrossing*);
2112         void set_entered_track (TimeAxisView*);
2113         void set_entered_regionview (RegionView*);
2114         gint left_automation_track ();
2115
2116         bool _new_regionviews_show_envelope;
2117
2118         void reset_canvas_action_sensitivity (bool);
2119         void toggle_gain_envelope_visibility ();
2120         void toggle_gain_envelope_active ();
2121         void reset_region_gain_envelopes ();
2122
2123         bool on_key_press_event (GdkEventKey*);
2124         bool on_key_release_event (GdkEventKey*);
2125
2126         void session_state_saved (string);
2127
2128         Glib::RefPtr<Gtk::Action>              undo_action;
2129         Glib::RefPtr<Gtk::Action>              redo_action;
2130
2131         void history_changed ();
2132         void color_handler ();
2133         
2134         Gtk::HBox      status_bar_hpacker;
2135
2136         Editing::EditPoint _edit_point;
2137
2138         Gtk::ComboBoxText edit_point_selector;
2139
2140         void set_edit_point_preference (Editing::EditPoint ep, bool force = false);
2141         void cycle_edit_point (bool with_marker);
2142         void set_edit_point ();
2143         void edit_point_selection_done ();
2144         void edit_point_chosen (Editing::EditPoint);
2145         Glib::RefPtr<Gtk::RadioAction> edit_point_action (Editing::EditPoint);
2146         std::vector<std::string> edit_point_strings;
2147
2148         void selected_marker_moved (ARDOUR::Location*);
2149         sigc::connection edit_point_clock_connection_a;
2150         sigc::connection edit_point_clock_connection_b;
2151
2152         bool get_edit_op_range (nframes64_t& start, nframes64_t& end) const;
2153
2154         void get_regions_at (RegionSelection&, nframes64_t where, const TrackSelection& ts) const;
2155         void get_regions_after (RegionSelection&, nframes64_t where, const TrackSelection& ts) const;
2156         
2157         void get_regions_for_action (RegionSelection&, bool allowed_entered_regionview = false);
2158
2159         sigc::connection fast_screen_update_connection;
2160         gint start_updating ();
2161         gint stop_updating ();
2162         void fast_update_strips ();
2163         bool meters_running;
2164
2165         void select_next_route ();
2166         void select_prev_route ();
2167
2168         void snap_to_internal (nframes64_t& first, int32_t direction = 0, bool for_mark = false);
2169
2170         RhythmFerret* rhythm_ferret;
2171
2172         void fit_tracks ();
2173         void set_track_height (uint32_t h);
2174         void set_track_height_largest ();
2175         void set_track_height_large ();
2176         void set_track_height_larger ();
2177         void set_track_height_normal ();
2178         void set_track_height_smaller ();
2179         void set_track_height_small ();
2180
2181         void remove_tracks ();
2182         void toggle_tracks_active ();
2183         void waveform_scale_chosen (Editing::WaveformScale);
2184
2185         bool _have_idled;
2186         int resize_idle_id;
2187         int32_t resize_idle_target;
2188         bool idle_resize();
2189         friend gboolean _idle_resize (gpointer);
2190         std::vector<TimeAxisView*> pending_resizes;
2191 };
2192
2193 #endif /* __ardour_editor_h__ */