~mterry/+junk/u8.2

« back to all changes in this revision

Viewing changes to tests/mocks/Unity/Indicators/fakeunitymenumodelcache.h

  • Committer: Michael Terry
  • Date: 2014-11-17 14:56:04 UTC
  • mfrom: (1317.1.118 unity8)
  • Revision ID: michael.terry@canonical.com-20141117145604-96dn9p5nwkifq2f4
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2014 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#ifndef FAKEUNITYMENUMODELCACHE_H
 
18
#define FAKEUNITYMENUMODELCACHE_H
 
19
 
 
20
#include "unitymenumodelcache.h"
 
21
 
 
22
#include <QVariantMap>
 
23
 
 
24
class FakeUnityMenuModelCache : public UnityMenuModelCache
 
25
{
 
26
    Q_OBJECT
 
27
public:
 
28
    FakeUnityMenuModelCache(QObject* parent = nullptr);
 
29
 
 
30
    static FakeUnityMenuModelCache* singleton();
 
31
 
 
32
    QSharedPointer<UnityMenuModel> model(const QByteArray& path) override;
 
33
    bool contains(const QByteArray& path) override;
 
34
 
 
35
    Q_INVOKABLE void setCachedModelData(const QByteArray& path,
 
36
                                        const QVariant& data = QVariant());
 
37
 
 
38
    Q_INVOKABLE QVariant getCachedModelData(const QByteArray& path);
 
39
 
 
40
private:
 
41
    static QPointer<FakeUnityMenuModelCache> theFakeCache;
 
42
    QHash<QByteArray, QSharedPointer<UnityMenuModel>> m_models;
 
43
};
 
44
 
 
45
#endif // FAKEUNITYMENUMODELCACHE_H