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