Enroute Flight Navigation
A navigation app for VFR pilots
SafeInsets_Desktop.h
1/***************************************************************************
2 * Copyright (C) 2019-2022 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 "SafeInsets_Abstract.h"
26
27namespace Platform {
28
30
32{
33 Q_OBJECT
34 QML_ELEMENT
35 QML_SINGLETON
36
37 // Properties need to be repeated, or else the Qt CMake macros cannot find them.
38 Q_PROPERTY(double bottom READ bottom NOTIFY bottomChanged)
39 Q_PROPERTY(double left READ left NOTIFY leftChanged)
40 Q_PROPERTY(double right READ right NOTIFY rightChanged)
41 Q_PROPERTY(double top READ top NOTIFY topChanged)
42 Q_PROPERTY(double wHeight READ wHeight NOTIFY wHeightChanged)
43 Q_PROPERTY(double wWidth READ wWidth NOTIFY wWidthChanged)
44
45public:
50 explicit SafeInsets(QObject *parent = nullptr);
51
52 ~SafeInsets() override = default;
53
54private:
55 Q_DISABLE_COPY_MOVE(SafeInsets)
56};
57
58} // 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.
Implementation of SafeInsets for Android devices.
SafeInsets(QObject *parent=nullptr)
Standard constructor.