mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	This must be the number one support request we get. I can't believe we never thought of adding a button to do this. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			534 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			534 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef PREFERENCES_CLOUD_H
 | |
| #define PREFERENCES_CLOUD_H
 | |
| 
 | |
| #include "abstractpreferenceswidget.h"
 | |
| 
 | |
| namespace Ui {
 | |
| 	class PreferencesCloud;
 | |
| }
 | |
| 
 | |
| class PreferencesCloud : public AbstractPreferencesWidget {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 	PreferencesCloud();
 | |
| 	~PreferencesCloud();
 | |
| 	void refreshSettings() override;
 | |
| 	void syncSettings() override;
 | |
| 
 | |
| public slots:
 | |
| 	void updateCloudAuthenticationState();
 | |
| 	void passwordUpdateSuccessful();
 | |
| 	void on_resetPassword_clicked();
 | |
| 
 | |
| private:
 | |
| 	Ui::PreferencesCloud *ui;
 | |
| };
 | |
| 
 | |
| #endif
 |