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