mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
	
	
		
			27 lines
		
	
	
	
		
			471 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			27 lines
		
	
	
	
		
			471 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);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								private:
							 | 
						||
| 
								 | 
							
									Ui::PreferencesGraph *ui;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif
							 |