~ci-train-bot/unity-api/unity-api-ubuntu-zesty-2112

« back to all changes in this revision

Viewing changes to test/qmltest/mocks/plugins/Unity/Launcher/Mocks/MockLauncherItem.h

Add ApplicationInfoInterface::surfaceCount property

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    bool alerting() const;
60
60
    void setAlerting(bool alerting);
61
61
 
 
62
    int surfaceCount() const override;
 
63
 
62
64
    unity::shell::launcher::QuickListModelInterface *quickList() const;
63
65
 
64
66
private:
74
76
    bool m_countVisible;
75
77
    bool m_focused;
76
78
    bool m_alerting;
 
79
    int m_surfaceCount;
77
80
    QuickListModelInterface *m_quickListModel;
78
81
};
79
82