Enroute Flight Navigation
A navigation app for VFR pilots
SSLErrorHandler.h
1/***************************************************************************
2 * Copyright (C) 2019-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 <QNetworkReply>
24#include <QQmlEngine>
25#include <QSslError>
26
27#include "GlobalObject.h"
28
29namespace DataManagement
30{
31
38
40{
41 Q_OBJECT
42 QML_ELEMENT
43 QML_SINGLETON
44
45public:
50 explicit SSLErrorHandler(QObject *parent = nullptr);
51
52 // No default constructor, important for QML singleton
53 explicit SSLErrorHandler() = delete;
54
55 // factory function for QML singleton
56 static DataManagement::SSLErrorHandler* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
57 {
59 }
60
61 // standard destructor
62 ~SSLErrorHandler() override = default;
63
64signals:
66 void sslError(QString description);
67
68 private slots:
69 // This is the actual error handler.
70 void onSSLError(QNetworkReply *reply, const QList<QSslError> &errors);
71
72 private:
73 Q_DISABLE_COPY_MOVE(SSLErrorHandler)
74
75 // Re-implemented from base class. See documentation there.
76 void deferredInitialization() override;
77 };
78
79} // namespace DataManagement
void sslError(QString description)
Notification signal for the property with the same name.
SSLErrorHandler(QObject *parent=nullptr)
Standard constructor.
static Q_INVOKABLE DataManagement::SSLErrorHandler * sslErrorHandler()
Pointer to appplication-wide static QNetworkAccessManager instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.