mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
9b8a6fa855
Make methods static to allow fast and esay access use qPrefXYZ::foo() instead of qPrefXYZ::instance()->foo() Signed-off-by: Jan Iversen <jani@apache.org>
21 lines
493 B
C++
21 lines
493 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "qPrefAnimations.h"
|
|
#include "qPrefPrivate.h"
|
|
|
|
static const QString group = QStringLiteral("Animations");
|
|
|
|
qPrefAnimations::qPrefAnimations(QObject *parent) : QObject(parent)
|
|
{
|
|
}
|
|
qPrefAnimations *qPrefAnimations::instance()
|
|
{
|
|
static qPrefAnimations *self = new qPrefAnimations;
|
|
return self;
|
|
}
|
|
|
|
void qPrefAnimations::loadSync(bool doSync)
|
|
{
|
|
disk_animation_speed(doSync);
|
|
}
|
|
|
|
HANDLE_PREFERENCE_INT(Animations, "/animation_speed", animation_speed);
|