From 7e2f36230ffcfe85b3fc095348b385d28979c267 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 26 Aug 2011 14:15:15 +1000 Subject: [PATCH] Stopped scroll bars updating when couldn't move any futher --- Graphs/gGraphView.cpp | 38 +++++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index e5743f03..f7b5e6b7 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -324,7 +324,7 @@ void gGraph::mouseMoveEvent(QMouseEvent * event) if (m_graphview->m_selected_graph==this) { if (event->buttons() & Qt::LeftButton) { - qDebug() << m_title << "Moved" << x << y << left << right << top << bottom << m_width << m_height; + //qDebug() << m_title << "Moved" << x << y << left << right << top << bottom << m_width << m_height; int a1=MIN(x,x2); int a2=MAX(x,x2); if (a1left+m_marginleft && xtitleWidth+right+m_marginright) && y>top+m_margintop && ypointClicked().x(),y2=m_graphview->pointClicked().y(); - qDebug() << m_title << "Released" << min_x << max_x << x << y << x2 << y2 << left << right << top << bottom << m_width << m_height; + //qDebug() << m_title << "Released" << min_x << max_x << x << y << x2 << y2 << left << right << top << bottom << m_width << m_height; if ((m_graphview->horizTravel()<4) && (x>left+m_marginleft && xtop+m_margintop && ybutton() & Qt::RightButton) { @@ -461,7 +461,7 @@ void gGraph::mouseReleaseEvent(QMouseEvent * event) void gGraph::wheelEvent(QWheelEvent * event) { - qDebug() << m_title << "Wheel" << event->x() << event->y() << event->delta(); + //qDebug() << m_title << "Wheel" << event->x() << event->y() << event->delta(); //int y=event->pos().y(); int x=event->pos().x()-m_graphview->titleWidth;//(left+m_marginleft); if (event->delta()>0) { @@ -476,11 +476,11 @@ void gGraph::mouseDoubleClickEvent(QMouseEvent * event) mouseReleaseEvent(event); //mousePressEvent(event); //mouseReleaseEvent(event); - qDebug() << m_title << "Double Clicked" << event->x() << event->y(); + //qDebug() << m_title << "Double Clicked" << event->x() << event->y(); } void gGraph::keyPressEvent(QKeyEvent * event) { - qDebug() << m_title << "Key Pressed" << event->key(); + qDebug() << m_title << "Key Pressed.. implement me" << event->key(); } void gGraph::ZoomX(double mult,int origin_px) @@ -699,7 +699,7 @@ void gGraphView::DrawTextQue() } painter.end(); glPopAttrib(); - qDebug() << "rendered" << m_textque_items << "text items"; + //qDebug() << "rendered" << m_textque_items << "text items"; m_textque_items=0; } @@ -768,8 +768,10 @@ void gGraphView::resizeEvent(QResizeEvent *e) void gGraphView::scrollbarValueChanged(int val) { //qDebug() << "Scrollbar Changed" << val; - m_offsetY=val; - updateGL(); // do this on a timer? + if (m_offsetY!=val) { + m_offsetY=val; + updateGL(); // do this on a timer? + } } void gGraphView::ResetBounds(short group) { @@ -935,17 +937,19 @@ void gGraphView::paintGL() // For manual scrolling void gGraphView::setOffsetY(int offsetY) { - m_offsetY=offsetY; - //issue full redraw.. - updateGL(); + if (m_offsetY!=offsetY) { + m_offsetY=offsetY; + updateGL(); //issue full redraw.. + } } // For manual X scrolling (not really needed) void gGraphView::setOffsetX(int offsetX) { - m_offsetX=offsetX; - //issue redraw - updateGL(); + if (m_offsetX!=offsetX) { + m_offsetX=offsetX; + updateGL(); //issue redraw + } } void gGraphView::mouseMoveEvent(QMouseEvent * event) @@ -980,7 +984,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event) int yy2=yy-graphSpacer-m_graphs[i]->height()*m_scaleY; yy2+=m_graphs[m_graph_index]->height()*m_scaleY; if (y yy+graphSpacer+m_graphs[m_graph_index]->height()*m_scaleY) { // swapping downwards - qDebug() << "Graph Reorder" << m_graph_index; + //qDebug() << "Graph Reorder" << m_graph_index; for (int i=m_graph_index+1;iisEmpty(); p=m_graphs[m_graph_index];