summaryrefslogtreecommitdiffstats
path: root/qt-models/divelocationmodel.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@gmail.com>2015-05-29 22:22:24 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-29 20:59:11 -0700
commitac6a7ab24e087cc150a7eff0ff6e7e4f8c52ce9a (patch)
tree4aa3130a235a11f5fb6b39c1f791e643ae524a18 /qt-models/divelocationmodel.h
parentd6e61b74fc140ca5a6cb1de3c6b6435b3701aa5b (diff)
downloadsubsurface-ac6a7ab24e087cc150a7eff0ff6e7e4f8c52ce9a.tar.gz
Update DiveLocationModel when thread finishes
This patch updates the DiveLocationModel when the GeoLoockupInformationThread finishes, and also selects the correct index for the displayed dive. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divelocationmodel.h')
-rw-r--r--qt-models/divelocationmodel.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/qt-models/divelocationmodel.h b/qt-models/divelocationmodel.h
index 1bf7cedfd..ee5f3c362 100644
--- a/qt-models/divelocationmodel.h
+++ b/qt-models/divelocationmodel.h
@@ -6,11 +6,13 @@
class LocationInformationModel : public QAbstractListModel {
Q_OBJECT
public:
- LocationInformationModel(QObject *obj = 0);
+ static LocationInformationModel *instance();
int rowCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index = QModelIndex(), int role = Qt::DisplayRole) const;
+public slots:
void update();
private:
+ LocationInformationModel(QObject *obj = 0);
int internalRowCount;
};