aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qt-ui/profile/divepixmapitem.cpp5
-rw-r--r--qt-ui/profile/divepixmapitem.h17
-rw-r--r--subsurface.pro6
3 files changed, 26 insertions, 2 deletions
diff --git a/qt-ui/profile/divepixmapitem.cpp b/qt-ui/profile/divepixmapitem.cpp
new file mode 100644
index 000000000..5065396fb
--- /dev/null
+++ b/qt-ui/profile/divepixmapitem.cpp
@@ -0,0 +1,5 @@
+#include "divepixmapitem.h"
+
+DivePixmapItem::DivePixmapItem(QObject* parent): QObject(parent), QGraphicsPixmapItem()
+{
+} \ No newline at end of file
diff --git a/qt-ui/profile/divepixmapitem.h b/qt-ui/profile/divepixmapitem.h
new file mode 100644
index 000000000..c520e40a0
--- /dev/null
+++ b/qt-ui/profile/divepixmapitem.h
@@ -0,0 +1,17 @@
+#ifndef DIVEPIXMAPITEM_H
+#define DIVEPIXMAPITEM_H
+
+#include <QObject>
+#include <QGraphicsPixmapItem>
+
+class DivePixmapItem : public QObject, public QGraphicsPixmapItem{
+ Q_OBJECT
+ Q_PROPERTY(qreal opacity WRITE setOpacity READ opacity)
+ 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:
+ DivePixmapItem(QObject* parent = 0);
+};
+
+#endif \ No newline at end of file
diff --git a/subsurface.pro b/subsurface.pro
index 57304c383..0c3fdb95b 100644
--- a/subsurface.pro
+++ b/subsurface.pro
@@ -64,7 +64,8 @@ HEADERS = \
qt-ui/groupedlineedit.h \
qt-ui/usermanual.h \
qt-ui/profile/profilewidget2.h \
- qt-ui/profile/diverectitem.h
+ qt-ui/profile/diverectitem.h \
+ qt-ui/profile/divepixmapitem.h
SOURCES = \
deco.c \
@@ -116,7 +117,8 @@ SOURCES = \
qt-ui/groupedlineedit.cpp \
qt-ui/usermanual.cpp \
qt-ui/profile/profilewidget2.cpp \
- qt-ui/profile/diverectitem.cpp
+ qt-ui/profile/diverectitem.cpp \
+ qt-ui/profile/divepixmapitem.cpp
linux*: SOURCES += linux.c
mac: SOURCES += macos.c