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

« back to all changes in this revision

Viewing changes to social/src/facebook/facebooknotificationinterface.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 FACEBOOKNOTIFICATIONINTERFACE_H
 
33
#define FACEBOOKNOTIFICATIONINTERFACE_H
 
34
 
 
35
#include "identifiablecontentiteminterface.h"
 
36
 
 
37
#include <QtCore/QVariantMap>
 
38
#include <QtCore/QString>
 
39
#include <QtCore/QUrl>
 
40
 
 
41
class FacebookObjectReferenceInterface;
 
42
 
 
43
/*
 
44
 * NOTE: if you construct one of these in C++ directly,
 
45
 * you MUST call classBegin() and componentCompleted()
 
46
 * directly after construction.
 
47
 */
 
48
 
 
49
class FacebookNotificationInterfacePrivate;
 
50
class FacebookNotificationInterface : public IdentifiableContentItemInterface
 
51
{
 
52
    Q_OBJECT
 
53
    Q_PROPERTY(FacebookObjectReferenceInterface *from READ from NOTIFY fromChanged)
 
54
    Q_PROPERTY(FacebookObjectReferenceInterface *to READ to NOTIFY toChanged)
 
55
    Q_PROPERTY(FacebookObjectReferenceInterface *application READ application NOTIFY applicationChanged)
 
56
    Q_PROPERTY(QString createdTime READ createdTime NOTIFY createdTimeChanged)
 
57
    Q_PROPERTY(QString updatedTime READ updatedTime NOTIFY updatedTimeChanged)
 
58
    Q_PROPERTY(QString title READ title NOTIFY titleChanged)
 
59
    Q_PROPERTY(QUrl link READ link NOTIFY linkChanged)
 
60
    Q_PROPERTY(int unread READ unread NOTIFY unreadChanged)
 
61
    /* XXX TODO: "object" property -- probably another object reference? Undocumented. */
 
62
 
 
63
public:
 
64
    FacebookNotificationInterface(QObject *parent = 0);
 
65
    ~FacebookNotificationInterface();
 
66
 
 
67
    // overrides
 
68
    int type() const;
 
69
    Q_INVOKABLE bool remove();
 
70
    Q_INVOKABLE bool reload(const QStringList &whichFields = QStringList());
 
71
    void emitPropertyChangeSignals(const QVariantMap &oldData, const QVariantMap &newData);
 
72
 
 
73
    // properties
 
74
    FacebookObjectReferenceInterface *from() const;
 
75
    FacebookObjectReferenceInterface *to() const;
 
76
    FacebookObjectReferenceInterface *application() const;
 
77
    QString createdTime() const;
 
78
    QString updatedTime() const;
 
79
    QString title() const;
 
80
    QUrl link() const;
 
81
    int unread() const;
 
82
 
 
83
Q_SIGNALS:
 
84
    void fromChanged();
 
85
    void toChanged();
 
86
    void applicationChanged();
 
87
    void createdTimeChanged();
 
88
    void updatedTimeChanged();
 
89
    void titleChanged();
 
90
    void linkChanged();
 
91
    void unreadChanged();
 
92
 
 
93
protected:
 
94
    FacebookNotificationInterfacePrivate *f;
 
95
    friend class FacebookNotificationInterfacePrivate;
 
96
    Q_DISABLE_COPY(FacebookNotificationInterface)
 
97
};
 
98
 
 
99
#endif // FACEBOOKNOTIFICATIONINTERFACE_H