Enroute Flight Navigation
A navigation app for VFR pilots
|
Abstract base class for Downloadable_SingleFile and Downloadable_MultiFile. More...
#include <Downloadable_Abstract.h>
Public Types | |
enum | ContentType : quint8 { VAC , AviationMap , BaseMapVector , BaseMapRaster , Data , MapSet , TerrainMap } |
Type of content managed by this instance. More... | |
Signals | |
void | boundingBoxChanged () |
Notifier signal. | |
void | contentTypeChanged () |
Notifier signal. | |
void | descriptionChanged () |
Notifier signal. | |
void | downloadingChanged () |
Notifier signal. | |
void | error (QString objectName, QString message) |
Download error. | |
void | fileContentChanged () |
Indicates that the content of a local file (or several local files) has changed. | |
void | fileContentChanged_delayed () |
Emitted some time after the content of one of the local files changes. | |
void | filesChanged () |
Notifier signal. | |
void | hasFileChanged () |
Notifier signal. | |
void | infoTextChanged () |
Notifier signal. | |
void | remoteFileSizeChanged () |
Notifier signal. | |
void | sectionChanged () |
Notifier signal. | |
void | updateSizeChanged () |
Notifier signal. | |
Public Member Functions | |
Downloadable_Abstract (QObject *parent=nullptr) | |
Standard constructor. | |
QGeoRectangle | boundingBox () const |
Getter method for the property with the same name. | |
DataManagement::Downloadable_Abstract::ContentType | contentType () const |
Getter method for the property with the same name. | |
virtual auto | description () -> QString=0 |
Getter method for the property with the same name. | |
virtual auto | downloading () -> bool=0 |
Getter method for the property with the same name. | |
virtual auto | files () -> QStringList=0 |
Getter method for the property with the same name. | |
bool | hasFile () const |
Getter method for the property with the same name. | |
QBindable< bool > | bindableHasFile () const |
Getter method for the property with the same name. | |
virtual auto | infoText () -> QString=0 |
Getter method for the property with the same name. | |
virtual auto | remoteFileSize () -> qint64=0 |
Getter function for the property with the same name. | |
QString | section () const |
Getter function for the property with the same name. | |
QBindable< QString > | bindableSection () const |
Getter function for the property with the same name. | |
virtual auto | updateSize () -> Units::ByteSize=0 |
Getter function for the property with the same name. | |
virtual auto | updateSizeString () -> QString |
Getter function for the property with the same name. | |
void | setBoundingBox (const QGeoRectangle &boundingBox) |
Setter function for the property with the same name. | |
void | setContentType (DataManagement::Downloadable_Abstract::ContentType contentType) |
Setter function for the property with the same name. | |
void | setSection (const QString §ionName) |
Setter function for the property with the same name. | |
virtual Q_INVOKABLE void | deleteFiles ()=0 |
Deletes all local file(s) | |
Q_INVOKABLE void | killFileContentChanged_delayed () |
Kill pending emission of signal fileContentChanged_delayed. | |
virtual Q_INVOKABLE void | startDownload ()=0 |
Initiate download(s) | |
virtual Q_INVOKABLE void | stopDownload ()=0 |
Stops download process(es) | |
virtual Q_INVOKABLE void | update ()=0 |
Starts download(s) if updatable. | |
Properties | |
QGeoRectangle | boundingBox |
Geographic bounding box. | |
DataManagement::Downloadable_Abstract::ContentType | contentType |
Most probable content of file(s) managed by this object. | |
QString | description |
Describe installed file(s) | |
bool | downloading |
Indicates whether a download process is currently running. | |
QStringList | files |
Names of all files that have been downloaded by any of the Downloadble objects in this group (and their children) | |
bool | hasFile |
Indicates if (at least one) local file exists. | |
QString | infoText |
Short info text describing the state of the downloadable(s) | |
qint64 | remoteFileSize |
Size of the remote file. | |
QString | section |
Headline name for the Downloadable. | |
Units::ByteSize | updateSize |
Update size. | |
QString | updateSizeString |
Update size as a localized string. | |
Abstract base class for Downloadable_SingleFile and Downloadable_MultiFile.
This is an abstract base class for Downloadable_SingleFile and Downloadable_MultiFile, ensuring that the two classes share a common API.
Definition at line 43 of file Downloadable_Abstract.h.
enum DataManagement::Downloadable_Abstract::ContentType : quint8 |
Type of content managed by this instance.
Definition at line 50 of file Downloadable_Abstract.h.
|
explicit |
Standard constructor.
parent | The standard QObject parent pointer. |
|
inlinenodiscard |
Getter method for the property with the same name.
Definition at line 188 of file Downloadable_Abstract.h.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 212 of file Downloadable_Abstract.h.
|
inlinenodiscard |
Getter method for the property with the same name.
Definition at line 152 of file Downloadable_Abstract.h.
|
inlinenodiscard |
Getter method for the property with the same name.
Definition at line 158 of file Downloadable_Abstract.h.
|
nodiscardpure virtual |
Getter method for the property with the same name.
Implemented in DataManagement::Downloadable_MultiFile, and DataManagement::Downloadable_SingleFile.
|
nodiscardpure virtual |
Getter method for the property with the same name.
Implemented in DataManagement::Downloadable_MultiFile, and DataManagement::Downloadable_SingleFile.
|
signal |
Download error.
This signal is emitted if the download process fails for whatever reason. Once the signal is emitted, the download process is deleted and no further actions will take place. The local file will not be touched.
objectName | Name of this QObject, as obtained by the method objectName() |
message | A brief error message of the form "the requested resource is no longer available at the server", possibly translated. |
|
signal |
Emitted some time after the content of one of the local files changes.
This signal is in principle identical to fileContentChanged(), but is emitted with a delay of two seconds. In addition it waits until there are no running download processes anymore.
|
nodiscardpure virtual |
Getter method for the property with the same name.
Implemented in DataManagement::Downloadable_MultiFile, and DataManagement::Downloadable_SingleFile.
|
inlinenodiscard |
Getter method for the property with the same name.
Definition at line 182 of file Downloadable_Abstract.h.
|
nodiscardpure virtual |
Getter method for the property with the same name.
Implemented in DataManagement::Downloadable_MultiFile, and DataManagement::Downloadable_SingleFile.
|
nodiscardpure virtual |
Getter function for the property with the same name.
Implemented in DataManagement::Downloadable_MultiFile, and DataManagement::Downloadable_SingleFile.
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 206 of file Downloadable_Abstract.h.
void DataManagement::Downloadable_Abstract::setBoundingBox | ( | const QGeoRectangle & | boundingBox | ) |
Setter function for the property with the same name.
boundingBox | Property boundingBox |
void DataManagement::Downloadable_Abstract::setContentType | ( | DataManagement::Downloadable_Abstract::ContentType | contentType | ) |
Setter function for the property with the same name.
contentType | Property contentType |
|
inline |
Setter function for the property with the same name.
sectionName | Property section |
Definition at line 248 of file Downloadable_Abstract.h.
|
nodiscardpure virtual |
Getter function for the property with the same name.
Implemented in DataManagement::Downloadable_MultiFile, and DataManagement::Downloadable_SingleFile.
|
nodiscardvirtual |
Getter function for the property with the same name.
|
read |
Describe installed file(s)
This property contains a description of the locally installed file(s), localized and in HTML format. If no description is available, then the property contains an empty string.
Definition at line 88 of file Downloadable_Abstract.h.
|
read |
Short info text describing the state of the downloadable(s)
The text is typically one or more lines of the form
It might be translated to the local language.
Definition at line 111 of file Downloadable_Abstract.h.
|
read |
Size of the remote file.
This property holds the size of the remote files. If the sizes are not known, the property holds the number -1.
Definition at line 118 of file Downloadable_Abstract.h.
|
readwrite |
Headline name for the Downloadable.
This property is a convenience storing one string along with the Downloadable. This property holds the string stored in the downloadable, or a translated version of 'Installed' when hasFile is true.
The enroute app uses this to store the continent name for a Dowloadable that represents a geographic map. The GUI then generate section headings in the list of downloadable aviation maps.
Definition at line 130 of file Downloadable_Abstract.h.
|
read |
Update size.
If local files exist and update(s) are available, this property holds the size of the update. If no updates are available, this property holds 0.
Definition at line 138 of file Downloadable_Abstract.h.