Skip to content
Snippets Groups Projects
Commit a1773bbd authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Fixing chaotic handling of mouse move event (several calls to event->x()...

BUG: Fixing chaotic handling of mouse move event (several calls to event->x() and event->y() which change between calls
parent 49997a0b
No related branches found
No related tags found
No related merge requests found
......@@ -95,17 +95,21 @@ ImageViewManipulator
{
m_PreviousIsotropicZoom = m_IsotropicZoom;
// Update the context with the pressed position
m_MouseContext.x = event->x();
m_MouseContext.y = event->y();
// Update the mouse context
m_MouseContext.dx = -event->x() + m_MouseContext.xMove;
m_MouseContext.dy = -event->y() + m_MouseContext.yMove;
m_MouseContext.dx = m_MouseContext.xMove - m_MouseContext.x;
m_MouseContext.dy = m_MouseContext.yMove - m_MouseContext.y;
// moveRegion
this->moveRegion( m_MouseContext.dx, m_MouseContext.dy);
// Update the position of the first press to take into account the
// last drag
m_MouseContext.xMove -= m_MouseContext.dx;
m_MouseContext.yMove -= m_MouseContext.dy;
m_MouseContext.xMove = m_MouseContext.x;
m_MouseContext.yMove = m_MouseContext.y;
}
/******************************************************************************/
......@@ -121,7 +125,7 @@ ImageViewManipulator
offset[0] = static_cast<ImageRegionType::OffsetType::OffsetValueType> (dx/m_IsotropicZoom + 0.5);
offset[1] = static_cast<ImageRegionType::OffsetType::OffsetValueType> (dy/m_IsotropicZoom + 0.5);
// Apply the offset to the (start) index of the stored region
IndexType index = currentRegion.GetIndex() + offset;
currentRegion.SetIndex(index);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment