diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index f3a3f411..56c8120d 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -339,18 +339,41 @@ void gGraph::mouseMoveEvent(QMouseEvent * event) int h=m_height-(bottom+m_marginbottom); double xx=max_x-min_x; double xmult=xx/w; + m_selecting_area=false; - if ((event->buttons() & Qt::LeftButton) && (m_graphview->m_selected_graph==this)) { - 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 (a1w) a2=w; - m_selecting_area=true; - m_selection=QRect(a1-m_marginleft,0,a2-a1,m_height); - m_graphview->updateGL(); - //repaint(); - } else m_selecting_area=false; + 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; + int a1=MIN(x,x2); + int a2=MAX(x,x2); + if (a1w) a2=w; + m_selecting_area=true; + m_selection=QRect(a1-m_marginleft,0,a2-a1,m_height); + m_graphview->updateGL(); + } else if (event->buttons() & Qt::RightButton) { + m_graphview->setPointClicked(event->pos()); + x-=left+m_marginleft; + x2-=left+m_marginleft; + //int a1=MIN(x,x2); + //int a2=MAX(x,x2); + //if (a1w) a2=w; + if (!m_blockzoom) { + xx=max_x-min_x; + w-=m_marginleft+left; + xmult=xx/double(w); + qint64 j1=xmult*x; + qint64 j2=xmult*x2; + qint64 jj=j2-j1; + min_x+=jj; + max_x+=jj; + //if (a2>rmax_x) a2=rmax_x; + m_graphview->SetXBounds(min_x,max_x); + } + + } + } if (x>left+m_marginleft && xtitleWidth+right+m_marginright) && y>top+m_margintop && y height()) break; // we are done.. can't draw anymore - if ((py + h + graphSpacer) >= 0) { - if ((y >= py) && (y < py + h)) { - if (x >= titleWidth) { + if (m_button_down || ((py + h + graphSpacer) >= 0)) { + if (m_button_down || ((y >= py) && (y < py + h))) { + if (m_button_down || (x >= titleWidth)) { this->setCursor(Qt::ArrowCursor); QPoint p(x-titleWidth,y-py); QMouseEvent e(event->type(),p,event->button(),event->buttons(),event->modifiers()); diff --git a/Graphs/gGraphView.h b/Graphs/gGraphView.h index da59f533..743c6a1d 100644 --- a/Graphs/gGraphView.h +++ b/Graphs/gGraphView.h @@ -205,6 +205,8 @@ public: QPoint pointClicked() { return m_point_clicked; } QPoint globalPointClicked() { return m_global_point_clicked; } + void setPointClicked(QPoint p) { m_point_clicked=p; } + void setGlobalPointClicked(QPoint p) { m_global_point_clicked=p; } QPainter *painter; diff --git a/daily.cpp b/daily.cpp index 1ac9fe3f..f35146aa 100644 --- a/daily.cpp +++ b/daily.cpp @@ -90,7 +90,7 @@ Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw) SF->AddLayer(AddCPAP(fg)); SF->AddLayer(new gShadowArea()); SF->AddLayer(new gYSpacer(),LayerLeft,gYAxis::Margin); - SF->AddLayer(new gFooBar(),LayerBottom,0,10); + //SF->AddLayer(new gFooBar(),LayerBottom,0,10); SF->AddLayer(new gXAxis(),LayerBottom,0,gXAxis::Margin); PRD->AddLayer(new gXGrid());