75% (?) of the way towards making mixer strips control bus sends. lots more to do
[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/audioregion.h"
26 #include "ardour/profile.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 "time_axis_view.h"
43 #include "audio_time_axis.h"
44
45 #include "i18n.h"
46
47 using namespace std;
48 using namespace sigc;
49 using namespace ARDOUR;
50 using namespace PBD;
51 using namespace Gtk;
52 using namespace Glib;
53 using namespace Gtkmm2ext;
54 using namespace Editing;
55
56 /* XXX this is a hack. it ought to be the maximum value of an nframes64_t */
57
58 const double max_canvas_coordinate = (double) JACK_MAX_FRAMES;
59
60 extern "C"
61 {
62
63 GType gnome_canvas_simpleline_get_type(void);
64 GType gnome_canvas_simplerect_get_type(void);
65 GType gnome_canvas_waveview_get_type(void);
66 GType gnome_canvas_imageframe_get_type(void);
67
68 }
69
70 static void ardour_canvas_type_init() 
71 {
72         // Map gtypes to gtkmm wrapper-creation functions:
73         
74         Glib::wrap_register(gnome_canvas_simpleline_get_type(), &Gnome::Canvas::SimpleLine_Class::wrap_new);
75         Glib::wrap_register(gnome_canvas_simplerect_get_type(), &Gnome::Canvas::SimpleRect_Class::wrap_new);
76         Glib::wrap_register(gnome_canvas_waveview_get_type(), &Gnome::Canvas::WaveView_Class::wrap_new);
77         // Glib::wrap_register(gnome_canvas_imageframe_get_type(), &Gnome::Canvas::ImageFrame_Class::wrap_new);
78         
79         // Register the gtkmm gtypes:
80
81         (void) Gnome::Canvas::WaveView::get_type();
82         (void) Gnome::Canvas::SimpleLine::get_type();
83         (void) Gnome::Canvas::SimpleRect::get_type();
84         (void) Gnome::Canvas::ImageFrame::get_type();
85
86
87 void
88 Editor::initialize_canvas ()
89 {
90         if (getenv ("ARDOUR_NON_AA_CANVAS")) {
91                 track_canvas = new ArdourCanvas::Canvas ();
92         } else {
93                 track_canvas = new ArdourCanvas::CanvasAA ();
94         }
95         
96         ArdourCanvas::init ();
97         ardour_canvas_type_init ();
98
99         /* don't try to center the canvas */
100
101         track_canvas->set_center_scroll_region (false);
102         track_canvas->set_dither (Gdk::RGB_DITHER_NONE);
103
104         Glib::RefPtr<Gdk::Screen> screen = get_screen();
105
106         if (!screen) {
107                 screen = Gdk::Screen::get_default();
108         }
109         physical_screen_width = screen->get_width ();
110         physical_screen_height = screen->get_height ();
111
112         /* stuff for the verbose canvas cursor */
113
114         Pango::FontDescription* font = get_font_for_style (N_("VerboseCanvasCursor"));
115
116         verbose_canvas_cursor = new ArdourCanvas::Text (*track_canvas->root());
117         verbose_canvas_cursor->property_font_desc() = *font;
118         verbose_canvas_cursor->property_anchor() = ANCHOR_NW;
119
120         delete font;
121         
122         verbose_cursor_visible = false;
123
124         /* on the bottom, an image */
125         
126         if (Profile->get_sae()) {
127                 Image img (::get_icon (X_("saelogo")));
128                 logo_item = new ArdourCanvas::Pixbuf (*track_canvas->root(), 0.0, 0.0, img.get_pixbuf());
129                 // logo_item->property_height_in_pixels() = true;
130                 // logo_item->property_width_in_pixels() = true;
131                 // logo_item->property_height_set() = true;
132                 // logo_item->property_width_set() = true;
133                 logo_item->show ();
134         }
135
136         /* a group to hold time (measure) lines */      
137         time_line_group = new ArdourCanvas::Group (*track_canvas->root());
138
139 #ifdef GTKOSX
140         /*XXX please don't laugh. this actually improves canvas performance on osx */
141         bogus_background_rect =  new ArdourCanvas::SimpleRect (*time_line_group, 0.0, 0.0, max_canvas_coordinate/3, physical_screen_height);
142         bogus_background_rect->property_outline_pixels() = 0;
143 #endif
144         transport_loop_range_rect = new ArdourCanvas::SimpleRect (*time_line_group, 0.0, 0.0, 0.0, physical_screen_height);
145         transport_loop_range_rect->property_outline_pixels() = 1;
146         transport_loop_range_rect->hide();
147
148         transport_punch_range_rect = new ArdourCanvas::SimpleRect (*time_line_group, 0.0, 0.0, 0.0, physical_screen_height);
149         transport_punch_range_rect->property_outline_pixels() = 0;
150         transport_punch_range_rect->hide();
151
152         _background_group = new ArdourCanvas::Group (*track_canvas->root());
153         _master_group = new ArdourCanvas::Group (*track_canvas->root());
154
155         range_marker_drag_rect = new ArdourCanvas::SimpleRect (*time_line_group, 0.0, 0.0, 0.0, physical_screen_height);
156         range_marker_drag_rect->hide ();
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         marker_drag_line_points.push_back(Gnome::Art::Point(0.0, 0.0));
232         marker_drag_line_points.push_back(Gnome::Art::Point(0.0, physical_screen_height));
233
234         marker_drag_line = new ArdourCanvas::Line (*timebar_group);
235         marker_drag_line->property_width_pixels() = 1;
236         marker_drag_line->property_points() = marker_drag_line_points;
237         marker_drag_line->hide();
238
239         cd_marker_bar_drag_rect = new ArdourCanvas::SimpleRect (*cd_marker_group, 0.0, 0.0, 100, timebar_height);
240         cd_marker_bar_drag_rect->property_outline_pixels() = 0;
241         cd_marker_bar_drag_rect->hide ();
242
243         range_bar_drag_rect = new ArdourCanvas::SimpleRect (*range_marker_group, 0.0, 0.0, 100, timebar_height);
244         range_bar_drag_rect->property_outline_pixels() = 0;
245         range_bar_drag_rect->hide ();
246
247         transport_bar_drag_rect = new ArdourCanvas::SimpleRect (*transport_marker_group, 0.0, 0.0, 100, timebar_height);
248         transport_bar_drag_rect->property_outline_pixels() = 0;
249         transport_bar_drag_rect->hide ();
250
251         transport_punchin_line = new ArdourCanvas::SimpleLine (*_master_group);
252         transport_punchin_line->property_x1() = 0.0;
253         transport_punchin_line->property_y1() = 0.0;
254         transport_punchin_line->property_x2() = 0.0;
255         transport_punchin_line->property_y2() = physical_screen_height;
256         transport_punchin_line->hide ();
257         
258         transport_punchout_line  = new ArdourCanvas::SimpleLine (*_master_group);
259         transport_punchout_line->property_x1() = 0.0;
260         transport_punchout_line->property_y1() = 0.0;
261         transport_punchout_line->property_x2() = 0.0;
262         transport_punchout_line->property_y2() = physical_screen_height;
263         transport_punchout_line->hide();
264         
265         // used to show zoom mode active zooming
266         zoom_rect = new ArdourCanvas::SimpleRect (*_master_group, 0.0, 0.0, 0.0, 0.0);
267         zoom_rect->property_outline_pixels() = 1;
268         zoom_rect->hide();
269         
270         zoom_rect->signal_event().connect (bind (mem_fun (*this, &Editor::canvas_zoom_rect_event), (ArdourCanvas::Item*) 0));
271         
272         // used as rubberband rect
273         rubberband_rect = new ArdourCanvas::SimpleRect (*_trackview_group, 0.0, 0.0, 0.0, 0.0);
274
275         rubberband_rect->property_outline_pixels() = 1;
276         rubberband_rect->hide();
277         
278         tempo_bar->signal_event().connect (bind (mem_fun (*this, &Editor::canvas_tempo_bar_event), tempo_bar));
279         meter_bar->signal_event().connect (bind (mem_fun (*this, &Editor::canvas_meter_bar_event), meter_bar));
280         marker_bar->signal_event().connect (bind (mem_fun (*this, &Editor::canvas_marker_bar_event), marker_bar));
281         cd_marker_bar->signal_event().connect (bind (mem_fun (*this, &Editor::canvas_cd_marker_bar_event), cd_marker_bar));
282         range_marker_bar->signal_event().connect (bind (mem_fun (*this, &Editor::canvas_range_marker_bar_event), range_marker_bar));
283         transport_marker_bar->signal_event().connect (bind (mem_fun (*this, &Editor::canvas_transport_marker_bar_event), transport_marker_bar));
284
285         playhead_cursor = new Cursor (*this, &Editor::canvas_playhead_cursor_event);
286
287         if (logo_item) {
288                 logo_item->lower_to_bottom ();
289         }
290         /* need to handle 4 specific types of events as catch-alls */
291
292         track_canvas->signal_scroll_event().connect (mem_fun (*this, &Editor::track_canvas_scroll_event));
293         track_canvas->signal_motion_notify_event().connect (mem_fun (*this, &Editor::track_canvas_motion_notify_event));
294         track_canvas->signal_button_press_event().connect (mem_fun (*this, &Editor::track_canvas_button_press_event));
295         track_canvas->signal_button_release_event().connect (mem_fun (*this, &Editor::track_canvas_button_release_event));
296
297         track_canvas->set_name ("EditorMainCanvas");
298         track_canvas->add_events (Gdk::POINTER_MOTION_HINT_MASK|Gdk::SCROLL_MASK);
299         track_canvas->signal_leave_notify_event().connect (mem_fun(*this, &Editor::left_track_canvas));
300         track_canvas->signal_enter_notify_event().connect (mem_fun(*this, &Editor::entered_track_canvas));
301         track_canvas->set_flags (CAN_FOCUS);
302
303         /* set up drag-n-drop */
304
305         vector<TargetEntry> target_table;
306         
307         // Drag-N-Drop from the region list can generate this target
308         target_table.push_back (TargetEntry ("regions"));
309
310         target_table.push_back (TargetEntry ("text/plain"));
311         target_table.push_back (TargetEntry ("text/uri-list"));
312         target_table.push_back (TargetEntry ("application/x-rootwin-drop"));
313
314         track_canvas->drag_dest_set (target_table);
315         track_canvas->signal_drag_data_received().connect (mem_fun(*this, &Editor::track_canvas_drag_data_received));
316
317         track_canvas->signal_size_allocate().connect (mem_fun(*this, &Editor::track_canvas_allocate));
318
319         ColorsChanged.connect (mem_fun (*this, &Editor::color_handler));
320         color_handler();
321
322 }
323
324 void
325 Editor::track_canvas_allocate (Gtk::Allocation alloc)
326 {
327         canvas_allocation = alloc;
328         track_canvas_size_allocated ();
329 }
330
331 bool
332 Editor::track_canvas_size_allocated ()
333 {
334         bool height_changed = canvas_height != canvas_allocation.get_height();
335
336         canvas_width = canvas_allocation.get_width();
337         canvas_height = canvas_allocation.get_height();
338
339         if (session) {
340                 TrackViewList::iterator i;
341                 double height = 0;
342
343                 for (i = track_views.begin(); i != track_views.end(); ++i) {
344                         height += (*i)->effective_height ();
345                         (*i)->clip_to_viewport ();
346                 }
347                 
348                 full_canvas_height = height + canvas_timebars_vsize;
349         }
350
351         if (height_changed) {
352                 if (playhead_cursor) {
353                         playhead_cursor->set_length (canvas_height);
354                 }
355         
356                 for (MarkerSelection::iterator x = selection->markers.begin(); x != selection->markers.end(); ++x) {
357                         (*x)->set_line_vpos (0, canvas_height);
358                 }
359
360                 vertical_adjustment.set_page_size (canvas_height);
361                 last_trackview_group_vertical_offset = get_trackview_group_vertical_offset ();
362                 if ((vertical_adjustment.get_value() + canvas_height) >= vertical_adjustment.get_upper()) {
363                         /* 
364                            We're increasing the size of the canvas while the bottom is visible.
365                            We scroll down to keep in step with the controls layout.
366                         */
367                         vertical_adjustment.set_value (full_canvas_height - canvas_height);
368                 }
369         }
370
371         handle_new_duration ();
372         reset_hscrollbar_stepping ();
373         update_fixed_rulers();
374         redisplay_tempo (false);
375
376         Resized (); /* EMIT_SIGNAL */
377
378         return false;
379 }
380
381 void
382 Editor::controls_layout_size_request (Requisition* req)
383 {
384         TreeModel::Children rows = route_display_model->children();
385         TreeModel::Children::iterator i;
386         double pos;
387         bool changed = false;
388
389         for (pos = 0, i = rows.begin(); i != rows.end(); ++i) {
390                 TimeAxisView *tv = (*i)[route_display_columns.tv];
391                 if (tv != 0) {
392                         pos += tv->effective_height ();
393                         tv->clip_to_viewport ();
394                 }
395         }
396
397         gint height = min ((gint) pos, (gint) (physical_screen_height - 600));
398         gint width = max (edit_controls_vbox.get_width(),  controls_layout.get_width());
399
400         /* don't get too big. the fudge factors here are just guesses */
401
402         width =  min (width, (gint) (physical_screen_width - 300));
403
404         if ((req->width != width) || (req->height != height)) {
405                 changed = true;
406                 controls_layout_size_request_connection.disconnect ();
407         }
408
409         if (req->width != width) {
410                 gint vbox_width = edit_controls_vbox.get_width();
411                 req->width = width;
412
413                 /* this one is important: it determines how big the layout thinks it really is, as 
414                    opposed to what it displays on the screen
415                 */
416                 controls_layout.property_width () = vbox_width;
417                 controls_layout.property_width_request () = vbox_width;
418
419                 time_button_event_box.property_width_request () = vbox_width;
420                 zoom_box.property_width_request () = vbox_width;
421         }
422
423         if (req->height != height) {
424                 req->height = height;
425                 controls_layout.property_height () = (guint) floor (pos);
426                 controls_layout.property_height_request () = height;
427         }
428
429         if (changed) {
430                 controls_layout_size_request_connection = controls_layout.signal_size_request().connect (mem_fun (*this, &Editor::controls_layout_size_request));
431         }
432         //cerr << "sizes = " << req->width << " " << edit_controls_vbox.get_width() << " " << controls_layout.get_width() << " " << zoom_box.get_width() << " " << time_button_frame.get_width() << endl;//DEBUG        
433 }
434
435 bool
436 Editor::track_canvas_map_handler (GdkEventAny* ev)
437 {
438         track_canvas->get_window()->set_cursor (*current_canvas_cursor);
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         std::list<boost::shared_ptr<Region> > regions;
546         Gtk::TreeView* source;
547         region_list_display.get_object_drag_data (regions, &source);
548
549         for (list<boost::shared_ptr<Region> >::iterator r = regions.begin(); r != regions.end(); ++r) {
550
551                 boost::shared_ptr<AudioRegion> ar;
552
553                 if ((ar = boost::dynamic_pointer_cast<AudioRegion>(*r)) != 0) {
554                         insert_region_list_drag (ar, x, y);
555                 }
556         }
557
558         context->drag_finish (true, false, time);
559 }
560
561 void
562 Editor::maybe_autoscroll (GdkEventMotion* event)
563 {
564
565         nframes64_t rightmost_frame = leftmost_frame + current_page_frames();
566         nframes64_t frame = drag_info.current_pointer_frame;
567         bool startit = false;
568
569         autoscroll_y = 0;
570         autoscroll_x = 0;
571         if (event->y < canvas_timebars_vsize) {
572                 autoscroll_y = -1;
573                 startit = true;
574         } else if (event->y > canvas_height) {
575                 autoscroll_y = 1;
576                 startit = true;
577         }
578
579         if (frame > rightmost_frame) {
580
581                 if (rightmost_frame < max_frames) {
582                         autoscroll_x = 1;
583                         startit = true;
584                 }
585
586         } else if (frame < leftmost_frame) {
587                 if (leftmost_frame > 0) {
588                         autoscroll_x = -1;
589                         startit = true;
590                 }
591
592         }
593
594         if (!allow_vertical_scroll) {
595                 autoscroll_y = 0;
596         }
597
598         if ((autoscroll_x != last_autoscroll_x) || (autoscroll_y != last_autoscroll_y) || (autoscroll_x == 0 && autoscroll_y == 0)) {
599                 stop_canvas_autoscroll ();
600         }
601         
602         if (startit && autoscroll_timeout_tag < 0) {
603                 start_canvas_autoscroll (autoscroll_x, autoscroll_y);
604         }
605
606         last_autoscroll_x = autoscroll_x;
607         last_autoscroll_y = autoscroll_y;
608 }
609
610 void
611 Editor::maybe_autoscroll_horizontally (GdkEventMotion* event)
612 {
613         nframes64_t rightmost_frame = leftmost_frame + current_page_frames();
614         nframes64_t frame = drag_info.current_pointer_frame;
615         bool startit = false;
616
617         autoscroll_y = 0;
618         autoscroll_x = 0;
619
620         if (frame > rightmost_frame) {
621
622                 if (rightmost_frame < max_frames) {
623                         autoscroll_x = 1;
624                         startit = true;
625                 }
626
627         } else if (frame < leftmost_frame) {
628                 if (leftmost_frame > 0) {
629                         autoscroll_x = -1;
630                         startit = true;
631                 }
632
633         }
634
635         if ((autoscroll_x != last_autoscroll_x) || (autoscroll_y != last_autoscroll_y) || (autoscroll_x == 0 && autoscroll_y == 0)) {
636                 stop_canvas_autoscroll ();
637         }
638         
639         if (startit && autoscroll_timeout_tag < 0) {
640                 start_canvas_autoscroll (autoscroll_x, autoscroll_y);
641         }
642
643         last_autoscroll_x = autoscroll_x;
644         last_autoscroll_y = autoscroll_y;
645 }
646
647 gint
648 Editor::_autoscroll_canvas (void *arg)
649 {
650         return ((Editor *) arg)->autoscroll_canvas ();
651 }
652
653 bool
654 Editor::autoscroll_canvas ()
655 {
656         nframes64_t new_frame;
657         nframes64_t limit = max_frames - current_page_frames();
658         GdkEventMotion ev;
659         double new_pixel;
660         double target_pixel;
661
662         if (autoscroll_x_distance != 0) {
663                 if (autoscroll_x > 0) {
664                         autoscroll_x_distance = (unit_to_frame (drag_info.current_pointer_x) - (leftmost_frame + current_page_frames())) / 3;
665                 } else if (autoscroll_x < 0) {
666                         autoscroll_x_distance = (leftmost_frame - unit_to_frame (drag_info.current_pointer_x)) / 3;
667
668                 }
669         }
670
671         if (autoscroll_y_distance != 0) {
672                 if (autoscroll_y > 0) {
673                         autoscroll_y_distance = (drag_info.current_pointer_y - (get_trackview_group_vertical_offset() + canvas_height)) / 3;
674                 } else if (autoscroll_y < 0) {
675
676                         autoscroll_y_distance = (vertical_adjustment.get_value () - drag_info.current_pointer_y) / 3;
677                 }
678         }
679
680         if (autoscroll_x < 0) {
681                 if (leftmost_frame < autoscroll_x_distance) {
682                         new_frame = 0;
683                 } else {
684                         new_frame = leftmost_frame - autoscroll_x_distance;
685                 }
686         } else if (autoscroll_x > 0) {
687                 if (leftmost_frame > limit - autoscroll_x_distance) {
688                         new_frame = limit;
689                 } else {
690                         new_frame = leftmost_frame + autoscroll_x_distance;
691                 }
692         } else {
693                 new_frame = leftmost_frame;
694         }
695
696         double vertical_pos = vertical_adjustment.get_value();
697
698         if (autoscroll_y < 0) {
699
700                 if (vertical_pos < autoscroll_y_distance) {
701                         new_pixel = 0;
702                 } else {
703                         new_pixel = vertical_pos - autoscroll_y_distance;
704                 }
705
706                 target_pixel = drag_info.current_pointer_y - autoscroll_y_distance;
707                 target_pixel = max (target_pixel, 0.0);
708
709         } else if (autoscroll_y > 0) {
710
711                 double top_of_bottom_of_canvas = full_canvas_height - canvas_height;
712
713                 if (vertical_pos > full_canvas_height - autoscroll_y_distance) {
714                         new_pixel = full_canvas_height;
715                 } else {
716                         new_pixel = vertical_pos + autoscroll_y_distance;
717                 }
718
719                 new_pixel = min (top_of_bottom_of_canvas, new_pixel);
720
721                 target_pixel = drag_info.current_pointer_y + autoscroll_y_distance;
722                 
723                 /* don't move to the full canvas height because the item will be invisible
724                    (its top edge will line up with the bottom of the visible canvas.
725                 */
726
727                 target_pixel = min (target_pixel, full_canvas_height - 10);
728                 
729         } else {
730                 target_pixel = drag_info.current_pointer_y;
731                 new_pixel = vertical_pos;
732         }
733
734         if ((new_frame == 0 || new_frame == limit) && (new_pixel == 0 || new_pixel == DBL_MAX)) {
735                 /* we are done */
736                 return false;
737         }
738
739         if (new_frame != leftmost_frame) {
740                 reset_x_origin (new_frame);
741         }
742
743         vertical_adjustment.set_value (new_pixel);
744
745         /* fake an event. */
746
747         Glib::RefPtr<Gdk::Window> canvas_window = const_cast<Editor*>(this)->track_canvas->get_window();
748         gint x, y;
749         Gdk::ModifierType mask;
750         canvas_window->get_pointer (x, y, mask);
751         ev.type = GDK_MOTION_NOTIFY;
752         ev.state &= Gdk::BUTTON1_MASK;
753         ev.x = x;
754         ev.y = y;
755
756         motion_handler (drag_info.item, (GdkEvent*) &ev, drag_info.item_type, true);
757
758         autoscroll_cnt++;
759
760         if (autoscroll_cnt == 1) {
761
762                 /* connect the timeout so that we get called repeatedly */
763
764                 autoscroll_timeout_tag = g_idle_add ( _autoscroll_canvas, this);
765                 return false;
766
767         } 
768
769         return true;
770 }
771
772 void
773 Editor::start_canvas_autoscroll (int dx, int dy)
774 {
775         if (!session || autoscroll_active) {
776                 return;
777         }
778
779         stop_canvas_autoscroll ();
780
781         autoscroll_active = true;
782         autoscroll_x = dx;
783         autoscroll_y = dy;
784         autoscroll_x_distance = (nframes64_t) floor (current_page_frames()/50.0);
785         autoscroll_y_distance = fabs (dy * 5); /* pixels */
786         autoscroll_cnt = 0;
787         
788         /* do it right now, which will start the repeated callbacks */
789
790         autoscroll_canvas ();
791 }
792
793 void
794 Editor::stop_canvas_autoscroll ()
795 {
796
797         if (autoscroll_timeout_tag >= 0) {
798                 g_source_remove (autoscroll_timeout_tag);
799                 autoscroll_timeout_tag = -1;
800         }
801
802         autoscroll_active = false;
803 }
804
805 bool
806 Editor::left_track_canvas (GdkEventCrossing *ev)
807 {
808         set_entered_track (0);
809         set_entered_regionview (0);
810         reset_canvas_action_sensitivity (false);
811         return false;
812 }
813
814 bool
815 Editor::entered_track_canvas (GdkEventCrossing *ev)
816 {
817         reset_canvas_action_sensitivity (true);
818         return FALSE;
819 }
820
821 void
822 Editor::tie_vertical_scrolling ()
823 {
824         scroll_canvas_vertically ();
825
826         /* this will do an immediate redraw */
827
828         controls_layout.get_vadjustment()->set_value (vertical_adjustment.get_value());
829 }
830
831 void
832 Editor::scroll_canvas_horizontally ()
833 {
834         nframes64_t time_origin = (nframes64_t) floor (horizontal_adjustment.get_value() * frames_per_unit);
835
836         if (time_origin != leftmost_frame) {
837                 canvas_scroll_to (time_origin);
838         }
839
840         /* horizontal scrolling only */
841         double x1, x2, y1, y2, x_delta;
842
843         _master_group->get_bounds(x1, y1, x2, y2);
844         x_delta = x1 + horizontal_adjustment.get_value();
845
846         _master_group->move (-x_delta, 0);
847         timebar_group->move (-x_delta, 0);
848         time_line_group->move (-x_delta, 0);
849         cursor_group->move (-x_delta, 0);
850
851         update_fixed_rulers ();
852         redisplay_tempo (true);
853
854 #ifndef GTKOSX
855         if (!autoscroll_active) {
856                 /* force rulers and canvas to move in lock step */
857                 while (gtk_events_pending ()) {
858                         gtk_main_iteration ();
859                 }
860         }
861 #endif
862
863 }
864
865 void
866 Editor::scroll_canvas_vertically ()
867 {
868         /* vertical scrolling only */
869
870         double y_delta;
871
872         y_delta = last_trackview_group_vertical_offset - get_trackview_group_vertical_offset ();
873         _trackview_group->move (0, y_delta);
874         _background_group->move (0, y_delta);
875
876         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
877                 (*i)->clip_to_viewport ();
878         }
879         last_trackview_group_vertical_offset = get_trackview_group_vertical_offset ();
880         /* required to keep the controls_layout in lock step with the canvas group */
881         track_canvas->update_now ();
882 }
883
884 void 
885 Editor::canvas_horizontally_scrolled ()
886 {
887         nframes64_t time_origin = (nframes64_t) floor (horizontal_adjustment.get_value() * frames_per_unit);
888
889         if (time_origin != leftmost_frame) {
890                 canvas_scroll_to (time_origin);
891         }
892         redisplay_tempo (true);
893 }
894
895 void
896 Editor::canvas_scroll_to (nframes64_t time_origin)
897 {
898         leftmost_frame = time_origin;
899 }
900
901 void
902 Editor::color_handler()
903 {
904         playhead_cursor->canvas_item.property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_PlayHead.get();
905         verbose_canvas_cursor->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_VerboseCanvasCursor.get();
906
907         meter_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MeterBar.get();
908         meter_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
909
910         tempo_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TempoBar.get();
911         tempo_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
912
913         marker_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBar.get();
914         marker_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
915
916         cd_marker_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_CDMarkerBar.get();
917         cd_marker_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
918
919         range_marker_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeMarkerBar.get();
920         range_marker_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
921
922         transport_marker_bar->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportMarkerBar.get();
923         transport_marker_bar->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator.get();
924
925         cd_marker_bar_drag_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect.get();
926         cd_marker_bar_drag_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect.get();
927
928         range_bar_drag_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect.get();
929         range_bar_drag_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect.get();
930
931         transport_bar_drag_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportDragRect.get();
932         transport_bar_drag_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportDragRect.get();
933
934         marker_drag_line->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerDragLine.get();
935
936         range_marker_drag_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragRect.get();
937         range_marker_drag_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragRect.get();
938
939         transport_loop_range_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportLoopRect.get();
940         transport_loop_range_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportLoopRect.get();
941
942         transport_punch_range_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportPunchRect.get();
943         transport_punch_range_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportPunchRect.get();
944
945         transport_punchin_line->property_color_rgba() = ARDOUR_UI::config()->canvasvar_PunchLine.get();
946         transport_punchout_line->property_color_rgba() = ARDOUR_UI::config()->canvasvar_PunchLine.get();
947
948         zoom_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_ZoomRect.get();
949         zoom_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_ZoomRect.get();
950
951         rubberband_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RubberBandRect.get();
952         rubberband_rect->property_fill_color_rgba() = (guint32) ARDOUR_UI::config()->canvasvar_RubberBandRect.get();
953
954         location_marker_color = ARDOUR_UI::config()->canvasvar_LocationMarker.get();
955         location_range_color = ARDOUR_UI::config()->canvasvar_LocationRange.get();
956         location_cd_marker_color = ARDOUR_UI::config()->canvasvar_LocationCDMarker.get();
957         location_loop_color = ARDOUR_UI::config()->canvasvar_LocationLoop.get();
958         location_punch_color = ARDOUR_UI::config()->canvasvar_LocationPunch.get();
959
960         refresh_location_display ();
961 /*
962         redisplay_tempo (true);
963
964         if (session)
965                 session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks); // redraw metric markers
966 */
967 }
968
969 void
970 Editor::flush_canvas ()
971 {
972         if (is_mapped()) {
973                 track_canvas->update_now ();
974                 // gdk_window_process_updates (GTK_LAYOUT(track_canvas->gobj())->bin_window, true);
975         }
976 }
977