2017-04-27 20:24:53 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-01-07 16:01:24 -02:00
|
|
|
#ifndef DIVE_QOBJECT_H
|
|
|
|
#define DIVE_QOBJECT_H
|
|
|
|
|
2020-12-15 15:43:06 +01:00
|
|
|
#include "core/units.h"
|
2016-01-07 16:01:24 -02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2016-01-11 06:09:27 -08:00
|
|
|
#include <QStringList>
|
2019-08-12 18:26:42 +02:00
|
|
|
#include <QVector>
|
2018-03-12 18:21:39 -07:00
|
|
|
#include <QVariant>
|
2016-01-07 16:01:24 -02:00
|
|
|
|
2019-08-13 07:28:24 +02:00
|
|
|
class DiveObjectHelper {
|
|
|
|
Q_GADGET
|
2019-08-13 22:48:18 +02:00
|
|
|
Q_PROPERTY(int number MEMBER number CONSTANT)
|
|
|
|
Q_PROPERTY(int id MEMBER id CONSTANT)
|
|
|
|
Q_PROPERTY(int rating MEMBER rating CONSTANT)
|
|
|
|
Q_PROPERTY(int visibility MEMBER visibility CONSTANT)
|
2020-12-11 17:31:04 +01:00
|
|
|
Q_PROPERTY(int wavesize MEMBER wavesize CONSTANT)
|
|
|
|
Q_PROPERTY(int current MEMBER current CONSTANT)
|
|
|
|
Q_PROPERTY(int surge MEMBER surge CONSTANT)
|
|
|
|
Q_PROPERTY(int chill MEMBER chill CONSTANT)
|
2016-01-07 16:01:24 -02:00
|
|
|
Q_PROPERTY(QString date READ date CONSTANT)
|
|
|
|
Q_PROPERTY(QString time READ time CONSTANT)
|
2019-08-13 22:48:18 +02:00
|
|
|
Q_PROPERTY(int timestamp MEMBER timestamp CONSTANT)
|
|
|
|
Q_PROPERTY(QString location MEMBER location CONSTANT)
|
|
|
|
Q_PROPERTY(QString gps MEMBER gps CONSTANT)
|
|
|
|
Q_PROPERTY(QString gps_decimal MEMBER gps_decimal CONSTANT)
|
|
|
|
Q_PROPERTY(QVariant dive_site MEMBER dive_site CONSTANT)
|
|
|
|
Q_PROPERTY(QString duration MEMBER duration CONSTANT)
|
|
|
|
Q_PROPERTY(bool noDive MEMBER noDive CONSTANT)
|
|
|
|
Q_PROPERTY(QString depth MEMBER depth CONSTANT)
|
|
|
|
Q_PROPERTY(QString divemaster MEMBER divemaster CONSTANT)
|
|
|
|
Q_PROPERTY(QString buddy MEMBER buddy CONSTANT)
|
|
|
|
Q_PROPERTY(QString airTemp MEMBER airTemp CONSTANT)
|
|
|
|
Q_PROPERTY(QString waterTemp MEMBER waterTemp CONSTANT)
|
|
|
|
Q_PROPERTY(QString notes MEMBER notes CONSTANT)
|
|
|
|
Q_PROPERTY(QString tags MEMBER tags CONSTANT)
|
|
|
|
Q_PROPERTY(QString gas MEMBER gas CONSTANT)
|
|
|
|
Q_PROPERTY(QString sac MEMBER sac CONSTANT)
|
|
|
|
Q_PROPERTY(QString weightList MEMBER weightList CONSTANT)
|
|
|
|
Q_PROPERTY(QStringList weights MEMBER weights CONSTANT)
|
|
|
|
Q_PROPERTY(bool singleWeight MEMBER singleWeight CONSTANT)
|
|
|
|
Q_PROPERTY(QString suit MEMBER suit CONSTANT)
|
2016-08-30 16:24:19 +02:00
|
|
|
Q_PROPERTY(QStringList cylinderList READ cylinderList CONSTANT)
|
2019-08-13 22:48:18 +02:00
|
|
|
Q_PROPERTY(QStringList cylinders MEMBER cylinders CONSTANT)
|
|
|
|
Q_PROPERTY(int maxcns MEMBER maxcns CONSTANT)
|
|
|
|
Q_PROPERTY(int otu MEMBER otu CONSTANT)
|
|
|
|
Q_PROPERTY(QString sumWeight MEMBER sumWeight CONSTANT)
|
|
|
|
Q_PROPERTY(QStringList getCylinder MEMBER getCylinder CONSTANT)
|
|
|
|
Q_PROPERTY(QStringList startPressure MEMBER startPressure CONSTANT)
|
|
|
|
Q_PROPERTY(QStringList endPressure MEMBER endPressure CONSTANT)
|
|
|
|
Q_PROPERTY(QStringList firstGas MEMBER firstGas CONSTANT)
|
2016-01-07 16:01:24 -02:00
|
|
|
public:
|
2019-08-13 07:28:24 +02:00
|
|
|
DiveObjectHelper(); // This is only to be used by Qt's metatype system!
|
2019-08-13 22:48:18 +02:00
|
|
|
DiveObjectHelper(const struct dive *dive);
|
|
|
|
int number;
|
|
|
|
int id;
|
|
|
|
int rating;
|
|
|
|
int visibility;
|
2020-12-11 17:31:04 +01:00
|
|
|
int wavesize;
|
|
|
|
int current;
|
|
|
|
int surge;
|
|
|
|
int chill;
|
2016-01-11 06:14:45 -08:00
|
|
|
QString date() const;
|
2019-08-13 22:48:18 +02:00
|
|
|
timestamp_t timestamp;
|
2016-01-11 06:14:45 -08:00
|
|
|
QString time() const;
|
2019-08-13 22:48:18 +02:00
|
|
|
QString location;
|
|
|
|
QString gps;
|
|
|
|
QString gps_decimal;
|
|
|
|
QVariant dive_site;
|
|
|
|
QString duration;
|
|
|
|
bool noDive;
|
|
|
|
QString depth;
|
|
|
|
QString divemaster;
|
|
|
|
QString buddy;
|
|
|
|
QString airTemp;
|
|
|
|
QString waterTemp;
|
|
|
|
QString notes;
|
|
|
|
QString tags;
|
|
|
|
QString gas;
|
|
|
|
QString sac;
|
|
|
|
QString weightList;
|
|
|
|
QStringList weights;
|
|
|
|
bool singleWeight;
|
|
|
|
QString suit;
|
2016-08-30 16:24:19 +02:00
|
|
|
QStringList cylinderList() const;
|
2019-08-13 22:48:18 +02:00
|
|
|
QStringList cylinders;
|
|
|
|
int maxcns;
|
|
|
|
int otu;
|
|
|
|
QString sumWeight;
|
|
|
|
QStringList getCylinder;
|
|
|
|
QStringList startPressure;
|
|
|
|
QStringList endPressure;
|
|
|
|
QStringList firstGas;
|
2020-05-04 08:54:58 -05:00
|
|
|
QString salinity;
|
|
|
|
QString waterType;
|
2016-01-07 16:01:24 -02:00
|
|
|
};
|
2019-08-22 19:40:42 +02:00
|
|
|
|
2016-01-11 06:09:27 -08:00
|
|
|
#endif
|