mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 13:40:20 +00:00
6504cd8c46
This is what Tomaz said should be done. Thanks! Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
43 lines
788 B
C++
43 lines
788 B
C++
#include "facebook_integration.h"
|
|
#include "facebookconnectwidget.h"
|
|
|
|
#include <QDebug>
|
|
|
|
FacebookPlugin::FacebookPlugin(QObject* parent) :
|
|
fbConnectWidget(new FacebookConnectWidget())
|
|
{
|
|
Q_UNUSED(parent)
|
|
}
|
|
|
|
bool FacebookPlugin::isConnected()
|
|
{
|
|
FacebookManager *instance = FacebookManager::instance();
|
|
return instance->loggedIn();
|
|
}
|
|
|
|
void FacebookPlugin::requestLogin()
|
|
{
|
|
fbConnectWidget->exec();
|
|
}
|
|
|
|
void FacebookPlugin::requestLogoff()
|
|
{
|
|
FacebookManager::instance()->logout();
|
|
}
|
|
|
|
QString FacebookPlugin::socialNetworkIcon() const
|
|
{
|
|
return QString();
|
|
}
|
|
|
|
QString FacebookPlugin::socialNetworkName() const
|
|
{
|
|
return tr("Facebook");
|
|
}
|
|
|
|
void FacebookPlugin::requestUpload()
|
|
{
|
|
FacebookManager *instance = FacebookManager::instance();
|
|
if (instance->loggedIn())
|
|
instance->sendDive();
|
|
}
|