diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2014-01-22 19:22:07 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-22 13:28:25 -0800 |
commit | cde9bc0de9f4b7684336ef7209f47a47c8b751ba (patch) | |
tree | d3fd3c51d4e607b61eb2d275a2f51a88646be248 /qt-ui/profile/diveprofileitem.h | |
parent | f8a4f8de8159bb60235af170d2acb603ec40ccad (diff) | |
download | subsurface-cde9bc0de9f4b7684336ef7209f47a47c8b751ba.tar.gz |
Make the tissues be preferences-aware.
This patch adds a new class DiveCalculatedTissue that's preferences aware.
It knows when to show or hide itself.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveprofileitem.h')
-rw-r--r-- | qt-ui/profile/diveprofileitem.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qt-ui/profile/diveprofileitem.h b/qt-ui/profile/diveprofileitem.h index 272ee0821..c6c5b19e3 100644 --- a/qt-ui/profile/diveprofileitem.h +++ b/qt-ui/profile/diveprofileitem.h @@ -103,6 +103,13 @@ public: virtual void preferencesChanged(); }; +class DiveCalculatedTissue : public DiveCalculatedCeiling { + Q_OBJECT +public: + DiveCalculatedTissue(); + void preferencesChanged(); +}; + class MeanDepthLine : public DiveLineItem { Q_OBJECT public: |