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