The setup of the item positions for the profile state should be done here. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
13 lines
248 B
C++
13 lines
248 B
C++
#ifndef ANIMATIONFUNCTIONS_H
|
|
#define ANIMATIONFUNCTIONS_H
|
|
|
|
#include <QtGlobal>
|
|
class QObject;
|
|
|
|
namespace Animations{
|
|
void hide(QObject *obj);
|
|
void moveTo(QObject *obj, qreal x, qreal y, int msecs = 500);
|
|
void animDelete(QObject *obj);
|
|
};
|
|
|
|
#endif |