aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/plugins/facebook/facebookconnectwidget.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2017-10-02 12:50:40 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-10-02 08:51:53 -0700
commit5778dceb5201544df7d89b27995b9ede6db1ae76 (patch)
treebbda9aa99a8d0d929079d8e0b02282f46a862ea3 /desktop-widgets/plugins/facebook/facebookconnectwidget.h
parentba8e6878a8afcfc007534514f1df632ba00818cd (diff)
downloadsubsurface-5778dceb5201544df7d89b27995b9ede6db1ae76.tar.gz
[Facebook] Prepare the FacebookInfo struct
This will hold the information for the profile upload. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/plugins/facebook/facebookconnectwidget.h')
-rw-r--r--desktop-widgets/plugins/facebook/facebookconnectwidget.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/desktop-widgets/plugins/facebook/facebookconnectwidget.h b/desktop-widgets/plugins/facebook/facebookconnectwidget.h
index 70bc58e33..793cf4bee 100644
--- a/desktop-widgets/plugins/facebook/facebookconnectwidget.h
+++ b/desktop-widgets/plugins/facebook/facebookconnectwidget.h
@@ -17,6 +17,15 @@ namespace Ui {
class SocialnetworksDialog;
}
+struct FacebookInfo {
+ enum Size {SMALL, MEDIUM, BIG};
+
+ QString bodyText;
+ QString albumId;
+ Size profileSize;
+ QPixmap profileData;
+};
+
class FacebookManager : public QObject
{
Q_OBJECT
@@ -66,12 +75,11 @@ private:
class SocialNetworkDialog : public QDialog {
Q_OBJECT
public:
- enum Size {SMALL, MEDIUM, BIG};
SocialNetworkDialog(QWidget *parent = 0);
QString text() const;
QString album() const;
- Size profileSize() const;
+ FacebookInfo::Size profileSize() const;
public slots:
void selectionChanged();