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