mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Facebook Plugin is aware of it's connection status
This patch makes facebook plugin aware of it's connection status enabling uploads only when connected, and hooking some things up. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
		
							parent
							
								
									72b85e3151
								
							
						
					
					
						commit
						a1ff14a48f
					
				
					 3 changed files with 28 additions and 18 deletions
				
			
		|  | @ -3,25 +3,26 @@ | |||
| 
 | ||||
| #include <QDebug> | ||||
| 
 | ||||
| FacebookPlugin::FacebookPlugin(QObject* parent): QObject(parent) | ||||
| FacebookPlugin::FacebookPlugin(QObject* parent): QObject(parent), | ||||
| 	fbConnectWidget(new FacebookConnectWidget()), | ||||
| 	fbUploadDialog(new SocialNetworkDialog()) | ||||
| { | ||||
| 
 | ||||
| } | ||||
| 
 | ||||
| bool FacebookPlugin::isConnected() | ||||
| { | ||||
| 	return false; | ||||
| 	FacebookManager *instance = FacebookManager::instance(); | ||||
| 	return instance->loggedIn(); | ||||
| } | ||||
| 
 | ||||
| void FacebookPlugin::requestLogin() | ||||
| { | ||||
| 	FacebookConnectWidget connectDialog; | ||||
| 	connectDialog.exec(); | ||||
| 	fbConnectWidget->exec(); | ||||
| } | ||||
| 
 | ||||
| void FacebookPlugin::requestLogoff() | ||||
| { | ||||
| 
 | ||||
| 	FacebookManager::instance()->logout(); | ||||
| } | ||||
| 
 | ||||
| QString FacebookPlugin::socialNetworkIcon() const | ||||
|  | @ -36,5 +37,7 @@ QString FacebookPlugin::socialNetworkName() const | |||
| 
 | ||||
| void FacebookPlugin::requestUpload() | ||||
| { | ||||
| 	qDebug() << "Upload Requested"; | ||||
| 	FacebookManager *instance = FacebookManager::instance(); | ||||
| 	if (instance->loggedIn()) | ||||
| 		fbUploadDialog->exec(); | ||||
| } | ||||
|  |  | |||
|  | @ -4,18 +4,25 @@ | |||
| #include "subsurface-core/isocialnetworkintegration.h" | ||||
| #include <QString> | ||||
| 
 | ||||
| class FacebookConnectWidget; | ||||
| class SocialNetworkDialog; | ||||
| class FacebookManager; | ||||
| 
 | ||||
| class FacebookPlugin : public QObject, public ISocialNetworkIntegration { | ||||
|   Q_OBJECT | ||||
|   Q_PLUGIN_METADATA(IID "org.subsurface.plugins.ISocialNetworkIntegration") | ||||
|   Q_INTERFACES(ISocialNetworkIntegration) | ||||
| 	Q_OBJECT | ||||
| 	Q_PLUGIN_METADATA(IID "org.subsurface.plugins.ISocialNetworkIntegration") | ||||
| 	Q_INTERFACES(ISocialNetworkIntegration) | ||||
| 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(); | ||||
| 	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 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue