From 0a4cd5380c815f3c9045362e012632c14055a47b Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 29 Aug 2011 09:58:59 +1000 Subject: [PATCH] Control key modifiers for zoom --- Graphs/gGraphView.cpp | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index cddf5b52..f37e4ff3 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -456,11 +456,16 @@ void gGraph::mouseReleaseEvent(QMouseEvent * event) if ((m_graphview->horizTravel()<4) && (x>left+m_marginleft && xtop+m_margintop && ybutton() & Qt::RightButton) { - ZoomX(1.33,x); // Zoom out + zoom=1.33; + if (event->modifiers() & Qt::ControlModifier) zoom*=1.5; + ZoomX(zoom,x); // Zoom out return; } else if (event->button() & Qt::LeftButton) { - ZoomX(0.75,x); // zoom in. + zoom=0.75; + if (event->modifiers() & Qt::ControlModifier) zoom/=1.5; + ZoomX(zoom,x); // zoom in. return; } } else { @@ -475,11 +480,15 @@ void gGraph::mouseReleaseEvent(QMouseEvent * event) xmult=qq/double(w); if ((xx==qq) || (x==m_lastx23)) { + double zoom; if (event->button() & Qt::RightButton) { - xx*=1.33; + zoom=1.33; + if (event->modifiers() & Qt::ControlModifier) zoom*=1.5; } else if (event->button() & Qt::LeftButton) { - xx*=0.75; + zoom=0.75; + if (event->modifiers() & Qt::ControlModifier) zoom/=1.5; } + xx*=zoom; if (xx>qq) xx=qq; } double j1=xmult*x;