aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/animationfunctions.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-03-11 17:27:05 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-03-11 17:41:41 -0700
commit9f37bac07a06870bc3e5d1c150496ed347a4de99 (patch)
treeeca728536fdb97a9cced0eab2fcd182dc7cf3061 /qt-ui/profile/animationfunctions.h
parent466f160c01127c1a2aad37742f53a9a0b97eb274 (diff)
downloadsubsurface-9f37bac07a06870bc3e5d1c150496ed347a4de99.tar.gz
Support Animation Speed via Settings.
This is very userfull for a ( yet to be implemented ) preference dialog about the animation speed, so the user can enable / disable the animations or make it a bit faster for it's taste. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/animationfunctions.h')
-rw-r--r--qt-ui/profile/animationfunctions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/profile/animationfunctions.h b/qt-ui/profile/animationfunctions.h
index f6c93c7ae..e0338393e 100644
--- a/qt-ui/profile/animationfunctions.h
+++ b/qt-ui/profile/animationfunctions.h
@@ -9,8 +9,8 @@ class QObject;
namespace Animations
{
void hide(QObject *obj);
- void moveTo(QObject *obj, qreal x, qreal y, int msecs = 500);
- void moveTo(QObject *obj, const QPointF &pos, int msecs = 500);
+ void moveTo(QObject *obj, qreal x, qreal y);
+ void moveTo(QObject *obj, const QPointF &pos);
void animDelete(QObject *obj);
}