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