Drag zoom area now fills the whole canvas
[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     $Id$
19 */
20
21 #ifndef __ardour_editor_h__
22 #define __ardour_editor_h__
23
24 #include <list>
25 #include <map>
26 #include <set>
27 #include <string>
28 #include <sys/time.h>
29
30 #include <libgnomecanvasmm/canvas.h>
31 #include <libgnomecanvasmm/group.h>
32 #include <libgnomecanvasmm/line.h>
33
34 #include <cmath>
35
36 #include <gtkmm/layout.h>
37 #include <gtkmm/comboboxtext.h>
38
39 #include <gtkmm2ext/selector.h>
40 #include <gtkmm2ext/click_box.h>
41 #include <gtkmm2ext/dndtreeview.h>
42
43 #include <pbd/stateful.h>
44 #include <ardour/session.h>
45 #include <ardour/tempo.h>
46 #include <ardour/location.h>
47 #include <ardour/region.h>
48
49 #include "audio_clock.h"
50 #include "gtk-custom-ruler.h"
51 #include "ardour_dialog.h"
52 #include "public_editor.h"
53 #include "editing.h"
54 #include "enums.h"
55 #include "editor_items.h"
56 #include "region_selection.h"
57 #include "canvas.h"
58 #include "draginfo.h"
59
60 namespace Gtkmm2ext {
61         class TearOff;
62 }
63
64 namespace LinuxAudioSystems {
65         class AudioEngine;
66 }
67
68 namespace ARDOUR {
69         class AudioDiskstream;
70         class RouteGroup;
71         class Playlist;
72         class AudioPlaylist;
73         class Region;
74         class Location;
75         class TempoSection;
76         class NamedSelection;
77         class Session;
78         class AudioFilter;
79         class Crossfade;
80 }
81
82 namespace LADSPA {
83         class Plugin;
84 }
85
86 class TimeAxisView;
87 class RouteTimeAxisView;
88 class AudioTimeAxisView;
89 class AutomationTimeAxisView;
90 class AudioRegionView;
91 class CrossfadeView;
92 class PluginSelector;
93 class PlaylistSelector;
94 class Marker;
95 class GroupedButtons;
96 class AutomationLine;
97 class UIExportSpecification;
98 class ExportDialog;
99 class Selection;
100 class TimeSelection;
101 class TrackSelection;
102 class AutomationSelection;
103 class MixerStrip;
104 class StreamView;
105 class AudioStreamView;
106 class ControlPoint;
107 #ifdef FFT_ANALYSIS
108 class AnalysisWindow;
109 #endif
110
111 /* <CMT Additions> */
112 class ImageFrameView;
113 class ImageFrameTimeAxisView;
114 class ImageFrameTimeAxis;
115 class MarkerTimeAxis ;
116 class MarkerView ;
117 class ImageFrameSocketHandler ;
118 class TimeAxisViewItem ;
119 /* </CMT Additions> */
120
121
122 class Editor : public PublicEditor
123 {
124   public:
125         Editor (ARDOUR::AudioEngine&);
126         ~Editor ();
127
128         void             connect_to_session (ARDOUR::Session *);
129         ARDOUR::Session* current_session() const { return session; }
130
131         nframes_t leftmost_position() const { return leftmost_frame; }
132         nframes_t current_page_frames() const {
133                 return (nframes_t) floor (canvas_width * frames_per_unit);
134         }
135
136         void set_snap_to (Editing::SnapType);
137         void set_snap_mode (Editing::SnapMode);
138         void set_snap_threshold (double pixel_distance) {snap_threshold = pixel_distance;}
139
140         void undo (uint32_t n = 1);
141         void redo (uint32_t n = 1);
142
143         XMLNode& get_state ();
144         int set_state (const XMLNode& );
145
146         void set_mouse_mode (Editing::MouseMode, bool force=true);
147         void step_mouse_mode (bool next);
148         Editing::MouseMode current_mouse_mode () { return mouse_mode; }
149
150         void add_imageframe_time_axis(const string & track_name, void*) ;
151         void add_imageframe_marker_time_axis(const string & track_name, TimeAxisView* marked_track, void*) ;
152         void connect_to_image_compositor() ;
153         void scroll_timeaxis_to_imageframe_item(const TimeAxisViewItem* item) ;
154         TimeAxisView* get_named_time_axis(const string & name) ;
155
156         void consider_auditioning (boost::shared_ptr<ARDOUR::Region>);
157         void hide_a_region (boost::shared_ptr<ARDOUR::Region>);
158         void remove_a_region (boost::shared_ptr<ARDOUR::Region>);
159
160         /* option editor-access */
161
162         void set_show_waveforms (bool yn);
163         bool show_waveforms() const { return _show_waveforms; }
164
165         void set_show_waveforms_recording (bool yn);
166         bool show_waveforms_recording() const { return _show_waveforms_recording; }
167         
168         /* things that need to be public to be used in the main menubar */
169
170         void new_region_from_selection ();
171         void separate_region_from_selection ();
172         void separate_regions_using_location (ARDOUR::Location&);
173         void toggle_playback (bool with_abort);
174
175         /* undo related */
176
177         nframes_t unit_to_frame (double unit) {
178                 return (nframes_t) rint (unit * frames_per_unit);
179         }
180         
181         double frame_to_unit (nframes_t frame) {
182                 return rint ((double) frame / (double) frames_per_unit);
183         }
184
185         double frame_to_unit (double frame) {
186                 return rint (frame / frames_per_unit);
187         }
188
189         /* NOTE: these functions assume that the "pixel" coordinate is
190            the result of using the world->canvas affine transform on a
191            world coordinate. These coordinates already take into
192            account any scrolling carried out by adjusting the
193            xscroll_adjustment.  
194         */
195
196         nframes_t pixel_to_frame (double pixel) {
197                 
198                 /* pixel can be less than zero when motion events
199                    are processed. since we've already run the world->canvas
200                    affine, that means that the location *really* is "off
201                    to the right" and thus really is "before the start".
202                 */
203
204                 if (pixel >= 0) {
205                         return (nframes_t) rint (pixel * frames_per_unit * GNOME_CANVAS(track_canvas.gobj())->pixels_per_unit);
206                 } else {
207                         return 0;
208                 }
209         }
210
211         gulong frame_to_pixel (nframes_t frame) {
212                 return (gulong) rint ((frame / (frames_per_unit *  GNOME_CANVAS(track_canvas.gobj())->pixels_per_unit)));
213         }
214
215         /* selection */
216
217         Selection& get_selection() const { return *selection; }
218         Selection& get_cut_buffer() const { return *cut_buffer; }
219
220         void play_selection ();
221         void select_all_in_track (Selection::Operation op);
222         void select_all (Selection::Operation op);
223         void invert_selection_in_track ();
224         void invert_selection ();
225
226         /* tempo */
227
228         void set_show_measures (bool yn);
229         bool show_measures () const { return _show_measures; }
230         bool initial_ruler_update_required;
231
232 #ifdef FFT_ANALYSIS
233         /* analysis window */
234         void analyze_region_selection();
235         void analyze_range_selection();
236 #endif
237
238         /* export */
239
240         /* these initiate export ... */
241         
242         void export_session();
243         void export_selection();
244
245
246         void add_toplevel_controls (Gtk::Container&);
247
248         void      set_zoom_focus (Editing::ZoomFocus);
249         Editing::ZoomFocus get_zoom_focus () const { return zoom_focus; }
250         gdouble   get_current_zoom () { return frames_per_unit; }
251
252         void temporal_zoom_step (bool coarser);
253
254         /* stuff that AudioTimeAxisView and related classes use */
255
256         PlaylistSelector& playlist_selector() const;
257         void route_name_changed (TimeAxisView *);
258         gdouble        frames_per_unit;
259         nframes_t leftmost_frame;
260         void clear_playlist (ARDOUR::Playlist&);
261
262         void new_playlists ();
263         void copy_playlists ();
264         void clear_playlists ();
265
266         TrackViewList* get_valid_views (TimeAxisView*, ARDOUR::RouteGroup* grp = 0);
267
268         Width editor_mixer_strip_width;
269         void show_editor_mixer (bool yn);
270         void set_selected_mixer_strip (TimeAxisView&);
271         void hide_track_in_display (TimeAxisView& tv);
272         void show_track_in_display (TimeAxisView& tv);
273
274         /* nudge is initiated by transport controls owned by ARDOUR_UI */
275
276         void nudge_forward (bool next);
277         void nudge_backward (bool next);
278
279         /* nudge initiated from context menu */
280
281         void nudge_forward_capture_offset ();
282         void nudge_backward_capture_offset ();
283
284         /* playhead/screen stuff */
285         
286         void set_follow_playhead (bool yn);
287         void toggle_follow_playhead ();
288         bool follow_playhead() const { return _follow_playhead; }
289         bool dragging_playhead () const { return _dragging_playhead; }
290
291         void toggle_waveform_visibility ();
292         void toggle_waveforms_while_recording ();
293         void toggle_measure_visibility ();
294
295         /* SMPTE timecode & video sync */
296
297         void smpte_fps_chosen (ARDOUR::Session::SmpteFormat format);
298         void video_pullup_chosen (ARDOUR::Session::PullupFormat pullup);
299         void subframes_per_frame_chosen (uint32_t);
300
301         void update_smpte_mode();
302         void update_video_pullup();
303         void update_subframes_per_frame ();
304         /* xfades */
305
306         void toggle_auto_xfade ();
307         void toggle_xfades_active ();
308         void toggle_xfade_visibility ();
309         bool xfade_visibility() const { return _xfade_visibility; }
310         void update_crossfade_model ();
311         void set_crossfade_model (ARDOUR::CrossfadeModel);
312
313         /* layers */
314         void set_layer_model (ARDOUR::LayerModel);
315         void update_layering_model ();
316
317         /* redirect shared ops menu. caller must free returned menu */
318
319         Gtk::Menu* redirect_menu ();
320
321         /* floating windows/transient */
322
323         void ensure_float (Gtk::Window&);
324
325         void show_window ();
326
327         void scroll_tracks_down_line ();
328         void scroll_tracks_up_line ();
329
330         bool new_regionviews_display_gain () { return _new_regionviews_show_envelope; }
331         void prepare_for_cleanup ();
332
333         void reposition_x_origin (nframes_t sample);
334
335         void maximise_editing_space();
336         void restore_editing_space();
337
338   protected:
339         void map_transport_state ();
340         void map_position_change (nframes_t);
341
342         void on_realize();
343
344   private:
345         
346         ARDOUR::Session     *session;
347         ARDOUR::AudioEngine& engine;
348         bool                 constructed;
349
350         PlaylistSelector* _playlist_selector;
351
352         void          set_frames_per_unit (double);
353
354         Editing::MouseMode mouse_mode;
355
356         int  post_maximal_editor_width;
357         int  post_maximal_pane_position;
358         int  pre_maximal_pane_position;
359         int  pre_maximal_editor_width;
360         void pane_allocation_handler (Gtk::Allocation&, Gtk::Paned*);
361
362         Gtk::Notebook the_notebook;
363         Gtk::HPaned   edit_pane;
364
365         Gtk::EventBox meter_base;
366         Gtk::HBox     meter_box;
367         Gtk::EventBox marker_base;
368         Gtk::HBox     marker_box;
369         Gtk::VBox     scrollers_rulers_markers_box;
370
371         void location_changed (ARDOUR::Location *);
372         void location_flags_changed (ARDOUR::Location *, void *);
373         void refresh_location_display ();
374         void refresh_location_display_s (ARDOUR::Change);
375         void refresh_location_display_internal (ARDOUR::Locations::LocationList&);
376         void add_new_location (ARDOUR::Location *);
377         void location_gone (ARDOUR::Location *);
378         void remove_marker (ArdourCanvas::Item&, GdkEvent*);
379         gint really_remove_marker (ARDOUR::Location* loc);
380
381         uint32_t location_marker_color;
382         uint32_t location_range_color;
383         uint32_t location_loop_color;
384         uint32_t location_punch_color;
385         uint32_t location_cd_marker_color;
386
387         struct LocationMarkers {
388             Marker* start;
389             Marker* end;
390
391             ~LocationMarkers ();
392
393             void hide();
394             void show ();
395             void set_name (const string&);
396             void set_position (nframes_t start, nframes_t end = 0);
397             void set_color_rgba (uint32_t);
398         };
399
400         LocationMarkers  *find_location_markers (ARDOUR::Location *);
401         ARDOUR::Location* find_location_from_marker (Marker *, bool& is_start);
402
403         typedef std::map<ARDOUR::Location*,LocationMarkers *> LocationMarkerMap;
404         LocationMarkerMap location_markers;
405
406         void hide_marker (ArdourCanvas::Item*, GdkEvent*);
407         void clear_marker_display ();
408         void mouse_add_new_marker (nframes_t where);
409
410         TimeAxisView*      clicked_trackview;
411         AudioTimeAxisView* clicked_audio_trackview;
412         RegionView*        clicked_regionview;
413         RegionView*        latest_regionview;
414         uint32_t           clicked_selection;
415         CrossfadeView*     clicked_crossfadeview;
416         ControlPoint*      clicked_control_point;
417
418         void get_relevant_audio_tracks (std::set<AudioTimeAxisView*>& relevant_tracks);
419         void mapover_audio_tracks (sigc::slot<void,AudioTimeAxisView&,uint32_t> sl);
420
421         /* functions to be passed to mapover_audio_tracks(), possibly with sigc::bind()-supplied arguments */
422
423         void mapped_set_selected_regionview_from_click (RouteTimeAxisView&, uint32_t, RegionView*, vector<RegionView*>*);
424         void mapped_use_new_playlist (AudioTimeAxisView&, uint32_t);
425         void mapped_use_copy_playlist (AudioTimeAxisView&, uint32_t);
426         void mapped_clear_playlist (AudioTimeAxisView&, uint32_t);
427
428         /* end */
429
430         void button_selection (ArdourCanvas::Item* item, GdkEvent* event, ItemType item_type);
431         bool button_release_can_deselect;
432
433         void catch_vanishing_regionview (RegionView *);
434
435         bool set_selected_track (TimeAxisView&, Selection::Operation op = Selection::Set, bool no_remove=false);
436
437         bool set_selected_control_point_from_click (Selection::Operation op = Selection::Set, bool no_remove=false);
438         bool set_selected_track_from_click (Selection::Operation op = Selection::Set, bool no_remove=false);
439         bool set_selected_regionview_from_click (bool press, Selection::Operation op = Selection::Set, bool no_track_remove=false);
440
441         void set_selected_regionview_from_region_list (boost::shared_ptr<ARDOUR::Region> region, Selection::Operation op = Selection::Set);
442         bool set_selected_regionview_from_map_event (GdkEventAny*, StreamView*, boost::weak_ptr<ARDOUR::Region>);
443         void collect_new_region_view (RegionView *);
444
445         Gtk::Menu track_context_menu;
446         Gtk::Menu track_region_context_menu;
447         Gtk::Menu track_selection_context_menu;
448         Gtk::Menu track_crossfade_context_menu;
449
450         Gtk::MenuItem* region_edit_menu_split_item;
451         Gtk::MenuItem* region_edit_menu_split_multichannel_item;
452         Gtk::Menu * track_region_edit_playlist_menu;
453         Gtk::Menu * track_edit_playlist_submenu;
454         Gtk::Menu * track_selection_edit_playlist_submenu;
455         
456         void popup_track_context_menu (int, int, ItemType, bool, nframes_t);
457         Gtk::Menu* build_track_context_menu (nframes_t);
458         Gtk::Menu* build_track_bus_context_menu (nframes_t);
459         Gtk::Menu* build_track_region_context_menu (nframes_t frame);
460         Gtk::Menu* build_track_crossfade_context_menu (nframes_t);
461         Gtk::Menu* build_track_selection_context_menu (nframes_t);
462         void add_dstream_context_items (Gtk::Menu_Helpers::MenuList&);
463         void add_bus_context_items (Gtk::Menu_Helpers::MenuList&);
464         void add_region_context_items (AudioStreamView*, boost::shared_ptr<ARDOUR::Region>, Gtk::Menu_Helpers::MenuList&);
465         void add_crossfade_context_items (AudioStreamView*, ARDOUR::Crossfade*, Gtk::Menu_Helpers::MenuList&, bool many);
466         void add_selection_context_items (Gtk::Menu_Helpers::MenuList&);
467
468         void handle_new_route (ARDOUR::Session::RouteList&);
469         void remove_route (TimeAxisView *);
470         bool route_removal;
471
472         Gtk::HBox           global_hpacker;
473         Gtk::VBox           global_vpacker;
474         Gtk::VBox           vpacker;
475
476         Gdk::Cursor*          current_canvas_cursor;
477
478         ArdourCanvas::CanvasAA track_canvas;
479         ArdourCanvas::CanvasAA time_canvas;
480
481         ArdourCanvas::Text* first_action_message;
482         ArdourCanvas::Text* verbose_canvas_cursor;
483         bool                 verbose_cursor_visible;
484
485         void parameter_changed (const char *);
486         
487         bool track_canvas_motion (GdkEvent*);
488
489         void set_verbose_canvas_cursor (const string &, double x, double y);
490         void set_verbose_canvas_cursor_text (const string &);
491         void show_verbose_canvas_cursor();
492         void hide_verbose_canvas_cursor();
493
494         bool verbose_cursor_on; // so far unused
495
496         Gtk::EventBox      time_canvas_event_box;
497         Gtk::EventBox      track_canvas_event_box;
498         Gtk::EventBox      time_button_event_box;
499
500         ArdourCanvas::Group      *minsec_group;
501         ArdourCanvas::Group      *bbt_group;
502         ArdourCanvas::Group      *smpte_group;
503         ArdourCanvas::Group      *frame_group;
504         ArdourCanvas::Group      *tempo_group;
505         ArdourCanvas::Group      *meter_group;
506         ArdourCanvas::Group      *marker_group;
507         ArdourCanvas::Group      *range_marker_group;
508         ArdourCanvas::Group      *transport_marker_group;
509         
510         enum {
511                 ruler_metric_smpte = 0,
512                 ruler_metric_bbt = 1,
513                 ruler_metric_frames = 2,
514                 ruler_metric_minsec = 3,
515
516                 ruler_time_tempo = 4,
517                 ruler_time_meter = 5,
518                 ruler_time_marker = 6,
519                 ruler_time_range_marker = 7,
520                 ruler_time_transport_marker = 8,
521         };
522
523         static GtkCustomMetric ruler_metrics[4];
524         bool                   ruler_shown[9];
525         bool                   no_ruler_shown_update;
526         
527         gint ruler_button_press (GdkEventButton*);
528         gint ruler_button_release (GdkEventButton*);
529         gint ruler_mouse_motion (GdkEventMotion*);
530
531         gint ruler_pressed_button;
532         Gtk::Widget * ruler_grabbed_widget;
533         
534         void initialize_rulers ();
535         void update_just_smpte ();
536         void update_fixed_rulers ();
537         void update_tempo_based_rulers (); 
538         void popup_ruler_menu (nframes_t where = 0, ItemType type = RegionItem);
539         void update_ruler_visibility ();
540         void ruler_toggled (int);
541         gint ruler_label_button_release (GdkEventButton*);
542         void store_ruler_visibility ();
543         void restore_ruler_visibility ();
544         
545         static gint _metric_get_smpte (GtkCustomRulerMark **, gdouble, gdouble, gint);
546         static gint _metric_get_bbt (GtkCustomRulerMark **, gdouble, gdouble, gint);
547         static gint _metric_get_frames (GtkCustomRulerMark **, gdouble, gdouble, gint);
548         static gint _metric_get_minsec (GtkCustomRulerMark **, gdouble, gdouble, gint);
549         
550         gint metric_get_smpte (GtkCustomRulerMark **, gdouble, gdouble, gint);
551         gint metric_get_bbt (GtkCustomRulerMark **, gdouble, gdouble, gint);
552         gint metric_get_frames (GtkCustomRulerMark **, gdouble, gdouble, gint);
553         gint metric_get_minsec (GtkCustomRulerMark **, gdouble, gdouble, gint);
554
555         GtkWidget          *_smpte_ruler;
556         GtkWidget          *_bbt_ruler;
557         GtkWidget          *_frames_ruler;
558         GtkWidget          *_minsec_ruler;
559         Gtk::Widget        *smpte_ruler;
560         Gtk::Widget        *bbt_ruler;
561         Gtk::Widget        *frames_ruler;
562         Gtk::Widget        *minsec_ruler;
563         static Editor      *ruler_editor;
564
565         static const double timebar_height;
566         guint32 visible_timebars;
567         Gtk::Menu          *editor_ruler_menu;
568         
569         ArdourCanvas::SimpleRect* tempo_bar;
570         ArdourCanvas::SimpleRect* meter_bar;
571         ArdourCanvas::SimpleRect* marker_bar;
572         ArdourCanvas::SimpleRect* range_marker_bar;
573         ArdourCanvas::SimpleRect* transport_marker_bar;
574
575         
576         ArdourCanvas::SimpleLine* tempo_line;
577         ArdourCanvas::SimpleLine* meter_line;
578         ArdourCanvas::SimpleLine* marker_line;
579         ArdourCanvas::SimpleLine* range_marker_line;
580         ArdourCanvas::SimpleLine* transport_marker_line;
581
582         Gtk::Label  minsec_label;
583         Gtk::Label  bbt_label;
584         Gtk::Label  smpte_label;
585         Gtk::Label  frame_label;
586         Gtk::Label  tempo_label;
587         Gtk::Label  meter_label;
588         Gtk::Label  mark_label;
589         Gtk::Label  range_mark_label;
590         Gtk::Label  transport_mark_label;
591         
592
593         Gtk::VBox          time_button_vbox;
594         Gtk::HBox          time_button_hbox;
595
596         struct Cursor {
597             Editor&               editor;
598             ArdourCanvas::Points  points;
599             ArdourCanvas::Line    canvas_item;
600             nframes_t        current_frame;
601             double                length;
602
603             Cursor (Editor&, const string& color, bool (Editor::*)(GdkEvent*,ArdourCanvas::Item*));
604             ~Cursor ();
605
606             void set_position (nframes_t);
607             void set_length (double units);
608             void set_y_axis (double position);
609         };
610
611         friend struct Cursor; /* it needs access to several private
612                                  fields. XXX fix me.
613                               */
614
615         Cursor* playhead_cursor;
616         Cursor* edit_cursor;
617         ArdourCanvas::Group* cursor_group;
618
619         void    cursor_to_next_region_point (Cursor*, ARDOUR::RegionPoint);
620         void    cursor_to_previous_region_point (Cursor*, ARDOUR::RegionPoint);
621         void    cursor_to_region_point (Cursor*, ARDOUR::RegionPoint, int32_t dir);
622         void    cursor_to_selection_start (Cursor *);
623         void    cursor_to_selection_end   (Cursor *);
624         void    select_all_selectables_using_cursor (Cursor *, bool);
625         void    select_all_selectables_between_cursors (Cursor *, Cursor *);
626
627         boost::shared_ptr<ARDOUR::Region> find_next_region (nframes_t, ARDOUR::RegionPoint, int32_t dir, TrackViewList&, TimeAxisView ** = 0);
628
629         vector<nframes_t> region_boundary_cache;
630         void build_region_boundary_cache ();
631
632         Gtk::VBox           trackview_vpacker;
633
634         Gtk::HBox           top_hbox;
635         Gtk::HBox           bottom_hbox;
636         
637         Gtk::Table          edit_packer;
638         Gtk::VScrollbar     edit_vscrollbar;
639
640         Gtk::Adjustment     vertical_adjustment;
641         Gtk::Adjustment     horizontal_adjustment;
642
643         Gtk::Layout         controls_layout;
644         bool control_layout_scroll (GdkEventScroll* ev);
645         void controls_layout_size_request (Gtk::Requisition*);
646
647         Gtk::HScrollbar     edit_hscrollbar;
648
649         void reset_hscrollbar_stepping ();
650         
651         bool hscrollbar_button_press (GdkEventButton*);
652         bool hscrollbar_button_release (GdkEventButton*);
653         void hscrollbar_allocate (Gtk::Allocation &alloc);
654
655         double canvas_width;
656         double canvas_height;
657         double full_canvas_height;
658         nframes_t last_canvas_frame;
659
660         bool track_canvas_map_handler (GdkEventAny*);
661         bool time_canvas_map_handler (GdkEventAny*);
662
663         gint edit_controls_button_release (GdkEventButton*);
664         Gtk::Menu *edit_controls_left_menu;
665         Gtk::Menu *edit_controls_right_menu;
666
667         Gtk::VBox           track_canvas_vbox;
668         Gtk::VBox           time_canvas_vbox;
669         Gtk::VBox           edit_controls_vbox;
670         Gtk::HBox           edit_controls_hbox;
671
672         void control_scroll (float);
673         bool deferred_control_scroll (nframes_t);
674         sigc::connection control_scroll_connection;
675
676         void tie_vertical_scrolling ();
677         void canvas_horizontally_scrolled ();
678
679         void reposition_and_zoom (nframes_t sample, double fpu);
680         gint deferred_reposition_and_zoom (nframes_t sample, double fpu);
681         void end_location_changed (ARDOUR::Location*);
682         bool repos_zoom_queued;
683
684         struct RegionListDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
685             RegionListDisplayModelColumns() {
686                     add (name);
687                     add (region);
688                     add (color_);
689             }
690             Gtk::TreeModelColumn<Glib::ustring> name;
691             Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Region> > region;
692             Gtk::TreeModelColumn<Gdk::Color> color_;
693         };
694             
695         RegionListDisplayModelColumns          region_list_columns;
696         Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Region> > region_list_display;
697
698         Glib::RefPtr<Gtk::TreeStore>           region_list_model;
699         Glib::RefPtr<Gtk::ToggleAction>        toggle_full_region_list_action;
700         Glib::RefPtr<Gtk::ToggleAction>        toggle_show_auto_regions_action;
701
702         void region_list_selection_changed ();
703         bool region_list_selection_filter (const Glib::RefPtr<Gtk::TreeModel>& model, const Gtk::TreeModel::Path& path, bool yn);
704
705         Gtk::Menu          *region_list_menu;
706         Gtk::ScrolledWindow region_list_scroller;
707         Gtk::Frame          region_list_frame;
708
709         bool region_list_display_key_press (GdkEventKey *);
710         bool region_list_display_key_release (GdkEventKey *);
711         bool region_list_display_button_press (GdkEventButton *);
712         bool region_list_display_button_release (GdkEventButton *);
713         void region_list_clear ();
714         void region_list_selection_mapover (sigc::slot<void,boost::shared_ptr<ARDOUR::Region> >);
715         void build_region_list_menu ();
716         void show_region_list_display_context_menu (int button, int time);
717
718         bool show_automatic_regions_in_region_list;
719         Editing::RegionListSortType region_list_sort_type;
720
721         void reset_region_list_sort_direction (bool);
722         void reset_region_list_sort_type (Editing::RegionListSortType);
723
724         void toggle_full_region_list ();
725         void toggle_show_auto_regions ();
726
727         int region_list_sorter (Gtk::TreeModel::iterator, Gtk::TreeModel::iterator);
728
729         /* snapshots */
730
731         Gtk::ScrolledWindow      snapshot_display_scroller;
732         struct SnapshotDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
733             SnapshotDisplayModelColumns() { 
734                     add (visible_name);
735                     add (real_name);
736             }
737             Gtk::TreeModelColumn<Glib::ustring> visible_name;
738             Gtk::TreeModelColumn<Glib::ustring> real_name;
739         };
740
741         SnapshotDisplayModelColumns snapshot_display_columns;
742         Glib::RefPtr<Gtk::ListStore> snapshot_display_model;
743         Gtk::TreeView snapshot_display;
744
745         bool snapshot_display_button_press (GdkEventButton*);
746         void snapshot_display_selection_changed ();
747         void redisplay_snapshots();
748
749         /* named selections */
750
751         struct NamedSelectionDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
752             NamedSelectionDisplayModelColumns() { 
753                     add (text);
754                     add (selection);
755             }
756             Gtk::TreeModelColumn<Glib::ustring>  text;
757             Gtk::TreeModelColumn<ARDOUR::NamedSelection*>    selection;
758         };
759
760         NamedSelectionDisplayModelColumns named_selection_columns;
761         Glib::RefPtr<Gtk::TreeStore>     named_selection_model;
762
763         Gtkmm2ext::DnDTreeView<ARDOUR::NamedSelection*> named_selection_display;
764         Gtk::ScrolledWindow    named_selection_scroller;
765
766         void name_selection();
767         void named_selection_name_chosen ();
768         void create_named_selection (const string &);
769         void paste_named_selection (float times);
770
771         void handle_new_named_selection ();
772         void add_named_selection_to_named_selection_display (ARDOUR::NamedSelection&);
773         void redisplay_named_selections ();
774
775         gint named_selection_display_button_press (GdkEventButton *ev);
776         void named_selection_display_selection_changed ();
777
778         /* track views */
779         int track_spacing;
780         TrackViewList  track_views;
781         TimeAxisView     *trackview_by_y_position (double ypos);
782
783         static Gdk::Cursor* cross_hair_cursor;
784         static Gdk::Cursor* trimmer_cursor;
785         static Gdk::Cursor* selector_cursor;
786         static Gdk::Cursor* grabber_cursor;
787         static Gdk::Cursor* zoom_cursor;
788         static Gdk::Cursor* time_fx_cursor;
789         static Gdk::Cursor* fader_cursor;
790         static Gdk::Cursor* speaker_cursor;
791         static Gdk::Cursor* wait_cursor;
792         static Gdk::Cursor* timebar_cursor;
793
794         static void build_cursors ();
795
796         sigc::connection scroll_connection;
797         nframes_t last_update_frame;
798         void center_screen (nframes_t);
799         void center_screen_internal (nframes_t, float);
800         
801         void update_current_screen ();
802         
803         void session_going_away ();
804
805         nframes_t cut_buffer_start;
806         nframes_t cut_buffer_length;
807
808         bool typed_event (ArdourCanvas::Item*, GdkEvent*, ItemType);
809         bool button_press_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
810         bool button_release_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
811         bool motion_handler (ArdourCanvas::Item*, GdkEvent*, ItemType, bool from_autoscroll = false);
812         bool enter_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
813         bool leave_handler (ArdourCanvas::Item*, GdkEvent*, ItemType);
814         
815         /* KEYMAP HANDLING */
816
817         void register_actions ();
818
819         int ensure_cursor (nframes_t* pos);
820
821         void handle_new_audio_region (boost::weak_ptr<ARDOUR::AudioRegion>);
822         void handle_audio_region_removed (boost::weak_ptr<ARDOUR::AudioRegion>);
823         void add_audio_region_to_region_display (boost::shared_ptr<ARDOUR::AudioRegion>);
824         void region_hidden (boost::shared_ptr<ARDOUR::Region>);
825         void redisplay_regions ();
826         void insert_into_tmp_audio_regionlist(boost::shared_ptr<ARDOUR::AudioRegion>);
827
828         list<boost::shared_ptr<ARDOUR::AudioRegion> > tmp_audio_region_list;
829
830         void cut_copy (Editing::CutCopyOp);
831         void cut_copy_points (Editing::CutCopyOp);
832         void cut_copy_regions (Editing::CutCopyOp);
833         void cut_copy_ranges (Editing::CutCopyOp);
834
835         void mouse_paste ();
836         void paste_internal (nframes_t position, float times);
837
838         /* EDITING OPERATIONS */
839         
840         void reset_point_selection ();
841         void toggle_region_mute ();
842         void toggle_region_lock ();
843         void toggle_region_opaque ();
844         void raise_region ();
845         void raise_region_to_top ();
846         void lower_region ();
847         void lower_region_to_bottom ();
848         void split_region ();
849         void split_region_at (nframes_t);
850         void split_regions_at (nframes_t, RegionSelection&);
851         void crop_region_to_selection ();
852         void set_a_regions_sync_position (boost::shared_ptr<ARDOUR::Region>, nframes_t);
853         void set_region_sync_from_edit_cursor ();
854         void remove_region_sync();
855         void align_selection (ARDOUR::RegionPoint, nframes_t position);
856         void align_selection_relative (ARDOUR::RegionPoint point, nframes_t position);
857         void align_region (boost::shared_ptr<ARDOUR::Region>, ARDOUR::RegionPoint point, nframes_t position);
858         void align_region_internal (boost::shared_ptr<ARDOUR::Region>, ARDOUR::RegionPoint point, nframes_t position);
859         void remove_clicked_region ();
860         void destroy_clicked_region ();
861         void edit_region ();
862         void duplicate_some_regions (RegionSelection&, float times);
863         void duplicate_selection (float times);
864         void region_fill_selection ();
865
866         void region_fill_track ();
867         void audition_playlist_region_standalone (boost::shared_ptr<ARDOUR::Region>);
868         void audition_playlist_region_via_route (boost::shared_ptr<ARDOUR::Region>, ARDOUR::Route&);
869         void split_multichannel_region();
870         void reverse_region ();
871         void normalize_region ();
872         void denormalize_region ();
873
874         void audition_region_from_region_list ();
875         void hide_region_from_region_list ();
876         void remove_region_from_region_list ();
877
878         void align (ARDOUR::RegionPoint);
879         void align_relative (ARDOUR::RegionPoint);
880         void naturalize ();
881
882         void cut ();
883         void copy ();
884         void paste (float times);
885
886         int  get_prefix (float&, bool&);
887
888         void keyboard_paste ();
889         void keyboard_duplicate_region ();
890         void keyboard_duplicate_selection ();
891         void keyboard_insert_region_list_selection ();
892
893         void region_from_selection ();
894         void create_region_from_selection (std::vector<boost::shared_ptr<ARDOUR::AudioRegion> >&);
895
896         bool region_renamed;
897         void rename_region ();
898         void rename_region_finished (bool);
899
900         void play_from_start ();
901         void play_from_edit_cursor ();
902         void play_selected_region ();
903         void audition_selected_region ();
904         void loop_selected_region ();
905         void play_location (ARDOUR::Location&);
906         void loop_location (ARDOUR::Location&);
907
908         Editing::ZoomFocus zoom_focus;
909
910         void temporal_zoom_selection ();
911         void temporal_zoom_session ();
912         void temporal_zoom (gdouble scale);
913         void temporal_zoom_by_frame (nframes_t start, nframes_t end, const string & op);
914         void temporal_zoom_to_frame (bool coarser, nframes_t frame);
915
916         void amplitude_zoom (gdouble scale);
917         void amplitude_zoom_step (bool in);
918
919         void insert_region_list_drag (boost::shared_ptr<ARDOUR::AudioRegion>, int x, int y);
920         void insert_region_list_selection (float times);
921
922         void add_external_audio_action (Editing::ImportMode);
923
924         void bring_in_external_audio (Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t& pos, bool prompt);
925         void do_import (vector<Glib::ustring> paths, bool split, Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t&, bool);
926         void do_embed (vector<Glib::ustring> paths, bool split, Editing::ImportMode mode, ARDOUR::AudioTrack*, nframes_t&, bool);
927         int  import_sndfile (Glib::ustring path, Editing::ImportMode mode, ARDOUR::AudioTrack* track, nframes_t& pos);
928         int  embed_sndfile (Glib::ustring path, bool split, bool multiple_files, bool& check_sample_rate, Editing::ImportMode mode, 
929                             ARDOUR::AudioTrack* track, nframes_t& pos, bool prompt);
930         int finish_bringing_in_audio (boost::shared_ptr<ARDOUR::AudioRegion> region, uint32_t, uint32_t, ARDOUR::AudioTrack* track, nframes_t& pos, Editing::ImportMode mode);
931
932         /* generic interthread progress window */
933         
934         ArdourDialog* interthread_progress_window;
935         Gtk::Label interthread_progress_label;
936         Gtk::VBox interthread_progress_vbox;
937         Gtk::ProgressBar interthread_progress_bar;
938         Gtk::Button interthread_cancel_button;
939         Gtk::Label interthread_cancel_label;
940         sigc::connection  interthread_progress_connection;
941         void interthread_cancel_clicked ();
942         void build_interthread_progress_window ();
943         ARDOUR::InterThreadInfo* current_interthread_info;
944
945 #ifdef FFT_ANALYSIS
946         AnalysisWindow* analysis_window;
947 #endif
948
949         /* import specific info */
950
951         ARDOUR::Session::import_status import_status;
952         gint import_progress_timeout (void *);
953         static void *_import_thread (void *);
954         void* import_thread ();
955
956         /* to support this ... */
957
958         void import_audio (bool as_tracks);
959         void do_import (vector<string> paths, bool split, bool as_tracks);
960
961         void move_to_start ();
962         void move_to_end ();
963         void goto_frame ();
964         void center_playhead ();
965         void center_edit_cursor ();
966         void edit_cursor_backward ();
967         void edit_cursor_forward ();
968         void playhead_backward ();
969         void playhead_forward ();
970         void scroll_backward (float pages=0.8f);
971         void scroll_forward (float pages=0.8f);
972         void scroll_tracks_down ();
973         void scroll_tracks_up ();
974         void delete_sample_forward ();
975         void delete_sample_backward ();
976         void delete_screen ();
977         void search_backwards ();
978         void search_forwards ();
979         void set_mark ();
980         void clear_markers ();
981         void clear_ranges ();
982         void clear_locations ();
983         void jump_forward_to_mark ();
984         void jump_backward_to_mark ();
985         void cursor_align (bool playhead_to_edit);
986
987         void remove_last_capture ();
988         void select_all_selectables_using_time_selection ();
989         void select_all_selectables_using_loop();
990         void select_all_selectables_using_punch();
991         void set_selection_from_range (ARDOUR::Location&);
992         void set_selection_from_punch ();
993         void set_selection_from_loop ();
994         void set_selection_from_audio_region ();
995
996         void add_location_from_audio_region ();
997         void add_location_from_selection ();
998         void set_route_loop_selection ();
999
1000         void add_location_from_playhead_cursor ();
1001
1002         void reverse_selection ();
1003         void edit_envelope ();
1004
1005         void start_scrolling ();
1006         void stop_scrolling ();
1007
1008         void keyboard_selection_begin ();
1009         void keyboard_selection_finish (bool add);
1010         bool have_pending_keyboard_selection;
1011         nframes_t pending_keyboard_selection_start;
1012
1013         boost::shared_ptr<ARDOUR::Region> select_region_for_operation (int dir, TimeAxisView **tv);
1014         void extend_selection_to_end_of_region (bool next);
1015         void extend_selection_to_start_of_region (bool previous);
1016
1017         Editing::SnapType snap_type;
1018         Editing::SnapMode snap_mode;
1019         double snap_threshold;
1020
1021         void handle_gui_changes (const string &, void *);
1022
1023         void    hide_all_tracks (bool with_select);
1024
1025         DragInfo drag_info;
1026         LineDragInfo current_line_drag_info;
1027
1028         void start_grab (GdkEvent*, Gdk::Cursor* cursor = 0);
1029         bool end_grab (ArdourCanvas::Item*, GdkEvent*);
1030         void swap_grab (ArdourCanvas::Item*, Gdk::Cursor* cursor, uint32_t time);
1031
1032         Gtk::Menu fade_context_menu;
1033         void popup_fade_context_menu (int, int, ArdourCanvas::Item*, ItemType);
1034
1035         void start_fade_in_grab (ArdourCanvas::Item*, GdkEvent*);
1036         void start_fade_out_grab (ArdourCanvas::Item*, GdkEvent*);
1037         void fade_in_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1038         void fade_out_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1039         void fade_in_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1040         void fade_out_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1041         
1042         std::set<ARDOUR::Playlist*> motion_frozen_playlists;
1043         void region_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1044         void region_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1045
1046         bool _dragging_playhead;
1047
1048         void cursor_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1049         void cursor_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1050         void marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1051         void marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1052         void control_point_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1053         void control_point_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1054         void line_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1055         void line_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1056
1057         void tempo_marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1058         void tempo_marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1059         void meter_marker_drag_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1060         void meter_marker_drag_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1061
1062         gint mouse_rename_region (ArdourCanvas::Item*, GdkEvent*);
1063
1064         void start_region_grab (ArdourCanvas::Item*, GdkEvent*);
1065         void start_region_copy_grab (ArdourCanvas::Item*, GdkEvent*);
1066         void start_region_brush_grab (ArdourCanvas::Item*, GdkEvent*);
1067         void start_selection_grab (ArdourCanvas::Item*, GdkEvent*);
1068         void start_cursor_grab (ArdourCanvas::Item*, GdkEvent*);
1069         void start_marker_grab (ArdourCanvas::Item*, GdkEvent*);
1070         void start_control_point_grab (ArdourCanvas::Item*, GdkEvent*);
1071         void start_line_grab_from_regionview (ArdourCanvas::Item*, GdkEvent*);
1072         void start_line_grab_from_line (ArdourCanvas::Item*, GdkEvent*);
1073         void start_line_grab (AutomationLine *, GdkEvent*);
1074         void start_tempo_marker_grab (ArdourCanvas::Item*, GdkEvent*);
1075         void start_tempo_marker_copy_grab (ArdourCanvas::Item*, GdkEvent*);
1076         void start_meter_marker_grab (ArdourCanvas::Item*, GdkEvent*);
1077         void start_meter_marker_copy_grab (ArdourCanvas::Item*, GdkEvent*);
1078
1079         void region_view_item_click (AudioRegionView&, GdkEventButton*);
1080
1081         void remove_gain_control_point (ArdourCanvas::Item*, GdkEvent*);
1082         void remove_control_point (ArdourCanvas::Item*, GdkEvent*);
1083
1084         void mouse_brush_insert_region (RegionView*, nframes_t pos);
1085         void brush (nframes_t);
1086
1087         void show_verbose_time_cursor (nframes_t frame, double offset = 0, double xpos=-1, double ypos=-1);
1088         void show_verbose_duration_cursor (nframes_t start, nframes_t end, double offset = 0, double xpos=-1, double ypos=-1);
1089
1090         /* Canvas event handlers */
1091
1092         bool canvas_control_point_event (GdkEvent* event,ArdourCanvas::Item*, ControlPoint*);
1093         bool canvas_line_event (GdkEvent* event,ArdourCanvas::Item*, AutomationLine*);
1094         bool canvas_selection_rect_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1095         bool canvas_selection_start_trim_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1096         bool canvas_selection_end_trim_event (GdkEvent* event,ArdourCanvas::Item*, SelectionRect*);
1097         bool canvas_crossfade_view_event (GdkEvent* event,ArdourCanvas::Item*, CrossfadeView*);
1098         bool canvas_fade_in_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1099         bool canvas_fade_in_handle_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1100         bool canvas_fade_out_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1101         bool canvas_fade_out_handle_event (GdkEvent* event,ArdourCanvas::Item*, AudioRegionView*);
1102         bool canvas_region_view_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1103         bool canvas_region_view_name_highlight_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1104         bool canvas_region_view_name_event (GdkEvent* event,ArdourCanvas::Item*, RegionView*);
1105         bool canvas_stream_view_event (GdkEvent* event,ArdourCanvas::Item*, RouteTimeAxisView*);
1106         bool canvas_marker_event (GdkEvent* event,ArdourCanvas::Item*, Marker*);
1107         bool canvas_zoom_rect_event (GdkEvent* event,ArdourCanvas::Item*);
1108         bool canvas_tempo_marker_event (GdkEvent* event,ArdourCanvas::Item*, TempoMarker*);
1109         bool canvas_meter_marker_event (GdkEvent* event,ArdourCanvas::Item*, MeterMarker*);
1110         bool canvas_automation_track_event(GdkEvent* event, ArdourCanvas::Item*, AutomationTimeAxisView*) ;
1111
1112         bool canvas_tempo_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1113         bool canvas_meter_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1114         bool canvas_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1115         bool canvas_range_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1116         bool canvas_transport_marker_bar_event (GdkEvent* event, ArdourCanvas::Item*);
1117
1118         bool canvas_imageframe_item_view_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
1119         bool canvas_imageframe_view_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameTimeAxis*);
1120         bool canvas_imageframe_start_handle_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
1121         bool canvas_imageframe_end_handle_event(GdkEvent* event, ArdourCanvas::Item*,ImageFrameView*);
1122         bool canvas_marker_time_axis_view_event(GdkEvent* event, ArdourCanvas::Item*,MarkerTimeAxis*);
1123         bool canvas_markerview_item_view_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
1124         bool canvas_markerview_start_handle_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
1125         bool canvas_markerview_end_handle_event(GdkEvent* event, ArdourCanvas::Item*,MarkerView*);
1126
1127         /* non-public event handlers */
1128
1129         bool canvas_playhead_cursor_event (GdkEvent* event, ArdourCanvas::Item*);
1130         bool canvas_edit_cursor_event (GdkEvent* event, ArdourCanvas::Item*);
1131         bool track_canvas_event (GdkEvent* event, ArdourCanvas::Item*);
1132         bool track_canvas_scroll (GdkEventScroll* event);
1133
1134         Gtk::Allocation canvas_allocation;
1135         bool canvas_idle_queued;
1136         void track_canvas_allocate (Gtk::Allocation alloc);
1137         bool track_canvas_idle ();
1138
1139         void set_edit_cursor (GdkEvent* event);
1140         void set_playhead_cursor (GdkEvent* event);
1141
1142         void kbd_driver (sigc::slot<void,GdkEvent*>, bool use_track_canvas = true, bool use_time_canvas = true, bool can_select = true);
1143         void kbd_set_playhead_cursor ();
1144         void kbd_set_edit_cursor ();
1145         void kbd_mute_unmute_region ();
1146         void kbd_split ();
1147         void kbd_set_sync_position ();
1148         void kbd_align (ARDOUR::RegionPoint);
1149         void kbd_align_relative (ARDOUR::RegionPoint);
1150         void kbd_brush ();
1151         void kbd_audition ();
1152
1153         void kbd_do_split (GdkEvent*);
1154         void kbd_do_set_sync_position (GdkEvent* ev);
1155         void kbd_do_align (GdkEvent*, ARDOUR::RegionPoint);
1156         void kbd_do_align_relative (GdkEvent*, ARDOUR::RegionPoint);
1157         void kbd_do_brush (GdkEvent*);
1158         void kbd_do_audition (GdkEvent*);
1159
1160         void handle_new_duration ();
1161         void initialize_canvas ();
1162         void reset_scrolling_region (Gtk::Allocation* alloc = 0);
1163
1164         /* display control */
1165         
1166         bool _show_measures;
1167         bool _show_waveforms;
1168         bool _follow_playhead;
1169         bool _show_waveforms_recording;
1170         
1171         ARDOUR::TempoMap::BBTPointList *current_bbt_points;
1172         
1173         typedef vector<ArdourCanvas::SimpleLine*> TimeLineList;
1174         TimeLineList free_measure_lines;
1175         TimeLineList used_measure_lines;
1176
1177         ArdourCanvas::Group* time_line_group;
1178         ArdourCanvas::SimpleLine* get_time_line ();
1179         void hide_measures ();
1180         void draw_measures ();
1181         bool lazy_hide_and_draw_measures ();
1182
1183         void new_tempo_section ();
1184
1185         void mouse_add_new_tempo_event (nframes_t where);
1186         void mouse_add_new_meter_event (nframes_t where);
1187
1188         void remove_tempo_marker (ArdourCanvas::Item*);
1189         void remove_meter_marker (ArdourCanvas::Item*);
1190         gint real_remove_tempo_marker (ARDOUR::TempoSection*);
1191         gint real_remove_meter_marker (ARDOUR::MeterSection*);
1192         
1193         void edit_tempo_section (ARDOUR::TempoSection*);
1194         void edit_meter_section (ARDOUR::MeterSection*);
1195         void edit_tempo_marker (ArdourCanvas::Item*);
1196         void edit_meter_marker (ArdourCanvas::Item*);
1197         
1198         void marker_menu_edit ();
1199         void marker_menu_remove ();
1200         void marker_menu_rename ();
1201         void marker_menu_hide ();
1202         void marker_menu_loop_range ();
1203         void marker_menu_select_all_selectables_using_range ();
1204         void marker_menu_separate_regions_using_location ();
1205         void marker_menu_play_from ();
1206         void marker_menu_set_playhead ();
1207         void marker_menu_set_from_playhead ();
1208         void marker_menu_set_from_selection ();
1209         void new_transport_marker_menu_set_loop ();
1210         void new_transport_marker_menu_set_punch ();
1211         void update_loop_range_view (bool visibility=false);
1212         void update_punch_range_view (bool visibility=false);
1213         gint new_transport_marker_menu_popdown (GdkEventAny*);
1214         void marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1215         void tm_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1216         void transport_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1217         void new_transport_marker_context_menu (GdkEventButton*, ArdourCanvas::Item*);
1218         void build_range_marker_menu ();
1219         void build_marker_menu ();
1220         void build_tm_marker_menu ();
1221         void build_transport_marker_menu ();
1222         void build_new_transport_marker_menu ();
1223
1224         Gtk::Menu* tm_marker_menu;
1225         Gtk::Menu* marker_menu;
1226         Gtk::Menu* range_marker_menu;
1227         Gtk::Menu* transport_marker_menu;
1228         Gtk::Menu* new_transport_marker_menu;
1229         ArdourCanvas::Item* marker_menu_item;
1230
1231         typedef list<Marker*> Marks;
1232         Marks metric_marks;
1233
1234         void remove_metric_marks ();
1235         void draw_metric_marks (const ARDOUR::Metrics& metrics);
1236
1237         void tempo_map_changed (ARDOUR::Change);
1238         void redisplay_tempo ();
1239         
1240         void snap_to (nframes_t& first, int32_t direction = 0, bool for_mark = false);
1241         uint32_t bbt_beat_subdivision;
1242
1243         /* toolbar */
1244         
1245         Gtk::ToggleButton        editor_mixer_button;
1246
1247         void editor_mixer_button_toggled ();
1248
1249         AudioClock               edit_cursor_clock;
1250         AudioClock               zoom_range_clock;
1251         Gtk::Button              zoom_in_button;
1252         Gtk::Button              zoom_out_button;
1253         Gtk::Button              zoom_out_full_button;
1254         Gtk::Button              zoom_onetoone_button;
1255
1256         Gtk::VBox                toolbar_clock_vbox;
1257         Gtk::VBox                toolbar_selection_clock_vbox; 
1258         Gtk::Table               toolbar_selection_clock_table;
1259         Gtk::Label               toolbar_selection_cursor_label;
1260         
1261         Gtk::HBox                mouse_mode_button_box;
1262         Gtkmm2ext::TearOff*      mouse_mode_tearoff;
1263         Gtk::ToggleButton        mouse_select_button;
1264         Gtk::ToggleButton        mouse_move_button;
1265         Gtk::ToggleButton        mouse_gain_button;
1266         Gtk::ToggleButton        mouse_zoom_button;
1267         Gtk::ToggleButton        mouse_timefx_button;
1268         Gtk::ToggleButton        mouse_audition_button;
1269         GroupedButtons          *mouse_mode_button_set;
1270         void                     mouse_mode_toggled (Editing::MouseMode m);
1271         bool                     ignore_mouse_mode_toggle;
1272
1273         gint                     mouse_select_button_release (GdkEventButton*);
1274
1275         Gtk::VBox                automation_box;
1276         Gtk::Button              automation_mode_button;
1277         Gtk::ToggleButton        global_automation_button;
1278
1279         Gtk::ComboBoxText edit_mode_selector;
1280         Gtk::VBox         edit_mode_box;
1281
1282         void edit_mode_selection_done ();
1283
1284         Gtk::ComboBoxText snap_type_selector;
1285         Gtk::ComboBoxText snap_mode_selector;
1286         Gtk::HBox         snap_box;
1287
1288         std::vector<std::string> snap_type_strings;
1289         std::vector<std::string> snap_mode_strings;
1290
1291         void snap_type_selection_done ();
1292         void snap_mode_selection_done ();
1293         void snap_mode_chosen (Editing::SnapMode);
1294         void snap_type_chosen (Editing::SnapType);
1295
1296         Glib::RefPtr<Gtk::RadioAction> snap_type_action (Editing::SnapType);
1297         Glib::RefPtr<Gtk::RadioAction> snap_mode_action (Editing::SnapMode);
1298
1299         Gtk::ComboBoxText zoom_focus_selector;
1300         Gtk::VBox         zoom_focus_box;
1301
1302         std::vector<std::string> zoom_focus_strings;
1303         
1304         void zoom_focus_selection_done ();
1305         void zoom_focus_chosen (Editing::ZoomFocus);
1306
1307         Glib::RefPtr<Gtk::RadioAction> zoom_focus_action (Editing::ZoomFocus);
1308
1309         Gtk::HBox           zoom_box;
1310
1311         void                zoom_adjustment_changed();
1312
1313         void                edit_cursor_clock_changed();
1314         
1315         void setup_toolbar ();
1316
1317         Gtkmm2ext::TearOff*       tools_tearoff;
1318         Gtk::HBox                toolbar_hbox;
1319         Gtk::EventBox            toolbar_base;
1320         Gtk::Frame               toolbar_frame;
1321
1322         /* selection process */
1323
1324         Selection* selection;
1325         Selection* cut_buffer;
1326
1327         void time_selection_changed ();
1328         void track_selection_changed ();
1329         void region_selection_changed ();
1330         void point_selection_changed ();
1331
1332         enum SelectionOp {
1333                 CreateSelection,
1334                 SelectionStartTrim,
1335                 SelectionEndTrim,
1336                 SelectionMove
1337         } selection_op;
1338
1339         void start_selection_op (ArdourCanvas::Item* item, GdkEvent* event, SelectionOp);
1340         void drag_selection (ArdourCanvas::Item* item, GdkEvent* event);
1341         void end_selection_op (ArdourCanvas::Item* item, GdkEvent* event);
1342         void cancel_selection ();
1343
1344         void region_selection_op (void (ARDOUR::Region::*pmf)(void));
1345         void region_selection_op (void (ARDOUR::Region::*pmf)(void*), void*);
1346         void region_selection_op (void (ARDOUR::Region::*pmf)(bool), bool);
1347
1348         bool audio_region_selection_covers (nframes_t where);
1349
1350         /* transport range select process */
1351         enum RangeMarkerOp {
1352                 CreateRangeMarker,
1353                 CreateTransportMarker
1354         } range_marker_op;
1355
1356         void start_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event, RangeMarkerOp);
1357         void drag_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event);
1358         void end_range_markerbar_op (ArdourCanvas::Item* item, GdkEvent* event);
1359
1360         ArdourCanvas::SimpleRect*  range_bar_drag_rect;
1361         ArdourCanvas::SimpleRect*  transport_bar_drag_rect;
1362         ArdourCanvas::Line*        marker_drag_line;
1363         ArdourCanvas::Points       marker_drag_line_points;
1364         ArdourCanvas::SimpleRect*  range_marker_drag_rect;
1365
1366         void update_marker_drag_item (ARDOUR::Location *);
1367         
1368         ArdourCanvas::SimpleRect     *transport_bar_range_rect;
1369         ArdourCanvas::SimpleRect     *transport_bar_preroll_rect;
1370         ArdourCanvas::SimpleRect     *transport_bar_postroll_rect;
1371         ArdourCanvas::SimpleRect     *transport_loop_range_rect;
1372         ArdourCanvas::SimpleRect     *transport_punch_range_rect;
1373         ArdourCanvas::SimpleLine     *transport_punchin_line;
1374         ArdourCanvas::SimpleLine     *transport_punchout_line;
1375         ArdourCanvas::SimpleRect     *transport_preroll_rect;
1376         ArdourCanvas::SimpleRect     *transport_postroll_rect;
1377
1378         ARDOUR::Location*  transport_loop_location();
1379         ARDOUR::Location*  transport_punch_location();
1380
1381         ARDOUR::Location   *temp_location;
1382         
1383         /* object rubberband select process */
1384         
1385         void start_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
1386         void drag_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
1387         void end_rubberband_select (ArdourCanvas::Item* item, GdkEvent* event);
1388
1389         bool select_all_within (nframes_t start, nframes_t end, gdouble topy, gdouble boty, Selection::Operation op);
1390         
1391         ArdourCanvas::SimpleRect   *rubberband_rect;
1392         
1393         /* mouse zoom process */
1394
1395         void start_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
1396         void drag_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
1397         void end_mouse_zoom (ArdourCanvas::Item* item, GdkEvent* event);
1398
1399         ArdourCanvas::SimpleRect   *zoom_rect;
1400         void reposition_zoom_rect (nframes_t start, nframes_t end);
1401         
1402         /* diskstream/route display management */
1403
1404         struct RouteDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
1405             RouteDisplayModelColumns() { 
1406                     add (text);
1407                     add (visible);
1408                     add (tv);
1409             }
1410             Gtk::TreeModelColumn<Glib::ustring>  text;
1411             Gtk::TreeModelColumn<bool>           visible;
1412             Gtk::TreeModelColumn<TimeAxisView*>  tv;
1413         };
1414
1415         RouteDisplayModelColumns         route_display_columns;
1416         Glib::RefPtr<Gtk::ListStore>     route_display_model;
1417         Glib::RefPtr<Gtk::TreeSelection> route_display_selection;
1418
1419         Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Route> > route_list_display; 
1420         Gtk::ScrolledWindow                   route_list_scroller;
1421         Gtk::Menu*                            route_list_menu;
1422
1423         bool route_list_display_button_press (GdkEventButton*);
1424         bool route_list_selection_filter (const Glib::RefPtr<Gtk::TreeModel>& model, const Gtk::TreeModel::Path& path, bool yn);
1425
1426         void route_list_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&);
1427         void route_list_delete (const Gtk::TreeModel::Path&);
1428         void initial_route_list_display ();
1429         void redisplay_route_list();
1430         void route_list_reordered (const Gtk::TreeModel::Path& path, const Gtk::TreeModel::iterator& iter, int* what);
1431         bool ignore_route_list_reorder;
1432         bool no_route_list_redisplay;
1433
1434         void build_route_list_menu ();
1435         void show_route_list_menu ();
1436
1437         void show_all_routes ();
1438         void hide_all_routes ();
1439         void show_all_audiotracks ();
1440         void hide_all_audiotracks ();
1441         void show_all_audiobus ();
1442         void hide_all_audiobus ();
1443
1444         void set_all_tracks_visibility (bool yn);
1445         void set_all_audio_visibility (int type, bool yn);
1446
1447         /* edit group management */
1448
1449         struct GroupListModelColumns : public Gtk::TreeModel::ColumnRecord {
1450                 GroupListModelColumns () {
1451                        add (is_active);
1452                        add (is_visible);
1453                        add (text);
1454                        add (routegroup);
1455                 }
1456                 Gtk::TreeModelColumn<bool> is_active;
1457                 Gtk::TreeModelColumn<bool> is_visible;
1458                 Gtk::TreeModelColumn<std::string> text;
1459                 Gtk::TreeModelColumn<ARDOUR::RouteGroup*>   routegroup;
1460         };
1461
1462         GroupListModelColumns group_columns;
1463         Glib::RefPtr<Gtk::ListStore> group_model;
1464         Glib::RefPtr<Gtk::TreeSelection> group_selection;
1465
1466         Gtk::TreeView          edit_group_display;
1467         Gtk::ScrolledWindow    edit_group_display_scroller;
1468         Gtk::Menu*             edit_group_list_menu;
1469
1470         void build_edit_group_list_menu ();
1471         void activate_all_edit_groups ();
1472         void disable_all_edit_groups ();
1473
1474         bool in_edit_group_row_change;
1475         void edit_group_row_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&);
1476         void edit_group_name_edit (const Glib::ustring&, const Glib::ustring&);
1477         void new_edit_group ();
1478         void edit_group_list_button_clicked ();
1479         gint edit_group_list_button_press_event (GdkEventButton* ev);
1480         void add_edit_group (ARDOUR::RouteGroup* group);
1481         void remove_selected_edit_group ();
1482         void edit_groups_changed ();
1483         void group_flags_changed (void*, ARDOUR::RouteGroup*);
1484
1485         Gtk::VBox           list_vpacker;
1486
1487         /* autoscrolling */
1488
1489         bool autoscroll_active;
1490         int autoscroll_timeout_tag;
1491         int autoscroll_direction;
1492         uint32_t autoscroll_cnt;
1493         nframes_t autoscroll_distance;
1494      
1495         static gint _autoscroll_canvas (void *);
1496         bool autoscroll_canvas ();
1497         void start_canvas_autoscroll (int direction);
1498         void stop_canvas_autoscroll ();
1499         void maybe_autoscroll (GdkEvent*);
1500
1501         /* trimming */
1502         enum TrimOp {
1503                 StartTrim,
1504                 EndTrim,
1505                 ContentsTrim,
1506         } trim_op;
1507
1508         void start_trim (ArdourCanvas::Item*, GdkEvent*);
1509         void point_trim (GdkEvent*);
1510         void trim_motion_callback (ArdourCanvas::Item*, GdkEvent*);
1511         void single_contents_trim (RegionView&, nframes_t, bool, bool, bool);
1512         void single_start_trim (RegionView&, nframes_t, bool, bool);
1513         void single_end_trim (RegionView&, nframes_t, bool, bool);
1514
1515         void trim_finished_callback (ArdourCanvas::Item*, GdkEvent*);
1516         void thaw_region_after_trim (RegionView& rv);
1517         
1518         void trim_region_to_edit_cursor ();
1519         void trim_region_from_edit_cursor ();
1520
1521         bool show_gain_after_trim;
1522
1523         /* Drag-n-Drop */
1524
1525         int convert_drop_to_paths (std::vector<Glib::ustring>& paths,
1526                                    const Glib::RefPtr<Gdk::DragContext>& context,
1527                                    gint                x,
1528                                    gint                y,
1529                                    const Gtk::SelectionData& data,
1530                                    guint               info,
1531                                    guint               time);
1532
1533         void  track_canvas_drag_data_received  (const Glib::RefPtr<Gdk::DragContext>& context,
1534                                                 gint                x,
1535                                                 gint                y,
1536                                                 const Gtk::SelectionData& data,
1537                                                 guint               info,
1538                                                 guint               time);
1539         
1540         void  region_list_display_drag_data_received  (const Glib::RefPtr<Gdk::DragContext>& context,
1541                                                        gint                x,
1542                                                        gint                y,
1543                                                        const Gtk::SelectionData& data,
1544                                                        guint               info,
1545                                                        guint               time);
1546
1547
1548         void  drop_paths  (const Glib::RefPtr<Gdk::DragContext>& context,
1549                            gint                x,
1550                            gint                y,
1551                            const Gtk::SelectionData& data,
1552                            guint               info,
1553                            guint               time);
1554
1555         void  drop_regions  (const Glib::RefPtr<Gdk::DragContext>& context,
1556                              gint                x,
1557                              gint                y,
1558                              const Gtk::SelectionData& data,
1559                              guint               info,
1560                              guint               time);
1561
1562         /* audio export */
1563
1564         ExportDialog *export_dialog;
1565         ExportDialog *export_range_markers_dialog;
1566         
1567         void export_range (nframes_t start, nframes_t end);
1568         void export_range_markers ();
1569
1570         int  write_region_selection(RegionSelection&);
1571         bool write_region (string path, boost::shared_ptr<ARDOUR::AudioRegion>);
1572         void export_region ();
1573         void bounce_region_selection ();
1574         void bounce_range_selection ();
1575         void external_edit_region ();
1576
1577         int write_audio_selection (TimeSelection&);
1578         bool write_audio_range (ARDOUR::AudioPlaylist&, uint32_t channels, list<ARDOUR::AudioRange>&);
1579
1580         void write_selection ();
1581
1582         /* history */
1583
1584         UndoAction get_memento() const;
1585
1586         XMLNode *before; /* used in *_reversible_command */
1587         void begin_reversible_command (string cmd_name);
1588         void commit_reversible_command ();
1589
1590         /* visual history */
1591
1592         UndoHistory visual_history;
1593         UndoTransaction current_visual_command;
1594
1595
1596         void update_title ();   
1597         void update_title_s (const string & snapshot_name);
1598
1599         struct State {
1600             Selection* selection;
1601             double     frames_per_unit;
1602
1603             State();
1604             ~State();
1605         };
1606
1607         void store_state (State&) const;
1608         void restore_state (State *);
1609
1610         void instant_save ();
1611
1612         boost::shared_ptr<ARDOUR::AudioRegion> last_audition_region;
1613         
1614         /* freeze operations */
1615
1616         ARDOUR::InterThreadInfo freeze_status;
1617         gint freeze_progress_timeout (void *);
1618         static void* _freeze_thread (void*);
1619         void* freeze_thread ();
1620
1621         void freeze_route ();
1622         void unfreeze_route ();
1623
1624         /* edit-group solo + mute */
1625
1626         void set_edit_group_solo (ARDOUR::Route&, bool);
1627         void set_edit_group_mute (ARDOUR::Route&, bool);
1628
1629         /* duplication */
1630
1631         void duplicate_dialog (bool for_region);
1632         
1633         nframes_t event_frame (GdkEvent*, double* px = 0, double* py = 0);
1634
1635         void time_fx_motion (ArdourCanvas::Item*, GdkEvent*);
1636         void start_time_fx (ArdourCanvas::Item*, GdkEvent*);
1637         void end_time_fx (ArdourCanvas::Item*, GdkEvent*);
1638
1639         struct TimeStretchDialog : public ArdourDialog {
1640             ARDOUR::Session::TimeStretchRequest request;
1641             Editor&               editor;
1642             RegionSelection       regions;
1643             Gtk::ProgressBar      progress_bar;
1644             Gtk::ToggleButton     quick_button;
1645             Gtk::ToggleButton     antialias_button;
1646             Gtk::Button*          cancel_button;
1647             Gtk::Button*          action_button;
1648             Gtk::HBox             upper_button_box;
1649             Gtk::VBox             packer;
1650             int                   status;
1651
1652             TimeStretchDialog (Editor& e);
1653
1654             gint update_progress ();
1655             sigc::connection first_cancel;
1656             sigc::connection first_delete;
1657             void cancel_timestretch_in_progress ();
1658             gint delete_timestretch_in_progress (GdkEventAny*);
1659         };
1660
1661         /* "whats mine is yours" */
1662
1663         friend class TimeStretchDialog;
1664
1665         TimeStretchDialog* current_timestretch;
1666
1667         static void* timestretch_thread (void *arg);
1668         int run_timestretch (RegionSelection&, float fraction);
1669         void do_timestretch (TimeStretchDialog&);
1670
1671         /* editor-mixer strip */
1672
1673         MixerStrip *current_mixer_strip;
1674         bool show_editor_mixer_when_tracks_arrive;
1675         Gtk::VBox current_mixer_strip_vbox;
1676         void cms_deleted ();
1677         void current_mixer_strip_hidden ();
1678         void current_mixer_strip_removed ();
1679
1680         void detach_tearoff (Gtk::Box* b, Gtk::Window* w);
1681         void reattach_tearoff (Gtk::Box* b, Gtk::Window* w, int32_t n);
1682
1683         /* nudging tracks */
1684
1685         void nudge_track (bool use_edit_cursor, bool forwards);
1686
1687         /* xfades */
1688
1689         bool _xfade_visibility;
1690         
1691         /* <CMT Additions> */
1692         void handle_new_imageframe_time_axis_view(const string & track_name, void* src) ;
1693         void handle_new_imageframe_marker_time_axis_view(const string & track_name, TimeAxisView* marked_track) ;
1694
1695         void start_imageframe_grab(ArdourCanvas::Item*, GdkEvent*) ;
1696         void start_markerview_grab(ArdourCanvas::Item*, GdkEvent*) ;
1697
1698         void imageframe_drag_motion_callback(ArdourCanvas::Item*, GdkEvent*) ;
1699         void markerview_drag_motion_callback(ArdourCanvas::Item*, GdkEvent*) ;
1700         void timeaxis_item_drag_finished_callback(ArdourCanvas::Item*, GdkEvent*) ;
1701
1702         gint canvas_imageframe_item_view_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
1703         gint canvas_imageframe_view_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameTimeAxis* ifta);
1704         gint canvas_imageframe_start_handle_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
1705         gint canvas_imageframe_end_handle_event(ArdourCanvas::Item* item, GdkEvent* event, ImageFrameView* ifv);
1706
1707         gint canvas_marker_time_axis_view_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerTimeAxis* mta);
1708         gint canvas_markerview_item_view_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
1709         gint canvas_markerview_start_handle_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
1710         gint canvas_markerview_end_handle_event(ArdourCanvas::Item* item, GdkEvent* event, MarkerView* mv);
1711
1712         void imageframe_start_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
1713         void imageframe_end_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
1714         void imageframe_start_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
1715         void imageframe_start_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
1716         void imageframe_end_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
1717         void imageframe_end_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
1718         
1719         void markerview_item_start_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
1720         void markerview_item_end_handle_op(ArdourCanvas::Item* item, GdkEvent* event) ;
1721         void markerview_start_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
1722         void markerview_start_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
1723         void markerview_end_handle_trim_motion(ArdourCanvas::Item* item, GdkEvent* event) ;
1724         void markerview_end_handle_end_trim(ArdourCanvas::Item* item, GdkEvent* event) ;
1725
1726         void popup_imageframe_edit_menu(int button, int32_t time, ArdourCanvas::Item* ifv, bool with_frame) ;
1727         void popup_marker_time_axis_edit_menu(int button, int32_t time, ArdourCanvas::Item* ifv, bool with_frame) ;
1728
1729         ImageFrameSocketHandler* image_socket_listener ;
1730         /* </CMT Additions> */
1731
1732         void toggle_xfade_active (ARDOUR::Crossfade*);
1733         void toggle_xfade_length (ARDOUR::Crossfade*);
1734         void edit_xfade (ARDOUR::Crossfade*);
1735         void xfade_edit_left_region ();
1736         void xfade_edit_right_region ();
1737
1738         static const int32_t default_width = 995;
1739         static const int32_t default_height = 765;
1740
1741         /* nudge */
1742
1743         Gtk::Button      nudge_forward_button;
1744         Gtk::Button      nudge_backward_button;
1745         Gtk::HBox        nudge_hbox;
1746         Gtk::VBox        nudge_vbox;
1747         AudioClock       nudge_clock;
1748
1749         nframes_t get_nudge_distance (nframes_t pos, nframes_t& next);
1750         
1751         /* audio filters */
1752
1753         void apply_filter (ARDOUR::AudioFilter&, string cmd);
1754
1755         /* handling cleanup */
1756
1757         int playlist_deletion_dialog (ARDOUR::Playlist*);
1758
1759         vector<sigc::connection> session_connections;
1760
1761         /* tracking step changes of track height */
1762
1763         TimeAxisView* current_stepping_trackview;
1764         struct timeval last_track_height_step_timestamp;
1765         gint track_height_step_timeout();
1766         sigc::connection step_timeout;
1767
1768         TimeAxisView* entered_track;
1769         RegionView*   entered_regionview;
1770         bool clear_entered_track;
1771         gint left_track_canvas (GdkEventCrossing*);
1772         void set_entered_track (TimeAxisView*);
1773         void set_entered_regionview (RegionView*);
1774         gint left_automation_track ();
1775
1776         bool _new_regionviews_show_envelope;
1777
1778         void toggle_gain_envelope_visibility ();
1779         void toggle_gain_envelope_active ();
1780         void reset_region_gain_envelopes ();
1781
1782         Gtk::CheckMenuItem* region_envelope_visible_item;
1783         Gtk::CheckMenuItem* region_envelope_active_item;
1784         Gtk::CheckMenuItem* region_mute_item;
1785         Gtk::CheckMenuItem* region_lock_item;
1786         Gtk::CheckMenuItem* region_opaque_item;
1787         
1788         bool on_key_press_event (GdkEventKey*);
1789
1790         void session_state_saved (string);
1791
1792         Glib::RefPtr<Gtk::Action>              undo_action;
1793         Glib::RefPtr<Gtk::Action>              redo_action;
1794
1795         void history_changed ();
1796
1797 };
1798
1799 #endif /* __ardour_editor_h__ */