2017-04-27 18:26:36 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-01-16 17:02:32 +00:00
|
|
|
#ifndef DIVEEVENTITEM_H
|
|
|
|
#define DIVEEVENTITEM_H
|
|
|
|
|
|
|
|
#include "divepixmapitem.h"
|
|
|
|
|
|
|
|
class DiveCartesianAxis;
|
|
|
|
class DivePlotDataModel;
|
|
|
|
struct event;
|
|
|
|
|
|
|
|
class DiveEventItem : public DivePixmapItem {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2018-03-04 00:01:52 +00:00
|
|
|
DiveEventItem(QGraphicsItem *parent = 0);
|
2018-07-31 05:41:19 +00:00
|
|
|
~DiveEventItem();
|
2018-08-16 17:10:10 +00:00
|
|
|
void setEvent(struct event *ev, struct gasmix lastgasmix);
|
2014-02-25 20:27:12 +00:00
|
|
|
struct event *getEvent();
|
2014-02-28 04:09:57 +00:00
|
|
|
void eventVisibilityChanged(const QString &eventName, bool visible);
|
2014-01-16 17:02:32 +00:00
|
|
|
void setVerticalAxis(DiveCartesianAxis *axis);
|
|
|
|
void setHorizontalAxis(DiveCartesianAxis *axis);
|
|
|
|
void setModel(DivePlotDataModel *model);
|
2014-03-16 22:10:03 +00:00
|
|
|
bool shouldBeHidden();
|
2014-02-28 04:09:57 +00:00
|
|
|
public
|
|
|
|
slots:
|
2014-02-15 23:05:47 +00:00
|
|
|
void recalculatePos(bool instant = false);
|
2014-02-28 04:09:57 +00:00
|
|
|
|
2014-01-16 17:02:32 +00:00
|
|
|
private:
|
2018-08-16 17:10:10 +00:00
|
|
|
void setupToolTipString(struct gasmix lastgasmix);
|
|
|
|
void setupPixmap(struct gasmix lastgasmix);
|
2014-01-16 17:02:32 +00:00
|
|
|
DiveCartesianAxis *vAxis;
|
|
|
|
DiveCartesianAxis *hAxis;
|
|
|
|
DivePlotDataModel *dataModel;
|
2014-02-28 04:09:57 +00:00
|
|
|
struct event *internalEvent;
|
2014-01-16 17:02:32 +00:00
|
|
|
};
|
|
|
|
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // DIVEEVENTITEM_H
|