~mterry/unity8/less-ubuntucolors

« back to all changes in this revision

Viewing changes to tests/mocks/Unity/Application/MirSurfaceListModel.h

  • Committer: Michael Zanetti
  • Date: 2016-05-02 08:15:14 UTC
  • mfrom: (2325.1.50 unity8)
  • Revision ID: michael.zanetti@canonical.com-20160502081514-9cnbi0v1sqjkhym4
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 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
 
 
17
#ifndef MIRSURFACELISTMODEL_H
 
18
#define MIRSURFACELISTMODEL_H
 
19
 
 
20
// unity-api
 
21
#include <unity/shell/application/MirSurfaceListInterface.h>
 
22
 
 
23
#include <QAbstractListModel>
 
24
#include <QList>
 
25
 
 
26
class MirSurface;
 
27
 
 
28
class MirSurfaceListModel : public unity::shell::application::MirSurfaceListInterface
 
29
{
 
30
    Q_OBJECT
 
31
public:
 
32
    explicit MirSurfaceListModel(QObject *parent = 0);
 
33
 
 
34
    Q_INVOKABLE unity::shell::application::MirSurfaceInterface *get(int index) override;
 
35
    const unity::shell::application::MirSurfaceInterface *get(int index) const;
 
36
 
 
37
    // QAbstractItemModel methods
 
38
    int rowCount(const QModelIndex &parent = QModelIndex()) const override;
 
39
    QVariant data(const QModelIndex& index, int role) const override;
 
40
 
 
41
    void appendSurface(MirSurface *surface);
 
42
    void removeSurface(MirSurface *surface);
 
43
 
 
44
    bool contains(MirSurface *surface) const { return m_surfaceList.contains(surface); }
 
45
 
 
46
private:
 
47
    void raise(MirSurface *surface);
 
48
    void moveSurface(int from, int to);
 
49
    void connectSurface(MirSurface *surface);
 
50
 
 
51
    QList<MirSurface*> m_surfaceList;
 
52
};
 
53
 
 
54
Q_DECLARE_METATYPE(MirSurfaceListModel*)
 
55
 
 
56
#endif // MIRSURFACELISTMODEL_H