mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
81e9fcc6e8
commit
639123a1e8
3 changed files with 26 additions and 2 deletions
5
qt-ui/profile/divepixmapitem.cpp
Normal file
5
qt-ui/profile/divepixmapitem.cpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include "divepixmapitem.h"
|
||||
|
||||
DivePixmapItem::DivePixmapItem(QObject* parent): QObject(parent), QGraphicsPixmapItem()
|
||||
{
|
||||
}
|
17
qt-ui/profile/divepixmapitem.h
Normal file
17
qt-ui/profile/divepixmapitem.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef DIVEPIXMAPITEM_H
|
||||
#define DIVEPIXMAPITEM_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QGraphicsPixmapItem>
|
||||
|
||||
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
|
|
@ -64,7 +64,8 @@ HEADERS = \
|
|||
qt-ui/groupedlineedit.h \
|
||||
qt-ui/usermanual.h \
|
||||
qt-ui/profile/profilewidget2.h \
|
||||
qt-ui/profile/diverectitem.h
|
||||
qt-ui/profile/diverectitem.h \
|
||||
qt-ui/profile/divepixmapitem.h
|
||||
|
||||
SOURCES = \
|
||||
deco.c \
|
||||
|
@ -116,7 +117,8 @@ SOURCES = \
|
|||
qt-ui/groupedlineedit.cpp \
|
||||
qt-ui/usermanual.cpp \
|
||||
qt-ui/profile/profilewidget2.cpp \
|
||||
qt-ui/profile/diverectitem.cpp
|
||||
qt-ui/profile/diverectitem.cpp \
|
||||
qt-ui/profile/divepixmapitem.cpp
|
||||
|
||||
linux*: SOURCES += linux.c
|
||||
mac: SOURCES += macos.c
|
||||
|
|
Loading…
Reference in a new issue