diff options
Diffstat (limited to 'profile-widget/animationfunctions.h')
-rw-r--r-- | profile-widget/animationfunctions.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/profile-widget/animationfunctions.h b/profile-widget/animationfunctions.h new file mode 100644 index 000000000..3cfcff563 --- /dev/null +++ b/profile-widget/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 |