mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			738 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			738 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef ABSTRACTPREFERENCESWIDGET_H
 | |
| #define ABSTRACTPREFERENCESWIDGET_H
 | |
| 
 | |
| #include <QIcon>
 | |
| #include <QWidget>
 | |
| 
 | |
| class AbstractPreferencesWidget : public QWidget {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	AbstractPreferencesWidget(const QString& name, const QIcon& icon, float positionHeight);
 | |
| 	QIcon icon() const;
 | |
| 	QString name() const;
 | |
| 	float positionHeight() const;
 | |
| 
 | |
| 	/* gets the values from the preferences and should set the correct values in
 | |
| 	 * the interface */
 | |
| 	virtual void refreshSettings() = 0;
 | |
| 
 | |
| 	/* gets the values from the interface and set in the preferences object. */
 | |
| 	virtual void syncSettings() = 0;
 | |
| 
 | |
| signals:
 | |
| 	void settingsChanged();
 | |
| 
 | |
| private:
 | |
| 	QIcon _icon;
 | |
| 	QString _name;
 | |
| 	float _positionHeight;
 | |
| };
 | |
| #endif
 |