summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/divecartesianaxis.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2014-01-14 16:20:15 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-01-16 10:12:29 +0700
commit49f4052c67d31d4870a86f53a52381a4bbf609fd (patch)
tree53ef8e50600ae29eb3564dc89e77a97a0a9199a2 /qt-ui/profile/divecartesianaxis.h
parentca07f45561aecf788dfbbbda9e36135f6fae69d2 (diff)
downloadsubsurface-49f4052c67d31d4870a86f53a52381a4bbf609fd.tar.gz
Cartesian Axis, based on the Ruler class on the Dive Planner.
This is the same class as the Ruler, but uses the DiveLineItem and DiveTextItem classes created to make it animateable. The next few commits will work on that part. The Ruler was a very bad name for a class that's actually an Axis, that's why I depreceated the later. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/divecartesianaxis.h')
-rw-r--r--qt-ui/profile/divecartesianaxis.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/qt-ui/profile/divecartesianaxis.h b/qt-ui/profile/divecartesianaxis.h
new file mode 100644
index 000000000..1c8170ef4
--- /dev/null
+++ b/qt-ui/profile/divecartesianaxis.h
@@ -0,0 +1,46 @@
+#ifndef DIVECARTESIANAXIS_H
+#define DIVECARTESIANAXIS_H
+
+#include <QObject>
+#include <QGraphicsLineItem>
+class DiveTextItem;
+class DiveLineItem;
+
+class DiveCartesianAxis : public QObject, public QGraphicsLineItem{
+ Q_OBJECT
+ Q_PROPERTY(QLineF line WRITE setLine READ line)
+ Q_PROPERTY(QPointF pos WRITE setPos READ pos)
+ Q_PROPERTY(qreal x WRITE setX READ x)
+ Q_PROPERTY(qreal y WRITE setY READ y)
+public:
+ DiveCartesianAxis();
+ virtual ~DiveCartesianAxis();
+ void setMinimum(double minimum);
+ void setMaximum(double maximum);
+ void setTickInterval(double interval);
+ void setOrientation(Qt::Orientation orientation);
+ void setTickSize(qreal size);
+ void updateTicks();
+ double minimum() const;
+ double maximum() const;
+ qreal valueAt(const QPointF& p);
+ qreal percentAt(const QPointF& p);
+ qreal posAtValue(qreal value);
+ void setColor(const QColor& color);
+ void setTextColor(const QColor& color);
+ int unitSystem;
+
+protected:
+ virtual QString textForValue(double value);
+
+ Qt::Orientation orientation;
+ QList<DiveLineItem*> ticks;
+ QList<DiveTextItem*> labels;
+ double min;
+ double max;
+ double interval;
+ double tickSize;
+ QColor textColor;
+};
+
+#endif \ No newline at end of file