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