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