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>
This commit is contained in:
Tomaz Canabrava 2014-01-14 14:59:24 -02:00 committed by Dirk Hohndel
parent 81e9fcc6e8
commit 639123a1e8
3 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,5 @@
#include "divepixmapitem.h"
DivePixmapItem::DivePixmapItem(QObject* parent): QObject(parent), QGraphicsPixmapItem()
{
}