diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2014-01-14 14:59:24 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-16 10:12:29 +0700 |
commit | 639123a1e8bb510a4f8dd37e864032d718bd88f4 (patch) | |
tree | 12a1a7807cc154967ff31e6f58d736220da3004a /qt-ui/profile/divepixmapitem.cpp | |
parent | 81e9fcc6e8f1eb1ee3e0010e017562d8c45edcd8 (diff) | |
download | subsurface-639123a1e8bb510a4f8dd37e864032d718bd88f4.tar.gz |
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 <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/divepixmapitem.cpp')
-rw-r--r-- | qt-ui/profile/divepixmapitem.cpp | 5 |
1 files changed, 5 insertions, 0 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 |