diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-02-08 12:06:57 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-02-08 10:29:36 -0800 |
commit | 1a85b0e941b57f4f3c3406a42be78d4d6642d17a (patch) | |
tree | 983d895fa634113ed4290f6c5d92306116a0aae7 /packaging/ios | |
parent | 48ccd114fcb5e1ca0a692c096143c2f24d8254d3 (diff) | |
download | subsurface-1a85b0e941b57f4f3c3406a42be78d4d6642d17a.tar.gz |
mobile/summary: create DiveSummaryModel
Instead of passing the dive summary via a completely unstructured
QStringList to QML, implement a dynamic model. For potential reuse
on desktop (though somewhat unlikely) the model has two interfaces,
one for QtWidgets and one for QML. The former is based on columns,
whereas the later is based on roles. The number of columns is
set dynamically. The roles currently support access to two columns.
If more columns should be accessed from QML, more roles have to
be added manually.
This commit only creates the model and hooks it into QMLs global
context, but does not yet change the QML page.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios')
-rw-r--r-- | packaging/ios/Subsurface-mobile.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packaging/ios/Subsurface-mobile.pro b/packaging/ios/Subsurface-mobile.pro index 15ae8ff88..5c2c9a84a 100644 --- a/packaging/ios/Subsurface-mobile.pro +++ b/packaging/ios/Subsurface-mobile.pro @@ -115,6 +115,7 @@ SOURCES += ../../subsurface-mobile-main.cpp \ ../../mobile-widgets/qmlmanager.cpp \ ../../mobile-widgets/themeinterface.cpp \ ../../qt-models/divelistmodel.cpp \ + ../../qt-models/divesummarymodel.cpp \ ../../qt-models/diveplotdatamodel.cpp \ ../../qt-models/gpslistmodel.cpp \ ../../qt-models/completionmodels.cpp \ @@ -251,6 +252,7 @@ HEADERS += \ ../../mobile-widgets/themeinterface.h \ ../../map-widget/qmlmapwidgethelper.h \ ../../qt-models/divelistmodel.h \ + ../../qt-models/divesummarymodel.h \ ../../qt-models/diveplotdatamodel.h \ ../../qt-models/gpslistmodel.h \ ../../qt-models/divelocationmodel.h \ |