mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
a27f67c026
Another futile attempt to cleanup the code and make coding style and whitespace consistent. I tried to add a file that describes the key points of our coding style. I have no illusions that this will help the least bit... This commit should ONLY change whitespace Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
24 lines
669 B
C++
24 lines
669 B
C++
#include "animationfunctions.h"
|
|
#include <QPropertyAnimation>
|
|
#include <QPointF>
|
|
|
|
namespace Animations {
|
|
|
|
void hide(QObject* obj)
|
|
{
|
|
QPropertyAnimation *animation = new QPropertyAnimation(obj, "opacity");
|
|
obj->connect(animation, SIGNAL(finished()), SLOT(deleteLater()));
|
|
animation->setStartValue(1);
|
|
animation->setEndValue(0);
|
|
animation->start(QAbstractAnimation::DeleteWhenStopped);
|
|
}
|
|
|
|
void moveTo(QObject* obj, qreal x, qreal y)
|
|
{
|
|
QPropertyAnimation *animation = new QPropertyAnimation(obj, "pos");
|
|
animation->setStartValue(obj->property("pos").toPointF());
|
|
animation->setEndValue(QPointF(x, y));
|
|
animation->start(QAbstractAnimation::DeleteWhenStopped);
|
|
}
|
|
|
|
}
|