mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Another tiny step in making dive.h smaller: move function declarations to deco.h if these functions are defined in deco.c and don't directly concern dives. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef PREFERENCES_GRAPH_H
 | |
| #define PREFERENCES_GRAPH_H
 | |
| 
 | |
| #include "abstractpreferenceswidget.h"
 | |
| 
 | |
| namespace Ui {
 | |
| 	class PreferencesGraph;
 | |
| }
 | |
| 
 | |
| class PreferencesGraph : public AbstractPreferencesWidget {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	PreferencesGraph();
 | |
| 	~PreferencesGraph();
 | |
| 	void refreshSettings() override;
 | |
| 	void syncSettings() override;
 | |
| 
 | |
| 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
 |