Mobile/filtering: full text filter, instead of just dive site

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2018-10-16 07:56:41 -04:00
parent 0bc0b6bfe8
commit 8f7633eff8
4 changed files with 14 additions and 5 deletions

View file

@ -49,6 +49,7 @@ class DiveObjectHelper : public QObject {
Q_PROPERTY(QStringList startPressure READ startPressure CONSTANT)
Q_PROPERTY(QStringList endPressure READ endPressure CONSTANT)
Q_PROPERTY(QStringList firstGas READ firstGas CONSTANT)
Q_PROPERTY(QString fullText READ fullText CONSTANT)
public:
DiveObjectHelper(struct dive *dive = NULL);
~DiveObjectHelper();
@ -93,6 +94,7 @@ public:
QStringList startPressure() const;
QStringList endPressure() const;
QStringList firstGas() const;
QString fullText() const;
private:
struct dive *m_dive;