summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_mouse.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-18 18:06:31 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-18 18:06:31 +0000
commita958dd0512a29894096e67ccd41a3d879b6bc162 (patch)
tree9136c539779cc161516b8bdf7caff67c61a3c325 /gtk2_ardour/editor_mouse.cc
parent6832155310c5de60ea6774f67dfc5787b592e75e (diff)
Set cursor to hint that you can drag automation up and down in object/range link mode.
git-svn-id: svn://localhost/ardour2/branches/3.0@7651 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_mouse.cc')
-rw-r--r--gtk2_ardour/editor_mouse.cc22
1 files changed, 20 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc
index 4713258b19..58ef93bd37 100644
--- a/gtk2_ardour/editor_mouse.cc
+++ b/gtk2_ardour/editor_mouse.cc
@@ -266,6 +266,16 @@ Editor::set_canvas_cursor ()
break;
}
+ /* up-down cursor as a cue that automation can be dragged up and down when in join object/range mode */
+ if (join_object_range_button.get_active() && last_item_entered) {
+ if (last_item_entered->property_parent() && (*last_item_entered->property_parent()).get_data (X_("timeselection"))) {
+ pair<TimeAxisView*, int> tvp = trackview_by_y_position (_last_motion_y + vertical_adjustment.get_value() - canvas_timebars_vsize);
+ if (dynamic_cast<AutomationTimeAxisView*> (tvp.first)) {
+ current_canvas_cursor = up_down_cursor;
+ }
+ }
+ }
+
if (is_drawable()) {
track_canvas->get_window()->set_cursor(*current_canvas_cursor);
}
@@ -654,7 +664,7 @@ Editor::button_press_handler_1 (ArdourCanvas::Item* item, GdkEvent* event, ItemT
AutomationTimeAxisView* atv = dynamic_cast<AutomationTimeAxisView*> (tvp.first);
if (join_object_range_button.get_active() && atv) {
/* smart "join" mode: drag automation */
- _drags->set (new AutomationRangeDrag (this, atv->base_item(), selection->time), event);
+ _drags->set (new AutomationRangeDrag (this, atv->base_item(), selection->time), event, up_down_cursor);
} else {
/* this was debated, but decided the more common action was to
make a new selection */
@@ -824,7 +834,7 @@ Editor::button_press_handler_1 (ArdourCanvas::Item* item, GdkEvent* event, ItemT
/* if we're over an automation track, start a drag of its data */
AutomationTimeAxisView* atv = dynamic_cast<AutomationTimeAxisView*> (tvp.first);
if (atv) {
- _drags->set (new AutomationRangeDrag (this, atv->base_item(), selection->time), event);
+ _drags->set (new AutomationRangeDrag (this, atv->base_item(), selection->time), event, up_down_cursor);
}
/* if we're over a track and a region, and in the `object' part of a region,
@@ -1646,6 +1656,12 @@ Editor::enter_handler (ArdourCanvas::Item* item, GdkEvent* event, ItemType item_
line->property_color_rgba() = 0xFF0000FF;
}
break;
+ case SelectionItem:
+ if (join_object_range_button.get_active()) {
+ set_canvas_cursor ();
+ }
+ break;
+
default:
break;
}
@@ -1896,6 +1912,8 @@ Editor::scrub (nframes64_t frame, double current_x)
bool
Editor::motion_handler (ArdourCanvas::Item* /*item*/, GdkEvent* event, bool from_autoscroll)
{
+ _last_motion_y = event->motion.y;
+
if (event->motion.is_hint) {
gint x, y;