mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			674 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			674 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef FACEBOOK_INTEGRATION_H
 | |
| #define FACEBOOK_INTEGRATION_H
 | |
| 
 | |
| #include "core/isocialnetworkintegration.h"
 | |
| #include <QString>
 | |
| 
 | |
| class FacebookConnectWidget;
 | |
| class SocialNetworkDialog;
 | |
| class FacebookManager;
 | |
| 
 | |
| class FacebookPlugin : public ISocialNetworkIntegration {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	explicit FacebookPlugin(QObject* parent = 0);
 | |
| 	virtual bool isConnected();
 | |
| 	virtual void requestLogin();
 | |
| 	virtual void requestLogoff();
 | |
| 	virtual QString socialNetworkIcon() const;
 | |
| 	virtual QString socialNetworkName() const;
 | |
| 	virtual void requestUpload();
 | |
| private:
 | |
| 	FacebookConnectWidget *fbConnectWidget;
 | |
| 	SocialNetworkDialog *fbUploadDialog;
 | |
| };
 | |
| 
 | |
| #endif
 |