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.cpp | |
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.cpp')
-rw-r--r-- | qt-ui/profile/diveprofileitem.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp index e740640e2..0768f38f6 100644 --- a/qt-ui/profile/diveprofileitem.cpp +++ b/qt-ui/profile/diveprofileitem.cpp @@ -388,6 +388,18 @@ void DiveCalculatedCeiling::paint(QPainter* painter, const QStyleOptionGraphicsI QGraphicsPolygonItem::paint(painter, option, widget); } +DiveCalculatedTissue::DiveCalculatedTissue() +{ + preferencesChanged(); +} + +void DiveCalculatedTissue::preferencesChanged() +{ + QSettings s; + s.beginGroup("TecDetails"); + setVisible(s.value("calcalltissues").toBool()); +} + void DiveReportedCeiling::modelDataChanged() { if (!hAxis || !vAxis || !dataModel || hDataColumn == -1 || vDataColumn == -1) |