[4302] | 1 |
|
---|
| 2 | /* -------------------------------------------------------------------------
|
---|
| 3 | * BKG NTRIP Client
|
---|
| 4 | * -------------------------------------------------------------------------
|
---|
| 5 | *
|
---|
| 6 | * Class: t_polarPlot
|
---|
| 7 | *
|
---|
| 8 | * Purpose: Polar Plot
|
---|
| 9 | *
|
---|
| 10 | * Author: L. Mervart
|
---|
| 11 | *
|
---|
| 12 | * Created: 23-Jun-2012
|
---|
| 13 | *
|
---|
| 14 | * Changes:
|
---|
| 15 | *
|
---|
| 16 | * -----------------------------------------------------------------------*/
|
---|
| 17 |
|
---|
| 18 | #include <qpen.h>
|
---|
| 19 | #include <qwt_symbol.h>
|
---|
| 20 | #include <qwt_polar_grid.h>
|
---|
| 21 |
|
---|
| 22 | #include "polarplot.h"
|
---|
[4329] | 23 | #include "graphwin.h"
|
---|
[4302] | 24 |
|
---|
[4317] | 25 | // Draw Symbols (virtual) - change symbol's color
|
---|
[4316] | 26 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 27 | void t_polarCurve::drawSymbols(QPainter* painter, const QwtSymbol& symbol,
|
---|
| 28 | const QwtScaleMap& azimuthMap,
|
---|
| 29 | const QwtScaleMap& radialMap,
|
---|
| 30 | const QPointF& pole, int from, int to) const {
|
---|
[4328] | 31 | t_colorMap colorMap;
|
---|
[4316] | 32 | for (int ii = from; ii <= to; ii++) {
|
---|
[4317] | 33 | QwtSymbol ss(symbol);
|
---|
[4334] | 34 | const QwtPointPolar& point = sample(ii);
|
---|
[4356] | 35 | const QColor color = colorMap.color(_scaleInterval, point._value);
|
---|
[4327] | 36 | ss.setBrush(QBrush(color));
|
---|
| 37 | ss.setPen(QPen(color));
|
---|
[4317] | 38 | QwtPolarCurve::drawSymbols(painter, ss, azimuthMap, radialMap, pole, ii,ii);
|
---|
[4316] | 39 | }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[4302] | 42 | // Constructor
|
---|
| 43 | ////////////////////////////////////////////////////////////////////////////
|
---|
[4356] | 44 | t_polarPlot::t_polarPlot(const QwtText& title, const QwtInterval& scaleInterval,
|
---|
| 45 | QWidget* parent) : QwtPolarPlot(title, parent) {
|
---|
[4302] | 46 |
|
---|
[4356] | 47 | _scaleInterval = scaleInterval;
|
---|
[4345] | 48 |
|
---|
[4313] | 49 | setPlotBackground(Qt::white);
|
---|
[4302] | 50 |
|
---|
[4319] | 51 | setAzimuthOrigin(M_PI/2.0);
|
---|
| 52 |
|
---|
[4302] | 53 | // Scales
|
---|
| 54 | // ------
|
---|
[4322] | 55 | setScale(QwtPolar::Radius, 0.0, 90.0);
|
---|
| 56 | setScale(QwtPolar::Azimuth, 360.0, 0.0, 30.0);
|
---|
[4311] | 57 |
|
---|
[4302] | 58 | // Grids, Axes
|
---|
| 59 | // -----------
|
---|
[4314] | 60 | QwtPolarGrid* grid = new QwtPolarGrid();
|
---|
| 61 | grid->setPen(QPen(Qt::black));
|
---|
[4302] | 62 | for ( int scaleId = 0; scaleId < QwtPolar::ScaleCount; scaleId++ ) {
|
---|
[4314] | 63 | grid->showGrid(scaleId);
|
---|
[4302] | 64 | }
|
---|
| 65 |
|
---|
[4314] | 66 | grid->setAxisPen(QwtPolar::AxisAzimuth, QPen(Qt::black));
|
---|
[4302] | 67 |
|
---|
[4314] | 68 | grid->showAxis(QwtPolar::AxisAzimuth, true);
|
---|
| 69 | grid->showAxis(QwtPolar::AxisTop, true);
|
---|
| 70 | grid->showAxis(QwtPolar::AxisBottom, false);
|
---|
| 71 | grid->showAxis(QwtPolar::AxisLeft, false);
|
---|
| 72 | grid->showAxis(QwtPolar::AxisRight, false);
|
---|
[4311] | 73 |
|
---|
[4314] | 74 | grid->showGrid(QwtPolar::Azimuth, true);
|
---|
| 75 | grid->showGrid(QwtPolar::Radius, true);
|
---|
[4311] | 76 |
|
---|
[4314] | 77 | grid->attach(this);
|
---|
[4334] | 78 | }
|
---|
[4302] | 79 |
|
---|
[4334] | 80 | //
|
---|
| 81 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 82 | void t_polarPlot::addCurve(QVector<t_polarPoint*>* data) {
|
---|
| 83 | t_polarCurve* curve = new t_polarCurve();
|
---|
[4356] | 84 | curve->setScaleInterval(_scaleInterval);
|
---|
[4334] | 85 | curve->setStyle(QwtPolarCurve::NoCurve); // draw only symbols
|
---|
| 86 | curve->setSymbol(new QwtSymbol(QwtSymbol::Ellipse,
|
---|
| 87 | QBrush(Qt::red), QPen(Qt::red),
|
---|
| 88 | QSize(3, 3)));
|
---|
| 89 | t_polarData* polarData = new t_polarData(data);
|
---|
| 90 | curve->setData(polarData);
|
---|
[4302] | 91 | curve->attach(this);
|
---|
| 92 | }
|
---|