mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
dd0939b6f5
On each profile replot, the gas axis was implicitly reset by calling "dataModel->emitDataChanged()", which would send a signal recieved by the axis. To make the code less confusing and, more importantly, make order of execution deterministic, explicitly reset the axis. Rename the function that resets the axis from "settingsChanged" to "update" to reflect its usage. Moreover, remove the "setModel()" function and pass the model to the constructore. Make it a const reference to make clear that it can't change during the life time of the axis. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
120 lines
2.9 KiB
C++
120 lines
2.9 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef DIVECARTESIANAXIS_H
|
|
#define DIVECARTESIANAXIS_H
|
|
|
|
#include <QObject>
|
|
#include <QGraphicsLineItem>
|
|
#include "core/color.h"
|
|
#include "profilewidget2.h"
|
|
|
|
class QPropertyAnimation;
|
|
class DiveTextItem;
|
|
class DiveLineItem;
|
|
class DivePlotDataModel;
|
|
|
|
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)
|
|
private:
|
|
bool printMode;
|
|
QPen gridPen() const;
|
|
public:
|
|
enum Orientation {
|
|
TopToBottom,
|
|
BottomToTop,
|
|
LeftToRight,
|
|
RightToLeft
|
|
};
|
|
DiveCartesianAxis(ProfileWidget2 *widget);
|
|
~DiveCartesianAxis();
|
|
void setPrintMode(bool mode);
|
|
void setMinimum(double minimum);
|
|
void setMaximum(double maximum);
|
|
void setTickInterval(double interval);
|
|
void setOrientation(Orientation orientation);
|
|
void setTickSize(qreal size);
|
|
void setFontLabelScale(qreal scale);
|
|
double minimum() const;
|
|
double maximum() const;
|
|
double fontLabelScale() const;
|
|
qreal valueAt(const QPointF &p) const;
|
|
qreal posAtValue(qreal value) const;
|
|
void setColor(const QColor &color);
|
|
void setTextColor(const QColor &color);
|
|
void animateChangeLine(const QLineF &newLine);
|
|
void setTextVisible(bool arg1);
|
|
void setLinesVisible(bool arg1);
|
|
void setLineSize(qreal lineSize);
|
|
void setLine(const QLineF& line);
|
|
int unitSystem;
|
|
virtual void updateTicks(color_index_t color = TIME_GRID);
|
|
|
|
signals:
|
|
void sizeChanged();
|
|
void maxChanged();
|
|
|
|
protected:
|
|
ProfileWidget2 *profileWidget;
|
|
virtual QString textForValue(double value) const;
|
|
virtual QColor colorForValue(double value) const;
|
|
Orientation orientation;
|
|
QList<DiveTextItem *> labels;
|
|
QList<DiveLineItem *> lines;
|
|
double min;
|
|
double max;
|
|
double interval;
|
|
double tick_size;
|
|
QColor textColor;
|
|
bool textVisibility;
|
|
bool lineVisibility;
|
|
double labelScale;
|
|
qreal line_size;
|
|
bool changed;
|
|
};
|
|
|
|
class DepthAxis : public DiveCartesianAxis {
|
|
Q_OBJECT
|
|
public:
|
|
DepthAxis(ProfileWidget2 *widget);
|
|
private:
|
|
QString textForValue(double value) const override;
|
|
QColor colorForValue(double value) const override;
|
|
int unitSystem;
|
|
private
|
|
slots:
|
|
void settingsChanged();
|
|
};
|
|
|
|
class TimeAxis : public DiveCartesianAxis {
|
|
Q_OBJECT
|
|
public:
|
|
TimeAxis(ProfileWidget2 *widget);
|
|
void updateTicks(color_index_t color = TIME_GRID) override;
|
|
private:
|
|
QString textForValue(double value) const override;
|
|
QColor colorForValue(double value) const override;
|
|
};
|
|
|
|
class TemperatureAxis : public DiveCartesianAxis {
|
|
Q_OBJECT
|
|
public:
|
|
TemperatureAxis(ProfileWidget2 *widget);
|
|
private:
|
|
QString textForValue(double value) const override;
|
|
};
|
|
|
|
class PartialGasPressureAxis : public DiveCartesianAxis {
|
|
Q_OBJECT
|
|
public:
|
|
PartialGasPressureAxis(const DivePlotDataModel &model, ProfileWidget2 *widget);
|
|
public
|
|
slots:
|
|
void update();
|
|
private:
|
|
const DivePlotDataModel &model;
|
|
};
|
|
|
|
#endif // DIVECARTESIANAXIS_H
|