~mterry/+junk/u8

« back to all changes in this revision

Viewing changes to tests/mocks/Unity/Notifications/MockNotification.h

updated from lp:~unity-mir/unity8/shellRotation

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    Q_PROPERTY(QString icon READ getIcon WRITE setIcon NOTIFY iconChanged)
39
39
    Q_PROPERTY(QString secondaryIcon READ getSecondaryIcon WRITE setSecondaryIcon NOTIFY secondaryIconChanged)
40
40
    Q_PROPERTY(Type type READ getType WRITE setType NOTIFY typeChanged)
41
 
    Q_PROPERTY(QStringList rawActions WRITE setActions)
 
41
    Q_PROPERTY(QStringList rawActions READ rawActions WRITE setActions)
42
42
    Q_PROPERTY(ActionModel* actions READ getActions NOTIFY actionsChanged)
43
43
    Q_PROPERTY(QVariantMap hints READ getHints WRITE setHints NOTIFY hintsChanged)
44
44
 
83
83
    Type getType() const;
84
84
    void setType(Type type);
85
85
    ActionModel* getActions() const;
 
86
    QStringList rawActions() const;
86
87
    void setActions(const QStringList &actions);
87
88
    QVariantMap getHints() const;
88
89
    void setHints(const QVariantMap& hints);