mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 21:50:26 +00:00
9021a44ccc
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
27 lines
674 B
C++
27 lines
674 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;
|
|
SocialNetworkDialog *fbUploadDialog;
|
|
};
|
|
|
|
#endif
|