Unity 8
qinputinfo.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2014 Canonical, Ltd. and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtSystems module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia. For licensing terms and
14 ** conditions see http://qt.digia.com/licensing. For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file. Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights. These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file. Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 #include "qinputinfo.h"
43 
44 #if defined(Q_OS_LINUX)
45 #include "linux/qinputdeviceinfo_linux_p.h"
46 #endif
47 
48 QT_BEGIN_NAMESPACE
49 
50 
51 QInputDevicePrivate::QInputDevicePrivate(QObject *parent) :
52  QObject(parent),
53  types(QInputDeviceInfo::Unknown)
54 {
55 }
56 
57 QInputDevice::QInputDevice(QObject *parent) :
58  QObject(parent),
59  d_ptr(new QInputDevicePrivate(this))
60 {
61 }
62 
63 QString QInputDevice::name() const
64 {
65  return d_ptr->name;
66 }
67 
68 void QInputDevice::setName(const QString &name)
69 {
70  d_ptr->name = name;
71 }
72 
73 QString QInputDevice::devicePath() const
74 {
75  return d_ptr->devicePath;
76 }
77 
78 void QInputDevice::setDevicePath(const QString &path)
79 {
80  d_ptr->devicePath = path;
81 }
82 
83 QList <int> QInputDevice::buttons() const
84 {
85  return d_ptr->buttons;
86 }
87 
88 void QInputDevice::addButton(int buttonCode)
89 {
90  d_ptr->buttons.append(buttonCode);
91 }
92 
93 QList <int> QInputDevice::switches() const
94 {
95  return d_ptr->switches;
96 }
97 
98 void QInputDevice::addSwitch(int switchCode)
99 {
100  d_ptr->switches.append(switchCode);
101 }
102 
103 QList <int> QInputDevice::relativeAxis() const
104 {
105  return d_ptr->relativeAxis;
106 }
107 
108 void QInputDevice::addRelativeAxis(int axisCode)
109 {
110  d_ptr->relativeAxis.append(axisCode);
111 }
112 
113 QList <int> QInputDevice::absoluteAxis() const
114 {
115  return d_ptr->absoluteAxis;
116 }
117 
118 void QInputDevice::addAbsoluteAxis(int axisCode)
119 {
120  d_ptr->absoluteAxis.append(axisCode);
121 }
122 
123 QInputDeviceInfo::InputTypes QInputDevice::types()
124 {
125  return d_ptr->types;
126 }
127 
128 void QInputDevice::setTypes(QInputDeviceInfo::InputTypes types)
129 {
130  d_ptr->types = types;
131 }
132 
133 
134 QInputDeviceInfo::QInputDeviceInfo(QObject *parent) :
135  QObject(parent),
136  d_ptr(new QInputDeviceInfoPrivate(this))
137 {
138  connect(d_ptr, &QInputDeviceInfoPrivate::newDevice,this,&QInputDeviceInfo::addedDevice);
139  connect(d_ptr, &QInputDeviceInfoPrivate::deviceRemoved,this,&QInputDeviceInfo::deviceRemoved);
140 
141  connect(d_ptr, &QInputDeviceInfoPrivate::ready, this, &QInputDeviceInfo::ready);
142 }
143 
144 QVector <QInputDevice *> QInputDeviceInfo::deviceList()
145 {
146  return d_ptr->deviceList;
147 }
148 
149 QMap <QString, QInputDevice *> QInputDeviceInfo::deviceMap()
150 {
151  return d_ptr->deviceMap;
152 }
153 
154 void QInputDeviceInfo::addedDevice(const QString & devicePath)
155 {
156  Q_EMIT deviceAdded(devicePath);
157 }
158 
159 QT_END_NAMESPACE