-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathmainwindow.cpp
133 lines (109 loc) · 4.66 KB
/
mainwindow.cpp
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
/***************************************************************************
* QGeoView is a Qt / C ++ widget for visualizing geographic data.
* Copyright (C) 2018-2024 Andrey Yaroshenko.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 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 Lesser General Public License
* along with this program; if not, see https://www.gnu.org/licenses.
****************************************************************************/
#include "mainwindow.h"
#include <QCheckBox>
#include <QTimer>
#include <QVBoxLayout>
#include <helpers.h>
#include <rectangle.h>
#include <QGeoView/QGVLayerOSM.h>
#include <QGeoView/QGVWidgetCompass.h>
#include <QGeoView/QGVWidgetScale.h>
#include <QGeoView/QGVWidgetZoom.h>
MainWindow::MainWindow()
{
setWindowTitle("QGeoView Samples - flags");
setCentralWidget(new QWidget());
centralWidget()->setLayout(new QVBoxLayout());
Helpers::setupCachedNetworkAccessManager(this);
mMap = new QGVMap(this);
centralWidget()->layout()->addWidget(mMap);
// Widgets
mMap->addWidget(new QGVWidgetCompass());
mMap->addWidget(new QGVWidgetZoom());
mMap->addWidget(new QGVWidgetScale());
// Background layer
auto osmLayer = new QGVLayerOSM();
mMap->addItem(osmLayer);
// Custom layer
mItemsLayer = new QGVLayer();
mMap->addItem(mItemsLayer);
// Add items to custom layer
for (int i = 0; i < 10; i++) {
const int size = 50;
auto item = new Rectangle(Helpers::randRect(mMap, targetArea(), size), Qt::red);
mItemsLayer->addItem(item);
}
// Options list
centralWidget()->layout()->addWidget(createOptionsList());
// Show target area
QTimer::singleShot(100, this, [this]() { mMap->cameraTo(QGVCameraActions(mMap).scaleTo(targetArea())); });
}
MainWindow::~MainWindow()
{
}
QGV::GeoRect MainWindow::targetArea() const
{
return QGV::GeoRect(QGV::GeoPos(51.848624, 14.7), QGV::GeoPos(51.743758, 14.9));
}
QGroupBox* MainWindow::createOptionsList()
{
const QList<QPair<QString, std::function<void(bool)>>> actions = {
{ "Item will ignore map zoom/scale", [this](bool enabled) { applyFlag(enabled, QGV::ItemFlag::IgnoreScale); } },
{ "Item will ignore map rotation/azimuth",
[this](bool enabled) { applyFlag(enabled, QGV::ItemFlag::IgnoreAzimuth); } },
{ "Item is highlight-able (mouse hover)",
[this](bool enabled) { applyFlag(enabled, QGV::ItemFlag::Highlightable); } },
{ "Item is highlight-able with custom indication",
[this](bool enabled) { applyFlag(enabled, QGV::ItemFlag::HighlightCustom); } },
{ "Item is selectable (single LButton or Shift/Ctrl + RButton hold + move)",
[this](bool enabled) { applySelectable(enabled); } },
{ "Item is selectable with custom indication",
[this](bool enabled) { applyFlag(enabled, QGV::ItemFlag::SelectCustom); } },
{ "Item is movable (Alt + LButton hold + move)",
[this](bool enabled) { applyFlag(enabled, QGV::ItemFlag::Movable); } },
{ "Item is click-able by mouse (single LButton, double LButton)",
[this](bool enabled) { applyFlag(enabled, QGV::ItemFlag::Clickable); } },
{ "Enable custom transform", [this](bool enabled) { applyFlag(enabled, QGV::ItemFlag::Transformed); } },
};
QGroupBox* groupBox = new QGroupBox(tr("Item flags and options"));
groupBox->setLayout(new QVBoxLayout);
for (auto action : actions) {
auto name = action.first;
auto actionFunc = action.second;
QCheckBox* checkButton = new QCheckBox(name);
connect(checkButton, &QCheckBox::toggled, this, actionFunc);
groupBox->layout()->addWidget(checkButton);
checkButton->setChecked(true);
}
return groupBox;
}
void MainWindow::applyFlag(bool enabled, QGV::ItemFlag value)
{
for (int i = 0; i < mItemsLayer->countItems(); i++) {
QGVDrawItem* item = dynamic_cast<QGVDrawItem*>(mItemsLayer->getItem(i));
item->setFlag(value, enabled);
}
}
void MainWindow::applySelectable(bool enabled)
{
for (int i = 0; i < mItemsLayer->countItems(); i++) {
QGVDrawItem* item = dynamic_cast<QGVDrawItem*>(mItemsLayer->getItem(i));
item->setSelectable(enabled);
}
}