| 
									
										
										
										
											2018-08-03 19:24:53 +02:00
										 |  |  | // SPDX-License-Identifier: GPL-2.0
 | 
					
						
							|  |  |  | #ifndef QPREFUPDATEMANAGER_H
 | 
					
						
							|  |  |  | #define QPREFUPDATEMANAGER_H
 | 
					
						
							|  |  |  | #include "core/pref.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							|  |  |  | #include <QDate>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class qPrefUpdateManager : public QObject { | 
					
						
							|  |  |  | 	Q_OBJECT | 
					
						
							| 
									
										
										
										
											2019-02-11 20:27:30 +01:00
										 |  |  | 	Q_PROPERTY(bool dont_check_for_updates READ dont_check_for_updates WRITE set_dont_check_for_updates NOTIFY dont_check_for_updatesChanged) | 
					
						
							|  |  |  | 	Q_PROPERTY(const QString last_version_used READ last_version_used WRITE set_last_version_used NOTIFY last_version_usedChanged) | 
					
						
							|  |  |  | 	Q_PROPERTY(const QDate next_check READ next_check WRITE set_next_check NOTIFY next_checkChanged) | 
					
						
							|  |  |  | 	Q_PROPERTY(const QString uuidString READ uuidString WRITE set_uuidString NOTIFY uuidStringChanged) | 
					
						
							| 
									
										
										
										
											2018-08-03 19:24:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	static qPrefUpdateManager *instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Load/Sync local settings (disk) and struct preference
 | 
					
						
							| 
									
										
										
										
											2018-08-14 10:30:07 +02:00
										 |  |  | 	static void loadSync(bool doSync); | 
					
						
							|  |  |  | 	static void load() { loadSync(false); } | 
					
						
							|  |  |  | 	static void sync() { loadSync(true); } | 
					
						
							| 
									
										
										
										
											2018-08-03 19:24:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2018-08-14 10:30:07 +02:00
										 |  |  | 	static bool dont_check_for_updates() { return prefs.update_manager.dont_check_for_updates; } | 
					
						
							|  |  |  | 	static const QString last_version_used() { return prefs.update_manager.last_version_used; } | 
					
						
							| 
									
										
										
										
											2018-08-15 17:19:29 +02:00
										 |  |  | 	static const QDate next_check() { return QDate::fromJulianDay(prefs.update_manager.next_check); } | 
					
						
							| 
									
										
										
										
											2018-08-19 12:00:01 +02:00
										 |  |  | 	static const QString uuidString() { return st_uuidString; } | 
					
						
							| 
									
										
										
										
											2018-08-03 19:24:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | public slots: | 
					
						
							| 
									
										
										
										
											2018-08-14 10:30:07 +02:00
										 |  |  | 	static void set_dont_check_for_updates(bool value); | 
					
						
							|  |  |  | 	static void set_last_version_used(const QString& value); | 
					
						
							|  |  |  | 	static void set_next_check(const QDate& value); | 
					
						
							| 
									
										
										
										
											2018-08-19 12:00:01 +02:00
										 |  |  | 	static void set_uuidString(const QString& value); | 
					
						
							| 
									
										
										
										
											2018-08-03 19:24:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | signals: | 
					
						
							| 
									
										
										
										
											2018-09-02 13:58:04 +02:00
										 |  |  | 	void dont_check_for_updatesChanged(bool value); | 
					
						
							|  |  |  | 	void last_version_usedChanged(const QString& value); | 
					
						
							|  |  |  | 	void next_checkChanged(const QDate& value); | 
					
						
							|  |  |  | 	void uuidStringChanged(const QString& value); | 
					
						
							| 
									
										
										
										
											2018-08-03 19:24:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2018-09-14 12:25:18 +02:00
										 |  |  | 	qPrefUpdateManager() {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-14 10:30:07 +02:00
										 |  |  | 	static void disk_dont_check_for_updates(bool doSync); | 
					
						
							|  |  |  | 	static void disk_last_version_used(bool doSync); | 
					
						
							|  |  |  | 	static void disk_next_check(bool doSync); | 
					
						
							| 
									
										
										
										
											2018-08-19 12:00:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// load only for class variables
 | 
					
						
							|  |  |  | 	static void load_uuidString(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// class variables not present in structure preferences
 | 
					
						
							|  |  |  | 	static QString st_uuidString; | 
					
						
							| 
									
										
										
										
											2018-08-03 19:24:53 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |