Hack round a maybe delightful (for some values of delightful) and certainly evil...
[ardour.git] / gtk2_ardour / editor_canvas.cc
1 /*
2     Copyright (C) 2005 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 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <libgnomecanvasmm/init.h>
25 #include <libgnomecanvasmm/pixbuf.h>
26 #include <jack/types.h>
27 #include <gtkmm2ext/utils.h>
28
29 #include "ardour/profile.h"
30 #include "ardour/rc_configuration.h"
31
32 #include "ardour_ui.h"
33 #include "editor.h"
34 #include "global_signals.h"
35 #include "waveview.h"
36 #include "simplerect.h"
37 #include "simpleline.h"
38 #include "imageframe.h"
39 #include "waveview_p.h"
40 #include "simplerect_p.h"
41 #include "simpleline_p.h"
42 #include "imageframe_p.h"
43 #include "canvas_impl.h"
44 #include "canvas-noevent-text.h"
45 #include "editing.h"
46 #include "rgb_macros.h"
47 #include "utils.h"
48 #include "audio_time_axis.h"
49 #include "editor_drag.h"
50 #include "region_view.h"
51 #include "editor_group_tabs.h"
52 #include "editor_routes.h"
53 #include "editor_summary.h"
54 #include "keyboard.h"
55 #include "editor_cursors.h"
56 #include "mouse_cursors.h"
57
58 #include "i18n.h"
59
60 using namespace std;
61 using namespace ARDOUR;
62 using namespace PBD;
63 using namespace Gtk;
64 using namespace Glib;
65 using namespace Gtkmm2ext;
66 using namespace Editing;
67
68 /* XXX this is a hack. it ought to be the maximum value of an framepos_t */
69
70 const double max_canvas_coordinate = (double) JACK_MAX_FRAMES;
71
72 extern "C"
73 {
74
75 GType gnome_canvas_simpleline_get_type(void);
76 GType gnome_canvas_simplerect_get_type(void);
77 GType gnome_canvas_waveview_get_type(void);
78 GType gnome_canvas_imageframe_get_type(void);
79
80 }
81
82 static void ardour_canvas_type_init()
83 {
84         // Map gtypes to gtkmm wrapper-creation functions:
85
86         Glib::wrap_register(gnome_canvas_simpleline_get_type(), &Gnome::Canvas::SimpleLine_Class::wrap_new);
87         Glib::wrap_register(gnome_canvas_simplerect_get_type(), &Gnome::Canvas::SimpleRect_Class::wrap_new);
88         Glib::wrap_register(gnome_canvas_waveview_get_type(), &Gnome::Canvas::WaveView_Class::wrap_new);
89         // Glib::wrap_register(gnome_canvas_imageframe_get_type(), &Gnome::Canvas::ImageFrame_Class::wrap_new);
90
91         // Register the gtkmm gtypes:
92
93         (void) Gnome::Canvas::WaveView::get_type();
94         (void) Gnome::Canvas::SimpleLine::get_type();
95         (void) Gnome::Canvas::SimpleRect::get_type();
96         (void) Gnome::Canvas::ImageFrame::get_type();
97 }
98
99 void
100 Editor::initialize_canvas ()
101 {
102         if (getenv ("ARDOUR_NON_AA_CANVAS")) {
103                 track_canvas = new ArdourCanvas::Canvas ();
104         } else {
105                 track_canvas = new ArdourCanvas::CanvasAA ();
106         }
107
108         ArdourCanvas::init ();
109         ardour_canvas_type_init ();
110
111         /* don't try to center the canvas */
112
113         track_canvas->set_center_scroll_region (false);
114         track_canvas->set_dither (Gdk::RGB_DITHER_NONE);
115
116         gint phys_width = physical_screen_width (Glib::RefPtr<Gdk::Window>());
117         gint phys_height = physical_screen_height (Glib::RefPtr<Gdk::Window>());
118
119         /* stuff for the verbose canvas cursor */
120
121         Pango::FontDescription* font = get_font_for_style (N_("VerboseCanvasCursor"));
122
123         verbose_canvas_cursor = new ArdourCanvas::NoEventText (*track_canvas->root());
124         verbose_canvas_cursor->property_font_desc() = *font;
125         verbose_canvas_cursor->property_anchor() = ANCHOR_NW;
126
127         delete font;
128
129         verbose_cursor_visible = false;
130
131         /* on the bottom, an image */
132
133         if (Profile->get_sae()) {
134                 Image img (::get_icon (X_("saelogo")));
135                 logo_item = new ArdourCanvas::Pixbuf (*track_canvas->root(), 0.0, 0.0, img.get_pixbuf());
136                 // logo_item->property_height_in_pixels() = true;
137                 // logo_item->property_width_in_pixels() = true;
138                 // logo_item->property_height_set() = true;
139                 // logo_item->property_width_set() = true;
140                 logo_item->show ();
141         }
142
143         /* a group to hold time (measure) lines */
144         time_line_group = new ArdourCanvas::Group (*track_canvas->root());
145
146 #ifdef GTKOSX
147         /*XXX please don't laugh. this actually improves canvas performance on osx */
148         bogus_background_rect =  new ArdourCanvas::SimpleRect (*time_line_group, 0.0, 0.0, max_canvas_coordinate/3, phys_height);
149         bogus_background_rect->property_outline_pixels() = 0;
150 #endif
151         transport_loop_range_rect = new ArdourCanvas::SimpleRect (*time_line_group, 0.0, 0.0, 0.0, phys_height);
152         transport_loop_range_rect->property_outline_pixels() = 1;
153         transport_loop_range_rect->hide();
154
155         transport_punch_range_rect = new ArdourCanvas::SimpleRect (*time_line_group, 0.0, 0.0, 0.0, phys_height);
156         transport_punch_range_rect->property_outline_pixels() = 0;
157         transport_punch_range_rect->hide();
158
159         _background_group = new ArdourCanvas::Group (*track_canvas->root());
160         _master_group = new ArdourCanvas::Group (*track_canvas->root());
161
162         _trackview_group = new ArdourCanvas::Group (*_master_group);
163         _region_motion_group = new ArdourCanvas::Group (*_trackview_group);
164
165         meter_bar_group = new ArdourCanvas::Group (*track_canvas->root ());
166         meter_bar = new ArdourCanvas::SimpleRect (*meter_bar_group, 0.0, 0.0, phys_width, timebar_height - 1);
167         meter_bar->property_outline_pixels() = 1;
168         meter_bar->property_outline_what() = 0x8;
169
170         tempo_bar_group = new ArdourCanvas::Group (*track_canvas->root ());
171         tempo_bar = new ArdourCanvas::SimpleRect (*tempo_bar_group, 0.0, 0.0, phys_width, (timebar_height - 1));
172         tempo_bar->property_outline_pixels() = 1;
173         tempo_bar->property_outline_what() = 0x8;
174
175         range_marker_bar_group = new ArdourCanvas::Group (*track_canvas->root ());
176         range_marker_bar = new ArdourCanvas::SimpleRect (*range_marker_bar_group, 0.0, 0.0, phys_width, (timebar_height - 1));
177         range_marker_bar->property_outline_pixels() = 1;
178         range_marker_bar->property_outline_what() = 0x8;
179
180         transport_marker_bar_group = new ArdourCanvas::Group (*track_canvas->root ());
181         transport_marker_bar = new ArdourCanvas::SimpleRect (*transport_marker_bar_group, 0.0, 0.0,  phys_width, (timebar_height - 1));
182         transport_marker_bar->property_outline_pixels() = 1;
183         transport_marker_bar->property_outline_what() = 0x8;
184
185         marker_bar_group = new ArdourCanvas::Group (*track_canvas->root ());
186         marker_bar = new ArdourCanvas::SimpleRect (*marker_bar_group, 0.0, 0.0, phys_width, (timebar_height - 1));
187         marker_bar->property_outline_pixels() = 1;
188         marker_bar->property_outline_what() = 0x8;
189
190         cd_marker_bar_group = new ArdourCanvas::Group (*track_canvas->root ());
191         cd_marker_bar = new ArdourCanvas::SimpleRect (*cd_marker_bar_group, 0.0, 0.0, phys_width, (timebar_height - 1));
192         cd_marker_bar->property_outline_pixels() = 1;
193         cd_marker_bar->property_outline_what() = 0x8;
194
195         timebar_group =  new ArdourCanvas::Group (*track_canvas->root(), 0.0, 0.0);
196         cursor_group = new ArdourCanvas::Group (*track_canvas->root(), 0.0, 0.0);
197
198         meter_group = new ArdourCanvas::Group (*timebar_group, 0.0, timebar_height * 5.0);
199         tempo_group = new ArdourCanvas::Group (*timebar_group, 0.0, timebar_height * 4.0);
200         range_marker_group = new ArdourCanvas::Group (*timebar_group, 0.0, timebar_height * 3.0);
201         transport_marker_group = new ArdourCanvas::Group (*timebar_group, 0.0, timebar_height * 2.0);
202         marker_group = new ArdourCanvas::Group (*timebar_group, 0.0, timebar_height);
203         cd_marker_group = new ArdourCanvas::Group (*timebar_group, 0.0, 0.0);
204
205         cd_marker_bar_drag_rect = new ArdourCanvas::SimpleRect (*cd_marker_group, 0.0, 0.0, 100, timebar_height);
206         cd_marker_bar_drag_rect->property_outline_pixels() = 0;
207         cd_marker_bar_drag_rect->hide ();
208
209         range_bar_drag_rect = new ArdourCanvas::SimpleRect (*range_marker_group, 0.0, 0.0, 100, timebar_height);
210         range_bar_drag_rect->property_outline_pixels() = 0;
211         range_bar_drag_rect->hide ();
212
213         transport_bar_drag_rect = new ArdourCanvas::SimpleRect (*transport_marker_group, 0.0, 0.0, 100, timebar_height);
214         transport_bar_drag_rect->property_outline_pixels() = 0;
215         transport_bar_drag_rect->hide ();
216
217         transport_punchin_line = new ArdourCanvas::SimpleLine (*_master_group);
218         transport_punchin_line->property_x1() = 0.0;
219         transport_punchin_line->property_y1() = 0.0;
220         transport_punchin_line->property_x2() = 0.0;
221         transport_punchin_line->property_y2() = phys_height;
222         transport_punchin_line->hide ();
223
224         transport_punchout_line  = new ArdourCanvas::SimpleLine (*_master_group);
225         transport_punchout_line->property_x1() = 0.0;
226         transport_punchout_line->property_y1() = 0.0;
227         transport_punchout_line->property_x2() = 0.0;
228         transport_punchout_line->property_y2() = phys_height;
229         transport_punchout_line->hide();
230
231         // used to show zoom mode active zooming
232         zoom_rect = new ArdourCanvas::SimpleRect (*_master_group, 0.0, 0.0, 0.0, 0.0);
233         zoom_rect->property_outline_pixels() = 1;
234         zoom_rect->hide();
235
236         zoom_rect->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_zoom_rect_event), (ArdourCanvas::Item*) 0));
237
238         // used as rubberband rect
239         rubberband_rect = new ArdourCanvas::SimpleRect (*_trackview_group, 0.0, 0.0, 0.0, 0.0);
240
241         rubberband_rect->property_outline_pixels() = 1;
242         rubberband_rect->hide();
243
244         tempo_bar->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_tempo_bar_event), tempo_bar));
245         meter_bar->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_meter_bar_event), meter_bar));
246         marker_bar->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_marker_bar_event), marker_bar));
247         cd_marker_bar->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_cd_marker_bar_event), cd_marker_bar));
248         range_marker_bar->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_range_marker_bar_event), range_marker_bar));
249         transport_marker_bar->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_transport_marker_bar_event), transport_marker_bar));
250
251         playhead_cursor = new EditorCursor (*this, &Editor::canvas_playhead_cursor_event);
252
253         if (logo_item) {
254                 logo_item->lower_to_bottom ();
255         }
256         /* need to handle 4 specific types of events as catch-alls */
257
258         track_canvas->signal_scroll_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_scroll_event));
259         track_canvas->signal_motion_notify_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_motion_notify_event));
260         track_canvas->signal_button_press_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_button_press_event));
261         track_canvas->signal_button_release_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_button_release_event));
262         track_canvas->signal_drag_motion().connect (sigc::mem_fun (*this, &Editor::track_canvas_drag_motion));
263         track_canvas->signal_key_press_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_key_press));
264         track_canvas->signal_key_release_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_key_release));
265
266         track_canvas->set_name ("EditorMainCanvas");
267         track_canvas->add_events (Gdk::POINTER_MOTION_HINT_MASK | Gdk::SCROLL_MASK | Gdk::KEY_PRESS_MASK | Gdk::KEY_RELEASE_MASK);
268         track_canvas->signal_leave_notify_event().connect (sigc::mem_fun(*this, &Editor::left_track_canvas));
269         track_canvas->signal_enter_notify_event().connect (sigc::mem_fun(*this, &Editor::entered_track_canvas));
270         track_canvas->set_flags (CAN_FOCUS);
271
272         /* set up drag-n-drop */
273
274         vector<TargetEntry> target_table;
275
276         // Drag-N-Drop from the region list can generate this target
277         target_table.push_back (TargetEntry ("regions"));
278
279         target_table.push_back (TargetEntry ("text/plain"));
280         target_table.push_back (TargetEntry ("text/uri-list"));
281         target_table.push_back (TargetEntry ("application/x-rootwin-drop"));
282
283         track_canvas->drag_dest_set (target_table);
284         track_canvas->signal_drag_data_received().connect (sigc::mem_fun(*this, &Editor::track_canvas_drag_data_received));
285
286         track_canvas->signal_size_allocate().connect (sigc::mem_fun(*this, &Editor::track_canvas_allocate));
287
288         ColorsChanged.connect (sigc::mem_fun (*this, &Editor::color_handler));
289         color_handler();
290
291 }
292
293 void
294 Editor::track_canvas_allocate (Gtk::Allocation alloc)
295 {
296         canvas_allocation = alloc;
297         track_canvas_size_allocated ();
298 }
299
300 bool
301 Editor::track_canvas_size_allocated ()
302 {
303         bool height_changed = _canvas_height != canvas_allocation.get_height();
304
305         _canvas_width = canvas_allocation.get_width();
306         _canvas_height = canvas_allocation.get_height();
307
308         if (_session) {
309                 TrackViewList::iterator i;
310
311                 for (i = track_views.begin(); i != track_views.end(); ++i) {
312                         (*i)->clip_to_viewport ();
313                 }
314         }
315
316         if (height_changed) {
317                 if (playhead_cursor) {
318                         playhead_cursor->set_length (_canvas_height);
319                 }
320
321                 for (LocationMarkerMap::iterator i = location_markers.begin(); i != location_markers.end(); ++i) {
322                         i->second->canvas_height_set (_canvas_height);
323                 }
324
325                 vertical_adjustment.set_page_size (_canvas_height);
326                 last_trackview_group_vertical_offset = get_trackview_group_vertical_offset ();
327                 if ((vertical_adjustment.get_value() + _canvas_height) >= vertical_adjustment.get_upper()) {
328                         /*
329                            We're increasing the size of the canvas while the bottom is visible.
330                            We scroll down to keep in step with the controls layout.
331                         */
332                         vertical_adjustment.set_value (full_canvas_height - _canvas_height);
333                 }
334         }
335
336         update_fixed_rulers();
337         redisplay_tempo (false);
338         _summary->set_overlays_dirty ();
339
340         return false;
341 }
342
343 void
344 Editor::reset_controls_layout_width ()
345 {
346         gint w = edit_controls_vbox.get_width();
347
348         if (_group_tabs->is_mapped()) {
349                 w += _group_tabs->get_width();
350         }
351
352         /* the controls layout has no horizontal scrolling, its visible
353            width is always equal to the total width of its contents. 
354         */
355
356         controls_layout.property_width() = w;
357         controls_layout.property_width_request() = w;
358 }
359
360 void
361 Editor::reset_controls_layout_height (int32_t h)
362 {
363         /* set the height of the scrollable area (i.e. the sum of all contained widgets)
364          */
365
366         controls_layout.property_height() = h;
367         
368         /* size request is set elsewhere, see ::track_canvas_allocate() */
369 }
370         
371 bool
372 Editor::track_canvas_map_handler (GdkEventAny* /*ev*/)
373 {
374         if (current_canvas_cursor) {
375                 set_canvas_cursor (current_canvas_cursor);
376         }
377         return false;
378 }
379
380 /** This is called when something is dropped onto the track canvas */
381 void
382 Editor::track_canvas_drag_data_received (const RefPtr<Gdk::DragContext>& context,
383                                          int x, int y,
384                                          const SelectionData& data,
385                                          guint info, guint time)
386 {
387         if (data.get_target() == "regions") {
388                 drop_regions (context, x, y, data, info, time);
389         } else {
390                 drop_paths (context, x, y, data, info, time);
391         }
392 }
393
394 bool
395 Editor::idle_drop_paths (vector<string> paths, framepos_t frame, double ypos)
396 {
397         drop_paths_part_two (paths, frame, ypos);
398         return false;
399 }
400
401 void
402 Editor::drop_paths_part_two (const vector<string>& paths, framepos_t frame, double ypos)
403 {
404         RouteTimeAxisView* tv;
405
406         std::pair<TimeAxisView*, int> const tvp = trackview_by_y_position (ypos);
407         if (tvp.first == 0) {
408
409                 /* drop onto canvas background: create new tracks */
410
411                 frame = 0;
412
413                 if (Profile->get_sae() || Config->get_only_copy_imported_files()) {
414                         do_import (paths, Editing::ImportDistinctFiles, Editing::ImportAsTrack, SrcBest, frame);
415                 } else {
416                         do_embed (paths, Editing::ImportDistinctFiles, ImportAsTrack, frame);
417                 }
418
419         } else if ((tv = dynamic_cast<RouteTimeAxisView*> (tvp.first)) != 0) {
420
421                 /* check that its an audio track, not a bus */
422
423                 if (tv->track()) {
424                         /* select the track, then embed/import */
425                         selection->set (tv);
426
427                         if (Profile->get_sae() || Config->get_only_copy_imported_files()) {
428                                 do_import (paths, Editing::ImportSerializeFiles, Editing::ImportToTrack, SrcBest, frame);
429                         } else {
430                                 do_embed (paths, Editing::ImportSerializeFiles, ImportToTrack, frame);
431                         }
432                 }
433         }
434 }
435
436 void
437 Editor::drop_paths (const RefPtr<Gdk::DragContext>& context,
438                     int x, int y,
439                     const SelectionData& data,
440                     guint info, guint time)
441 {
442         vector<string> paths;
443         GdkEvent ev;
444         framepos_t frame;
445         double wx;
446         double wy;
447         double cy;
448
449         if (convert_drop_to_paths (paths, context, x, y, data, info, time) == 0) {
450
451                 /* D-n-D coordinates are window-relative, so convert to "world" coordinates
452                  */
453
454                 track_canvas->window_to_world (x, y, wx, wy);
455
456                 ev.type = GDK_BUTTON_RELEASE;
457                 ev.button.x = wx;
458                 ev.button.y = wy;
459
460                 frame = event_frame (&ev, 0, &cy);
461
462                 snap_to (frame);
463
464 #ifdef GTKOSX
465                 /* We are not allowed to call recursive main event loops from within
466                    the main event loop with GTK/Quartz. Since import/embed wants
467                    to push up a progress dialog, defer all this till we go idle.
468                 */
469                 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &Editor::idle_drop_paths), paths, frame, cy));
470 #else
471                 drop_paths_part_two (paths, frame, cy);
472 #endif
473         }
474
475         context->drag_finish (true, false, time);
476 }
477
478 void
479 Editor::drop_regions (const RefPtr<Gdk::DragContext>& /*context*/,
480                       int /*x*/, int /*y*/,
481                       const SelectionData& /*data*/,
482                       guint /*info*/, guint /*time*/)
483 {
484         _drags->end_grab (0);
485 }
486
487 void
488 Editor::maybe_autoscroll (bool allow_horiz, bool allow_vert)
489 {
490         framepos_t rightmost_frame = leftmost_frame + current_page_frames();
491         bool startit = false;
492
493         double const ty = _drags->current_pointer_y() - get_trackview_group_vertical_offset ();
494
495         autoscroll_y = 0;
496         autoscroll_x = 0;
497         if (ty < canvas_timebars_vsize && allow_vert) {
498                 autoscroll_y = -1;
499                 startit = true;
500         } else if (ty > _canvas_height && allow_vert) {
501                 autoscroll_y = 1;
502                 startit = true;
503         }
504
505         if (_drags->current_pointer_frame() > rightmost_frame && allow_horiz) {
506                 if (rightmost_frame < max_framepos) {
507                         autoscroll_x = 1;
508                         startit = true;
509                 }
510         } else if (_drags->current_pointer_frame() < leftmost_frame && allow_horiz) {
511                 if (leftmost_frame > 0) {
512                         autoscroll_x = -1;
513                         startit = true;
514                 }
515         }
516
517         if (autoscroll_active && ((autoscroll_x != last_autoscroll_x) || (autoscroll_y != last_autoscroll_y) || (autoscroll_x == 0 && autoscroll_y == 0))) {
518                 stop_canvas_autoscroll ();
519         }
520
521         if (startit && autoscroll_timeout_tag < 0) {
522                 start_canvas_autoscroll (autoscroll_x, autoscroll_y);
523         }
524
525         last_autoscroll_x = autoscroll_x;
526         last_autoscroll_y = autoscroll_y;
527 }
528
529 gint
530 Editor::_autoscroll_canvas (void *arg)
531 {
532         return ((Editor *) arg)->autoscroll_canvas ();
533 }
534
535 bool
536 Editor::autoscroll_canvas ()
537 {
538         framepos_t new_frame;
539         framepos_t limit = max_framepos - current_page_frames();
540         GdkEventMotion ev;
541         double new_pixel;
542         double target_pixel;
543
544         if (autoscroll_x_distance != 0) {
545
546                 if (autoscroll_x > 0) {
547                         autoscroll_x_distance = (_drags->current_pointer_frame() - (leftmost_frame + current_page_frames())) / 3;
548                 } else if (autoscroll_x < 0) {
549                         autoscroll_x_distance = (leftmost_frame - _drags->current_pointer_frame()) / 3;
550
551                 }
552         }
553
554         if (autoscroll_y_distance != 0) {
555                 if (autoscroll_y > 0) {
556                         autoscroll_y_distance = (_drags->current_pointer_y() - (get_trackview_group_vertical_offset() + _canvas_height)) / 3;
557                 } else if (autoscroll_y < 0) {
558
559                         autoscroll_y_distance = (vertical_adjustment.get_value () - _drags->current_pointer_y()) / 3;
560                 }
561         }
562
563         if (autoscroll_x < 0) {
564                 if (leftmost_frame < autoscroll_x_distance) {
565                         new_frame = 0;
566                 } else {
567                         new_frame = leftmost_frame - autoscroll_x_distance;
568                 }
569         } else if (autoscroll_x > 0) {
570                 if (leftmost_frame > limit - autoscroll_x_distance) {
571                         new_frame = limit;
572                 } else {
573                         new_frame = leftmost_frame + autoscroll_x_distance;
574                 }
575         } else {
576                 new_frame = leftmost_frame;
577         }
578
579         double vertical_pos = vertical_adjustment.get_value();
580
581         if (autoscroll_y < 0) {
582
583                 if (vertical_pos < autoscroll_y_distance) {
584                         new_pixel = 0;
585                 } else {
586                         new_pixel = vertical_pos - autoscroll_y_distance;
587                 }
588
589                 target_pixel = _drags->current_pointer_y() - autoscroll_y_distance;
590                 target_pixel = max (target_pixel, 0.0);
591
592         } else if (autoscroll_y > 0) {
593
594                 double top_of_bottom_of_canvas = full_canvas_height - _canvas_height;
595
596                 if (vertical_pos > full_canvas_height - autoscroll_y_distance) {
597                         new_pixel = full_canvas_height;
598                 } else {
599                         new_pixel = vertical_pos + autoscroll_y_distance;
600                 }
601
602                 new_pixel = min (top_of_bottom_of_canvas, new_pixel);
603
604                 target_pixel = _drags->current_pointer_y() + autoscroll_y_distance;
605
606                 /* don't move to the full canvas height because the item will be invisible
607                    (its top edge will line up with the bottom of the visible canvas.
608                 */
609
610                 target_pixel = min (target_pixel, full_canvas_height - 10);
611
612         } else {
613                 target_pixel = _drags->current_pointer_y();
614                 new_pixel = vertical_pos;
615         }
616
617         if ((new_frame == 0 || new_frame == limit) && (new_pixel == 0 || new_pixel == DBL_MAX)) {
618                 /* we are done */
619                 return false;
620         }
621
622         if (new_frame != leftmost_frame) {
623                 reset_x_origin (new_frame);
624         }
625
626         vertical_adjustment.set_value (new_pixel);
627
628         /* fake an event. */
629
630         Glib::RefPtr<Gdk::Window> canvas_window = const_cast<Editor*>(this)->track_canvas->get_window();
631         gint x, y;
632         Gdk::ModifierType mask;
633         canvas_window->get_pointer (x, y, mask);
634         ev.type = GDK_MOTION_NOTIFY;
635         ev.state = Gdk::BUTTON1_MASK;
636         ev.x = x;
637         ev.y = y;
638
639         motion_handler (0, (GdkEvent*) &ev, true);
640
641         autoscroll_cnt++;
642
643         if (autoscroll_cnt == 1) {
644
645                 /* connect the timeout so that we get called repeatedly */
646
647                 autoscroll_timeout_tag = g_idle_add ( _autoscroll_canvas, this);
648                 return false;
649
650         }
651
652         return true;
653 }
654
655 void
656 Editor::start_canvas_autoscroll (int dx, int dy)
657 {
658         if (!_session || autoscroll_active) {
659                 return;
660         }
661
662         stop_canvas_autoscroll ();
663
664         autoscroll_active = true;
665         autoscroll_x = dx;
666         autoscroll_y = dy;
667         autoscroll_x_distance = (framepos_t) floor (current_page_frames()/50.0);
668         autoscroll_y_distance = fabs (dy * 5); /* pixels */
669         autoscroll_cnt = 0;
670
671         /* do it right now, which will start the repeated callbacks */
672
673         autoscroll_canvas ();
674 }
675
676 void
677 Editor::stop_canvas_autoscroll ()
678 {
679         if (autoscroll_timeout_tag >= 0) {
680                 g_source_remove (autoscroll_timeout_tag);
681                 autoscroll_timeout_tag = -1;
682         }
683
684         autoscroll_active = false;
685 }
686
687 bool
688 Editor::left_track_canvas (GdkEventCrossing */*ev*/)
689 {
690         DropDownKeys ();
691         set_entered_track (0);
692         set_entered_regionview (0);
693         reset_canvas_action_sensitivity (false);
694         return false;
695 }
696
697 bool
698 Editor::entered_track_canvas (GdkEventCrossing */*ev*/)
699 {
700         reset_canvas_action_sensitivity (true);
701         return FALSE;
702 }
703
704 void
705 Editor::tie_vertical_scrolling ()
706 {
707         scroll_canvas_vertically ();
708
709         /* this will do an immediate redraw */
710
711         controls_layout.get_vadjustment()->set_value (vertical_adjustment.get_value());
712
713         if (pending_visual_change.idle_handler_id < 0) {
714                 _summary->set_overlays_dirty ();
715         }
716 }
717
718 void
719 Editor::set_horizontal_position (double p)
720 {
721         /* horizontal scrolling only */
722         double x1, y1, x2, y2, x_delta;
723         _master_group->get_bounds (x1, y1, x2, y2);
724
725         x_delta = - (x1 + p);
726
727         _master_group->move (x_delta, 0);
728         timebar_group->move (x_delta, 0);
729         time_line_group->move (x_delta, 0);
730         cursor_group->move (x_delta, 0);
731
732         leftmost_frame = (framepos_t) floor (p * frames_per_unit);
733
734         update_fixed_rulers ();
735         redisplay_tempo (true);
736
737         if (pending_visual_change.idle_handler_id < 0) {
738                 _summary->set_overlays_dirty ();
739         }
740
741         HorizontalPositionChanged (); /* EMIT SIGNAL */
742
743 #ifndef GTKOSX
744         if (!autoscroll_active && !_stationary_playhead) {
745                 /* force rulers and canvas to move in lock step */
746                 while (gtk_events_pending ()) {
747                         gtk_main_iteration ();
748                 }
749         }
750 #endif
751
752 }
753
754 void
755 Editor::scroll_canvas_vertically ()
756 {
757         /* vertical scrolling only */
758
759         double y_delta;
760
761         y_delta = last_trackview_group_vertical_offset - get_trackview_group_vertical_offset ();
762         _trackview_group->move (0, y_delta);
763         _background_group->move (0, y_delta);
764
765         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
766                 (*i)->clip_to_viewport ();
767         }
768         last_trackview_group_vertical_offset = get_trackview_group_vertical_offset ();
769         /* required to keep the controls_layout in lock step with the canvas group */
770         update_canvas_now ();
771 }
772
773 void
774 Editor::color_handler()
775 {
776         playhead_cursor->canvas_item.property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_PlayHead.get();
777         verbose_canvas_cursor->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_VerboseCanvasCursor.get();
778
779         meter_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MeterBar.get();
780         meter_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
781
782         tempo_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TempoBar.get();
783         tempo_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
784
785         marker_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBar.get();
786         marker_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
787
788         cd_marker_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_CDMarkerBar.get();
789         cd_marker_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
790
791         range_marker_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeMarkerBar.get();
792         range_marker_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
793
794         transport_marker_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportMarkerBar.get();
795         transport_marker_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
796
797         cd_marker_bar_drag_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect.get();
798         cd_marker_bar_drag_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect.get();
799
800         range_bar_drag_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect.get();
801         range_bar_drag_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect.get();
802
803         transport_bar_drag_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportDragRect.get();
804         transport_bar_drag_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportDragRect.get();
805
806         transport_loop_range_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportLoopRect.get();
807         transport_loop_range_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportLoopRect.get();
808
809         transport_punch_range_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportPunchRect.get();
810         transport_punch_range_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportPunchRect.get();
811
812         transport_punchin_line->property_color_rgba() = ARDOUR_UI::config()->canvasvar_PunchLine.get();
813         transport_punchout_line->property_color_rgba() = ARDOUR_UI::config()->canvasvar_PunchLine.get();
814
815         zoom_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_ZoomRect.get();
816         zoom_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_ZoomRect.get();
817
818         rubberband_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RubberBandRect.get();
819         rubberband_rect->property_fill_color_rgba() = (guint32) ARDOUR_UI::config()->canvasvar_RubberBandRect.get();
820
821         location_marker_color = ARDOUR_UI::config()->canvasvar_LocationMarker.get();
822         location_range_color = ARDOUR_UI::config()->canvasvar_LocationRange.get();
823         location_cd_marker_color = ARDOUR_UI::config()->canvasvar_LocationCDMarker.get();
824         location_loop_color = ARDOUR_UI::config()->canvasvar_LocationLoop.get();
825         location_punch_color = ARDOUR_UI::config()->canvasvar_LocationPunch.get();
826
827         refresh_location_display ();
828 /*
829         redisplay_tempo (true);
830
831         if (_session)
832               _session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks); // redraw metric markers
833 */
834 }
835
836 void
837 Editor::flush_canvas ()
838 {
839         if (is_mapped()) {
840                 update_canvas_now ();
841                 // gdk_window_process_updates (GTK_LAYOUT(track_canvas->gobj())->bin_window, true);
842         }
843 }
844
845 void
846 Editor::update_canvas_now ()
847 {
848         /* GnomeCanvas has a bug whereby if its idle handler is not scheduled between
849            two calls to update_now, an assert will trip.  This wrapper works around
850            that problem by only calling update_now if the assert will not trip.
851
852            I think the GC bug is due to the fact that its code will reset need_update
853            and need_redraw to FALSE without checking to see if an idle handler is scheduled.
854            If one is scheduled, GC should probably remove it.
855         */
856
857         GnomeCanvas* c = track_canvas->gobj ();
858         if (c->need_update || c->need_redraw) {
859                 track_canvas->update_now ();
860         }
861 }
862
863 double
864 Editor::horizontal_position () const
865 {
866         return frame_to_unit (leftmost_frame);
867 }
868 void
869 Editor::set_canvas_cursor (Gdk::Cursor* cursor, bool save)
870 {
871         if (save) {
872                 current_canvas_cursor = cursor;
873         }
874
875         if (is_drawable()) {
876                 track_canvas->get_window()->set_cursor (*cursor);
877         }
878 }
879
880 bool
881 Editor::track_canvas_key_press (GdkEventKey* event)
882 {
883         /* XXX: event does not report the modifier key pressed down, AFAICS, so use the Keyboard object instead */
884         if (mouse_mode == Editing::MouseZoom && Keyboard::the_keyboard().key_is_down (GDK_Control_L)) {
885                 set_canvas_cursor (_cursors->zoom_out, true);
886         }
887
888         return false;
889 }
890
891 bool
892 Editor::track_canvas_key_release (GdkEventKey* event)
893 {
894         if (mouse_mode == Editing::MouseZoom && !Keyboard::the_keyboard().key_is_down (GDK_Control_L)) {
895                 set_canvas_cursor (_cursors->zoom_in, true);
896         }
897
898         return false;
899 }