From 639123a1e8bb510a4f8dd37e864032d718bd88f4 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Tue, 14 Jan 2014 14:59:24 -0200 Subject: Added a QGraphicsPixmapItem subclass that handles Animations. This class is useful for adding / removing icons on the future profile in a way that they are smoothly added to / removed from the canvas. It uses the QProperty System to deal with animations. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-ui/profile/divepixmapitem.cpp | 5 +++++ qt-ui/profile/divepixmapitem.h | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 qt-ui/profile/divepixmapitem.cpp create mode 100644 qt-ui/profile/divepixmapitem.h (limited to 'qt-ui') 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 +#include + +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 -- cgit v1.2.3-70-g09d2