From d736bbfa3147c07a812e82f5a96e296e1b4ac619 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Sun, 13 Mar 2016 14:03:17 -0700 Subject: [PATCH] Remove zoom support Bugs causing it to not be able to un-zoom. --- src/ui/linechart/ChartPlot.cc | 15 +-------------- src/ui/linechart/ChartPlot.h | 2 -- src/ui/linechart/IncrementalPlot.cc | 1 - src/ui/linechart/LinechartPlot.cc | 10 +--------- 4 files changed, 2 insertions(+), 26 deletions(-) diff --git a/src/ui/linechart/ChartPlot.cc b/src/ui/linechart/ChartPlot.cc index 2f5c29736a..61f1de095b 100644 --- a/src/ui/linechart/ChartPlot.cc +++ b/src/ui/linechart/ChartPlot.cc @@ -29,8 +29,7 @@ ChartPlot::ChartPlot(QWidget *parent): nextColorIndex(0), symbolWidth(2.0f), curveWidth(2.0f), - gridWidth(0.8f), - zoomerWidth(2.0f) + gridWidth(0.8f) { // Initialize the list of curves. curves = QMap(); @@ -40,10 +39,6 @@ ChartPlot::ChartPlot(QWidget *parent): grid->enableXMin(true); grid->attach(this); - // Enable zooming - QwtPlotCanvas *c = static_cast(canvas()); - zoomer = new ScrollZoomer(c); - colors = QList(); ///> Color map for plots, includes 20 colors @@ -100,10 +95,6 @@ void ChartPlot::styleChanged(bool styleIsDark) // Configure the rest of the UI colors based on the current theme. if (styleIsDark) { - // Set the coloring of the area selector for zooming. - zoomer->setRubberBandPen(QPen(QColor(0xB8, 0xD3, 0xE6), zoomerWidth, Qt::DotLine)); - zoomer->setTrackerPen(QPen(QColor(0xB8, 0xD3, 0xE6))); - // Set canvas background setCanvasBackground(QColor(0, 0, 0)); @@ -113,10 +104,6 @@ void ChartPlot::styleChanged(bool styleIsDark) } else { - // Set the coloring of the area selector for zooming. - zoomer->setRubberBandPen(QPen(QColor(0x37, 0x9A, 0xC3), zoomerWidth, Qt::DotLine)); - zoomer->setTrackerPen(QPen(QColor(0x37, 0x9A, 0xC3))); - // Set canvas background setCanvasBackground(QColor(0xFF, 0xFF, 0xFF)); diff --git a/src/ui/linechart/ChartPlot.h b/src/ui/linechart/ChartPlot.h index 1589285a48..acbb85a46b 100644 --- a/src/ui/linechart/ChartPlot.h +++ b/src/ui/linechart/ChartPlot.h @@ -34,13 +34,11 @@ protected: QList colors; ///< Colormap for curves int nextColorIndex; ///< Next index in color map QMap curves; ///< Plot curves - ScrollZoomer* zoomer; ///< Zoomer class for widget QwtPlotGrid* grid; ///< Plot grid float symbolWidth; ///< Width of curve symbols in pixels float curveWidth; ///< Width of curve lines in pixels float gridWidth; ///< Width of gridlines in pixels - float zoomerWidth; ///< Width of zoomer selection box }; #endif // CHARTPLOT_H diff --git a/src/ui/linechart/IncrementalPlot.cc b/src/ui/linechart/IncrementalPlot.cc index 4c8268978e..1731aa10c5 100644 --- a/src/ui/linechart/IncrementalPlot.cc +++ b/src/ui/linechart/IncrementalPlot.cc @@ -254,7 +254,6 @@ void IncrementalPlot::updateScale() } setAxisScale(xBottom, xMinRange, xMaxRange); setAxisScale(yLeft, yMinRange, yMaxRange); - zoomer->setZoomBase(true); } void IncrementalPlot::appendData(const QString &key, double x, double y) diff --git a/src/ui/linechart/LinechartPlot.cc b/src/ui/linechart/LinechartPlot.cc index 37867390f7..dc6b84f96f 100644 --- a/src/ui/linechart/LinechartPlot.cc +++ b/src/ui/linechart/LinechartPlot.cc @@ -679,15 +679,7 @@ void LinechartPlot::paintRealtime() windowLock.unlock(); - // Only set current view as zoombase if zoomer is not active - // else we could not zoom out any more - - if(zoomer->zoomStack().size() < 2) { - zoomer->setZoomBase(true); - } else { - replot(); - } - + replot(); /* QMap::iterator i; -- GitLab