Enroute Flight Navigation
A navigation app for VFR pilots
Navigation::Clock Class Reference

This extremely simple class give accss to time and offers a few time-related functions. More...

#include <Clock.h>

Inheritance diagram for Navigation::Clock:
GlobalObject

Signals

void dateChanged ()
 Notifier signal.
 
void timeChanged ()
 Notifier signal.
 

Public Member Functions

 Clock (QObject *parent=nullptr)
 Default constructor.
 
- Public Member Functions inherited from GlobalObject
 GlobalObject (QObject *parent=nullptr)
 Standard constructor.
 
 ~GlobalObject () override=default
 Standard deconstructor.
 

Static Public Member Functions

static QDate date ()
 Getter method for property of the same name.
 
static QString timeAsUTCString ()
 Getter method for property of the same name.
 
static QDateTime time ()
 Getter method for property of the same name.
 
static Q_INVOKABLE QString describeTimeDifference (const QDateTime &pointInTime)
 
static Q_INVOKABLE QString describeTimeDifference (const QDateTime &pointInTime, const QDateTime &currentTime)
 
static Q_INVOKABLE QString describePointInTime (const QDateTime &pointInTime, const QDateTime &now)
 
static Q_INVOKABLE QString describePointInTime (const QDateTime &pointInTime)
 
- Static Public Member Functions inherited from GlobalObject
static void clear ()
 Deletes all globally defined objects.
 
static Q_INVOKABLE bool canConstruct ()
 Indicates if the static methods are ready to be used.
 
static Q_INVOKABLE Navigation::Clockclock ()
 Pointer to appplication-wide static Navigation::Clock instance.
 
static Q_INVOKABLE DataManagement::DataManagerdataManager ()
 Pointer to appplication-wide static GeoMaps::DataManager instance.
 
static Q_INVOKABLE DemoRunnerdemoRunner ()
 Pointer to appplication-wide static DemoRunner instance.
 
static Q_INVOKABLE Traffic::FlarmnetDBflarmnetDB ()
 Pointer to appplication-wide static FlarmnetDB instance.
 
static Q_INVOKABLE Platform::FileExchange_AbstractfileExchange ()
 Pointer to appplication-wide static FileExchange instance.
 
static Q_INVOKABLE GeoMaps::GeoMapProvidergeoMapProvider ()
 Pointer to appplication-wide static GeoMaps::GeoMapProvider instance.
 
static Q_INVOKABLE GlobalSettingsglobalSettings ()
 Pointer to appplication-wide static Settings instance.
 
static Q_INVOKABLE Librarianlibrarian ()
 Pointer to appplication-wide static librarian instance.
 
static Q_INVOKABLE Platform::PlatformAdaptor_AbstractplatformAdaptor ()
 Pointer to appplication-wide static PlatformAdaptor instance.
 
static Q_INVOKABLE Sensorssensors ()
 Pointer to appplication-wide static Navigation::Clock instance.
 
static Q_INVOKABLE Navigation::Navigatornavigator ()
 Pointer to appplication-wide static Navigation::Navigator instance.
 
static Q_INVOKABLE Traffic::PasswordDBpasswordDB ()
 Pointer to appplication-wide static PasswordDB instance.
 
static Q_INVOKABLE Positioning::PositionProviderpositionProvider ()
 Pointer to appplication-wide static PositionProvider instance.
 
static Q_INVOKABLE NOTAM::NOTAMProvidernotamProvider ()
 Pointer to appplication-wide static notification manager instance.
 
static Q_INVOKABLE Notifications::NotificationManagernotificationManager ()
 Pointer to appplication-wide static notification manager instance.
 
static Q_INVOKABLE QNetworkAccessManager * networkAccessManager ()
 Pointer to appplication-wide static QNetworkAccessManager instance.
 
static Q_INVOKABLE DataManagement::SSLErrorHandlersslErrorHandler ()
 Pointer to appplication-wide static QNetworkAccessManager instance.
 
static Q_INVOKABLE Traffic::TrafficDataProvidertrafficDataProvider ()
 Pointer to appplication-wide static TrafficDataProvider instance.
 
static Q_INVOKABLE GeoMaps::WaypointLibrarywaypointLibrary ()
 Pointer to appplication-wide static WaypointLibrary instance.
 
static Q_INVOKABLE Weather::WeatherDataProviderweatherDataProvider ()
 Pointer to appplication-wide static WeatherDataProvider instance.
 

Properties

QDate date
 Current date.
 
QString timeAsUTCString
 Current time in UTC as a string.
 
QDateTime time
 Current time.
 

Additional Inherited Members

- Protected Member Functions inherited from GlobalObject
virtual void deferredInitialization ()
 Non-constructor initialization.
 

Detailed Description

This extremely simple class give accss to time and offers a few time-related functions.

There exists one static instance of this class, which can be accessed via Global. No other instance of this class should be used.

Definition at line 39 of file Clock.h.

Constructor & Destructor Documentation

◆ Clock()

Navigation::Clock::Clock ( QObject * parent = nullptr)
explicit

Default constructor.

Parameters
parentThe standard QObject parent pointer

Member Function Documentation

◆ date()

static QDate Navigation::Clock::date ( )
inlinestaticnodiscard

Getter method for property of the same name.

Returns
Property date

Definition at line 104 of file Clock.h.

◆ describePointInTime() [1/2]

static Q_INVOKABLE QString Navigation::Clock::describePointInTime ( const QDateTime & pointInTime)
static

Describe a point in time in human-readable form

This method describes a point in time in human readable form. The method returns a localized string of the form "12. Sept., 17:51", "tomorrow 17:51", "yesterday 17:51" or "17:51". The words "tomorrow" and "yesterday" refer midnight at the current position, the numbers "17:51" refer to time in UTC.

Parameters
pointInTimeThe point in time that is to be described.
Returns
String with the description

◆ describePointInTime() [2/2]

static Q_INVOKABLE QString Navigation::Clock::describePointInTime ( const QDateTime & pointInTime,
const QDateTime & now )
static

Describe a point in time in human-readable form

This method describes a point in time in human readable form. The method returns a localized string of the form "12. Sept., 17:51", "tomorrow 17:51", "yesterday 17:51" or "17:51". The words "tomorrow" and "yesterday" refer midnight at the current position, the numbers "17:51" refer to time in UTC.

Parameters
pointInTimeThe point in time that is to be described.
nowCurrent point in time.
Returns
String with the description

◆ describeTimeDifference() [1/2]

static Q_INVOKABLE QString Navigation::Clock::describeTimeDifference ( const QDateTime & pointInTime)
static

Describe time difference in human readable form

This method describes the difference between the current time and a given time in human readable form.

Parameters
pointInTimeA point in time that is compared to the current time
Returns
A localized string such as "just now" (if the pointInTime is rougly equal to the current time), "3 minutes ago" (if the pointInTime is in the past), or "in 1 hour 5 minutes" (if the pointInTime is in the future)

◆ describeTimeDifference() [2/2]

static Q_INVOKABLE QString Navigation::Clock::describeTimeDifference ( const QDateTime & pointInTime,
const QDateTime & currentTime )
static

Describe time difference in human readable form

This method describes the difference between the current time and a given time in human readable form.

Parameters
pointInTimeA point in time that is compared to the current time
currentTimeCurrent time
Returns
A localized string such as "just now" (if the pointInTime is rougly equal to the current time), "3 minutes ago" (if the pointInTime is in the past), or "in 1 hour 5 minutes" (if the pointInTime is in the future)

◆ time()

static QDateTime Navigation::Clock::time ( )
inlinestaticnodiscard

Getter method for property of the same name.

Returns
Property time

Definition at line 119 of file Clock.h.

◆ timeAsUTCString()

static QString Navigation::Clock::timeAsUTCString ( )
staticnodiscard

Getter method for property of the same name.

Returns
Property time

Property Documentation

◆ date

QDate Navigation::Clock::date
read

Current date.

This property holds the current date for the local time zone. The implementation makes some effort to ensure that the notifier signal is emitted just after midnight in the local time zone.

Definition at line 79 of file Clock.h.

◆ time

QDateTime Navigation::Clock::time
read

Current time.

This property holds the current time. The implementation makes some effort to ensure that the notifier signal is emitted just after every minute change.

Definition at line 93 of file Clock.h.

◆ timeAsUTCString

QString Navigation::Clock::timeAsUTCString
read

Current time in UTC as a string.

This property holds the current time in UTC as a string of the form "8:06" or "13:45". The implementation makes some effort to ensure that the notifier signal is emitted just after every minute change.

Definition at line 86 of file Clock.h.


The documentation for this class was generated from the following file: