summaryrefslogtreecommitdiffstats
path: root/qt-ui/diveplanner.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-06-20 17:34:42 -0300
committerGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-06-20 17:34:42 -0300
commit2d683b66a8a7d514c8cd766303832876ccbab9bb (patch)
tree7373aa8d921f20909b0b912e57e975d09a439270 /qt-ui/diveplanner.h
parentf129024fc7ad17638cfa9fc7c3948dbc791bd4ca (diff)
downloadsubsurface-2d683b66a8a7d514c8cd766303832876ccbab9bb.tar.gz
Added the code to set the Depth / Time on the user Handlers.
Added the code to set the Depth / Time on the user handlers, I think this finishes the difficult part. ( well, not really ) the depth and time is being set when handler is added or moved, but as soon as the deco calculations enters on the code, the handlers will need to be repositioned - and this code is not ready yet. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Diffstat (limited to 'qt-ui/diveplanner.h')
-rw-r--r--qt-ui/diveplanner.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/qt-ui/diveplanner.h b/qt-ui/diveplanner.h
index 5557a7b56..f7af25113 100644
--- a/qt-ui/diveplanner.h
+++ b/qt-ui/diveplanner.h
@@ -7,9 +7,14 @@
class DiveHandler : public QGraphicsEllipseItem{
public:
DiveHandler();
+ void setTime(qreal t);
+ void setDepth(qreal d);
QGraphicsLineItem *from;
QGraphicsLineItem *to;
+private:
+ qreal time;
+ qreal depth;
};
class Ruler : public QGraphicsLineItem{
@@ -20,6 +25,7 @@ public:
void setTickInterval(double interval);
void setOrientation(Qt::Orientation orientation);
void updateTicks();
+ qreal valueAt(const QPointF& p);
private:
Qt::Orientation orientation;