mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 05:30:41 +00:00
287977b04c
Since we can't forbit the plugins to upload more than just the current dive, it's better to change the name of the call. also add a stub to make sure it's calling the right method inside the plugin. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
40 lines
587 B
C++
40 lines
587 B
C++
#include "facebook_integration.h"
|
|
#include "facebookconnectwidget.h"
|
|
|
|
#include <QDebug>
|
|
|
|
FacebookPlugin::FacebookPlugin(QObject* parent): QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
bool FacebookPlugin::isConnected()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void FacebookPlugin::requestLogin()
|
|
{
|
|
FacebookConnectWidget connectDialog;
|
|
connectDialog.exec();
|
|
}
|
|
|
|
void FacebookPlugin::requestLogoff()
|
|
{
|
|
|
|
}
|
|
|
|
QString FacebookPlugin::socialNetworkIcon() const
|
|
{
|
|
return QString();
|
|
}
|
|
|
|
QString FacebookPlugin::socialNetworkName() const
|
|
{
|
|
return tr("Facebook");
|
|
}
|
|
|
|
void FacebookPlugin::requestUpload()
|
|
{
|
|
qDebug() << "Upload Requested";
|
|
}
|