2014-01-14 18:20:15 +00:00
|
|
|
#ifndef DIVECARTESIANAXIS_H
|
|
|
|
#define DIVECARTESIANAXIS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QGraphicsLineItem>
|
2014-01-22 19:10:18 +00:00
|
|
|
|
|
|
|
class QPropertyAnimation;
|
2014-01-14 18:20:15 +00:00
|
|
|
class DiveTextItem;
|
|
|
|
class DiveLineItem;
|
2014-01-27 17:14:42 +00:00
|
|
|
class DivePlotDataModel;
|
2014-01-14 18:20:15 +00:00
|
|
|
|
|
|
|
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:
|
2014-01-16 21:28:33 +00:00
|
|
|
enum Orientation{TopToBottom, BottomToTop, LeftToRight, RightToLeft};
|
2014-01-14 18:20:15 +00:00
|
|
|
DiveCartesianAxis();
|
|
|
|
virtual ~DiveCartesianAxis();
|
2014-02-07 16:59:58 +00:00
|
|
|
void setup(double minimum, double maximum, double interval, Orientation o, qreal tickSize, const QPointF& pos);
|
2014-01-14 18:20:15 +00:00
|
|
|
void setMinimum(double minimum);
|
|
|
|
void setMaximum(double maximum);
|
|
|
|
void setTickInterval(double interval);
|
2014-01-16 21:28:33 +00:00
|
|
|
void setOrientation(Orientation orientation);
|
2014-01-14 18:20:15 +00:00
|
|
|
void setTickSize(qreal size);
|
|
|
|
double minimum() const;
|
|
|
|
double maximum() const;
|
2014-02-07 19:59:21 +00:00
|
|
|
double tickInterval() const;
|
|
|
|
double tickSize() const;
|
2014-02-11 20:05:33 +00:00
|
|
|
qreal valueAt(const QPointF& p) const;
|
2014-01-14 18:20:15 +00:00
|
|
|
qreal percentAt(const QPointF& p);
|
|
|
|
qreal posAtValue(qreal value);
|
|
|
|
void setColor(const QColor& color);
|
|
|
|
void setTextColor(const QColor& color);
|
2014-01-22 19:10:18 +00:00
|
|
|
void animateChangeLine(const QLineF& newLine);
|
2014-02-12 16:24:19 +00:00
|
|
|
void setTextVisible(bool arg1);
|
2014-01-14 18:20:15 +00:00
|
|
|
int unitSystem;
|
2014-01-22 19:10:18 +00:00
|
|
|
public slots:
|
2014-01-27 19:18:35 +00:00
|
|
|
virtual void updateTicks();
|
2014-02-12 16:24:19 +00:00
|
|
|
|
2014-01-16 14:32:45 +00:00
|
|
|
signals:
|
|
|
|
void sizeChanged();
|
2014-01-27 17:14:42 +00:00
|
|
|
void maxChanged();
|
2014-01-14 18:20:15 +00:00
|
|
|
protected:
|
|
|
|
virtual QString textForValue(double value);
|
2014-01-19 22:14:48 +00:00
|
|
|
virtual QColor colorForValue(double value);
|
2014-01-16 21:28:33 +00:00
|
|
|
Orientation orientation;
|
2014-01-14 18:20:15 +00:00
|
|
|
QList<DiveTextItem*> labels;
|
|
|
|
double min;
|
|
|
|
double max;
|
|
|
|
double interval;
|
2014-02-07 19:59:21 +00:00
|
|
|
double tick_size;
|
2014-01-14 18:20:15 +00:00
|
|
|
QColor textColor;
|
2014-02-12 16:24:19 +00:00
|
|
|
bool textVisibility;
|
2014-01-14 18:20:15 +00:00
|
|
|
};
|
|
|
|
|
2014-01-15 12:54:33 +00:00
|
|
|
class DepthAxis : public DiveCartesianAxis {
|
2014-01-22 19:10:18 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DepthAxis();
|
2014-01-15 12:54:33 +00:00
|
|
|
protected:
|
2014-01-16 20:39:13 +00:00
|
|
|
QString textForValue(double value);
|
2014-01-19 22:14:48 +00:00
|
|
|
QColor colorForValue(double value);
|
2014-01-22 19:10:18 +00:00
|
|
|
private slots:
|
|
|
|
void settingsChanged();
|
2014-02-04 21:21:57 +00:00
|
|
|
private:
|
|
|
|
bool showWithPPGraph;
|
2014-01-15 12:54:33 +00:00
|
|
|
};
|
|
|
|
|
2014-01-15 13:08:31 +00:00
|
|
|
class TimeAxis : public DiveCartesianAxis {
|
2014-01-27 19:18:35 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
virtual void updateTicks();
|
2014-01-15 13:08:31 +00:00
|
|
|
protected:
|
2014-01-16 20:39:13 +00:00
|
|
|
QString textForValue(double value);
|
2014-01-19 22:14:48 +00:00
|
|
|
QColor colorForValue(double value);
|
2014-01-16 20:39:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class TemperatureAxis : public DiveCartesianAxis{
|
|
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
|
|
QString textForValue(double value);
|
2014-01-15 13:08:31 +00:00
|
|
|
};
|
2014-01-16 14:32:45 +00:00
|
|
|
|
2014-01-27 17:14:42 +00:00
|
|
|
class PartialGasPressureAxis : public DiveCartesianAxis{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
PartialGasPressureAxis();
|
|
|
|
void setModel(DivePlotDataModel *model);
|
|
|
|
public slots:
|
|
|
|
void preferencesChanged();
|
|
|
|
private:
|
|
|
|
DivePlotDataModel *model;
|
|
|
|
};
|
|
|
|
|
2014-01-16 14:32:45 +00:00
|
|
|
// This is a try. Maybe the CartesianPlane should have the X and Y
|
|
|
|
// axis and handle things internally?
|
|
|
|
class DiveCartesianPlane :public QObject, public QGraphicsRectItem{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QLineF verticalLine READ verticalLine WRITE setVerticalLine)
|
|
|
|
Q_PROPERTY(QLineF horizontalLine READ horizontalLine WRITE setHorizontalLine)
|
|
|
|
public:
|
|
|
|
void setLeftAxis(DiveCartesianAxis *axis);
|
|
|
|
void setBottomAxis(DiveCartesianAxis *axis);
|
|
|
|
void setHorizontalLine(QLineF line);
|
|
|
|
void setVerticalLine(QLineF line);
|
|
|
|
QLineF horizontalLine() const;
|
|
|
|
QLineF verticalLine() const;
|
|
|
|
public slots:
|
|
|
|
void setup();
|
|
|
|
private:
|
|
|
|
DiveCartesianAxis *leftAxis;
|
|
|
|
DiveCartesianAxis *bottomAxis;
|
|
|
|
QList<DiveLineItem*> verticalLines;
|
|
|
|
QList<DiveLineItem*> horizontalLines;
|
|
|
|
qreal verticalSize;
|
|
|
|
qreal horizontalSize;
|
|
|
|
};
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // DIVECARTESIANAXIS_H
|