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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue