~mhr3/unity8/fix-1297246

« back to all changes in this revision

Viewing changes to tests/qmltests/plugins/Unity/fake_lenses.h

  • Committer: Michał Sawicz
  • Date: 2013-06-05 22:03:08 UTC
  • Revision ID: michal.sawicz@canonical.com-20130605220308-yny8fv3futtr04fg
Inital unity8 commit.

Previous history can be found at https://code.launchpad.net/~unity-team/unity/phablet

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU 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 General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Nick Dedekind <nick.dedekind@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef FAKE_LENSES_H
 
20
#define FAKE_LENSES_H
 
21
 
 
22
// Local
 
23
#include "fake_lens.h"
 
24
 
 
25
// Qt
 
26
#include <QAbstractListModel>
 
27
#include <QList>
 
28
#include <QTimer>
 
29
 
 
30
class Lenses : public QAbstractListModel
 
31
{
 
32
    Q_OBJECT
 
33
    Q_ENUMS(Roles)
 
34
    Q_PROPERTY(bool loaded READ loaded NOTIFY loadedChanged)
 
35
    Q_PROPERTY(int count READ count NOTIFY countChanged)
 
36
 
 
37
public:
 
38
    explicit Lenses(QObject *parent = 0);
 
39
    ~Lenses();
 
40
 
 
41
    enum Roles {
 
42
        RoleLens,
 
43
        RoleId,
 
44
        RoleVisible
 
45
    };
 
46
 
 
47
    Q_INVOKABLE int rowCount(const QModelIndex& parent = QModelIndex()) const;
 
48
 
 
49
    Q_INVOKABLE QVariant get(int row) const;
 
50
    Q_INVOKABLE QVariant get(const QString& lens_id) const;
 
51
 
 
52
    Q_INVOKABLE void addLens(Lens* lens);
 
53
 
 
54
    Q_INVOKABLE void clear();
 
55
    Q_INVOKABLE void load();
 
56
 
 
57
    QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
 
58
    QHash<int, QByteArray> roleNames() const;
 
59
    QModelIndex parent ( const QModelIndex & index ) const;
 
60
 
 
61
    bool loaded() const;
 
62
    int count() const;
 
63
 
 
64
Q_SIGNALS:
 
65
    void activateLensRequested(const QString& lens_id);
 
66
    void loadedChanged(bool);
 
67
    void countChanged();
 
68
 
 
69
private Q_SLOTS:
 
70
    void updateLenses();
 
71
 
 
72
private:
 
73
    QList<Lens*> m_lenses;
 
74
    QHash<int, QByteArray> m_roles;
 
75
    bool m_loaded;
 
76
    QTimer timer;
 
77
};
 
78
 
 
79
#endif // LENSES_H