summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/profile/diverectitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-widgets/profile/diverectitem.h')
-rw-r--r--desktop-widgets/profile/diverectitem.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/desktop-widgets/profile/diverectitem.h b/desktop-widgets/profile/diverectitem.h
new file mode 100644
index 000000000..e616cf591
--- /dev/null
+++ b/desktop-widgets/profile/diverectitem.h
@@ -0,0 +1,17 @@
+#ifndef DIVERECTITEM_H
+#define DIVERECTITEM_H
+
+#include <QObject>
+#include <QGraphicsRectItem>
+
+class DiveRectItem : public QObject, public QGraphicsRectItem {
+ Q_OBJECT
+ Q_PROPERTY(QRectF rect WRITE setRect READ rect)
+ 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:
+ DiveRectItem(QObject *parent = 0, QGraphicsItem *parentItem = 0);
+};
+
+#endif // DIVERECTITEM_H