2017-04-27 18:24:53 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-01-07 18:01:24 +00:00
|
|
|
#ifndef DIVE_QOBJECT_H
|
|
|
|
#define DIVE_QOBJECT_H
|
|
|
|
|
2016-07-31 21:27:07 +00:00
|
|
|
#include "CylinderObjectHelper.h"
|
2016-01-07 18:01:24 +00:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2016-01-11 14:09:27 +00:00
|
|
|
#include <QStringList>
|
2018-03-13 01:21:39 +00:00
|
|
|
#include <QVariant>
|
2016-01-07 18:01:24 +00:00
|
|
|
|
|
|
|
class DiveObjectHelper : public QObject {
|
2016-01-11 14:14:45 +00:00
|
|
|
Q_OBJECT
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(int number READ number CONSTANT)
|
|
|
|
Q_PROPERTY(int id READ id CONSTANT)
|
|
|
|
Q_PROPERTY(int rating READ rating CONSTANT)
|
2016-07-16 08:59:05 +00:00
|
|
|
Q_PROPERTY(int visibility READ visibility CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(QString date READ date CONSTANT)
|
|
|
|
Q_PROPERTY(QString time READ time CONSTANT)
|
2016-04-14 12:38:11 +00:00
|
|
|
Q_PROPERTY(int timestamp READ timestamp CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(QString location READ location CONSTANT)
|
|
|
|
Q_PROPERTY(QString gps READ gps CONSTANT)
|
2017-03-21 16:52:29 +00:00
|
|
|
Q_PROPERTY(QString gps_decimal READ gps_decimal CONSTANT)
|
2018-03-08 19:18:31 +00:00
|
|
|
Q_PROPERTY(QVariant dive_site_uuid READ dive_site_uuid CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(QString duration READ duration CONSTANT)
|
2016-02-15 00:26:37 +00:00
|
|
|
Q_PROPERTY(bool noDive READ noDive CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(QString depth READ depth CONSTANT)
|
|
|
|
Q_PROPERTY(QString divemaster READ divemaster CONSTANT)
|
|
|
|
Q_PROPERTY(QString buddy READ buddy CONSTANT)
|
|
|
|
Q_PROPERTY(QString airTemp READ airTemp CONSTANT)
|
|
|
|
Q_PROPERTY(QString waterTemp READ waterTemp CONSTANT)
|
|
|
|
Q_PROPERTY(QString notes READ notes CONSTANT)
|
|
|
|
Q_PROPERTY(QString tags READ tags CONSTANT)
|
|
|
|
Q_PROPERTY(QString gas READ gas CONSTANT)
|
|
|
|
Q_PROPERTY(QString sac READ sac CONSTANT)
|
2016-02-29 14:42:07 +00:00
|
|
|
Q_PROPERTY(QString weightList READ weightList CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(QStringList weights READ weights CONSTANT)
|
2016-02-06 06:53:12 +00:00
|
|
|
Q_PROPERTY(bool singleWeight READ singleWeight CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(QString suit READ suit CONSTANT)
|
2016-08-30 14:24:19 +00:00
|
|
|
Q_PROPERTY(QStringList cylinderList READ cylinderList CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(QStringList cylinders READ cylinders CONSTANT)
|
2016-07-31 21:27:07 +00:00
|
|
|
Q_PROPERTY(QList<CylinderObjectHelper*> cylinderObjects READ cylinderObjects CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
Q_PROPERTY(QString trip READ trip CONSTANT)
|
2016-01-27 04:06:30 +00:00
|
|
|
Q_PROPERTY(QString tripMeta READ tripMeta CONSTANT)
|
2018-04-15 00:34:33 +00:00
|
|
|
Q_PROPERTY(int tripNrDives READ tripNrDives CONSTANT)
|
2016-07-18 22:08:27 +00:00
|
|
|
Q_PROPERTY(int maxcns READ maxcns CONSTANT)
|
|
|
|
Q_PROPERTY(int otu READ otu CONSTANT)
|
2016-01-27 17:34:34 +00:00
|
|
|
Q_PROPERTY(QString sumWeight READ sumWeight CONSTANT)
|
2016-02-15 00:26:37 +00:00
|
|
|
Q_PROPERTY(QString getCylinder READ getCylinder CONSTANT)
|
|
|
|
Q_PROPERTY(QString startPressure READ startPressure CONSTANT)
|
|
|
|
Q_PROPERTY(QString endPressure READ endPressure CONSTANT)
|
|
|
|
Q_PROPERTY(QString firstGas READ firstGas CONSTANT)
|
2016-01-07 18:01:24 +00:00
|
|
|
public:
|
2016-01-11 14:14:45 +00:00
|
|
|
DiveObjectHelper(struct dive *dive = NULL);
|
|
|
|
~DiveObjectHelper();
|
|
|
|
int number() const;
|
|
|
|
int id() const;
|
|
|
|
int rating() const;
|
2016-07-16 08:59:05 +00:00
|
|
|
int visibility() const;
|
2016-01-11 14:14:45 +00:00
|
|
|
QString date() const;
|
|
|
|
timestamp_t timestamp() const;
|
|
|
|
QString time() const;
|
|
|
|
QString location() const;
|
|
|
|
QString gps() const;
|
2017-03-21 16:52:29 +00:00
|
|
|
QString gps_decimal() const;
|
2018-03-08 19:18:31 +00:00
|
|
|
QVariant dive_site_uuid() const;
|
2016-01-11 14:14:45 +00:00
|
|
|
QString duration() const;
|
2016-02-15 00:26:37 +00:00
|
|
|
bool noDive() const;
|
2016-01-11 14:14:45 +00:00
|
|
|
QString depth() const;
|
|
|
|
QString divemaster() const;
|
|
|
|
QString buddy() const;
|
|
|
|
QString airTemp() const;
|
|
|
|
QString waterTemp() const;
|
|
|
|
QString notes() const;
|
|
|
|
QString tags() const;
|
|
|
|
QString gas() const;
|
|
|
|
QString sac() const;
|
2016-02-29 14:42:07 +00:00
|
|
|
QString weightList() const;
|
2016-01-11 14:14:45 +00:00
|
|
|
QStringList weights() const;
|
|
|
|
QString weight(int idx) const;
|
2016-02-06 06:53:12 +00:00
|
|
|
bool singleWeight() const;
|
2016-01-11 14:14:45 +00:00
|
|
|
QString suit() const;
|
2016-08-30 14:24:19 +00:00
|
|
|
QStringList cylinderList() const;
|
2016-01-11 14:14:45 +00:00
|
|
|
QStringList cylinders() const;
|
|
|
|
QString cylinder(int idx) const;
|
2016-07-31 21:27:07 +00:00
|
|
|
QList<CylinderObjectHelper*> cylinderObjects() const;
|
2016-01-11 14:14:45 +00:00
|
|
|
QString trip() const;
|
2016-01-27 04:06:30 +00:00
|
|
|
QString tripMeta() const;
|
2018-04-15 00:34:33 +00:00
|
|
|
int tripNrDives() const;
|
2016-07-18 22:08:27 +00:00
|
|
|
int maxcns() const;
|
|
|
|
int otu() const;
|
2016-01-27 17:34:34 +00:00
|
|
|
QString sumWeight() const;
|
|
|
|
QString getCylinder() const;
|
2016-02-09 16:19:06 +00:00
|
|
|
QString startPressure() const;
|
|
|
|
QString endPressure() const;
|
2016-02-13 17:34:29 +00:00
|
|
|
QString firstGas() const;
|
2016-01-07 18:01:24 +00:00
|
|
|
|
2016-01-11 14:14:45 +00:00
|
|
|
private:
|
|
|
|
struct dive *m_dive;
|
2016-07-31 21:27:07 +00:00
|
|
|
QList<CylinderObjectHelper*> m_cyls;
|
2016-01-07 18:01:24 +00:00
|
|
|
};
|
2016-01-11 14:14:45 +00:00
|
|
|
Q_DECLARE_METATYPE(DiveObjectHelper *)
|
2016-01-07 18:01:24 +00:00
|
|
|
|
2016-01-11 14:09:27 +00:00
|
|
|
#endif
|