Enroute Flight Navigation
A navigation app for VFR pilots
PlatformAdaptor_Linux.h
1/***************************************************************************
2 * Copyright (C) 2019-2025 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 <QDBusInterface>
24
25#include "PlatformAdaptor_Abstract.h"
26
27namespace Platform {
28
30
32{
33 Q_OBJECT
34 QML_ELEMENT
35 QML_SINGLETON
36
37public:
42 explicit PlatformAdaptor(QObject* parent = nullptr);
43
44 // No default constructor, important for QML singleton
45 explicit PlatformAdaptor() = delete;
46
47 // factory function for QML singleton
48 static Platform::PlatformAdaptor* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
49 {
51 }
52
53 ~PlatformAdaptor() override;
54
55
56 //
57 // Methods
58 //
59
64 QString currentSSID() override;
65
67 void disableScreenSaver() override;
68
73 void lockWifi(bool lock) override;
74
76 void vibrateBrief() override;
77
79 void vibrateLong() override;
80
82 void onGUISetupCompleted() override;
83
84private slots:
85 // This slot is called when the networkManagerInterface signals that the
86 // network state has changed. It emits the signal wifiConnected as appropriate.
87 void onNetworkStateChanged(uint);
88
89private:
90 Q_DISABLE_COPY_MOVE(PlatformAdaptor)
91
92 // QDBusInterface to org.freedesktop.Notifications
93 // This implementation of notifications uses the specification found here:
94 // https://people.freedesktop.org/~lkundrak/nm-docs/spec.html
95 //
96 // Help with DBus programming is found here:
97 // https://develop.kde.org/docs/d-bus/accessing_dbus_interfaces/
98 QDBusInterface networkManagerInterface {QStringLiteral("org.freedesktop.NetworkManager"), QStringLiteral("/org/freedesktop/NetworkManager"), QStringLiteral("org.freedesktop.NetworkManager"), QDBusConnection::systemBus()};
99
100 // Used to watch serial ports
101 struct udev *udev_ = nullptr;
102 struct udev_monitor *mon_ = nullptr;
103 QSocketNotifier *notifier_ = nullptr;
104};
105
106} // namespace Platform
static Q_INVOKABLE Platform::PlatformAdaptor * platformAdaptor()
Pointer to appplication-wide static PlatformAdaptor instance.
Interface to platform-specific functionality.
Implementation of PlatformAdaptor for Android devices.
void onGUISetupCompleted() override
Implements pure virtual method from PlatformAdaptor_Abstract.
void vibrateLong() override
Implements pure virtual method from PlatformAdaptor_Abstract.
PlatformAdaptor(QObject *parent=nullptr)
Standard constructor.
void disableScreenSaver() override
Implements pure virtual method from PlatformAdaptor_Abstract.
void lockWifi(bool lock) override
Implements pure virtual method from PlatformAdaptor_Abstract.
QString currentSSID() override
Implements pure virtual method from PlatformAdaptor_Abstract.
void vibrateBrief() override
Implements pure virtual method from PlatformAdaptor_Abstract.