mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
0852f9a2ab
CID 208307 Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
26 lines
636 B
C++
26 lines
636 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef FACEBOOK_INTEGRATION_H
|
|
#define FACEBOOK_INTEGRATION_H
|
|
|
|
#include "core/isocialnetworkintegration.h"
|
|
#include <QString>
|
|
|
|
class FacebookConnectWidget;
|
|
class SocialNetworkDialog;
|
|
class FacebookManager;
|
|
|
|
class FacebookPlugin : public ISocialNetworkIntegration {
|
|
Q_OBJECT
|
|
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();
|
|
private:
|
|
FacebookConnectWidget *fbConnectWidget;
|
|
};
|
|
|
|
#endif
|