summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/profile/diveeventitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-widgets/profile/diveeventitem.h')
-rw-r--r--desktop-widgets/profile/diveeventitem.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/desktop-widgets/profile/diveeventitem.h b/desktop-widgets/profile/diveeventitem.h
deleted file mode 100644
index f358fee6d..000000000
--- a/desktop-widgets/profile/diveeventitem.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef DIVEEVENTITEM_H
-#define DIVEEVENTITEM_H
-
-#include "divepixmapitem.h"
-
-class DiveCartesianAxis;
-class DivePlotDataModel;
-struct event;
-
-class DiveEventItem : public DivePixmapItem {
- Q_OBJECT
-public:
- DiveEventItem(QObject *parent = 0);
- void setEvent(struct event *ev);
- struct event *getEvent();
- void eventVisibilityChanged(const QString &eventName, bool visible);
- void setVerticalAxis(DiveCartesianAxis *axis);
- void setHorizontalAxis(DiveCartesianAxis *axis);
- void setModel(DivePlotDataModel *model);
- bool shouldBeHidden();
-public
-slots:
- void recalculatePos(bool instant = false);
-
-private:
- void setupToolTipString();
- void setupPixmap();
- DiveCartesianAxis *vAxis;
- DiveCartesianAxis *hAxis;
- DivePlotDataModel *dataModel;
- struct event *internalEvent;
-};
-
-#endif // DIVEEVENTITEM_H