mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Including ssrf-version.h in an include file that a lot of files depend on caused a ton of unnecessary recompiles with every commit. This should reduce that problem. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			708 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			708 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef QPREF_H
 | |
| #define QPREF_H
 | |
| #include "core/pref.h"
 | |
| 
 | |
| #include <QObject>
 | |
| #include <QQmlEngine>
 | |
| 
 | |
| class qPref : public QObject {
 | |
| 	Q_OBJECT
 | |
| 	Q_PROPERTY(QString canonical_version READ canonical_version);
 | |
| 	Q_PROPERTY(QString mobile_version READ mobile_version);
 | |
| 
 | |
| public:
 | |
| 	qPref(QObject *parent = NULL);
 | |
| 	static qPref *instance();
 | |
| 
 | |
| 	// Load/Sync local settings (disk) and struct preference
 | |
| 	static void load() { loadSync(false); }
 | |
| 	static void sync() { loadSync(true); }
 | |
| 
 | |
| 	// Register QML
 | |
| 	void registerQML(QQmlEngine *engine);
 | |
| 
 | |
| public:
 | |
| 	static const QString canonical_version();
 | |
| 	static const QString mobile_version();
 | |
| 
 | |
| private:
 | |
| 	static void loadSync(bool doSync);
 | |
| };
 | |
| #endif
 |