2018-07-12 08:15:09 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef QPREFANIMATIONS_H
|
|
|
|
#define QPREFANIMATIONS_H
|
2018-07-21 16:12:59 +00:00
|
|
|
#include "core/pref.h"
|
2018-07-12 08:15:09 +00:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class qPrefAnimations : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(int animation_speed READ animation_speed WRITE set_animation_speed NOTIFY animation_speed_changed);
|
|
|
|
|
|
|
|
public:
|
|
|
|
qPrefAnimations(QObject *parent = NULL);
|
|
|
|
static qPrefAnimations *instance();
|
|
|
|
|
|
|
|
// Load/Sync local settings (disk) and struct preference
|
|
|
|
void loadSync(bool doSync);
|
2018-08-02 16:32:51 +00:00
|
|
|
void load() { loadSync(false); }
|
|
|
|
void sync() { loadSync(true); }
|
2018-07-12 08:15:09 +00:00
|
|
|
|
|
|
|
public:
|
2018-08-02 16:32:51 +00:00
|
|
|
static int animation_speed() { return prefs.animation_speed; }
|
2018-07-12 08:15:09 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void set_animation_speed(int value);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void animation_speed_changed(int value);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// functions to load/sync variable with disk
|
|
|
|
void disk_animation_speed(bool doSync);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|