Enroute Flight Navigation
A navigation app for VFR pilots
SafeInsets_Abstract.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 <QObject>
24
25namespace Platform {
26
33
34class SafeInsets_Abstract : public QObject
35{
36 Q_OBJECT
37
38public:
43 explicit SafeInsets_Abstract(QObject *parent = nullptr);
44
45 ~SafeInsets_Abstract() override = default;
46
47
48 //
49 // Properties
50 //
51
53 Q_PROPERTY(double bottom READ bottom NOTIFY bottomChanged)
54
55
56 Q_PROPERTY(double left READ left NOTIFY leftChanged)
57
59 Q_PROPERTY(double right READ right NOTIFY rightChanged)
60
62 Q_PROPERTY(double top READ top NOTIFY topChanged)
63
76 Q_PROPERTY(double wHeight READ wHeight NOTIFY wHeightChanged)
77
82 Q_PROPERTY(double wWidth READ wWidth NOTIFY wWidthChanged)
83
84
85 //
86 // Getter Methods
87 //
88
93 [[nodiscard]] double bottom() const { return m_bottom; }
94
99 [[nodiscard]] double left() const { return m_left; }
100
105 [[nodiscard]] double right() const { return m_right; }
106
111 [[nodiscard]] double top() const { return m_top; }
112
117 [[nodiscard]] double wHeight() const { return m_wHeight; }
118
123 [[nodiscard]] double wWidth() const { return m_wWidth; }
124
125signals:
128
131
134
137
140
143
144protected:
145 // Member variables
146 double m_bottom {0.0};
147 double m_left {0.0};
148 double m_right {0.0};
149 double m_top {0.0};
150 double m_wHeight {qQNaN()};
151 double m_wWidth {qQNaN()};
152
153private:
154 Q_DISABLE_COPY_MOVE(SafeInsets_Abstract)
155
156};
157
158} // namespace Platform
double right
Safe inset at right of screen, so as to avoid system status bars and display cutouts.
void topChanged()
Notifier signal.
double top
Safe inset at top of screen, so as to avoid system status bars and display cutouts.
void rightChanged()
Notifier signal.
double wWidth() const
Getter function for the property with the same name.
double wWidth
Width of window, for Android systems.
void wHeightChanged()
Notifier signal.
double left() const
Getter function for the property with the same name.
double left
Safe inset at left of screen, so as to avoid system status bars and display cutouts.
double wHeight() const
Getter function for the property with the same name.
void bottomChanged()
Notifier signal.
double wHeight
Height of window, for Android systems.
double top() const
Getter function for the property with the same name.
SafeInsets_Abstract(QObject *parent=nullptr)
Standard constructor.
double bottom
Safe inset at bottom of screen, so as to avoid system status bars and display cutouts.
double right() const
Getter function for the property with the same name.
void leftChanged()
Notifier signal.
void wWidthChanged()
Notifier signal.