mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: make methods in qPref* static
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>
This commit is contained in:
parent
0825f644e0
commit
9b8a6fa855
22 changed files with 349 additions and 348 deletions
|
@ -18,21 +18,21 @@ public:
|
|||
static qPrefUpdateManager *instance();
|
||||
|
||||
// Load/Sync local settings (disk) and struct preference
|
||||
void loadSync(bool doSync);
|
||||
void load() { loadSync(false); }
|
||||
void sync() { loadSync(true); }
|
||||
static void loadSync(bool doSync);
|
||||
static void load() { loadSync(false); }
|
||||
static void sync() { loadSync(true); }
|
||||
|
||||
public:
|
||||
bool dont_check_for_updates() { return prefs.update_manager.dont_check_for_updates; }
|
||||
bool dont_check_exists() { return prefs.update_manager.dont_check_exists; }
|
||||
const QString last_version_used() { return prefs.update_manager.last_version_used; }
|
||||
const QDate next_check() { return QDate::fromString(QString(prefs.update_manager.next_check), "dd/MM/yyyy"); }
|
||||
static bool dont_check_for_updates() { return prefs.update_manager.dont_check_for_updates; }
|
||||
static bool dont_check_exists() { return prefs.update_manager.dont_check_exists; }
|
||||
static const QString last_version_used() { return prefs.update_manager.last_version_used; }
|
||||
static const QDate next_check() { return QDate::fromString(QString(prefs.update_manager.next_check), "dd/MM/yyyy"); }
|
||||
|
||||
public slots:
|
||||
void set_dont_check_for_updates(bool value);
|
||||
void set_dont_check_exists(bool value);
|
||||
void set_last_version_used(const QString& value);
|
||||
void set_next_check(const QDate& value);
|
||||
static void set_dont_check_for_updates(bool value);
|
||||
static void set_dont_check_exists(bool value);
|
||||
static void set_last_version_used(const QString& value);
|
||||
static void set_next_check(const QDate& value);
|
||||
|
||||
signals:
|
||||
void dont_check_for_updates_changed(bool value);
|
||||
|
@ -41,9 +41,9 @@ signals:
|
|||
void next_check_changed(const QDate& value);
|
||||
|
||||
private:
|
||||
void disk_dont_check_for_updates(bool doSync);
|
||||
void disk_last_version_used(bool doSync);
|
||||
void disk_next_check(bool doSync);
|
||||
static void disk_dont_check_for_updates(bool doSync);
|
||||
static void disk_last_version_used(bool doSync);
|
||||
static void disk_next_check(bool doSync);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue