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