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>
21 lines
No EOL
622 B
C++
21 lines
No EOL
622 B
C++
#ifndef FACEBOOK_INTEGRATION_H
|
|
#define FACEBOOK_INTEGRATION_H
|
|
|
|
#include "subsurface-core/isocialnetworkintegration.h"
|
|
#include <QString>
|
|
|
|
class FacebookPlugin : public QObject, public 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();
|
|
};
|
|
|
|
#endif |