Enroute Flight Navigation
A navigation app for VFR pilots
VAC.h
1/***************************************************************************
2 * Copyright (C) 2023-2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QGeoCoordinate>
24#include <QGeoRectangle>
25#include <QQmlEngine>
26
27using namespace Qt::Literals::StringLiterals;
28
29
30namespace GeoMaps
31{
32
44class VAC
45{
46 Q_GADGET
47 QML_VALUE_TYPE(vac)
48
49 friend QDataStream& operator<<(QDataStream& stream, const GeoMaps::VAC& vac);
50 friend QDataStream& operator>>(QDataStream& stream, GeoMaps::VAC& vac);
51
52public:
54 VAC() = default;
55
73 VAC(const QString& fName);
74
75 //
76 // Properties
77 //
78
83 Q_PROPERTY(QGeoCoordinate bottomLeft MEMBER bottomLeft)
84
89 Q_PROPERTY(QGeoCoordinate bottomRight MEMBER bottomRight)
90
95 Q_PROPERTY(QGeoRectangle boundingBox READ boundingBox)
96
102 Q_PROPERTY(QGeoCoordinate center READ center)
103
110 Q_PROPERTY(QString description READ description)
111
117 Q_PROPERTY(QString infoText READ infoText)
118
124 Q_PROPERTY(bool isValid READ isValid)
125
127 Q_PROPERTY(QString name MEMBER name)
128
133 Q_PROPERTY(QGeoCoordinate topLeft MEMBER topLeft)
134
139 Q_PROPERTY(QGeoCoordinate topRight MEMBER topRight)
140
142 Q_PROPERTY(QString fileName MEMBER fileName)
143
144
145 //
146 // Getter Methods
147 //
148
153 [[nodiscard]] QGeoRectangle boundingBox() const {return QGeoRectangle({topLeft, topRight, bottomLeft, bottomRight});}
154
155
160 [[nodiscard]] QGeoCoordinate center() const;
161
166 [[nodiscard]] QString description() const;
167
172 [[nodiscard]] QString infoText() const;
173
178 [[nodiscard]] bool isValid() const;
179
180
181
182 //
183 // Methods
184 //
185
192 [[nodiscard]] bool operator==(const VAC& other) const = default;
193
198 [[nodiscard]] static QStringList mimeTypes()
199 {
200 return {u"image/jpg"_s,
201 u"image/jpeg"_s,
202 u"image/png"_s,
203 u"image/tif"_s,
204 u"image/tiff"_s,
205 u"image/webp"_s};
206 }
207
208
209
210 //
211 // Member variable
212 //
213
215 QGeoCoordinate bottomLeft;
216
218 QGeoCoordinate bottomRight;
219
221 QString fileName;
222
224 QString name;
225
227 QGeoCoordinate topLeft;
228
230 QGeoCoordinate topRight;
231
232private:
233 // Obtain values for topLeft etc by looking at the file name
234 void getCoordsFromFileName();
235
236 // Obtain value name by looking at the file name
237 void getNameFromFileName();
238
239 // Check if all geo coordinates are valid
240 [[nodiscard]] bool hasValidCoordinates() const;
241};
242
244QDataStream& operator<<(QDataStream& stream, const GeoMaps::VAC& vac);
245
247QDataStream& operator>>(QDataStream& stream, GeoMaps::VAC& vac);
248
249} // namespace GeoMaps
250
251
Visual approach chart.
Definition VAC.h:45
bool operator==(const VAC &other) const =default
Comparison.
QGeoCoordinate bottomRight
Geographic coordinate of raster image corner.
Definition VAC.h:89
QString description
Describe installed file(s)
Definition VAC.h:110
QGeoCoordinate topRight
Geographic coordinate of raster image corner.
Definition VAC.h:139
QGeoCoordinate topLeft
Geographic coordinate of raster image corner.
Definition VAC.h:133
QGeoCoordinate center
Center coordinate.
Definition VAC.h:102
VAC()=default
Default constructor, creates an invalid VAC.
QGeoRectangle boundingBox
Bounding box.
Definition VAC.h:95
bool isValid
Validity.
Definition VAC.h:124
QString name
Name of the VAC.
Definition VAC.h:127
bool isValid() const
Getter function for property of the same name.
QGeoCoordinate bottomLeft
Geographic coordinate of raster image corner.
Definition VAC.h:83
QGeoCoordinate center() const
Getter function for property of the same name.
QString infoText() const
Getter function for property of the same name.
QString infoText
Short info text.
Definition VAC.h:117
QString description() const
Getter function for property of the same name.
QString fileName
Name of raster image file.
Definition VAC.h:142
static QStringList mimeTypes()
Mime type for files that can be opened by this class.
Definition VAC.h:198