-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrmapview.h
88 lines (67 loc) · 2.48 KB
/
trmapview.h
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
/******************************************************************
* project: OSM Traffic
*
* (C) Schmid Hubert 2024
******************************************************************/
/*
* This program 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 2
* of the License, or (at your option) any later version.
* This program 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 this program; if not, see
* <https://www.gnu.org/licenses/>.
*/
#ifndef TRMAPVIEW_H
#define TRMAPVIEW_H
#include "tr_canvas.h"
#include "tr_document.h"
#include "trnodedock.h"
#include "trlinkdock.h"
//#include <QSvgGenerator>
#include <QDockWidget>
#include <QWidget>
class TrMapView : public TrCanvas
{
Q_OBJECT
private:
uint64_t m_pos_select;
TrDocument m_doc;
TrZoomMap m_zoom_ref;
Qt::MouseButton m_move_pressed;
TrGeoObject * m_selected;
void paint(QPainter * p);
TrPoint getWorldPoint(const QPoint & pt);
TrGeoObject * selectObject(const TrPoint & pt, uint64_t & pos, uint64_t flag);
QDockWidget * m_elementDock;
TrNodeDock * m_dockNode;
TrLinkDock * m_dockLink;
protected:
void resizeEvent(QResizeEvent *);
public:
TrMapView(QWidget *parent);
TrDocument & getDocument();
void initObjects(uint64_t ctrl);
void setLoadedFlag(bool loaded);
void setElementDock(QDockWidget * dock);
void recalcExtRect();
void resetZoom();
void zoomChange(double value, const QPoint pt, int limit);
void zoomChange(bool dir);
bool notifyCoor(const QPoint pt, int mode, Qt::MouseButton button);
bool notifyPress(const QPoint pt, Qt::MouseButton button);
bool notifyMove(const QPoint pt, Qt::MouseButton button);
bool notifyRelease(const QPoint pt, Qt::MouseButton button);
bool notifyClick(const QPoint, int mode, Qt::MouseButton button);
bool notifyWheel(const QPoint, int a, int b);
bool notifyRectSelect(const QRect & r, Qt::MouseButton button);
void setSettingsData(QStringList modes, QStringList layers);
//void paintSvg(QSvgGenerator &generator);
signals:
void sendMessage(const QString, int);
};
#endif // TRMAPVIEW_H