diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2014-05-30 23:46:55 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-01 20:20:17 -0700 |
commit | d825d689dd610b4e85f5a7b454927c6f4f3e2e4e (patch) | |
tree | 9a6a966dc5ba1078f0dc69163daba2e002c311f5 | |
parent | 89f35321452925182594304961193a8091368ff7 (diff) | |
download | subsurface-d825d689dd610b4e85f5a7b454927c6f4f3e2e4e.tar.gz |
Override the MinMaxAvgWidget tool tips for the depth instance.
Add new methods to the MinMaxAvgWidget class to allow us to override the
default tooltips of its min and max icons, and then uses these methods to
make the tooltips for the Stats tab Depth instance more descriptive.
See #521
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/maintab.cpp | 2 | ||||
-rw-r--r-- | qt-ui/simplewidgets.cpp | 10 | ||||
-rw-r--r-- | qt-ui/simplewidgets.h | 2 |
3 files changed, 14 insertions, 0 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index f308292e2..cf2e944e3 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -528,6 +528,8 @@ void MainTab::updateDiveInfo(int dive) ui.depthLimits->setMaximum(get_depth_string(stats_selection.max_depth, true)); ui.depthLimits->setMinimum(get_depth_string(stats_selection.min_depth, true)); ui.depthLimits->setAverage(get_depth_string(stats_selection.avg_depth, true)); + ui.depthLimits->overrideMaxToolTipText(QObject::tr("Deepest Dive")); + ui.depthLimits->overrideMinToolTipText(QObject::tr("Shallowest Dive")); ui.sacLimits->setMaximum(get_volume_string(stats_selection.max_sac, true).append(tr("/min"))); ui.sacLimits->setMinimum(get_volume_string(stats_selection.min_sac, true).append(tr("/min"))); ui.sacLimits->setAverage(get_volume_string(stats_selection.avg_sac, true).append(tr("/min"))); diff --git a/qt-ui/simplewidgets.cpp b/qt-ui/simplewidgets.cpp index 99e0ba362..18e176b0d 100644 --- a/qt-ui/simplewidgets.cpp +++ b/qt-ui/simplewidgets.cpp @@ -112,6 +112,16 @@ void MinMaxAvgWidget::setMinimum(const QString &minimum) d->minValue->setText(minimum); } +void MinMaxAvgWidget::overrideMinToolTipText(const QString &newTip) +{ + d->minIco->setToolTip(newTip); +} + +void MinMaxAvgWidget::overrideMaxToolTipText(const QString &newTip) +{ + d->maxIco->setToolTip(newTip); +} + RenumberDialog *RenumberDialog::instance() { static RenumberDialog *self = new RenumberDialog(MainWindow::instance()); diff --git a/qt-ui/simplewidgets.h b/qt-ui/simplewidgets.h index cecb52815..c7d18bb35 100644 --- a/qt-ui/simplewidgets.h +++ b/qt-ui/simplewidgets.h @@ -30,6 +30,8 @@ public: void setMinimum(const QString &minimum); void setMaximum(const QString &maximum); void setAverage(const QString &average); + void overrideMinToolTipText(const QString &newTip); + void overrideMaxToolTipText(const QString &newTip); void clear(); private: |