Enroute Flight Navigation
A navigation app for VFR pilots
PlatformAdaptor_iOS.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 "PlatformAdaptor_Abstract.h"
24#include "qcoreevent.h"
25#include "qevent.h"
26#include "qquickitem.h"
27
28namespace Platform {
29
30
31class ImFixer : public QObject {
32 Q_OBJECT
33protected:
34 bool eventFilter(QObject *obj, QEvent *event) override {
35 if (event->type() == QEvent::InputMethodQuery) {
36 auto* imEvt = static_cast<QInputMethodQueryEvent *>(event);
37 if (imEvt->queries() == Qt::InputMethodQuery::ImCursorRectangle) {
38 imEvt->setValue(Qt::InputMethodQuery::ImCursorRectangle, QRectF());
39 return true;
40 }
41 }
42 return QObject::eventFilter(obj, event);
43 }
44};
45
47
49{
50 Q_OBJECT
51
52public:
57 explicit PlatformAdaptor(QObject *parent = nullptr);
58
59 ~PlatformAdaptor() override = default;
60
61
62 //
63 // Methods
64 //
65
70 QString currentSSID() override;
71
73 void disableScreenSaver() override;
74
80 void setupInputMethodEventFilter(QQuickItem *item) override {
81 static thread_local ImFixer imf;
82 item->installEventFilter(&imf);
83 }
84
86 void vibrateBrief() override;
87
89 void vibrateLong() override;
90
95 QString language() override;
96
97#warning documentation
98 static Q_INVOKABLE void saveScreenshot(const QImage &, QString);
99
101 void onGUISetupCompleted() override;
102
103private:
104 Q_DISABLE_COPY_MOVE(PlatformAdaptor)
105};
106
107} // namespace Platform
Interface to platform-specific functionality.
Implementation of PlatformAdaptor for Android devices.
void setupInputMethodEventFilter(QQuickItem *item) override
Implements virtual method from PlatformAdaptor_Abstract, workaround for QTBUG-80790.
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.
QString language() override
Reimplements virtual method from PlatformAdaptor_Abstract.
void disableScreenSaver() 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.