mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
3c3729711c
Add qPrefPrivate class which contains one QSettings variable, delete QSettings from qPref* class definitions this secures there are only instance of QSettings (QSettings needs to be in a QObject class to work) Signed-off-by: Jan Iversen <jani@apache.org>
34 lines
767 B
C++
34 lines
767 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QPREFANIMATIONS_H
|
|
#define QPREFANIMATIONS_H
|
|
|
|
#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);
|
|
void load() { loadSync(false); }
|
|
void sync() { loadSync(true); }
|
|
|
|
public:
|
|
int animation_speed() const;
|
|
|
|
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
|