mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
1d06c383a2
"weights" and "cylinders" are QStringList Q_PROPERTIES, and Grantlee should be able to render them, but it doesn't. To be able to print the whole list of weights and cylinders we introduce two new QString properties "weightList" and "cylinderList". The variable replacement in the previous patch deals with the conversation of the user side HTML, e.g.: USER -> INTERNAL "{{ dive.weights }} -> {{ dive.weightList }}" "{{ dive.cylinders }} -> {{ dive.cylinderList }}" Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
89 lines
2.9 KiB
C++
89 lines
2.9 KiB
C++
#ifndef DIVE_QOBJECT_H
|
|
#define DIVE_QOBJECT_H
|
|
|
|
#include "../dive.h"
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
class DiveObjectHelper : public QObject {
|
|
Q_OBJECT
|
|
Q_PROPERTY(int number READ number CONSTANT)
|
|
Q_PROPERTY(int id READ id CONSTANT)
|
|
Q_PROPERTY(int rating READ rating CONSTANT)
|
|
Q_PROPERTY(QString date READ date CONSTANT)
|
|
Q_PROPERTY(QString time READ time CONSTANT)
|
|
Q_PROPERTY(QString location READ location CONSTANT)
|
|
Q_PROPERTY(QString gps READ gps CONSTANT)
|
|
Q_PROPERTY(QString duration READ duration CONSTANT)
|
|
Q_PROPERTY(bool noDive READ noDive CONSTANT)
|
|
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)
|
|
Q_PROPERTY(QString weightList READ weightList CONSTANT)
|
|
Q_PROPERTY(QStringList weights READ weights CONSTANT)
|
|
Q_PROPERTY(bool singleWeight READ singleWeight CONSTANT)
|
|
Q_PROPERTY(QString suit READ suit CONSTANT)
|
|
Q_PROPERTY(QString cylinderList READ cylinderList CONSTANT)
|
|
Q_PROPERTY(QStringList cylinders READ cylinders CONSTANT)
|
|
Q_PROPERTY(QString trip READ trip CONSTANT)
|
|
Q_PROPERTY(QString tripMeta READ tripMeta CONSTANT)
|
|
Q_PROPERTY(QString maxcns READ maxcns CONSTANT)
|
|
Q_PROPERTY(QString otu READ otu CONSTANT)
|
|
Q_PROPERTY(QString sumWeight READ sumWeight CONSTANT)
|
|
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)
|
|
public:
|
|
DiveObjectHelper(struct dive *dive = NULL);
|
|
~DiveObjectHelper();
|
|
int number() const;
|
|
int id() const;
|
|
int rating() const;
|
|
QString date() const;
|
|
timestamp_t timestamp() const;
|
|
QString time() const;
|
|
QString location() const;
|
|
QString gps() const;
|
|
QString duration() const;
|
|
bool noDive() const;
|
|
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;
|
|
QString weightList() const;
|
|
QStringList weights() const;
|
|
QString weight(int idx) const;
|
|
bool singleWeight() const;
|
|
QString suit() const;
|
|
QString cylinderList() const;
|
|
QStringList cylinders() const;
|
|
QString cylinder(int idx) const;
|
|
QString trip() const;
|
|
QString tripMeta() const;
|
|
QString maxcns() const;
|
|
QString otu() const;
|
|
QString sumWeight() const;
|
|
QString getCylinder() const;
|
|
QString startPressure() const;
|
|
QString endPressure() const;
|
|
QString firstGas() const;
|
|
|
|
private:
|
|
struct dive *m_dive;
|
|
};
|
|
Q_DECLARE_METATYPE(DiveObjectHelper *)
|
|
|
|
#endif
|