summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/divecartesianaxis.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2014-01-27 17:09:08 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-01-28 11:31:18 -0800
commit9f6ebf96a73c9663ea20a8c3e245bc3d9a4f3747 (patch)
treee9f4392b6fc3d54154c5cf546041271285ecda9c /qt-ui/profile/divecartesianaxis.cpp
parent7a07665d89aa26d37a8aa8defd20cbe1a569c874 (diff)
downloadsubsurface-9f6ebf96a73c9663ea20a8c3e245bc3d9a4f3747.tar.gz
Use the same behavior as the old time markers
This commit adds the same behavior for the old time markers on the new ones. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/divecartesianaxis.cpp')
-rw-r--r--qt-ui/profile/divecartesianaxis.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/qt-ui/profile/divecartesianaxis.cpp b/qt-ui/profile/divecartesianaxis.cpp
index 7a58e3bb4..5b7f9cfad 100644
--- a/qt-ui/profile/divecartesianaxis.cpp
+++ b/qt-ui/profile/divecartesianaxis.cpp
@@ -71,6 +71,7 @@ void DiveCartesianAxis::updateTicks()
}
if (steps < 1)
return;
+
if (!labels.isEmpty() && labels.size() > steps) {
while (labels.size() > steps) {
DiveTextItem *removedText = labels.takeLast();
@@ -102,12 +103,14 @@ void DiveCartesianAxis::updateTicks()
} else {
childPos = begin - i * stepSize;
}
+
labels[i]->setText(textForValue(currValue));
if ( orientation == LeftToRight || orientation == RightToLeft) {
labels[i]->animateMoveTo(childPos, m.y1() + tickSize);
} else {
labels[i]->animateMoveTo(m.x1() - tickSize, childPos);
}
+ labels[i]->setVisible( i % 2 );
}
// Add's the rest of the needed Ticks / Text.
@@ -121,9 +124,6 @@ void DiveCartesianAxis::updateTicks()
DiveTextItem *label = NULL;
if (showText){
- QString text = textForValue(currValue);
- if(text.isEmpty())
- continue; // Do not create or do anything with an empty string.
label = new DiveTextItem(this);
label->setText(textForValue(currValue));
label->setBrush(QBrush(textColor));
@@ -143,6 +143,7 @@ void DiveCartesianAxis::updateTicks()
label->animateMoveTo(m.x1() - tickSize, childPos);
}
}
+ label->setVisible( i % 2 );
}
}
@@ -283,7 +284,10 @@ QColor TimeAxis::colorForValue(double value)
QString TimeAxis::textForValue(double value)
{
- return QString::number(value / 60);
+ int nr = value / 60;
+ if (maximum() < 600 )
+ return QString("%1:%2").arg(nr).arg( (int)value%60, 2, 10, QChar('0'));
+ return QString::number(nr);
}
QString TemperatureAxis::textForValue(double value)