Enroute Flight Navigation
A navigation app for VFR pilots
PlatformAdaptor_Abstract.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 <QGeoCoordinate>
24#include <QQmlEngine>
25#include <QQuickItem>
26
27#include "GlobalObject.h"
28
29
30namespace Platform {
31
51
53{
54 Q_OBJECT
55 QML_NAMED_ELEMENT(PlatformAdaptor)
56 QML_SINGLETON
57
58public:
63 explicit PlatformAdaptor_Abstract(QObject* parent = nullptr);
64
65 // No default constructor, important for QML singleton
66 explicit PlatformAdaptor_Abstract() = delete;
67
68 ~PlatformAdaptor_Abstract() override = default;
69
70 // factory function for QML singleton
71 static Platform::PlatformAdaptor_Abstract* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
72 {
74 }
75
76
77 //
78 // Methods
79 //
80
85 Q_INVOKABLE static QString clipboardText();
86
93 Q_INVOKABLE virtual QString currentSSID() { return {}; }
94
102 Q_INVOKABLE virtual void disableScreenSaver() {}
103
116 Q_INVOKABLE virtual void lockWifi(bool lock) { Q_UNUSED(lock) }
117
127 Q_INVOKABLE virtual void openSatView(const QGeoCoordinate& coordinate);
128
142 Q_INVOKABLE virtual void setupInputMethodEventFilter(QQuickItem* item) { Q_UNUSED(item) }
143
148 Q_INVOKABLE virtual QString systemInfo();
149
155 Q_INVOKABLE virtual void vibrateBrief() {}
156
163 Q_INVOKABLE virtual void vibrateLong() {}
164
170 Q_INVOKABLE virtual QString language();
171
180 Q_INVOKABLE static void saveScreenshot(const QImage& image, const QString& path);
181
182public slots:
191 virtual void onGUISetupCompleted() {}
192
193
194signals:
202 void error(const QString& message);
203
210
216
217private:
218 Q_DISABLE_COPY_MOVE(PlatformAdaptor_Abstract)
219
220};
221
222} // namespace Platform
GlobalObject(QObject *parent=nullptr)
Standard constructor.
static Q_INVOKABLE Platform::PlatformAdaptor_Abstract * platformAdaptor()
Pointer to appplication-wide static PlatformAdaptor instance.
Interface to platform-specific functionality.
virtual Q_INVOKABLE void vibrateBrief()
Make the device briefly vibrate.
static Q_INVOKABLE void saveScreenshot(const QImage &image, const QString &path)
Save image as a raster graphic file in path.
virtual void onGUISetupCompleted()
Signal handler: GUI setup completed.
virtual Q_INVOKABLE void disableScreenSaver()
Disable the screen saver.
void wifiConnected()
Emitted when a new WiFi connections becomes available.
void error(const QString &message)
Emitted when an error occurs.
virtual Q_INVOKABLE void setupInputMethodEventFilter(QQuickItem *item)
Workaround for QTBUG-80790.
virtual Q_INVOKABLE void vibrateLong()
Make the device vibrate for a longer period.
virtual Q_INVOKABLE QString language()
Language code that is to be used in the GUI.
PlatformAdaptor_Abstract(QObject *parent=nullptr)
Standard constructor.
virtual Q_INVOKABLE QString systemInfo()
Information about the system, in HTML format.
virtual Q_INVOKABLE QString currentSSID()
SSID of current Wi-Fi network.
static Q_INVOKABLE QString clipboardText()
Content of ClipBoard.
virtual Q_INVOKABLE void lockWifi(bool lock)
Lock connection to Wi-Fi network.
virtual Q_INVOKABLE void openSatView(const QGeoCoordinate &coordinate)
Open an external app or web site showing a satellite view.
void languageChanged()
Emitted when the OS requests a language change.
Implementation of PlatformAdaptor for Android devices.