~lukas-kde/unity8/appdrawer-search-more

« back to all changes in this revision

Viewing changes to tests/mocks/Unity/Launcher/MockLauncherItem.h

merge lp:~mzanetti/unity8/appdrawer-recent-apps

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    QString icon() const override;
42
42
    QStringList keywords() const override;
43
43
    QString description() const override;
 
44
    uint popularity() const override;
44
45
 
45
46
    bool pinned() const override;
46
47
    bool running() const override;
57
58
private:
58
59
    void setKeywords(const QStringList &keywords);
59
60
    void setDescription(const QString &description);
 
61
    void setPopularity(uint popularity);
60
62
    void setPinned(bool pinned);
61
63
    void setRunning(bool running);
62
64
    void setRecent(bool recent);
73
75
    QString m_icon;
74
76
    QStringList m_keywords;
75
77
    QString m_description;
 
78
    uint m_popularity;
76
79
    bool m_pinned;
77
80
    bool m_running;
78
81
    bool m_recent;