53 explicit NOTAMProvider(QObject* parent =
nullptr);
59 explicit NOTAMProvider() =
delete;
65 static NOTAMProvider* create(QQmlEngine* , QJSEngine* )
112 Q_REQUIRED_RESULT QByteArray
geoJSON()
const {
return m_geoJSON.value();}
124 Q_REQUIRED_RESULT QDateTime
lastUpdate()
const {
return {m_lastUpdate};}
136 Q_REQUIRED_RESULT QString
status()
const {
return {m_status};}
175 Q_REQUIRED_RESULT Q_INVOKABLE
bool isRead(
const QString& number)
const {
return m_readNotamNumbers.contains(number); }
183 Q_INVOKABLE
void setRead(
const QString& number,
bool read);
189 Q_DISABLE_COPY_MOVE(NOTAMProvider)
197 Q_REQUIRED_RESULT
static QList<NOTAMList> cleaned(
const QList<NOTAMList>& notamLists,
const QSet<QString>& cancelledNotams = {});
205 void downloadFinished();
216 Q_REQUIRED_RESULT
bool hasDataForPosition(
const QGeoCoordinate& position,
bool includeDataThatNeedsUpdate,
bool includeRunningDownloads)
const;
222 QPropertyNotifier m_saveNotifier;
228 void startRequest(
const QGeoCoordinate& coordinate);
241 QList<QString> m_readNotamNumbers;
244 QList<QPointer<QNetworkReply>> m_networkReplies;
247 QProperty<QList<NOTAMList>> m_notamLists;
255 QProperty<QList<QGeoCoordinate>> m_controlPoints4FlightRoute;
256 Q_REQUIRED_RESULT
static QList<QGeoCoordinate> computeControlPoints4FlightRoute();
259 QProperty<QByteArray> m_geoJSON;
260 Q_REQUIRED_RESULT QByteArray computeGeoJSON()
const;
263 QProperty<QDateTime> m_lastUpdate;
264 Q_REQUIRED_RESULT QDateTime computeLastUpdate()
const;
267 QProperty<QString> m_status;
268 Q_REQUIRED_RESULT QString computeStatus()
const;
271 QString m_stdFileName { QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)+u
"/notam.dat"_s };