mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +00:00
f713858ba4
The printFontScale is used to scale up fonts (and icons) when rendering to high-DPI devices. With absolute scaling, this will also be used to scale the size of different chart regions, line thickness, etc. Therefore, give it an more appropriate name. "Device pixel ratio", which is a well established term, seems to appropriately describe the concept. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
177 lines
6.4 KiB
C++
177 lines
6.4 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, timeAxis, DiveDataModel::TIME, DiveDataModel, DiveDataModel::DEPTH, dpr);
|
|
scene()->addItem(profile);
|
|
|
|
This is a generically item and should be used as a base for others, I think...
|
|
*/
|
|
|
|
class DivePlotDataModel;
|
|
class DiveTextItem;
|
|
class DiveCartesianAxis;
|
|
class QAbstractTableModel;
|
|
struct plot_data;
|
|
struct dive;
|
|
|
|
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, const DiveCartesianAxis &hAxis, int hColumn, const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) = 0;
|
|
void clear();
|
|
virtual void replot(const dive *d, bool in_planner);
|
|
|
|
protected:
|
|
const DiveCartesianAxis &hAxis;
|
|
const DiveCartesianAxis &vAxis;
|
|
const DivePlotDataModel &dataModel;
|
|
int hDataColumn;
|
|
int vDataColumn;
|
|
double dpr;
|
|
QList<DiveTextItem *> texts;
|
|
};
|
|
|
|
class DiveProfileItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DiveProfileItem(const DivePlotDataModel &model, const DiveCartesianAxis &hAxis, int hColumn, const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
void replot(const dive *d, bool in_planner) 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, const DiveCartesianAxis &hAxis, int hColumn, const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
void replot(const dive *d, bool in_planner) 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, const DiveCartesianAxis &hAxis, int hColumn, const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
void replot(const dive *d, bool in_planner) 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, const DiveCartesianAxis &hAxis, int hColumn, const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
void replot(const dive *d, bool in_planner) 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, const DiveCartesianAxis &hAxis, int hColumn, const DiveCartesianAxis &vAxis, int vColumn, int i, double dpr);
|
|
void replot(const dive *d, bool in_planner) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
|
|
|
|
private:
|
|
std::vector<QColor> colors; // Must have same number of elements as the polygon
|
|
QString visibilityKey;
|
|
int tissueIndex;
|
|
QColor ColorScale(double value, int inert);
|
|
|
|
};
|
|
|
|
class DiveGasPressureItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
using AbstractProfilePolygonItem::AbstractProfilePolygonItem;
|
|
void replot(const dive *d, bool in_planner) 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);
|
|
struct Entry {
|
|
QPointF pos;
|
|
QColor col;
|
|
};
|
|
std::vector<std::vector<Entry>> polygons;
|
|
};
|
|
|
|
class DiveCalculatedCeiling : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DiveCalculatedCeiling(const DivePlotDataModel &model, const DiveCartesianAxis &hAxis, int hColumn,
|
|
const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
void replot(const dive *d, bool in_planner) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
};
|
|
|
|
class DiveReportedCeiling : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DiveReportedCeiling(const DivePlotDataModel &model, const DiveCartesianAxis &hAxis, int hColumn, const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
void replot(const dive *d, bool in_planner) override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
};
|
|
|
|
class DiveCalculatedTissue : public DiveCalculatedCeiling {
|
|
Q_OBJECT
|
|
public:
|
|
DiveCalculatedTissue(const DivePlotDataModel &model, const DiveCartesianAxis &hAxis, int hColumn,
|
|
const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
};
|
|
|
|
class PartialPressureGasItem : public AbstractProfilePolygonItem {
|
|
Q_OBJECT
|
|
public:
|
|
PartialPressureGasItem(const DivePlotDataModel &model, const DiveCartesianAxis &hAxis, int hColumn, const DiveCartesianAxis &vAxis, int vColumn, double dpr);
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0) override;
|
|
void replot(const dive *d, bool in_planner) 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
|