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:
|
2014-02-28 04:09:57 +00:00
|
|
|
DiveEventItem(QObject *parent = 0);
|
2015-12-04 05:42:23 +00:00
|
|
|
virtual ~DiveEventItem();
|
2018-01-20 16:58:52 +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-01-20 16:58:52 +00:00
|
|
|
void setupToolTipString(struct gasmix *lastgasmix);
|
2018-01-20 17:21:39 +00:00
|
|
|
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
|