diff options
Diffstat (limited to 'qt-ui/profile/diverectitem.h')
-rw-r--r-- | qt-ui/profile/diverectitem.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/qt-ui/profile/diverectitem.h b/qt-ui/profile/diverectitem.h new file mode 100644 index 000000000..a595a64f1 --- /dev/null +++ b/qt-ui/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
\ No newline at end of file |