~unity-team/unity8/trunk

« back to all changes in this revision

Viewing changes to tests/mocks/QMenuModel/actiondata.h

  • Committer: CI Train Bot
  • Author(s): Nick Dedekind
  • Date: 2015-01-09 10:41:11 UTC
  • mfrom: (1369.7.9 unity8)
  • Revision ID: ci-train-bot@canonical.com-20150109104111-q0v11fkqz1li9j9q
Unhook Lights interface from indicator widgets Fixes: #1385331
Approved by: Albert Astals Cid

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
 * Authors: Nick Dedekind <nick.dedekind@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef ACTIONDATA_H
 
20
#define ACTIONDATA_H
 
21
 
 
22
#include <QObject>
 
23
#include <QVariant>
 
24
 
 
25
typedef struct _GVariant GVariant;
 
26
 
 
27
class Q_DECL_EXPORT ActionData : public QObject
 
28
{
 
29
    Q_OBJECT
 
30
    Q_PROPERTY(QVariant data READ data WRITE setData NOTIFY dataChanged)
 
31
public:
 
32
    ActionData(QObject* parent = 0)
 
33
        : QObject(parent)
 
34
    {}
 
35
 
 
36
    QVariant data() const { return m_data; }
 
37
    void setData(const QVariant& data)
 
38
    {
 
39
        if (m_data != data) {
 
40
            m_data = data;
 
41
            Q_EMIT dataChanged();
 
42
        }
 
43
    }
 
44
 
 
45
Q_SIGNALS:
 
46
    void dataChanged();
 
47
 
 
48
private:
 
49
    QVariant m_data;
 
50
};
 
51
 
 
52
#endif // ACTIONDATA_H