diff options
Diffstat (limited to 'desktop-widgets/profile/animationfunctions.h')
-rw-r--r-- | desktop-widgets/profile/animationfunctions.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/desktop-widgets/profile/animationfunctions.h b/desktop-widgets/profile/animationfunctions.h new file mode 100644 index 000000000..3cfcff563 --- /dev/null +++ b/desktop-widgets/profile/animationfunctions.h @@ -0,0 +1,18 @@ +#ifndef ANIMATIONFUNCTIONS_H +#define ANIMATIONFUNCTIONS_H + +#include <QtGlobal> +#include <QPointF> + +class QObject; + +namespace Animations { + void hide(QObject *obj); + void show(QObject *obj); + void moveTo(QObject *obj, qreal x, qreal y); + void moveTo(QObject *obj, const QPointF &pos); + void animDelete(QObject *obj); + void scaleTo(QObject *obj, qreal scale); +} + +#endif // ANIMATIONFUNCTIONS_H |