mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
ea88f4729d
The profile items had a "setModel()" function to set the DivePlotDataModel post creation. The model is never changed. It does however mean that the model might be null in a short period between construction and setting the model. To simplify reasoning about this code, set the model in the constructor. To drive the point home that the can never change and cannot be null, turn it into a reference. Yes, this is gratuitous bike-shedding, but it helps me analysis the code. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
220 lines
7.9 KiB
C++
220 lines
7.9 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef DIVEPROFILEITEM_H
|
|
#define DIVEPROFILEITEM_H
|
|
|
|
#include <QObject>
|
|
#include <QGraphicsPolygonItem>
|
|
#include <QModelIndex>
|
|
|
|
#include "divelineitem.h"
|
|
|
|
/* This is the Profile Item, it should be used for quite a lot of things
|
|
on the profile view. The usage should be pretty simple:
|
|
|
|
DiveProfileItem *profile = new DiveProfileItem( DiveDataModel );
|
|
profile->setVerticalAxis( profileYAxis );
|
|
profile->setHorizontalAxis( timeAxis );
|
|
profile->setModel( DiveDataModel );
|
|
profile->setHorizontalDataColumn( DiveDataModel::TIME );
|
|
profile->setVerticalDataColumn( DiveDataModel::DEPTH );
|
|
scene()->addItem(profile);
|
|
|
|
This is a generically item and should be used as a base for others, I think...
|
|
*/
|
|
|
|
class ProfileWidget2;
|
|
class DivePlotDataModel;
|
|
class DiveTextItem;
|
|
class DiveCartesianAxis;
|
|
class QAbstractTableModel;
|
|
struct plot_data;
|
|
|
|
class AbstractProfilePolygonItem : public QObject, public QGraphicsPolygonItem {
|
|
Q_OBJECT
|
|
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:
|
|
AbstractProfilePolygonItem(const DivePlotDataModel &model);
|
|
void setVerticalAxis(DiveCartesianAxis *vertical);
|
|
void setHorizontalAxis(DiveCartesianAxis *horizontal);
|
|
void setHorizontalDataColumn(int column);
|
|
void setVerticalDataColumn(int column);
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) = 0;
|
|
public
|
|
slots:
|
|
virtual void settingsChanged();
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
|
virtual void modelDataRemoved(const QModelIndex &parent, int from, int to);
|
|
void setVisible(bool visible);
|
|
|
|
protected:
|
|
/* when the model emits a 'datachanged' signal, this method below should be used to check if the
|
|
* modified data affects this particular item ( for example, when setting the '3m increment'
|
|
* the data for Ceiling and tissues will be changed, and only those. so, the topLeft will be the CEILING
|
|
* column and the bottomRight will have the TISSUE_16 column. this method takes the vDataColumn and hDataColumn
|
|
* into consideration when returning 'true' for "yes, continue the calculation', and 'false' for
|
|
* 'do not recalculate, we already have the right data.
|
|
*/
|
|
bool shouldCalculateStuff(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
|
|
|
DiveCartesianAxis *hAxis;
|
|
DiveCartesianAxis *vAxis;
|
|
const DivePlotDataModel &dataModel;
|
|
int hDataColumn;
|
|
int vDataColumn;
|
|
QList<DiveTextItem *> texts;
|
|
};
|
|
|
|
class DiveProfileItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DiveProfileItem(const DivePlotDataModel &model);
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex()) override;
|
|
void settingsToggled(bool toggled);
|
|
void settingsChanged() override;
|
|
void plot_depth_sample(struct plot_data *entry, QFlags<Qt::AlignmentFlag> flags, const QColor &color);
|
|
int maxCeiling(int row);
|
|
|
|
private:
|
|
unsigned int show_reported_ceiling;
|
|
unsigned int reported_ceiling_in_red;
|
|
QColor profileColor;
|
|
};
|
|
|
|
class DiveMeanDepthItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
public:
|
|
DiveMeanDepthItem(const DivePlotDataModel &model);
|
|
void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex()) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
|
|
private:
|
|
void createTextItem();
|
|
double lastRunningSum;
|
|
QString visibilityKey;
|
|
};
|
|
|
|
class DiveTemperatureItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
public:
|
|
DiveTemperatureItem(const DivePlotDataModel &model);
|
|
void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex()) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
|
|
private:
|
|
void createTextItem(int seconds, int mkelvin);
|
|
};
|
|
|
|
class DiveHeartrateItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
public:
|
|
DiveHeartrateItem(const DivePlotDataModel &model);
|
|
void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
|
|
|
|
private:
|
|
void createTextItem(int seconds, int hr);
|
|
QString visibilityKey;
|
|
};
|
|
|
|
class DivePercentageItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
public:
|
|
DivePercentageItem(const DivePlotDataModel &model, int i);
|
|
void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
|
|
|
|
private:
|
|
QString visibilityKey;
|
|
int tissueIndex;
|
|
QColor ColorScale(double value, int inert);
|
|
|
|
};
|
|
|
|
class DiveAmbPressureItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
public:
|
|
DiveAmbPressureItem(const DivePlotDataModel &model);
|
|
void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
|
|
|
|
private:
|
|
QString visibilityKey;
|
|
};
|
|
|
|
class DiveGFLineItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
public:
|
|
DiveGFLineItem(const DivePlotDataModel &model);
|
|
void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
|
|
|
|
private:
|
|
QString visibilityKey;
|
|
};
|
|
|
|
class DiveGasPressureItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
using AbstractProfilePolygonItem::AbstractProfilePolygonItem;
|
|
void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex()) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
|
|
private:
|
|
void plotPressureValue(int mbar, int sec, QFlags<Qt::AlignmentFlag> align, double offset);
|
|
void plotGasValue(int mbar, int sec, struct gasmix gasmix, QFlags<Qt::AlignmentFlag> align, double offset);
|
|
QVector<QPolygonF> polygons;
|
|
};
|
|
|
|
class DiveCalculatedCeiling : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DiveCalculatedCeiling(const DivePlotDataModel &model, ProfileWidget2 *profileWidget);
|
|
void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex()) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
|
|
private:
|
|
ProfileWidget2 *profileWidget;
|
|
};
|
|
|
|
class DiveReportedCeiling : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DiveReportedCeiling(const DivePlotDataModel &model);
|
|
void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex()) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
};
|
|
|
|
class DiveCalculatedTissue : public DiveCalculatedCeiling {
|
|
Q_OBJECT
|
|
public:
|
|
DiveCalculatedTissue(const DivePlotDataModel &model, ProfileWidget2 *profileWidget);
|
|
void setVisible(bool visible);
|
|
void settingsChanged() override;
|
|
};
|
|
|
|
class PartialPressureGasItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
public:
|
|
PartialPressureGasItem(const DivePlotDataModel &model);
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex()) override;
|
|
void setThresholdSettingsKey(const double *prefPointerMin, const double *prefPointerMax);
|
|
void setVisibilitySettingsKey(const QString &setVisibilitySettingsKey);
|
|
void setColors(const QColor &normalColor, const QColor &alertColor);
|
|
|
|
private:
|
|
QVector<QPolygonF> alertPolygons;
|
|
const double *thresholdPtrMin;
|
|
const double *thresholdPtrMax;
|
|
QString visibilityKey;
|
|
QColor normalColor;
|
|
QColor alertColor;
|
|
};
|
|
#endif // DIVEPROFILEITEM_H
|