diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-05-27 08:17:06 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-09-29 16:13:03 -0700 |
commit | 536fc05dd6acd67a459fe6decbd67071ad388df0 (patch) | |
tree | a745af6ee13e97cb9a2336abddd11ae04aec25f8 /packaging/ios | |
parent | 937fdb500b94244b2da0d72776d939e78a56fa33 (diff) | |
download | subsurface-536fc05dd6acd67a459fe6decbd67071ad388df0.tar.gz |
filter: add (very primitive) filterpresetmodel
Implement a trivial model to provide the filter preset names
to the UI. Sadly, for now this features the QWidget/QML
column / name dichotomy. However, in this simple case that
shouldn't be too much of an issue.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
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 a34e4ad4b..d924f5c23 100644 --- a/packaging/ios/Subsurface-mobile.pro +++ b/packaging/ios/Subsurface-mobile.pro @@ -146,6 +146,7 @@ SOURCES += ../../subsurface-mobile-main.cpp \ ../../qt-models/models.cpp \ ../../qt-models/weightsysteminfomodel.cpp \ ../../qt-models/filterconstraintmodel.cpp \ + ../../qt-models/filterpresetmodel.cpp \ ../../profile-widget/qmlprofile.cpp \ ../../profile-widget/divecartesianaxis.cpp \ ../../profile-widget/diveeventitem.cpp \ @@ -297,6 +298,7 @@ HEADERS += \ ../../qt-models/models.h \ ../../qt-models/weightsysteminfomodel.h \ ../../qt-models/filterconstraintmodel.h \ + ../../qt-models/filterpresetmodel.h \ ../../profile-widget/qmlprofile.h \ ../../profile-widget/diveprofileitem.h \ ../../profile-widget/profilewidget2.h \ |