~mzanetti/unity8/fix-left-edge-on-spread

« back to all changes in this revision

Viewing changes to tests/mocks/QMenuModel/dbus-enums.h

  • Committer: Michael Zanetti
  • Date: 2015-01-12 11:21:17 UTC
  • mfrom: (1459.1.85 unity8)
  • Revision ID: michael.zanetti@canonical.com-20150112112117-0x9srs9dx0ndp60g
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2012 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
 * Authors:
 
17
 *      Olivier Tilloy <olivier.tilloy@canonical.com>
 
18
 */
 
19
 
 
20
#ifndef __DBUS_ENUMS__
 
21
#define __DBUS_ENUMS__
 
22
 
 
23
#include <QObject>
 
24
 
 
25
// This class acts as a namespace only, with the addition that its enums
 
26
// are registered to be exposed on the QML side.
 
27
class DBusEnums : public QObject
 
28
{
 
29
    Q_OBJECT
 
30
 
 
31
    Q_ENUMS(BusType)
 
32
    Q_ENUMS(ConnectionStatus)
 
33
 
 
34
public:
 
35
    enum BusType {
 
36
        None = 0,
 
37
        SessionBus,
 
38
        SystemBus,
 
39
        LastBusType
 
40
    };
 
41
 
 
42
    enum ConnectionStatus {
 
43
        Disconnected = 0,
 
44
        Connecting,
 
45
        Connected
 
46
    };
 
47
 
 
48
private:
 
49
    DBusEnums() {}
 
50
};
 
51
 
 
52
#endif // __DBUS_ENUMS__