~ubuntu-filemanager-dev/ubuntu-filemanager-app/nemo-qml-plugins-packaging

« back to all changes in this revision

Viewing changes to social/src/facebook/facebookalbuminterface.h

  • Committer: Timo Jyrinki
  • Date: 2013-03-20 15:03:31 UTC
  • Revision ID: timo.jyrinki@canonical.com-20130320150331-aggtqfb7cufdiuzc
ImportĀ upstreamĀ 0.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Jolla Ltd. <chris.adams@jollamobile.com>
 
3
 *
 
4
 * You may use this file under the terms of the BSD license as follows:
 
5
 *
 
6
 * "Redistribution and use in source and binary forms, with or without
 
7
 * modification, are permitted provided that the following conditions are
 
8
 * met:
 
9
 *   * Redistributions of source code must retain the above copyright
 
10
 *     notice, this list of conditions and the following disclaimer.
 
11
 *   * Redistributions in binary form must reproduce the above copyright
 
12
 *     notice, this list of conditions and the following disclaimer in
 
13
 *     the documentation and/or other materials provided with the
 
14
 *     distribution.
 
15
 *   * Neither the name of Nemo Mobile nor the names of its contributors
 
16
 *     may be used to endorse or promote products derived from this
 
17
 *     software without specific prior written permission.
 
18
 *
 
19
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
20
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
21
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
22
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
23
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
24
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
25
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
26
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
27
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
28
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
29
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
30
 */
 
31
 
 
32
#ifndef FACEBOOKALBUMINTERFACE_H
 
33
#define FACEBOOKALBUMINTERFACE_H
 
34
 
 
35
#include "identifiablecontentiteminterface.h"
 
36
 
 
37
#include <QtCore/QObject>
 
38
#include <QtCore/QVariantMap>
 
39
#include <QtCore/QStringList>
 
40
#include <QtCore/QString>
 
41
#include <QtCore/QUrl>
 
42
 
 
43
class FacebookObjectReferenceInterface;
 
44
 
 
45
/*
 
46
 * NOTE: if you construct one of these in C++ directly,
 
47
 * you MUST call classBegin() and componentCompleted()
 
48
 * directly after construction.
 
49
 */
 
50
 
 
51
class FacebookAlbumInterfacePrivate;
 
52
class FacebookAlbumInterface : public IdentifiableContentItemInterface
 
53
{
 
54
    Q_OBJECT
 
55
 
 
56
    Q_PROPERTY(FacebookObjectReferenceInterface *from READ from NOTIFY fromChanged)
 
57
    Q_PROPERTY(QString name READ name NOTIFY nameChanged)
 
58
    Q_PROPERTY(QString description READ description NOTIFY descriptionChanged)
 
59
    Q_PROPERTY(QUrl link READ link NOTIFY linkChanged)
 
60
    Q_PROPERTY(QString coverPhoto READ coverPhoto NOTIFY coverPhotoChanged)
 
61
    Q_PROPERTY(QString privacy READ privacy NOTIFY privacyChanged)
 
62
    Q_PROPERTY(int count READ count NOTIFY countChanged)
 
63
    Q_PROPERTY(AlbumType albumType READ albumType NOTIFY albumTypeChanged)
 
64
    Q_PROPERTY(QString createdTime READ createdTime NOTIFY createdTimeChanged)
 
65
    Q_PROPERTY(QString updatedTime READ updatedTime NOTIFY updatedTimeChanged)
 
66
    Q_PROPERTY(bool canUpload READ canUpload NOTIFY canUploadChanged)
 
67
 
 
68
    Q_PROPERTY(bool liked READ liked NOTIFY likedChanged) // requires: requesting all likes connections, iterating through, finding "current user id" / or not...
 
69
 
 
70
    Q_ENUMS(AlbumType)
 
71
 
 
72
public:
 
73
    enum AlbumType {
 
74
        Album,
 
75
        Normal,
 
76
        Wall,
 
77
        Profile,
 
78
        Mobile
 
79
    };
 
80
 
 
81
public:
 
82
    FacebookAlbumInterface(QObject *parent = 0);
 
83
    ~FacebookAlbumInterface();
 
84
 
 
85
    // overrides.
 
86
    int type() const;
 
87
    Q_INVOKABLE bool remove();
 
88
    Q_INVOKABLE bool reload(const QStringList &whichFields = QStringList());
 
89
    void emitPropertyChangeSignals(const QVariantMap &oldData, const QVariantMap &newData);
 
90
 
 
91
    // invokable API
 
92
    Q_INVOKABLE bool like();
 
93
    Q_INVOKABLE bool unlike();
 
94
    Q_INVOKABLE bool uploadComment(const QString &message);
 
95
    Q_INVOKABLE bool removeComment(const QString &commentIdentifier);
 
96
    Q_INVOKABLE bool uploadPhoto(const QUrl &source, const QString &message = QString());
 
97
    Q_INVOKABLE bool removePhoto(const QString &photoIdentifier);
 
98
 
 
99
public:
 
100
    // property accessors.
 
101
    FacebookObjectReferenceInterface *from() const;
 
102
    QString name() const;
 
103
    QString description() const;
 
104
    QUrl link() const;
 
105
    QString coverPhoto() const;
 
106
    QString privacy() const;
 
107
    int count() const;
 
108
    AlbumType albumType() const;
 
109
    QString createdTime() const;
 
110
    QString updatedTime() const;
 
111
    bool canUpload() const;
 
112
    bool liked() const;
 
113
 
 
114
Q_SIGNALS:
 
115
    void fromChanged();
 
116
    void nameChanged();
 
117
    void descriptionChanged();
 
118
    void linkChanged();
 
119
    void coverPhotoChanged();
 
120
    void privacyChanged();
 
121
    void countChanged();
 
122
    void albumTypeChanged();
 
123
    void createdTimeChanged();
 
124
    void updatedTimeChanged();
 
125
    void canUploadChanged();
 
126
    void likedChanged();
 
127
 
 
128
private:
 
129
    FacebookAlbumInterfacePrivate *f;
 
130
    friend class FacebookAlbumInterfacePrivate;
 
131
    Q_DISABLE_COPY(FacebookAlbumInterface)
 
132
};
 
133
 
 
134
#endif // FACEBOOKALBUMINTERFACE_H