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"
|
---|
23 | #include "graphwin.h"
|
---|
24 |
|
---|
25 | // Draw Symbols (virtual) - change symbol's color
|
---|
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 {
|
---|
31 | t_colorMap colorMap;
|
---|
32 | for (int ii = from; ii <= to; ii++) {
|
---|
33 | QwtSymbol ss(symbol);
|
---|
34 | const QwtPointPolar& point = sample(ii);
|
---|
35 | const QColor color = colorMap.color(_scaleInterval, point._value);
|
---|
36 | ss.setBrush(QBrush(color));
|
---|
37 | ss.setPen(QPen(color));
|
---|
38 | QwtPolarCurve::drawSymbols(painter, ss, azimuthMap, radialMap, pole, ii,ii);
|
---|
39 | }
|
---|
40 | }
|
---|
41 |
|
---|
42 | // Constructor
|
---|
43 | ////////////////////////////////////////////////////////////////////////////
|
---|
44 | t_polarPlot::t_polarPlot(const QwtText& title, const QwtInterval& scaleInterval,
|
---|
45 | QWidget* parent) : QwtPolarPlot(title, parent) {
|
---|
46 |
|
---|
47 | _scaleInterval = scaleInterval;
|
---|
48 |
|
---|
49 | setPlotBackground(Qt::white);
|
---|
50 |
|
---|
51 | setAzimuthOrigin(M_PI/2.0);
|
---|
52 |
|
---|
53 | // Scales
|
---|
54 | // ------
|
---|
55 | setScale(QwtPolar::Radius, 0.0, 90.0);
|
---|
56 | setScale(QwtPolar::Azimuth, 360.0, 0.0, 30.0);
|
---|
57 |
|
---|
58 | // Grids, Axes
|
---|
59 | // -----------
|
---|
60 | QwtPolarGrid* grid = new QwtPolarGrid();
|
---|
61 | grid->setPen(QPen(Qt::black));
|
---|
62 | for ( int scaleId = 0; scaleId < QwtPolar::ScaleCount; scaleId++ ) {
|
---|
63 | grid->showGrid(scaleId);
|
---|
64 | }
|
---|
65 |
|
---|
66 | grid->setAxisPen(QwtPolar::AxisAzimuth, QPen(Qt::black));
|
---|
67 |
|
---|
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);
|
---|
73 |
|
---|
74 | grid->showGrid(QwtPolar::Azimuth, true);
|
---|
75 | grid->showGrid(QwtPolar::Radius, true);
|
---|
76 |
|
---|
77 | grid->attach(this);
|
---|
78 | }
|
---|
79 |
|
---|
80 | //
|
---|
81 | ////////////////////////////////////////////////////////////////////////////
|
---|
82 | void t_polarPlot::addCurve(QVector<t_polarPoint*>* data) {
|
---|
83 | t_polarCurve* curve = new t_polarCurve();
|
---|
84 | curve->setScaleInterval(_scaleInterval);
|
---|
85 | curve->setStyle(QwtPolarCurve::NoCurve); // draw only symbols
|
---|
86 | curve->setSymbol(new QwtSymbol(QwtSymbol::Ellipse, QBrush(Qt::red),
|
---|
87 | QPen(Qt::red), QSize(2, 2)));
|
---|
88 | t_polarData* polarData = new t_polarData(data);
|
---|
89 | curve->setData(polarData);
|
---|
90 | curve->attach(this);
|
---|
91 | }
|
---|