source: ntrip/trunk/BNC/src/bncmap_svg.cpp@ 4657

Last change on this file since 4657 was 4657, checked in by mervart, 12 years ago
File size: 6.3 KB
Line 
1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: t_bncMap
30 *
31 * Purpose: Plot map of stations from NTRIP source table
32 *
33 * Author: L. Mervart
34 *
35 * Created: 02-Sep-2012
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <QtSvg>
42
43#include <qwt_symbol.h>
44#include <qwt_plot.h>
45#include <qwt_plot_svgitem.h>
46#include <qwt_plot_curve.h>
47#include <qwt_plot_marker.h>
48#include <qwt_plot_canvas.h>
49#include <qwt_plot_zoomer.h>
50#include <qwt_plot_renderer.h>
51
52#include "bncmap.h"
53
54// Constructor
55/////////////////////////////////////////////////////////////////////////////
56t_bncMap::t_bncMap(QWidget* parent) : QDialog(parent) {
57
58 // Map in Scalable Vector Graphics (svg) Format
59 // --------------------------------------------
60 _mapPlot = new QwtPlot();
61
62 _mapPlot->setAxisScale(QwtPlot::xBottom, -180.0, 180.0);
63 _mapPlot->setAxisScale(QwtPlot::yLeft, -90.0, 90.0);
64
65 _mapPlotZoomer = new QwtPlotZoomer(_mapPlot->canvas());
66
67 _mapPlot->canvas()->setFocusPolicy(Qt::WheelFocus);
68
69 QwtPlotSvgItem* mapItem = new QwtPlotSvgItem();
70 mapItem->loadFile(QRectF(-180.0, -90.0, 360.0, 180.0), ":world.svg");
71 mapItem->attach(_mapPlot);
72
73 // Buttons
74 // -------
75 int ww = QFontMetrics(font()).width('w');
76
77 _buttonClose = new QPushButton(tr("Close"), this);
78 _buttonClose->setMaximumWidth(10*ww);
79 connect(_buttonClose, SIGNAL(clicked()), this, SLOT(slotClose()));
80
81 _buttonPrint = new QPushButton(tr("Print"), this);
82 _buttonPrint->setMaximumWidth(10*ww);
83 connect(_buttonPrint, SIGNAL(clicked()), this, SLOT(slotPrint()));
84
85 // Layout
86 // ------
87 QHBoxLayout* buttonLayout = new QHBoxLayout;
88 buttonLayout->addWidget(_buttonClose);
89 buttonLayout->addWidget(_buttonPrint);
90
91 QVBoxLayout* mainLayout = new QVBoxLayout(this);
92 mainLayout->addWidget(_mapPlot);
93 mainLayout->addLayout(buttonLayout);
94
95 // Minimal and Maximal Coordinates
96 // -------------------------------
97 _minPointLat = 0.0;
98 _maxPointLat = 0.0;
99 _minPointLon = 0.0;
100 _maxPointLon = 0.0;
101
102 // Important
103 // ---------
104 _mapPlot->replot();
105}
106
107// Destructor
108/////////////////////////////////////////////////////////////////////////////
109t_bncMap::~t_bncMap() {
110 delete _mapPlot;
111}
112
113//
114/////////////////////////////////////////////////////////////////////////////
115void t_bncMap::slotNewPoint(const QString& name, double latDeg, double lonDeg) {
116
117 if (lonDeg > 180.0) lonDeg -= 360.0;
118
119 QColor red(220,20,60);
120 QwtSymbol* symbol = new QwtSymbol(QwtSymbol::Rect, QBrush(red),
121 QPen(red), QSize(2,2));
122 QwtPlotMarker* marker = new QwtPlotMarker();
123 marker->setValue(lonDeg, latDeg);
124 if (lonDeg > 170.0) {
125 marker->setLabelAlignment(Qt::AlignLeft);
126 }
127 else {
128 marker->setLabelAlignment(Qt::AlignRight);
129 }
130 QwtText text(name.left(4));
131 QFont font = text.font();
132 font.setPointSize(font.pointSize()*0.8);
133 text.setFont(font);
134 marker->setLabel(text);
135 marker->setSymbol(symbol);
136 marker->attach(_mapPlot);
137
138 // Remeber minimal and maximal coordinates
139 // ---------------------------------------
140 if (_minPointLat == 0.0 && _maxPointLat == 0.0 &&
141 _minPointLon == 0.0 && _maxPointLon == 0.0) {
142 _minPointLat = latDeg;
143 _maxPointLat = latDeg;
144 _minPointLon = lonDeg;
145 _maxPointLon = lonDeg;
146 }
147 else {
148 if (_maxPointLat < latDeg) {
149 _maxPointLat = latDeg;
150 }
151 else if (_minPointLat > latDeg) {
152 _minPointLat = latDeg;
153 }
154 if (_maxPointLon < lonDeg) {
155 _maxPointLon = lonDeg;
156 }
157 else if (_minPointLon > lonDeg) {
158 _minPointLon = lonDeg;
159 }
160 }
161}
162
163// Close
164////////////////////////////////////////////////////////////////////////////
165void t_bncMap::slotClose() {
166 done(0);
167}
168
169// Close Dialog gracefully
170////////////////////////////////////////////////////////////////////////////
171void t_bncMap::closeEvent(QCloseEvent* event) {
172 QDialog::closeEvent(event);
173}
174
175//
176////////////////////////////////////////////////////////////////////////////
177void t_bncMap::showEvent(QShowEvent* event) {
178 double width = _maxPointLon - _minPointLon;
179 double height = _maxPointLat - _minPointLat;
180 if (width > 0 && height > 0) {
181 double eps = 0.1;
182 double epsLon = eps * (_maxPointLon - _minPointLon);
183 double epsLat = eps * (_maxPointLat - _minPointLat);
184 double widthExt = width + 2 * epsLon;
185 double heightExt = height + 2 * epsLat;
186 double minLon = _minPointLon - epsLon;
187 double minLat = _minPointLat - epsLat;
188 if (minLon < -180.) minLon = -180.0;
189 if (minLat < -90.) minLat = -90.0;
190 if (widthExt < 270.0 && heightExt < 135.0) {
191 QRectF rect(minLon, minLat, widthExt, heightExt);
192 _mapPlotZoomer->zoom(rect);
193 }
194 }
195 QDialog::showEvent(event);
196}
197
198// Print the widget
199////////////////////////////////////////////////////////////////////////////
200void t_bncMap::slotPrint() {
201
202 QPrinter printer;
203 QPrintDialog* dialog = new QPrintDialog(&printer, this);
204 dialog->setWindowTitle(tr("Print Map"));
205 if (dialog->exec() != QDialog::Accepted) {
206 return;
207 }
208 else {
209 QwtPlotRenderer renderer;
210 renderer.setDiscardFlag(QwtPlotRenderer::DiscardBackground, false);
211 renderer.setLayoutFlag(QwtPlotRenderer::KeepFrames, true);
212 renderer.renderTo(_mapPlot, printer);
213 }
214}
Note: See TracBrowser for help on using the repository browser.