Enroute Flight Navigation
A navigation app for VFR pilots
Clock.h
1/***************************************************************************
2 * Copyright (C) 2020-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 <QDateTime>
24#include <QGeoCoordinate>
25#include <QObject>
26#include <QQmlEngine>
27
28#include "GlobalObject.h"
29
30
31namespace Navigation {
32
38
39class Clock : public GlobalObject {
40 Q_OBJECT
41 QML_ELEMENT
42 QML_SINGLETON
43
44public:
45
46
47 //
48 // Constructors and destructors
49 //
50
55 explicit Clock(QObject *parent = nullptr);
56
57 // Standard destructor
58 ~Clock() override = default;
59
60 // No default constructor, important for QML singleton
61 explicit Clock() = delete;
62
63 // factory function for QML singleton
64 static Navigation::Clock *create(QQmlEngine * /*unused*/, QJSEngine * /*unused*/)
65 {
66 return GlobalObject::clock();
67 }
68
69
70 //
71 // PROPERTIES
72 //
73
79 Q_PROPERTY(QDate date READ date NOTIFY dateChanged)
80
81
86 Q_PROPERTY(QString timeAsUTCString READ timeAsUTCString NOTIFY timeChanged)
87
93 Q_PROPERTY(QDateTime time READ time NOTIFY timeChanged)
94
95
96 //
97 // Getter Methods
98 //
99
104 [[nodiscard]] static QDate date()
105 {
106 return QDateTime::currentDateTime().date();
107 }
108
113 [[nodiscard]] static QString timeAsUTCString();
114
119 [[nodiscard]] static QDateTime time()
120 {
121 return QDateTime::currentDateTime();
122 }
123
124
125 //
126 // Getter Methods
127 //
128
137 Q_INVOKABLE static QString describeTimeDifference(const QDateTime& pointInTime);
138
149 Q_INVOKABLE static QString describeTimeDifference(const QDateTime& pointInTime, const QDateTime& currentTime);
150
163 Q_INVOKABLE static QString describePointInTime(const QDateTime& pointInTime, const QDateTime& now);
164
175 Q_INVOKABLE static QString describePointInTime(const QDateTime& pointInTime);
176
177signals:
180
183
184private:
185 // Sets a single shot timer to emit timeChanged just after the full minute
186 void setSingleShotTimer();
187};
188
189} // namespace Navigation
GlobalObject(QObject *parent=nullptr)
Standard constructor.
static Q_INVOKABLE Navigation::Clock * clock()
Pointer to appplication-wide static Navigation::Clock instance.
This extremely simple class give accss to time and offers a few time-related functions.
Definition Clock.h:39
static Q_INVOKABLE QString describePointInTime(const QDateTime &pointInTime, const QDateTime &now)
static Q_INVOKABLE QString describeTimeDifference(const QDateTime &pointInTime)
static Q_INVOKABLE QString describeTimeDifference(const QDateTime &pointInTime, const QDateTime &currentTime)
void timeChanged()
Notifier signal.
Clock(QObject *parent=nullptr)
Default constructor.
QDate date
Current date.
Definition Clock.h:79
QDateTime time
Current time.
Definition Clock.h:93
void dateChanged()
Notifier signal.
static Q_INVOKABLE QString describePointInTime(const QDateTime &pointInTime)
QString timeAsUTCString
Current time in UTC as a string.
Definition Clock.h:86
static QString timeAsUTCString()
Getter method for property of the same name.
static QDateTime time()
Getter method for property of the same name.
Definition Clock.h:119