Files
@ 11522eba8b9b
Branch filter:
Location: tempo-plotter/src/plot.cpp
11522eba8b9b
7.5 KiB
text/x-c++hdr
modify scrollzoomer so that it tries to maintain zoom window when buffer size changes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | /*
Copyright © 2020 Hasan Yavuz Özderya
This file is part of serialplot.
serialplot is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
serialplot is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with serialplot. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QRectF>
#include <QKeySequence>
#include <QColor>
#include <qwt_symbol.h>
#include <qwt_plot_curve.h>
#include <math.h>
#include <algorithm>
#include "plot.h"
#include "utils.h"
static const int SYMBOL_SHOW_AT_WIDTH = 5;
static const int SYMBOL_SIZE_MAX = 7;
Plot::Plot(QWidget* parent) :
QwtPlot(parent),
zoomer(this->canvas(), false),
sZoomer(this, &zoomer)
{
isAutoScaled = true;
symbolSize = 0;
numOfSamples = 1;
plotWidth = 1;
showSymbols = Plot::ShowSymbolsAuto;
QObject::connect(&zoomer, &Zoomer::unzoomed, this, &Plot::unzoomed);
zoomer.setZoomBase();
grid.attach(this);
legend.attach(this);
showGrid(false);
darkBackground(false);
snapshotOverlay = NULL;
connect(&zoomer, &QwtPlotZoomer::zoomed,
[this](const QRectF &rect)
{
onXScaleChanged();
});
connect(this, &QwtPlot::itemAttached,
[this](QwtPlotItem *plotItem, bool on)
{
if (symbolSize) updateSymbols();
});
// init demo indicator
QwtText demoText(" DEMO RUNNING "); // looks better with spaces
demoText.setColor(QColor("white"));
demoText.setBackgroundBrush(Qt::darkRed);
demoText.setBorderRadius(4);
demoText.setRenderFlags(Qt::AlignLeft | Qt::AlignBottom);
demoIndicator.setText(demoText);
demoIndicator.hide();
demoIndicator.attach(this);
// init no channels are visible indicator
QwtText noChannelText(" No Visible Channels ");
noChannelText.setColor(QColor("white"));
noChannelText.setBackgroundBrush(Qt::darkBlue);
noChannelText.setBorderRadius(4);
noChannelText.setRenderFlags(Qt::AlignHCenter | Qt::AlignVCenter);
noChannelIndicator.setText(noChannelText);
noChannelIndicator.hide();
noChannelIndicator.attach(this);
}
Plot::~Plot()
{
if (snapshotOverlay != NULL) delete snapshotOverlay;
}
void Plot::setDispChannels(QVector<const StreamChannel*> channels)
{
zoomer.setDispChannels(channels);
}
void Plot::setYAxis(bool autoScaled, double yAxisMin, double yAxisMax)
{
this->isAutoScaled = autoScaled;
if (!autoScaled)
{
yMin = yAxisMin;
yMax = yAxisMax;
}
zoomer.zoom(0);
resetAxes();
}
void Plot::setXAxis(double xMin, double xMax)
{
_xMin = xMin;
_xMax = xMax;
zoomer.setXLimits(xMin, xMax);
zoomer.setZoomBase();
// set axis
// setAxisScale(QwtPlot::xBottom, xMin, xMax);
replot(); // Note: if we don't replot here scale at startup isn't set correctly
// reset zoom base
// auto base = zoomer.zoomBase();
// base.setLeft(xMin);
// base.setRight(xMax);
// zoomer.setZoomBase(base);
onXScaleChanged();
}
void Plot::resetAxes()
{
// reset y axis
if (isAutoScaled)
{
setAxisAutoScale(QwtPlot::yLeft);
}
else
{
setAxisScale(QwtPlot::yLeft, yMin, yMax);
}
zoomer.setZoomBase();
replot();
}
void Plot::unzoomed()
{
resetAxes();
onXScaleChanged();
}
void Plot::showGrid(bool show)
{
grid.enableX(show);
grid.enableY(show);
replot();
}
void Plot::showMinorGrid(bool show)
{
grid.enableXMin(show);
grid.enableYMin(show);
replot();
}
void Plot::showLegend(bool show)
{
legend.setVisible(show);
replot();
}
void Plot::showDemoIndicator(bool show)
{
demoIndicator.setVisible(show);
replot();
}
void Plot::showNoChannel(bool show)
{
noChannelIndicator.setVisible(show);
replot();
}
void Plot::unzoom()
{
zoomer.zoom(0);
}
void Plot::darkBackground(bool enabled)
{
QColor gridColor;
if (enabled)
{
setCanvasBackground(QBrush(Qt::black));
gridColor.setHsvF(0, 0, 0.25);
grid.setPen(gridColor);
zoomer.setRubberBandPen(QPen(Qt::white));
zoomer.setTrackerPen(QPen(Qt::white));
sZoomer.setPickerPen(QPen(Qt::white));
legend.setTextPen(QPen(Qt::white));
}
else
{
setCanvasBackground(QBrush(Qt::white));
gridColor.setHsvF(0, 0, 0.80);
grid.setPen(gridColor);
zoomer.setRubberBandPen(QPen(Qt::black));
zoomer.setTrackerPen(QPen(Qt::black));
sZoomer.setPickerPen(QPen(Qt::black));
legend.setTextPen(QPen(Qt::black));
}
updateSymbols();
replot();
}
void Plot::flashSnapshotOverlay(bool light)
{
if (snapshotOverlay != NULL) delete snapshotOverlay;
QColor color;
if(light)
{
color = QColor(Qt::white);
}
else
{
color = QColor(Qt::black);
}
snapshotOverlay = new PlotSnapshotOverlay(this->canvas(), color);
connect(snapshotOverlay, &PlotSnapshotOverlay::done,
[this]()
{
delete snapshotOverlay;
snapshotOverlay = NULL;
});
}
void Plot::setSymbols(ShowSymbols shown)
{
showSymbols = shown;
if (showSymbols == Plot::ShowSymbolsAuto)
{
calcSymbolSize();
}
else if (showSymbols == Plot::ShowSymbolsShow)
{
symbolSize = SYMBOL_SIZE_MAX;
}
else
{
symbolSize = 0;
}
updateSymbols();
replot();
}
void Plot::onXScaleChanged()
{
if (showSymbols == Plot::ShowSymbolsAuto)
{
calcSymbolSize();
updateSymbols();
}
}
void Plot::calcSymbolSize()
{
auto sw = axisWidget(QwtPlot::xBottom);
auto paintDist = sw->scaleDraw()->scaleMap().pDist();
auto scaleDist = sw->scaleDraw()->scaleMap().sDist();
auto fullScaleDist = zoomer.zoomBase().width();
auto zoomRate = fullScaleDist / scaleDist;
float plotWidthNumSamp = abs(numOfSamples * plotWidth / (_xMax - _xMin));
float samplesInView = plotWidthNumSamp / zoomRate;
int symDisPx = round(paintDist / samplesInView);
if (symDisPx < SYMBOL_SHOW_AT_WIDTH)
{
symbolSize = 0;
}
else
{
symbolSize = std::min(SYMBOL_SIZE_MAX, symDisPx-SYMBOL_SHOW_AT_WIDTH+1);
}
}
void Plot::updateSymbols()
{
const QwtPlotItemList curves = itemList( QwtPlotItem::Rtti_PlotCurve );
if (curves.size() > 0)
{
for (int i = 0; i < curves.size(); i++)
{
QwtSymbol* symbol = NULL;
QwtPlotCurve* curve = static_cast<QwtPlotCurve*>(curves[i]);
if (symbolSize)
{
symbol = new QwtSymbol(QwtSymbol::Ellipse,
canvasBackground(),
curve->pen(),
QSize(symbolSize, symbolSize));
}
curve->setSymbol(symbol);
}
}
}
void Plot::resizeEvent(QResizeEvent * event)
{
QwtPlot::resizeEvent(event);
onXScaleChanged();
}
void Plot::setNumOfSamples(unsigned value)
{
numOfSamples = value;
onXScaleChanged();
}
void Plot::setPlotWidth(double width)
{
plotWidth = width;
zoomer.setHViewSize(width);
}
|