mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			515 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			515 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef PREFERENCES_GRAPH_H
 | |
| #define PREFERENCES_GRAPH_H
 | |
| 
 | |
| #include "abstractpreferenceswidget.h"
 | |
| 
 | |
| namespace Ui {
 | |
| 	class PreferencesGraph;
 | |
| }
 | |
| 
 | |
| class PreferencesGraph : public AbstractPreferencesWidget {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	PreferencesGraph();
 | |
| 	virtual ~PreferencesGraph();
 | |
| 	virtual void refreshSettings();
 | |
| 	virtual void syncSettings();
 | |
| 
 | |
| private slots:
 | |
| 	void on_gflow_valueChanged(int gf);
 | |
| 	void on_gfhigh_valueChanged(int gf);
 | |
| 	void on_buehlmann_toggled(bool buelmann);
 | |
| 
 | |
| private:
 | |
| 	Ui::PreferencesGraph *ui;
 | |
| 
 | |
| };
 | |
| 
 | |
| #endif
 |