Enroute Flight Navigation
A navigation app for VFR pilots
src
platform
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
27
namespace
Platform {
28
30
31
class
SafeInsets
:
public
SafeInsets_Abstract
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
45
public
:
50
explicit
SafeInsets
(QObject *parent =
nullptr
);
51
52
~SafeInsets
()
override
=
default
;
53
54
private
:
55
Q_DISABLE_COPY_MOVE(
SafeInsets
)
56
};
57
58
}
// namespace Platform
Platform::SafeInsets_Abstract
Safe window insets for QML.
Definition
SafeInsets_Abstract.h:35
Platform::SafeInsets_Abstract::topChanged
void topChanged()
Notifier signal.
Platform::SafeInsets_Abstract::rightChanged
void rightChanged()
Notifier signal.
Platform::SafeInsets_Abstract::wHeightChanged
void wHeightChanged()
Notifier signal.
Platform::SafeInsets_Abstract::bottomChanged
void bottomChanged()
Notifier signal.
Platform::SafeInsets_Abstract::leftChanged
void leftChanged()
Notifier signal.
Platform::SafeInsets_Abstract::wWidthChanged
void wWidthChanged()
Notifier signal.
Platform::SafeInsets
Implementation of SafeInsets for Android devices.
Definition
SafeInsets_Android.h:33
Platform::SafeInsets::SafeInsets
SafeInsets(QObject *parent=nullptr)
Standard constructor.
Generated by
1.13.2