2014-01-14 19:17:17 +00:00
|
|
|
#ifndef DIVEPROFILEITEM_H
|
|
|
|
#define DIVEPROFILEITEM_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QGraphicsPolygonItem>
|
2014-02-04 19:34:16 +00:00
|
|
|
#include <QModelIndex>
|
|
|
|
|
2014-01-22 17:08:19 +00:00
|
|
|
#include "divelineitem.h"
|
|
|
|
|
2014-01-14 19:17:17 +00:00
|
|
|
/* 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();
|
|
|
|
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...
|
|
|
|
*/
|
|
|
|
|
2015-11-06 12:40:20 +00:00
|
|
|
class ProfileWidget2;
|
2014-01-21 16:05:29 +00:00
|
|
|
class DivePlotDataModel;
|
2014-01-17 19:54:47 +00:00
|
|
|
class DiveTextItem;
|
2014-01-14 19:17:17 +00:00
|
|
|
class DiveCartesianAxis;
|
|
|
|
class QAbstractTableModel;
|
2014-01-21 15:27:08 +00:00
|
|
|
struct plot_data;
|
2014-01-14 19:17:17 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class AbstractProfilePolygonItem : public QObject, public QGraphicsPolygonItem {
|
2014-01-14 19:17:17 +00:00
|
|
|
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:
|
2014-01-16 18:21:23 +00:00
|
|
|
AbstractProfilePolygonItem();
|
2014-01-14 19:17:17 +00:00
|
|
|
void setVerticalAxis(DiveCartesianAxis *vertical);
|
|
|
|
void setHorizontalAxis(DiveCartesianAxis *horizontal);
|
2014-01-21 16:05:29 +00:00
|
|
|
void setModel(DivePlotDataModel *model);
|
2014-01-14 19:17:17 +00:00
|
|
|
void setHorizontalDataColumn(int column);
|
|
|
|
void setVerticalDataColumn(int column);
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) = 0;
|
|
|
|
virtual void clear()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
public
|
|
|
|
slots:
|
2014-05-21 16:50:26 +00:00
|
|
|
virtual void settingsChanged();
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
|
|
|
virtual void modelDataRemoved(const QModelIndex &parent, int from, int to);
|
2016-01-25 18:49:51 +00:00
|
|
|
void setVisible(bool visible);
|
2014-02-28 04:09:57 +00:00
|
|
|
|
2014-01-16 18:21:23 +00:00
|
|
|
protected:
|
2014-02-04 19:34:16 +00:00
|
|
|
/* 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.
|
|
|
|
*/
|
2014-02-28 04:09:57 +00:00
|
|
|
bool shouldCalculateStuff(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
2014-02-04 19:34:16 +00:00
|
|
|
|
2014-01-14 19:17:17 +00:00
|
|
|
DiveCartesianAxis *hAxis;
|
|
|
|
DiveCartesianAxis *vAxis;
|
2014-01-21 16:05:29 +00:00
|
|
|
DivePlotDataModel *dataModel;
|
2014-01-14 19:17:17 +00:00
|
|
|
int hDataColumn;
|
|
|
|
int vDataColumn;
|
2014-02-28 04:09:57 +00:00
|
|
|
QList<DiveTextItem *> texts;
|
2014-01-14 19:17:17 +00:00
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class DiveProfileItem : public AbstractProfilePolygonItem {
|
2014-01-16 18:21:23 +00:00
|
|
|
Q_OBJECT
|
2014-01-21 15:27:08 +00:00
|
|
|
|
2014-01-16 18:21:23 +00:00
|
|
|
public:
|
2014-02-09 17:54:25 +00:00
|
|
|
DiveProfileItem();
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
2016-01-25 19:48:57 +00:00
|
|
|
void settingsToggled(bool toggled);
|
2014-05-21 16:50:26 +00:00
|
|
|
virtual void settingsChanged();
|
2014-02-28 04:09:57 +00:00
|
|
|
void plot_depth_sample(struct plot_data *entry, QFlags<Qt::AlignmentFlag> flags, const QColor &color);
|
2014-05-26 22:29:25 +00:00
|
|
|
int maxCeiling(int row);
|
2015-01-02 00:28:37 +00:00
|
|
|
|
2014-01-21 20:16:19 +00:00
|
|
|
private:
|
|
|
|
unsigned int show_reported_ceiling;
|
|
|
|
unsigned int reported_ceiling_in_red;
|
2014-05-26 22:29:25 +00:00
|
|
|
QColor profileColor;
|
2014-01-16 18:21:23 +00:00
|
|
|
};
|
2014-01-14 19:17:17 +00:00
|
|
|
|
2015-01-01 23:28:38 +00:00
|
|
|
class DiveMeanDepthItem : public AbstractProfilePolygonItem {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DiveMeanDepthItem();
|
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
2015-01-02 00:28:37 +00:00
|
|
|
|
2015-01-01 23:28:38 +00:00
|
|
|
private:
|
2015-01-28 19:24:00 +00:00
|
|
|
void createTextItem();
|
|
|
|
double lastRunningSum;
|
2015-01-01 23:28:38 +00:00
|
|
|
QString visibilityKey;
|
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class DiveTemperatureItem : public AbstractProfilePolygonItem {
|
2014-01-16 20:39:13 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DiveTemperatureItem();
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
|
|
|
|
2014-01-17 19:54:47 +00:00
|
|
|
private:
|
|
|
|
void createTextItem(int seconds, int mkelvin);
|
2014-01-16 20:39:13 +00:00
|
|
|
};
|
2014-01-17 13:07:52 +00:00
|
|
|
|
2014-02-23 23:28:31 +00:00
|
|
|
class DiveHeartrateItem : public AbstractProfilePolygonItem {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DiveHeartrateItem();
|
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
2015-01-02 00:28:37 +00:00
|
|
|
|
2014-02-23 23:28:31 +00:00
|
|
|
private:
|
|
|
|
void createTextItem(int seconds, int hr);
|
2014-04-08 04:00:50 +00:00
|
|
|
QString visibilityKey;
|
2014-02-23 23:28:31 +00:00
|
|
|
};
|
|
|
|
|
2014-09-15 12:09:00 +00:00
|
|
|
class DivePercentageItem : public AbstractProfilePolygonItem {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DivePercentageItem(int i);
|
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
2015-01-02 00:28:37 +00:00
|
|
|
|
2014-09-15 12:09:00 +00:00
|
|
|
private:
|
|
|
|
QString visibilityKey;
|
2016-08-27 22:09:22 +00:00
|
|
|
int tissueIndex;
|
2014-09-15 12:09:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DiveAmbPressureItem : public AbstractProfilePolygonItem {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DiveAmbPressureItem();
|
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
2015-01-02 00:28:37 +00:00
|
|
|
|
2014-09-15 12:09:00 +00:00
|
|
|
private:
|
|
|
|
QString visibilityKey;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DiveGFLineItem : public AbstractProfilePolygonItem {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DiveGFLineItem();
|
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
2015-01-02 00:28:37 +00:00
|
|
|
|
2014-09-15 12:09:00 +00:00
|
|
|
private:
|
|
|
|
QString visibilityKey;
|
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class DiveGasPressureItem : public AbstractProfilePolygonItem {
|
2014-01-17 17:34:15 +00:00
|
|
|
Q_OBJECT
|
2014-01-21 16:05:29 +00:00
|
|
|
|
2014-01-17 17:34:15 +00:00
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
|
|
|
|
2014-01-17 17:34:15 +00:00
|
|
|
private:
|
2015-01-23 18:54:12 +00:00
|
|
|
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);
|
2014-01-17 17:34:15 +00:00
|
|
|
QVector<QPolygonF> polygons;
|
|
|
|
};
|
2014-01-17 19:54:47 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class DiveCalculatedCeiling : public AbstractProfilePolygonItem {
|
2014-01-21 16:59:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-11-06 12:40:20 +00:00
|
|
|
DiveCalculatedCeiling(ProfileWidget2 *profileWidget);
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
2014-05-21 16:50:26 +00:00
|
|
|
virtual void settingsChanged();
|
2014-02-28 04:09:57 +00:00
|
|
|
|
2014-10-21 00:36:24 +00:00
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void recalc();
|
|
|
|
|
2015-11-06 12:40:20 +00:00
|
|
|
protected:
|
|
|
|
ProfileWidget2 *profileWidget;
|
|
|
|
|
2014-01-29 12:53:40 +00:00
|
|
|
private:
|
2014-02-04 19:34:16 +00:00
|
|
|
bool is3mIncrement;
|
2014-01-21 16:59:19 +00:00
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class DiveReportedCeiling : public AbstractProfilePolygonItem {
|
2014-01-21 19:34:36 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
2014-01-21 19:34:36 +00:00
|
|
|
};
|
2014-01-22 17:08:19 +00:00
|
|
|
|
2014-01-22 21:22:07 +00:00
|
|
|
class DiveCalculatedTissue : public DiveCalculatedCeiling {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-11-06 12:40:20 +00:00
|
|
|
DiveCalculatedTissue(ProfileWidget2 *profileWidget);
|
2016-01-25 18:49:51 +00:00
|
|
|
void setVisible(bool visible);
|
2014-05-21 16:50:26 +00:00
|
|
|
virtual void settingsChanged();
|
2014-01-22 21:22:07 +00:00
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class PartialPressureGasItem : public AbstractProfilePolygonItem {
|
2014-01-23 19:54:34 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
PartialPressureGasItem();
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
|
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
2014-11-01 16:22:07 +00:00
|
|
|
void setThreshouldSettingsKey(double *prefPointer);
|
2014-02-28 04:09:57 +00:00
|
|
|
void setVisibilitySettingsKey(const QString &setVisibilitySettingsKey);
|
|
|
|
void setColors(const QColor &normalColor, const QColor &alertColor);
|
|
|
|
|
2014-01-23 19:54:34 +00:00
|
|
|
private:
|
2014-03-15 18:00:58 +00:00
|
|
|
QVector<QPolygonF> alertPolygons;
|
2014-11-01 16:22:07 +00:00
|
|
|
double *thresholdPtr;
|
2014-01-27 17:14:42 +00:00
|
|
|
QString visibilityKey;
|
|
|
|
QColor normalColor;
|
|
|
|
QColor alertColor;
|
2014-01-23 19:54:34 +00:00
|
|
|
};
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // DIVEPROFILEITEM_H
|