Enroute Flight Navigation
A navigation app for VFR pilots
SafeInsets_Android.h
1/***************************************************************************
2 * Copyright (C) 2019-2023 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 <QQmlEngine>
24
25#include "platform/SafeInsets_Abstract.h"
26
27namespace Platform {
28
30
31
33{
34 Q_OBJECT
35 QML_ELEMENT
36 QML_SINGLETON
37
38 // Properties need to be repeated, or else the Qt CMake macros cannot find them.
39 Q_PROPERTY(double bottom READ bottom NOTIFY bottomChanged)
40 Q_PROPERTY(double left READ left NOTIFY leftChanged)
41 Q_PROPERTY(double right READ right NOTIFY rightChanged)
42 Q_PROPERTY(double top READ top NOTIFY topChanged)
43 Q_PROPERTY(double wHeight READ wHeight NOTIFY wHeightChanged)
44 Q_PROPERTY(double wWidth READ wWidth NOTIFY wWidthChanged)
45
46public:
51 explicit SafeInsets(QObject* parent = nullptr);
52
53 ~SafeInsets() override = default;
54
57
58private:
59 Q_DISABLE_COPY_MOVE(SafeInsets)
60};
61
62} // namespace Platform
Safe window insets for QML.
void topChanged()
Notifier signal.
void rightChanged()
Notifier signal.
void wHeightChanged()
Notifier signal.
void bottomChanged()
Notifier signal.
void leftChanged()
Notifier signal.
void wWidthChanged()
Notifier signal.
void updateSafeInsets()
Checks and updated properties.
SafeInsets(QObject *parent=nullptr)
Standard constructor.