2 Copyright (C) 2005 Paul Davis
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.
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.
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.
20 #include <libgnomecanvasmm/init.h>
21 #include <libgnomecanvasmm/pixbuf.h>
22 #include <jack/types.h>
23 #include <gtkmm2ext/utils.h>
25 #include "ardour/profile.h"
26 #include "ardour/rc_configuration.h"
28 #include "ardour_ui.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 "canvas-noevent-text.h"
41 #include "rgb_macros.h"
43 #include "audio_time_axis.h"
44 #include "editor_drag.h"
45 #include "region_view.h"
46 #include "editor_group_tabs.h"
47 #include "editor_routes.h"
48 #include "editor_summary.h"
53 using namespace ARDOUR
;
57 using namespace Gtkmm2ext
;
58 using namespace Editing
;
60 /* XXX this is a hack. it ought to be the maximum value of an nframes64_t */
62 const double max_canvas_coordinate
= (double) JACK_MAX_FRAMES
;
67 GType
gnome_canvas_simpleline_get_type(void);
68 GType
gnome_canvas_simplerect_get_type(void);
69 GType
gnome_canvas_waveview_get_type(void);
70 GType
gnome_canvas_imageframe_get_type(void);
74 static void ardour_canvas_type_init()
76 // Map gtypes to gtkmm wrapper-creation functions:
78 Glib::wrap_register(gnome_canvas_simpleline_get_type(), &Gnome::Canvas::SimpleLine_Class::wrap_new
);
79 Glib::wrap_register(gnome_canvas_simplerect_get_type(), &Gnome::Canvas::SimpleRect_Class::wrap_new
);
80 Glib::wrap_register(gnome_canvas_waveview_get_type(), &Gnome::Canvas::WaveView_Class::wrap_new
);
81 // Glib::wrap_register(gnome_canvas_imageframe_get_type(), &Gnome::Canvas::ImageFrame_Class::wrap_new);
83 // Register the gtkmm gtypes:
85 (void) Gnome::Canvas::WaveView::get_type();
86 (void) Gnome::Canvas::SimpleLine::get_type();
87 (void) Gnome::Canvas::SimpleRect::get_type();
88 (void) Gnome::Canvas::ImageFrame::get_type();
92 Editor::initialize_canvas ()
94 if (getenv ("ARDOUR_NON_AA_CANVAS")) {
95 track_canvas
= new ArdourCanvas::Canvas ();
97 track_canvas
= new ArdourCanvas::CanvasAA ();
100 ArdourCanvas::init ();
101 ardour_canvas_type_init ();
103 /* don't try to center the canvas */
105 track_canvas
->set_center_scroll_region (false);
106 track_canvas
->set_dither (Gdk::RGB_DITHER_NONE
);
108 Glib::RefPtr
<Gdk::Screen
> screen
= get_screen();
111 screen
= Gdk::Screen::get_default();
113 physical_screen_width
= screen
->get_width ();
114 physical_screen_height
= screen
->get_height ();
116 /* stuff for the verbose canvas cursor */
118 Pango::FontDescription
* font
= get_font_for_style (N_("VerboseCanvasCursor"));
120 verbose_canvas_cursor
= new ArdourCanvas::NoEventText (*track_canvas
->root());
121 verbose_canvas_cursor
->property_font_desc() = *font
;
122 verbose_canvas_cursor
->property_anchor() = ANCHOR_NW
;
126 verbose_cursor_visible
= false;
128 /* on the bottom, an image */
130 if (Profile
->get_sae()) {
131 Image
img (::get_icon (X_("saelogo")));
132 logo_item
= new ArdourCanvas::Pixbuf (*track_canvas
->root(), 0.0, 0.0, img
.get_pixbuf());
133 // logo_item->property_height_in_pixels() = true;
134 // logo_item->property_width_in_pixels() = true;
135 // logo_item->property_height_set() = true;
136 // logo_item->property_width_set() = true;
140 /* a group to hold time (measure) lines */
141 time_line_group
= new ArdourCanvas::Group (*track_canvas
->root());
144 /*XXX please don't laugh. this actually improves canvas performance on osx */
145 bogus_background_rect
= new ArdourCanvas::SimpleRect (*time_line_group
, 0.0, 0.0, max_canvas_coordinate
/3, physical_screen_height
);
146 bogus_background_rect
->property_outline_pixels() = 0;
148 transport_loop_range_rect
= new ArdourCanvas::SimpleRect (*time_line_group
, 0.0, 0.0, 0.0, physical_screen_height
);
149 transport_loop_range_rect
->property_outline_pixels() = 1;
150 transport_loop_range_rect
->hide();
152 transport_punch_range_rect
= new ArdourCanvas::SimpleRect (*time_line_group
, 0.0, 0.0, 0.0, physical_screen_height
);
153 transport_punch_range_rect
->property_outline_pixels() = 0;
154 transport_punch_range_rect
->hide();
156 _background_group
= new ArdourCanvas::Group (*track_canvas
->root());
157 _master_group
= new ArdourCanvas::Group (*track_canvas
->root());
159 _trackview_group
= new ArdourCanvas::Group (*_master_group
);
160 _region_motion_group
= new ArdourCanvas::Group (*_trackview_group
);
162 meter_bar_group
= new ArdourCanvas::Group (*track_canvas
->root ());
163 if (Profile
->get_sae()) {
164 meter_bar
= new ArdourCanvas::SimpleRect (*meter_bar_group
, 0.0, 0.0, physical_screen_width
, timebar_height
- 1);
165 meter_bar
->property_outline_pixels() = 1;
167 meter_bar
= new ArdourCanvas::SimpleRect (*meter_bar_group
, 0.0, 0.0, physical_screen_width
, timebar_height
);
168 meter_bar
->property_outline_pixels() = 0;
170 meter_bar
->property_outline_what() = (0x1 | 0x8);
172 tempo_bar_group
= new ArdourCanvas::Group (*track_canvas
->root ());
173 if (Profile
->get_sae()) {
174 tempo_bar
= new ArdourCanvas::SimpleRect (*tempo_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
- 1));
175 tempo_bar
->property_outline_pixels() = 1;
177 tempo_bar
= new ArdourCanvas::SimpleRect (*tempo_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
));
178 tempo_bar
->property_outline_pixels() = 0;
180 tempo_bar
->property_outline_what() = (0x1 | 0x8);
182 range_marker_bar_group
= new ArdourCanvas::Group (*track_canvas
->root ());
183 if (Profile
->get_sae()) {
184 range_marker_bar
= new ArdourCanvas::SimpleRect (*range_marker_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
- 1));
185 range_marker_bar
->property_outline_pixels() = 1;
187 range_marker_bar
= new ArdourCanvas::SimpleRect (*range_marker_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
));
188 range_marker_bar
->property_outline_pixels() = 0;
190 range_marker_bar
->property_outline_what() = (0x1 | 0x8);
192 transport_marker_bar_group
= new ArdourCanvas::Group (*track_canvas
->root ());
193 if (Profile
->get_sae()) {
194 transport_marker_bar
= new ArdourCanvas::SimpleRect (*transport_marker_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
- 1));
195 transport_marker_bar
->property_outline_pixels() = 1;
197 transport_marker_bar
= new ArdourCanvas::SimpleRect (*transport_marker_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
));
198 transport_marker_bar
->property_outline_pixels() = 0;
200 transport_marker_bar
->property_outline_what() = (0x1 | 0x8);
202 marker_bar_group
= new ArdourCanvas::Group (*track_canvas
->root ());
203 if (Profile
->get_sae()) {
204 marker_bar
= new ArdourCanvas::SimpleRect (*marker_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
- 1));
205 marker_bar
->property_outline_pixels() = 1;
207 marker_bar
= new ArdourCanvas::SimpleRect (*marker_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
));
208 marker_bar
->property_outline_pixels() = 0;
210 marker_bar
->property_outline_what() = (0x1 | 0x8);
212 cd_marker_bar_group
= new ArdourCanvas::Group (*track_canvas
->root ());
213 if (Profile
->get_sae()) {
214 cd_marker_bar
= new ArdourCanvas::SimpleRect (*cd_marker_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
- 1));
215 cd_marker_bar
->property_outline_pixels() = 1;
217 cd_marker_bar
= new ArdourCanvas::SimpleRect (*cd_marker_bar_group
, 0.0, 0.0, physical_screen_width
, (timebar_height
));
218 cd_marker_bar
->property_outline_pixels() = 0;
220 cd_marker_bar
->property_outline_what() = (0x1 | 0x8);
222 timebar_group
= new ArdourCanvas::Group (*track_canvas
->root(), 0.0, 0.0);
223 cursor_group
= new ArdourCanvas::Group (*track_canvas
->root(), 0.0, 0.0);
225 meter_group
= new ArdourCanvas::Group (*timebar_group
, 0.0, timebar_height
* 5.0);
226 tempo_group
= new ArdourCanvas::Group (*timebar_group
, 0.0, timebar_height
* 4.0);
227 range_marker_group
= new ArdourCanvas::Group (*timebar_group
, 0.0, timebar_height
* 3.0);
228 transport_marker_group
= new ArdourCanvas::Group (*timebar_group
, 0.0, timebar_height
* 2.0);
229 marker_group
= new ArdourCanvas::Group (*timebar_group
, 0.0, timebar_height
);
230 cd_marker_group
= new ArdourCanvas::Group (*timebar_group
, 0.0, 0.0);
232 cd_marker_bar_drag_rect
= new ArdourCanvas::SimpleRect (*cd_marker_group
, 0.0, 0.0, 100, timebar_height
);
233 cd_marker_bar_drag_rect
->property_outline_pixels() = 0;
234 cd_marker_bar_drag_rect
->hide ();
236 range_bar_drag_rect
= new ArdourCanvas::SimpleRect (*range_marker_group
, 0.0, 0.0, 100, timebar_height
);
237 range_bar_drag_rect
->property_outline_pixels() = 0;
238 range_bar_drag_rect
->hide ();
240 transport_bar_drag_rect
= new ArdourCanvas::SimpleRect (*transport_marker_group
, 0.0, 0.0, 100, timebar_height
);
241 transport_bar_drag_rect
->property_outline_pixels() = 0;
242 transport_bar_drag_rect
->hide ();
244 transport_punchin_line
= new ArdourCanvas::SimpleLine (*_master_group
);
245 transport_punchin_line
->property_x1() = 0.0;
246 transport_punchin_line
->property_y1() = 0.0;
247 transport_punchin_line
->property_x2() = 0.0;
248 transport_punchin_line
->property_y2() = physical_screen_height
;
249 transport_punchin_line
->hide ();
251 transport_punchout_line
= new ArdourCanvas::SimpleLine (*_master_group
);
252 transport_punchout_line
->property_x1() = 0.0;
253 transport_punchout_line
->property_y1() = 0.0;
254 transport_punchout_line
->property_x2() = 0.0;
255 transport_punchout_line
->property_y2() = physical_screen_height
;
256 transport_punchout_line
->hide();
258 // used to show zoom mode active zooming
259 zoom_rect
= new ArdourCanvas::SimpleRect (*_master_group
, 0.0, 0.0, 0.0, 0.0);
260 zoom_rect
->property_outline_pixels() = 1;
263 zoom_rect
->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_zoom_rect_event
), (ArdourCanvas::Item
*) 0));
265 // used as rubberband rect
266 rubberband_rect
= new ArdourCanvas::SimpleRect (*_trackview_group
, 0.0, 0.0, 0.0, 0.0);
268 rubberband_rect
->property_outline_pixels() = 1;
269 rubberband_rect
->hide();
271 tempo_bar
->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_tempo_bar_event
), tempo_bar
));
272 meter_bar
->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_meter_bar_event
), meter_bar
));
273 marker_bar
->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_marker_bar_event
), marker_bar
));
274 cd_marker_bar
->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_cd_marker_bar_event
), cd_marker_bar
));
275 range_marker_bar
->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_range_marker_bar_event
), range_marker_bar
));
276 transport_marker_bar
->signal_event().connect (sigc::bind (sigc::mem_fun (*this, &Editor::canvas_transport_marker_bar_event
), transport_marker_bar
));
278 playhead_cursor
= new EditorCursor (*this, &Editor::canvas_playhead_cursor_event
);
281 logo_item
->lower_to_bottom ();
283 /* need to handle 4 specific types of events as catch-alls */
285 track_canvas
->signal_scroll_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_scroll_event
));
286 track_canvas
->signal_motion_notify_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_motion_notify_event
));
287 track_canvas
->signal_button_press_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_button_press_event
));
288 track_canvas
->signal_button_release_event().connect (sigc::mem_fun (*this, &Editor::track_canvas_button_release_event
));
289 track_canvas
->signal_drag_motion().connect (sigc::mem_fun (*this, &Editor::track_canvas_drag_motion
));
291 track_canvas
->set_name ("EditorMainCanvas");
292 track_canvas
->add_events (Gdk::POINTER_MOTION_HINT_MASK
|Gdk::SCROLL_MASK
);
293 track_canvas
->signal_leave_notify_event().connect (sigc::mem_fun(*this, &Editor::left_track_canvas
));
294 track_canvas
->signal_enter_notify_event().connect (sigc::mem_fun(*this, &Editor::entered_track_canvas
));
295 track_canvas
->set_flags (CAN_FOCUS
);
297 /* set up drag-n-drop */
299 vector
<TargetEntry
> target_table
;
301 // Drag-N-Drop from the region list can generate this target
302 target_table
.push_back (TargetEntry ("regions"));
304 target_table
.push_back (TargetEntry ("text/plain"));
305 target_table
.push_back (TargetEntry ("text/uri-list"));
306 target_table
.push_back (TargetEntry ("application/x-rootwin-drop"));
308 track_canvas
->drag_dest_set (target_table
);
309 track_canvas
->signal_drag_data_received().connect (sigc::mem_fun(*this, &Editor::track_canvas_drag_data_received
));
311 track_canvas
->signal_size_allocate().connect (sigc::mem_fun(*this, &Editor::track_canvas_allocate
));
313 ColorsChanged
.connect (sigc::mem_fun (*this, &Editor::color_handler
));
319 Editor::track_canvas_allocate (Gtk::Allocation alloc
)
321 canvas_allocation
= alloc
;
322 track_canvas_size_allocated ();
326 Editor::track_canvas_size_allocated ()
328 bool height_changed
= _canvas_height
!= canvas_allocation
.get_height();
330 _canvas_width
= canvas_allocation
.get_width();
331 _canvas_height
= canvas_allocation
.get_height();
334 TrackViewList::iterator i
;
337 for (i
= track_views
.begin(); i
!= track_views
.end(); ++i
) {
338 height
+= (*i
)->effective_height ();
339 (*i
)->clip_to_viewport ();
342 full_canvas_height
= height
+ canvas_timebars_vsize
;
345 if (height_changed
) {
346 if (playhead_cursor
) {
347 playhead_cursor
->set_length (_canvas_height
);
350 for (MarkerSelection::iterator x
= selection
->markers
.begin(); x
!= selection
->markers
.end(); ++x
) {
351 (*x
)->set_line_vpos (0, _canvas_height
);
354 vertical_adjustment
.set_page_size (_canvas_height
);
355 last_trackview_group_vertical_offset
= get_trackview_group_vertical_offset ();
356 if ((vertical_adjustment
.get_value() + _canvas_height
) >= vertical_adjustment
.get_upper()) {
358 We're increasing the size of the canvas while the bottom is visible.
359 We scroll down to keep in step with the controls layout.
361 vertical_adjustment
.set_value (full_canvas_height
- _canvas_height
);
365 update_fixed_rulers();
366 redisplay_tempo (false);
367 _summary
->set_overlays_dirty ();
369 Resized (); /* EMIT_SIGNAL */
375 Editor::controls_layout_size_request (Requisition
* req
)
378 for (TrackViewList::iterator i
= track_views
.begin(); i
!= track_views
.end(); ++i
) {
379 pos
+= (*i
)->effective_height ();
380 (*i
)->clip_to_viewport ();
383 gint height
= min ((gint
) pos
, (gint
) (physical_screen_height
- 600));
385 bool changed
= false;
387 gint w
= edit_controls_vbox
.get_width();
388 if (_group_tabs
->is_mapped()) {
389 w
+= _group_tabs
->get_width ();
392 gint width
= max (w
, controls_layout
.get_width());
394 /* don't get too big. the fudge factors here are just guesses */
396 width
= min (width
, (gint
) (physical_screen_width
- 300));
398 if ((req
->width
!= width
) || (req
->height
!= height
)) {
400 controls_layout_size_request_connection
.disconnect ();
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();
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
413 controls_layout
.property_width () = vbox_width
;
414 controls_layout
.property_width_request () = vbox_width
;
416 // time_button_event_box.property_width_request () = vbox_width;
417 // zoom_box.property_width_request () = vbox_width;
420 if (req
->height
!= height
) {
421 req
->height
= height
;
422 controls_layout
.property_height () = (guint
) floor (pos
);
423 controls_layout
.property_height_request () = height
;
427 controls_layout_size_request_connection
= controls_layout
.signal_size_request().connect (sigc::mem_fun (*this, &Editor::controls_layout_size_request
));
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
433 Editor::track_canvas_map_handler (GdkEventAny
* /*ev*/)
435 if (current_canvas_cursor
) {
436 track_canvas
->get_window()->set_cursor (*current_canvas_cursor
);
441 /** This is called when something is dropped onto the track canvas */
443 Editor::track_canvas_drag_data_received (const RefPtr
<Gdk::DragContext
>& context
,
445 const SelectionData
& data
,
446 guint info
, guint time
)
448 if (data
.get_target() == "regions") {
449 drop_regions (context
, x
, y
, data
, info
, time
);
451 drop_paths (context
, x
, y
, data
, info
, time
);
456 Editor::idle_drop_paths (vector
<ustring
> paths
, nframes64_t frame
, double ypos
)
458 drop_paths_part_two (paths
, frame
, ypos
);
463 Editor::drop_paths_part_two (const vector
<ustring
>& paths
, nframes64_t frame
, double ypos
)
465 RouteTimeAxisView
* tv
;
467 std::pair
<TimeAxisView
*, int> const tvp
= trackview_by_y_position (ypos
);
468 if (tvp
.first
== 0) {
470 /* drop onto canvas background: create new tracks */
474 if (Profile
->get_sae() || Config
->get_only_copy_imported_files()) {
475 do_import (paths
, Editing::ImportDistinctFiles
, Editing::ImportAsTrack
, SrcBest
, frame
);
477 do_embed (paths
, Editing::ImportDistinctFiles
, ImportAsTrack
, frame
);
480 } else if ((tv
= dynamic_cast<RouteTimeAxisView
*> (tvp
.first
)) != 0) {
482 /* check that its an audio track, not a bus */
485 /* select the track, then embed/import */
488 if (Profile
->get_sae() || Config
->get_only_copy_imported_files()) {
489 do_import (paths
, Editing::ImportSerializeFiles
, Editing::ImportToTrack
, SrcBest
, frame
);
491 do_embed (paths
, Editing::ImportSerializeFiles
, ImportToTrack
, frame
);
498 Editor::drop_paths (const RefPtr
<Gdk::DragContext
>& context
,
500 const SelectionData
& data
,
501 guint info
, guint time
)
503 vector
<ustring
> paths
;
510 if (convert_drop_to_paths (paths
, context
, x
, y
, data
, info
, time
) == 0) {
512 /* D-n-D coordinates are window-relative, so convert to "world" coordinates
515 track_canvas
->window_to_world (x
, y
, wx
, wy
);
517 ev
.type
= GDK_BUTTON_RELEASE
;
521 frame
= event_frame (&ev
, 0, &cy
);
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.
530 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &Editor::idle_drop_paths
), paths
, frame
, cy
));
532 drop_paths_part_two (paths
, frame
, cy
);
536 context
->drag_finish (true, false, time
);
540 Editor::drop_regions (const RefPtr
<Gdk::DragContext
>& /*context*/,
541 int /*x*/, int /*y*/,
542 const SelectionData
& /*data*/,
543 guint
/*info*/, guint
/*time*/)
545 _drags
->end_grab (0);
549 Editor::maybe_autoscroll (GdkEventMotion
* event
, bool allow_vert
)
551 nframes64_t rightmost_frame
= leftmost_frame
+ current_page_frames();
552 bool startit
= false;
556 if (event
->y
< canvas_timebars_vsize
&& allow_vert
) {
559 } else if (event
->y
> _canvas_height
) {
564 if (_drags
->current_pointer_frame() > rightmost_frame
) {
565 if (rightmost_frame
< max_frames
) {
569 } else if (_drags
->current_pointer_frame() < leftmost_frame
) {
570 if (leftmost_frame
> 0) {
576 if (!allow_vertical_scroll
) {
580 if ((autoscroll_x
!= last_autoscroll_x
) || (autoscroll_y
!= last_autoscroll_y
) || (autoscroll_x
== 0 && autoscroll_y
== 0)) {
581 stop_canvas_autoscroll ();
584 if (startit
&& autoscroll_timeout_tag
< 0) {
585 start_canvas_autoscroll (autoscroll_x
, autoscroll_y
);
588 last_autoscroll_x
= autoscroll_x
;
589 last_autoscroll_y
= autoscroll_y
;
593 Editor::_autoscroll_canvas (void *arg
)
595 return ((Editor
*) arg
)->autoscroll_canvas ();
599 Editor::autoscroll_canvas ()
601 nframes64_t new_frame
;
602 nframes64_t limit
= max_frames
- current_page_frames();
607 if (autoscroll_x_distance
!= 0) {
609 if (autoscroll_x
> 0) {
610 autoscroll_x_distance
= (_drags
->current_pointer_frame() - (leftmost_frame
+ current_page_frames())) / 3;
611 } else if (autoscroll_x
< 0) {
612 autoscroll_x_distance
= (leftmost_frame
- _drags
->current_pointer_frame()) / 3;
617 if (autoscroll_y_distance
!= 0) {
618 if (autoscroll_y
> 0) {
619 autoscroll_y_distance
= (_drags
->current_pointer_y() - (get_trackview_group_vertical_offset() + _canvas_height
)) / 3;
620 } else if (autoscroll_y
< 0) {
622 autoscroll_y_distance
= (vertical_adjustment
.get_value () - _drags
->current_pointer_y()) / 3;
626 if (autoscroll_x
< 0) {
627 if (leftmost_frame
< autoscroll_x_distance
) {
630 new_frame
= leftmost_frame
- autoscroll_x_distance
;
632 } else if (autoscroll_x
> 0) {
633 if (leftmost_frame
> limit
- autoscroll_x_distance
) {
636 new_frame
= leftmost_frame
+ autoscroll_x_distance
;
639 new_frame
= leftmost_frame
;
642 double vertical_pos
= vertical_adjustment
.get_value();
644 if (autoscroll_y
< 0) {
646 if (vertical_pos
< autoscroll_y_distance
) {
649 new_pixel
= vertical_pos
- autoscroll_y_distance
;
652 target_pixel
= _drags
->current_pointer_y() - autoscroll_y_distance
;
653 target_pixel
= max (target_pixel
, 0.0);
655 } else if (autoscroll_y
> 0) {
657 double top_of_bottom_of_canvas
= full_canvas_height
- _canvas_height
;
659 if (vertical_pos
> full_canvas_height
- autoscroll_y_distance
) {
660 new_pixel
= full_canvas_height
;
662 new_pixel
= vertical_pos
+ autoscroll_y_distance
;
665 new_pixel
= min (top_of_bottom_of_canvas
, new_pixel
);
667 target_pixel
= _drags
->current_pointer_y() + autoscroll_y_distance
;
669 /* don't move to the full canvas height because the item will be invisible
670 (its top edge will line up with the bottom of the visible canvas.
673 target_pixel
= min (target_pixel
, full_canvas_height
- 10);
676 target_pixel
= _drags
->current_pointer_y();
677 new_pixel
= vertical_pos
;
680 if ((new_frame
== 0 || new_frame
== limit
) && (new_pixel
== 0 || new_pixel
== DBL_MAX
)) {
685 if (new_frame
!= leftmost_frame
) {
686 reset_x_origin (new_frame
);
689 vertical_adjustment
.set_value (new_pixel
);
693 Glib::RefPtr
<Gdk::Window
> canvas_window
= const_cast<Editor
*>(this)->track_canvas
->get_window();
695 Gdk::ModifierType mask
;
696 canvas_window
->get_pointer (x
, y
, mask
);
697 ev
.type
= GDK_MOTION_NOTIFY
;
698 ev
.state
= Gdk::BUTTON1_MASK
;
702 motion_handler (0, (GdkEvent
*) &ev
, true);
706 if (autoscroll_cnt
== 1) {
708 /* connect the timeout so that we get called repeatedly */
710 autoscroll_timeout_tag
= g_idle_add ( _autoscroll_canvas
, this);
719 Editor::start_canvas_autoscroll (int dx
, int dy
)
721 if (!_session
|| autoscroll_active
) {
725 stop_canvas_autoscroll ();
727 autoscroll_active
= true;
730 autoscroll_x_distance
= (nframes64_t
) floor (current_page_frames()/50.0);
731 autoscroll_y_distance
= fabs (dy
* 5); /* pixels */
734 /* do it right now, which will start the repeated callbacks */
736 autoscroll_canvas ();
740 Editor::stop_canvas_autoscroll ()
743 if (autoscroll_timeout_tag
>= 0) {
744 g_source_remove (autoscroll_timeout_tag
);
745 autoscroll_timeout_tag
= -1;
748 autoscroll_active
= false;
752 Editor::left_track_canvas (GdkEventCrossing */
*ev*/
)
755 set_entered_track (0);
756 set_entered_regionview (0);
757 reset_canvas_action_sensitivity (false);
762 Editor::entered_track_canvas (GdkEventCrossing */
*ev*/
)
764 reset_canvas_action_sensitivity (true);
769 Editor::tie_vertical_scrolling ()
771 scroll_canvas_vertically ();
773 /* this will do an immediate redraw */
775 controls_layout
.get_vadjustment()->set_value (vertical_adjustment
.get_value());
777 if (pending_visual_change
.idle_handler_id
< 0) {
778 _summary
->set_overlays_dirty ();
783 Editor::set_horizontal_position (double p
)
785 /* horizontal scrolling only */
786 double x1
, y1
, x2
, y2
, x_delta
;
787 _master_group
->get_bounds (x1
, y1
, x2
, y2
);
789 x_delta
= - (x1
+ p
);
791 _master_group
->move (x_delta
, 0);
792 timebar_group
->move (x_delta
, 0);
793 time_line_group
->move (x_delta
, 0);
794 cursor_group
->move (x_delta
, 0);
796 leftmost_frame
= (nframes64_t
) floor (p
* frames_per_unit
);
798 update_fixed_rulers ();
799 redisplay_tempo (true);
801 if (pending_visual_change
.idle_handler_id
< 0) {
802 _summary
->set_overlays_dirty ();
806 if (!autoscroll_active
&& !_stationary_playhead
) {
807 /* force rulers and canvas to move in lock step */
808 while (gtk_events_pending ()) {
809 gtk_main_iteration ();
817 Editor::scroll_canvas_vertically ()
819 /* vertical scrolling only */
823 y_delta
= last_trackview_group_vertical_offset
- get_trackview_group_vertical_offset ();
824 _trackview_group
->move (0, y_delta
);
825 _background_group
->move (0, y_delta
);
827 for (TrackViewList::iterator i
= track_views
.begin(); i
!= track_views
.end(); ++i
) {
828 (*i
)->clip_to_viewport ();
830 last_trackview_group_vertical_offset
= get_trackview_group_vertical_offset ();
831 /* required to keep the controls_layout in lock step with the canvas group */
832 update_canvas_now ();
836 Editor::color_handler()
838 playhead_cursor
->canvas_item
.property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_PlayHead
.get();
839 verbose_canvas_cursor
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_VerboseCanvasCursor
.get();
841 meter_bar
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MeterBar
.get();
842 meter_bar
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator
.get();
844 tempo_bar
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TempoBar
.get();
845 tempo_bar
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator
.get();
847 marker_bar
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBar
.get();
848 marker_bar
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator
.get();
850 cd_marker_bar
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_CDMarkerBar
.get();
851 cd_marker_bar
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator
.get();
853 range_marker_bar
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeMarkerBar
.get();
854 range_marker_bar
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator
.get();
856 transport_marker_bar
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportMarkerBar
.get();
857 transport_marker_bar
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerBarSeparator
.get();
859 cd_marker_bar_drag_rect
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect
.get();
860 cd_marker_bar_drag_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect
.get();
862 range_bar_drag_rect
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect
.get();
863 range_bar_drag_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragBarRect
.get();
865 transport_bar_drag_rect
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportDragRect
.get();
866 transport_bar_drag_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportDragRect
.get();
868 transport_loop_range_rect
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportLoopRect
.get();
869 transport_loop_range_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportLoopRect
.get();
871 transport_punch_range_rect
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportPunchRect
.get();
872 transport_punch_range_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TransportPunchRect
.get();
874 transport_punchin_line
->property_color_rgba() = ARDOUR_UI::config()->canvasvar_PunchLine
.get();
875 transport_punchout_line
->property_color_rgba() = ARDOUR_UI::config()->canvasvar_PunchLine
.get();
877 zoom_rect
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_ZoomRect
.get();
878 zoom_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_ZoomRect
.get();
880 rubberband_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RubberBandRect
.get();
881 rubberband_rect
->property_fill_color_rgba() = (guint32
) ARDOUR_UI::config()->canvasvar_RubberBandRect
.get();
883 location_marker_color
= ARDOUR_UI::config()->canvasvar_LocationMarker
.get();
884 location_range_color
= ARDOUR_UI::config()->canvasvar_LocationRange
.get();
885 location_cd_marker_color
= ARDOUR_UI::config()->canvasvar_LocationCDMarker
.get();
886 location_loop_color
= ARDOUR_UI::config()->canvasvar_LocationLoop
.get();
887 location_punch_color
= ARDOUR_UI::config()->canvasvar_LocationPunch
.get();
889 refresh_location_display ();
891 redisplay_tempo (true);
894 _session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks); // redraw metric markers
899 Editor::flush_canvas ()
902 update_canvas_now ();
903 // gdk_window_process_updates (GTK_LAYOUT(track_canvas->gobj())->bin_window, true);
908 Editor::update_canvas_now ()
910 /* GnomeCanvas has a bug whereby if its idle handler is not scheduled between
911 two calls to update_now, an assert will trip. This wrapper works around
912 that problem by only calling update_now if the assert will not trip.
914 I think the GC bug is due to the fact that its code will reset need_update
915 and need_redraw to FALSE without checking to see if an idle handler is scheduled.
916 If one is scheduled, GC should probably remove it.
919 GnomeCanvas
* c
= track_canvas
->gobj ();
920 if (c
->need_update
|| c
->need_redraw
) {
921 track_canvas
->update_now ();
926 Editor::horizontal_position () const
928 return frame_to_unit (leftmost_frame
);