Fix confusion about last_pointer_* variables under snap.
Update verbose canvas cursor correctly when automation point drags are clamped. Clamp multi-point automation drags horizontally. git-svn-id: svn://localhost/ardour2/branches/3.0@6474 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
dbff8105ab
commit
37dd777c9a
@ -237,119 +237,6 @@ AutomationLine::modify_point_y (ControlPoint& cp, double y)
|
|||||||
trackview.editor().session()->set_dirty ();
|
trackview.editor().session()->set_dirty ();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Move a view point to a new position (without changing the model)
|
|
||||||
* @param y New y position as a normalised fraction (0.0-1.0)
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
AutomationLine::modify_view_point (ControlPoint& cp, double x, double y, bool keep_x, bool with_push)
|
|
||||||
{
|
|
||||||
double delta = 0.0;
|
|
||||||
uint32_t last_movable = UINT_MAX;
|
|
||||||
double x_limit = DBL_MAX;
|
|
||||||
|
|
||||||
/* clamp y-coord appropriately. y is supposed to be a normalized fraction (0.0-1.0),
|
|
||||||
and needs to be converted to a canvas unit distance.
|
|
||||||
*/
|
|
||||||
|
|
||||||
y = max (0.0, y);
|
|
||||||
y = min (1.0, y);
|
|
||||||
y = _height - (y * _height);
|
|
||||||
|
|
||||||
if (cp.can_slide() && !keep_x) {
|
|
||||||
|
|
||||||
/* x-coord cannot move beyond adjacent points or the start/end, and is
|
|
||||||
already in frames. it needs to be converted to canvas units.
|
|
||||||
*/
|
|
||||||
|
|
||||||
x = trackview.editor().frame_to_unit (x);
|
|
||||||
|
|
||||||
/* clamp x position using view coordinates */
|
|
||||||
|
|
||||||
ControlPoint *before;
|
|
||||||
ControlPoint *after;
|
|
||||||
|
|
||||||
if (cp.view_index()) {
|
|
||||||
before = nth (cp.view_index() - 1);
|
|
||||||
x = max (x, before->get_x()+1.0);
|
|
||||||
} else {
|
|
||||||
before = &cp;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (!with_push) {
|
|
||||||
if (cp.view_index() < control_points.size() - 1) {
|
|
||||||
|
|
||||||
after = nth (cp.view_index() + 1);
|
|
||||||
|
|
||||||
/*if it is a "spike" leave the x alone */
|
|
||||||
|
|
||||||
if (after->get_x() - before->get_x() < 2) {
|
|
||||||
x = cp.get_x();
|
|
||||||
|
|
||||||
} else {
|
|
||||||
x = min (x, after->get_x()-1.0);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
after = &cp;
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
ControlPoint* after;
|
|
||||||
|
|
||||||
/* find the first point that can't move */
|
|
||||||
|
|
||||||
for (uint32_t n = cp.view_index() + 1; (after = nth (n)) != 0; ++n) {
|
|
||||||
if (!after->can_slide()) {
|
|
||||||
x_limit = after->get_x() - 1.0;
|
|
||||||
last_movable = after->view_index();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
delta = x - cp.get_x();
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
/* leave the x-coordinate alone */
|
|
||||||
|
|
||||||
x = trackview.editor().frame_to_unit (_time_converter.to((*cp.model())->when));
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!with_push) {
|
|
||||||
|
|
||||||
cp.move_to (x, y, ControlPoint::Full);
|
|
||||||
reset_line_coords (cp);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
uint32_t limit = min (control_points.size(), (size_t)last_movable);
|
|
||||||
|
|
||||||
/* move the current point to wherever the user told it to go, subject
|
|
||||||
to x_limit.
|
|
||||||
*/
|
|
||||||
|
|
||||||
cp.move_to (min (x, x_limit), y, ControlPoint::Full);
|
|
||||||
reset_line_coords (cp);
|
|
||||||
|
|
||||||
/* now move all subsequent control points, to reflect the motion.
|
|
||||||
*/
|
|
||||||
|
|
||||||
for (uint32_t i = cp.view_index() + 1; i < limit; ++i) {
|
|
||||||
ControlPoint *p = nth (i);
|
|
||||||
double new_x;
|
|
||||||
|
|
||||||
if (p->can_slide()) {
|
|
||||||
new_x = min (p->get_x() + delta, x_limit);
|
|
||||||
p->move_to (new_x, p->get_y(), ControlPoint::Full);
|
|
||||||
reset_line_coords (*p);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
AutomationLine::reset_line_coords (ControlPoint& cp)
|
AutomationLine::reset_line_coords (ControlPoint& cp)
|
||||||
{
|
{
|
||||||
@ -673,11 +560,11 @@ AutomationLine::invalidate_point (ALPoints& p, uint32_t index)
|
|||||||
* are other selected points.
|
* are other selected points.
|
||||||
*
|
*
|
||||||
* @param cp Point to drag.
|
* @param cp Point to drag.
|
||||||
* @param x Initial x position (frames).
|
* @param x Initial x position (units).
|
||||||
* @param fraction Initial y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
|
* @param fraction Initial y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
AutomationLine::start_drag_single (ControlPoint* cp, nframes_t x, float fraction)
|
AutomationLine::start_drag_single (ControlPoint* cp, double x, float fraction)
|
||||||
{
|
{
|
||||||
trackview.editor().session()->begin_reversible_command (_("automation event move"));
|
trackview.editor().session()->begin_reversible_command (_("automation event move"));
|
||||||
trackview.editor().session()->add_command (new MementoCommand<AutomationList>(*alist.get(), &get_state(), 0));
|
trackview.editor().session()->add_command (new MementoCommand<AutomationList>(*alist.get(), &get_state(), 0));
|
||||||
@ -708,28 +595,8 @@ AutomationLine::start_drag_line (uint32_t i1, uint32_t i2, float fraction)
|
|||||||
trackview.editor().session()->add_command (new MementoCommand<AutomationList>(*alist.get(), &get_state(), 0));
|
trackview.editor().session()->add_command (new MementoCommand<AutomationList>(*alist.get(), &get_state(), 0));
|
||||||
|
|
||||||
_drag_points.clear ();
|
_drag_points.clear ();
|
||||||
|
for (uint32_t i = i1; i <= i2; i++) {
|
||||||
// check if one of the control points on the line is in a selected range
|
_drag_points.push_back (nth (i));
|
||||||
bool range_found = false;
|
|
||||||
ControlPoint *cp;
|
|
||||||
|
|
||||||
for (uint32_t i = i1 ; i <= i2; i++) {
|
|
||||||
cp = nth (i);
|
|
||||||
if (cp->selected()) {
|
|
||||||
range_found = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (range_found) {
|
|
||||||
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
|
||||||
if ((*i)->selected()) {
|
|
||||||
_drag_points.push_back (*i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
for (uint32_t i = i1 ; i <= i2; i++) {
|
|
||||||
_drag_points.push_back (nth (i));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
start_drag_common (0, fraction);
|
start_drag_common (0, fraction);
|
||||||
@ -749,36 +616,108 @@ AutomationLine::start_drag_multiple (list<ControlPoint*> cp, float fraction, XML
|
|||||||
start_drag_common (0, fraction);
|
start_drag_common (0, fraction);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct ControlPointSorter
|
||||||
|
{
|
||||||
|
bool operator() (ControlPoint const * a, ControlPoint const * b) {
|
||||||
|
return a->get_x() < b->get_x();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
/** Common parts of starting a drag.
|
/** Common parts of starting a drag.
|
||||||
* @param d Description of the drag.
|
* @param d Description of the drag.
|
||||||
* @param x Starting x position in frames, or 0 if x is being ignored.
|
* @param x Starting x position in units, or 0 if x is being ignored.
|
||||||
* @param fraction Starting y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
|
* @param fraction Starting y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
AutomationLine::start_drag_common (nframes_t x, float fraction)
|
AutomationLine::start_drag_common (double x, float fraction)
|
||||||
{
|
{
|
||||||
drag_x = x;
|
_drag_x = x;
|
||||||
drag_distance = 0;
|
_drag_distance = 0;
|
||||||
_last_drag_fraction = fraction;
|
_last_drag_fraction = fraction;
|
||||||
_drag_had_movement = false;
|
_drag_had_movement = false;
|
||||||
did_push = false;
|
did_push = false;
|
||||||
|
|
||||||
|
_drag_points.sort (ControlPointSorter ());
|
||||||
|
|
||||||
|
/* find the additional points that will be dragged when the user is holding
|
||||||
|
the "push" modifier
|
||||||
|
*/
|
||||||
|
|
||||||
|
uint32_t i = _drag_points.back()->view_index () + 1;
|
||||||
|
ControlPoint* p = 0;
|
||||||
|
_push_points.clear ();
|
||||||
|
while ((p = nth (i)) != 0 && p->can_slide()) {
|
||||||
|
_push_points.push_back (p);
|
||||||
|
++i;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Should be called to indicate motion during a drag.
|
/** Should be called to indicate motion during a drag.
|
||||||
* @param x New x position of the drag in frames, or 0 if x is being ignored.
|
* @param x New x position of the drag in units, or undefined if ignore_x == true.
|
||||||
* @param fraction New y fraction.
|
* @param fraction New y fraction.
|
||||||
* @return x position and y fraction that were actually used (once clamped).
|
* @return x position and y fraction that were actually used (once clamped).
|
||||||
*/
|
*/
|
||||||
pair<nframes_t, float>
|
pair<double, float>
|
||||||
AutomationLine::drag_motion (nframes_t x, float fraction, bool with_push)
|
AutomationLine::drag_motion (double x, float fraction, bool ignore_x, bool with_push)
|
||||||
{
|
{
|
||||||
int64_t const dx = x - drag_x;
|
/* setup the points that are to be moved this time round */
|
||||||
|
list<ControlPoint*> points = _drag_points;
|
||||||
|
if (with_push) {
|
||||||
|
copy (_push_points.begin(), _push_points.end(), back_inserter (points));
|
||||||
|
points.sort (ControlPointSorter ());
|
||||||
|
}
|
||||||
|
|
||||||
|
double dx = ignore_x ? 0 : (x - _drag_x);
|
||||||
double dy = fraction - _last_drag_fraction;
|
double dy = fraction - _last_drag_fraction;
|
||||||
|
|
||||||
/* clamp y so that the "lowest" point hits the bottom but goes no further
|
/* find x limits */
|
||||||
and similarly with the "highest" and the top
|
ControlPoint* before = 0;
|
||||||
*/
|
ControlPoint* after = 0;
|
||||||
for (list<ControlPoint*>::iterator i = _drag_points.begin(); i != _drag_points.end(); ++i) {
|
|
||||||
|
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
|
||||||
|
if ((*i)->get_x() < points.front()->get_x()) {
|
||||||
|
before = *i;
|
||||||
|
}
|
||||||
|
if ((*i)->get_x() > points.back()->get_x() && after == 0) {
|
||||||
|
after = *i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
double const before_x = before ? before->get_x() : 0;
|
||||||
|
double const after_x = after ? after->get_x() : DBL_MAX;
|
||||||
|
|
||||||
|
/* clamp x */
|
||||||
|
for (list<ControlPoint*>::iterator i = points.begin(); i != points.end(); ++i) {
|
||||||
|
|
||||||
|
if ((*i)->can_slide() && !ignore_x) {
|
||||||
|
|
||||||
|
/* clamp min x */
|
||||||
|
double const a = (*i)->get_x() + dx;
|
||||||
|
double const b = before_x + 1;
|
||||||
|
if (a < b) {
|
||||||
|
dx += b - a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* clamp max x */
|
||||||
|
if (after) {
|
||||||
|
|
||||||
|
if (after_x - before_x < 2) {
|
||||||
|
/* after and before are very close, so just leave this alone */
|
||||||
|
dx = 0;
|
||||||
|
} else {
|
||||||
|
double const a = (*i)->get_x() + dx;
|
||||||
|
double const b = after_x - 1;
|
||||||
|
if (a > b) {
|
||||||
|
dx -= a - b;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* clamp y */
|
||||||
|
for (list<ControlPoint*>::iterator i = points.begin(); i != points.end(); ++i) {
|
||||||
double const y = ((_height - (*i)->get_y()) / _height) + dy;
|
double const y = ((_height - (*i)->get_y()) / _height) + dy;
|
||||||
if (y < 0) {
|
if (y < 0) {
|
||||||
dy -= y;
|
dy -= y;
|
||||||
@ -788,20 +727,22 @@ AutomationLine::drag_motion (nframes_t x, float fraction, bool with_push)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pair<nframes_t, float> const clamped (drag_x + dx, _last_drag_fraction + dy);
|
pair<double, float> const clamped (_drag_x + dx, _last_drag_fraction + dy);
|
||||||
drag_distance += dx;
|
_drag_distance += dx;
|
||||||
drag_x += dx;
|
_drag_x = x;
|
||||||
_last_drag_fraction += dy;
|
_last_drag_fraction = fraction;
|
||||||
|
|
||||||
for (list<ControlPoint*>::iterator i = _drag_points.begin(); i != _drag_points.end(); ++i) {
|
for (list<ControlPoint*>::iterator i = _drag_points.begin(); i != _drag_points.end(); ++i) {
|
||||||
|
(*i)->move_to ((*i)->get_x() + dx, (*i)->get_y() - _height * dy, ControlPoint::Full);
|
||||||
|
reset_line_coords (**i);
|
||||||
|
}
|
||||||
|
|
||||||
modify_view_point (
|
if (with_push) {
|
||||||
**i,
|
/* move push points, preserving their y */
|
||||||
trackview.editor().unit_to_frame ((*i)->get_x()) + dx,
|
for (list<ControlPoint*>::iterator i = _push_points.begin(); i != _push_points.end(); ++i) {
|
||||||
((_height - (*i)->get_y()) / _height) + dy,
|
(*i)->move_to ((*i)->get_x() + dx, (*i)->get_y(), ControlPoint::Full);
|
||||||
(x == 0),
|
reset_line_coords (**i);
|
||||||
with_push
|
}
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (line_points.size() > 1) {
|
if (line_points.size() > 1) {
|
||||||
@ -824,7 +765,14 @@ AutomationLine::end_drag ()
|
|||||||
|
|
||||||
alist->freeze ();
|
alist->freeze ();
|
||||||
|
|
||||||
sync_model_with_view_points (_drag_points, did_push, drag_distance);
|
/* set up the points that were moved this time round */
|
||||||
|
list<ControlPoint*> points = _drag_points;
|
||||||
|
if (did_push) {
|
||||||
|
copy (_push_points.begin(), _push_points.end(), back_inserter (points));
|
||||||
|
points.sort (ControlPointSorter ());
|
||||||
|
}
|
||||||
|
|
||||||
|
sync_model_with_view_points (points, did_push, rint (_drag_distance * trackview.editor().get_current_zoom ()));
|
||||||
|
|
||||||
alist->thaw ();
|
alist->thaw ();
|
||||||
|
|
||||||
@ -899,7 +847,7 @@ AutomationLine::sync_model_with_view_point (ControlPoint& cp, bool did_push, int
|
|||||||
as the main point moved.
|
as the main point moved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
alist->slide (mr.end, drag_distance);
|
alist->slide (mr.end, distance);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,10 +75,10 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
|
|||||||
bool control_points_adjacent (double xval, uint32_t& before, uint32_t& after);
|
bool control_points_adjacent (double xval, uint32_t& before, uint32_t& after);
|
||||||
|
|
||||||
/* dragging API */
|
/* dragging API */
|
||||||
virtual void start_drag_single (ControlPoint*, nframes_t x, float);
|
virtual void start_drag_single (ControlPoint*, double, float);
|
||||||
virtual void start_drag_line (uint32_t, uint32_t, float);
|
virtual void start_drag_line (uint32_t, uint32_t, float);
|
||||||
virtual void start_drag_multiple (std::list<ControlPoint*>, float, XMLNode *);
|
virtual void start_drag_multiple (std::list<ControlPoint*>, float, XMLNode *);
|
||||||
virtual std::pair<nframes_t, float> drag_motion (nframes_t, float, bool);
|
virtual std::pair<double, float> drag_motion (double, float, bool, bool);
|
||||||
virtual void end_drag ();
|
virtual void end_drag ();
|
||||||
|
|
||||||
ControlPoint* nth (uint32_t);
|
ControlPoint* nth (uint32_t);
|
||||||
@ -168,7 +168,7 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
|
|||||||
void determine_visible_control_points (ALPoints&);
|
void determine_visible_control_points (ALPoints&);
|
||||||
void sync_model_with_view_point (ControlPoint&, bool, int64_t);
|
void sync_model_with_view_point (ControlPoint&, bool, int64_t);
|
||||||
void sync_model_with_view_points (std::list<ControlPoint*>, bool, int64_t);
|
void sync_model_with_view_points (std::list<ControlPoint*>, bool, int64_t);
|
||||||
void start_drag_common (nframes_t, float);
|
void start_drag_common (double, float);
|
||||||
|
|
||||||
virtual void change_model (ARDOUR::AutomationList::iterator, double x, double y);
|
virtual void change_model (ARDOUR::AutomationList::iterator, double x, double y);
|
||||||
|
|
||||||
@ -181,16 +181,16 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
std::list<ControlPoint*> _drag_points; ///< points we are dragging
|
std::list<ControlPoint*> _drag_points; ///< points we are dragging
|
||||||
|
std::list<ControlPoint*> _push_points; ///< additional points we are dragging if "push" is enabled
|
||||||
bool _drag_had_movement; ///< true if the drag has seen movement, otherwise false
|
bool _drag_had_movement; ///< true if the drag has seen movement, otherwise false
|
||||||
nframes64_t drag_x; ///< last x position of the drag, in frames
|
double _drag_x; ///< last x position of the drag, in units
|
||||||
nframes64_t drag_distance; ///< total x movement of the drag, in frames
|
double _drag_distance; ///< total x movement of the drag, in units
|
||||||
double _last_drag_fraction; ///< last y position of the drag, as a fraction
|
double _last_drag_fraction; ///< last y position of the drag, as a fraction
|
||||||
std::list<double> _always_in_view;
|
std::list<double> _always_in_view;
|
||||||
|
|
||||||
const Evoral::TimeConverter<double, ARDOUR::sframes_t>& _time_converter;
|
const Evoral::TimeConverter<double, ARDOUR::sframes_t>& _time_converter;
|
||||||
ARDOUR::AutomationList::InterpolationStyle _interpolation;
|
ARDOUR::AutomationList::InterpolationStyle _interpolation;
|
||||||
|
|
||||||
void modify_view_point (ControlPoint&, double, double, bool, bool with_push);
|
|
||||||
void reset_line_coords (ControlPoint&);
|
void reset_line_coords (ControlPoint&);
|
||||||
void add_visible_control_point (uint32_t, uint32_t, double, double, ARDOUR::AutomationList::iterator, uint32_t);
|
void add_visible_control_point (uint32_t, uint32_t, double, double, ARDOUR::AutomationList::iterator, uint32_t);
|
||||||
|
|
||||||
|
@ -181,9 +181,6 @@ Drag::adjusted_current_frame (GdkEvent const * event, bool snap) const
|
|||||||
bool
|
bool
|
||||||
Drag::motion_handler (GdkEvent* event, bool from_autoscroll)
|
Drag::motion_handler (GdkEvent* event, bool from_autoscroll)
|
||||||
{
|
{
|
||||||
_last_pointer_x = _current_pointer_x;
|
|
||||||
_last_pointer_y = _current_pointer_y;
|
|
||||||
_last_pointer_frame = adjusted_current_frame (event);
|
|
||||||
_current_pointer_frame = _editor->event_frame (event, &_current_pointer_x, &_current_pointer_y);
|
_current_pointer_frame = _editor->event_frame (event, &_current_pointer_x, &_current_pointer_y);
|
||||||
|
|
||||||
/* check to see if we have moved in any way that matters since the last motion event */
|
/* check to see if we have moved in any way that matters since the last motion event */
|
||||||
@ -212,6 +209,11 @@ Drag::motion_handler (GdkEvent* event, bool from_autoscroll)
|
|||||||
}
|
}
|
||||||
|
|
||||||
motion (event, _move_threshold_passed != old_move_threshold_passed);
|
motion (event, _move_threshold_passed != old_move_threshold_passed);
|
||||||
|
|
||||||
|
_last_pointer_x = _current_pointer_x;
|
||||||
|
_last_pointer_y = _current_pointer_y;
|
||||||
|
_last_pointer_frame = adjusted_current_frame (event);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2619,11 +2621,10 @@ ControlPointDrag::start_grab (GdkEvent* event, Gdk::Cursor* /*cursor*/)
|
|||||||
// the point doesn't 'jump' to the mouse after the first drag
|
// the point doesn't 'jump' to the mouse after the first drag
|
||||||
_time_axis_view_grab_x = _point->get_x();
|
_time_axis_view_grab_x = _point->get_x();
|
||||||
_time_axis_view_grab_y = _point->get_y();
|
_time_axis_view_grab_y = _point->get_y();
|
||||||
nframes64_t grab_frame = _editor->pixel_to_frame (_time_axis_view_grab_x);
|
|
||||||
|
|
||||||
float const fraction = 1 - (_point->get_y() / _point->line().height());
|
float const fraction = 1 - (_point->get_y() / _point->line().height());
|
||||||
|
|
||||||
_point->line().start_drag_single (_point, grab_frame, fraction);
|
_point->line().start_drag_single (_point, _time_axis_view_grab_x, fraction);
|
||||||
|
|
||||||
_editor->set_verbose_canvas_cursor (_point->line().get_verbose_cursor_string (fraction),
|
_editor->set_verbose_canvas_cursor (_point->line().get_verbose_cursor_string (fraction),
|
||||||
event->button.x + 10, event->button.y + 10);
|
event->button.x + 10, event->button.y + 10);
|
||||||
@ -2679,9 +2680,9 @@ ControlPointDrag::motion (GdkEvent* event, bool)
|
|||||||
|
|
||||||
bool const push = Keyboard::modifier_state_contains (event->button.state, Keyboard::PrimaryModifier);
|
bool const push = Keyboard::modifier_state_contains (event->button.state, Keyboard::PrimaryModifier);
|
||||||
|
|
||||||
pair<nframes_t, float> const c = _point->line().drag_motion (cx_frames, fraction, push);
|
_point->line().drag_motion (_editor->frame_to_unit (cx_frames), fraction, false, push);
|
||||||
|
|
||||||
_editor->set_verbose_canvas_cursor_text (_point->line().get_verbose_cursor_string (c.second));
|
_editor->set_verbose_canvas_cursor_text (_point->line().get_verbose_cursor_string (fraction));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -2796,10 +2797,10 @@ LineDrag::motion (GdkEvent* event, bool)
|
|||||||
push = true;
|
push = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we are ignoring x position for this drag, so we can just pass in 0 */
|
/* we are ignoring x position for this drag, so we can just pass in anything */
|
||||||
pair<nframes_t, float> const c = _line->drag_motion (0, fraction, push);
|
_line->drag_motion (0, fraction, true, push);
|
||||||
|
|
||||||
_editor->set_verbose_canvas_cursor_text (_line->get_verbose_cursor_string (c.second));
|
_editor->set_verbose_canvas_cursor_text (_line->get_verbose_cursor_string (fraction));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -3814,8 +3815,8 @@ AutomationRangeDrag::motion (GdkEvent* event, bool first_move)
|
|||||||
|
|
||||||
float const f = 1 - (current_pointer_y() / _line->height());
|
float const f = 1 - (current_pointer_y() / _line->height());
|
||||||
|
|
||||||
/* we are ignoring x position for this drag, so we can just pass in 0 */
|
/* we are ignoring x position for this drag, so we can just pass in anything */
|
||||||
_line->drag_motion (0, f, false);
|
_line->drag_motion (0, f, true, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -50,7 +50,7 @@ AudioRegionGainLine::AudioRegionGainLine (const string & name, AudioRegionView&
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
AudioRegionGainLine::start_drag_single (ControlPoint* cp, nframes_t x, float fraction)
|
AudioRegionGainLine::start_drag_single (ControlPoint* cp, double x, float fraction)
|
||||||
{
|
{
|
||||||
AutomationLine::start_drag_single (cp, x, fraction);
|
AutomationLine::start_drag_single (cp, x, fraction);
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ class AudioRegionGainLine : public AutomationLine
|
|||||||
public:
|
public:
|
||||||
AudioRegionGainLine (const std::string & name, AudioRegionView&, ArdourCanvas::Group& parent, boost::shared_ptr<ARDOUR::AutomationList>);
|
AudioRegionGainLine (const std::string & name, AudioRegionView&, ArdourCanvas::Group& parent, boost::shared_ptr<ARDOUR::AutomationList>);
|
||||||
|
|
||||||
void start_drag_single (ControlPoint*, nframes_t x, float fraction);
|
void start_drag_single (ControlPoint*, double, float);
|
||||||
void end_drag ();
|
void end_drag ();
|
||||||
|
|
||||||
void remove_point (ControlPoint&);
|
void remove_point (ControlPoint&);
|
||||||
|
Loading…
Reference in New Issue
Block a user