mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-20 14:55:27 +00:00
87ca15c5c3
Also restructures the code a bit to make it a little more sane and changes the colors slightly. With these changes I think we can claim that this Fixes #557 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
38 lines
917 B
C++
38 lines
917 B
C++
#ifndef TANKITEM_H
|
|
#define TANKITEM_H
|
|
|
|
#include <QGraphicsItem>
|
|
#include <QModelIndex>
|
|
#include <QBrush>
|
|
#include "divelineitem.h"
|
|
#include "divecartesianaxis.h"
|
|
#include "dive.h"
|
|
|
|
class TankItem : public QObject, public QGraphicsRectItem
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QGraphicsItem)
|
|
|
|
public:
|
|
explicit TankItem(QObject *parent = 0);
|
|
void setHorizontalAxis(DiveCartesianAxis *horizontal);
|
|
void setData(DivePlotDataModel *model, struct plot_info *plotInfo, struct dive *d);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
virtual void modelDataChanged(const QModelIndex &topLeft = QModelIndex(), const QModelIndex &bottomRight = QModelIndex());
|
|
|
|
private:
|
|
void createBar(qreal x, qreal w, struct gasmix *gas);
|
|
DivePlotDataModel *dataModel;
|
|
DiveCartesianAxis *hAxis;
|
|
int hDataColumn;
|
|
struct dive *dive;
|
|
struct plot_info *pInfo;
|
|
qreal yPos, height;
|
|
QBrush air, nitrox, trimix;
|
|
QList<QGraphicsRectItem *> rects;
|
|
};
|
|
|
|
#endif // TANKITEM_H
|