summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp46
-rw-r--r--libopie2/opiecore/oinputsystem.cpp17
-rw-r--r--libopie2/opiecore/oinputsystem.h7
3 files changed, 46 insertions, 24 deletions
diff --git a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp
index 5450966..a9c0fd2 100644
--- a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp
+++ b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp
@@ -3,205 +3,211 @@
3 =. (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de> 3 =. (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
4 .=l. 4 .=l.
5           .>+-= 5           .>+-=
6 _;:,     .>    :=|. This program is free software; you can 6 _;:,     .>    :=|. This program is free software; you can
7.> <`_,   >  .   <= redistribute it and/or modify it under 7.> <`_,   >  .   <= redistribute it and/or modify it under
8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
9.="- .-=="i,     .._ License as published by the Free Software 9.="- .-=="i,     .._ License as published by the Free Software
10 - .   .-<_>     .<> Foundation; either version 2 of the License, 10 - .   .-<_>     .<> Foundation; either version 2 of the License,
11     ._= =}       : or (at your option) any later version. 11     ._= =}       : or (at your option) any later version.
12    .%`+i>       _;_. 12    .%`+i>       _;_.
13    .i_,=:_.      -<s. This program is distributed in the hope that 13    .i_,=:_.      -<s. This program is distributed in the hope that
14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
15    : ..    .:,     . . . without even the implied warranty of 15    : ..    .:,     . . . without even the implied warranty of
16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
18..}^=.=       =       ; Library General Public License for more 18..}^=.=       =       ; Library General Public License for more
19++=   -.     .`     .: details. 19++=   -.     .`     .: details.
20 :     =  ...= . :.=- 20 :     =  ...= . :.=-
21 -.   .:....=;==+<; You should have received a copy of the GNU 21 -.   .:....=;==+<; You should have received a copy of the GNU
22  -_. . .   )=.  = Library General Public License along with 22  -_. . .   )=.  = Library General Public License along with
23    --        :-=` this library; see the file COPYING.LIB. 23    --        :-=` this library; see the file COPYING.LIB.
24 If not, write to the Free Software Foundation, 24 If not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330, 25 Inc., 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA. 26 Boston, MA 02111-1307, USA.
27*/ 27*/
28 28
29#include <opie2/odebug.h> 29#include <opie2/odebug.h>
30#include <opie2/oinputsystem.h> 30#include <opie2/oinputsystem.h>
31 31
32using namespace Opie::Core; 32using namespace Opie::Core;
33 33
34#include <stdlib.h> 34#include <stdlib.h>
35#include <stdio.h> 35#include <stdio.h>
36#include <unistd.h> 36#include <unistd.h>
37#include <sys/ioctl.h> 37#include <sys/ioctl.h>
38#include <sys/fcntl.h> 38#include <sys/fcntl.h>
39 39
40#if 1 40#if 1
41 41
42int main( int argc, char** argv ) 42int main( int argc, char** argv )
43{ 43{
44 OInputSystem* sys = OInputSystem::instance(); 44 OInputSystem* sys = OInputSystem::instance();
45 OInputSystem::DeviceIterator it = sys->iterator(); 45 OInputSystem::DeviceIterator it = sys->iterator();
46 46
47 OInputDevice* dev = 0; 47 OInputDevice* dev = 0;
48 48
49 while ( it.current() ) 49 while ( it.current() )
50 { 50 {
51 odebug << "DEMO: OInputSystem contains Device '" << it.current()->name() << "'" << oendl; 51 odebug << "DEMO: OInputSystem contains OInputDevice '" << it.current()->name() << "'" << oendl;
52 52
53 dev = it.current(); 53 dev = it.current();
54 54
55 QString features;
56 features += QString( "\nSynchronous: " );
57 if ( dev->hasFeature( OInputDevice::Synchronous ) ) features += "[ x ]"; else features += "[ ]";
58 features += QString( "\nKeys or Buttons: " );
59 if ( dev->hasFeature( OInputDevice::Keys ) ) features += "[ x ]"; else features += "[ ]";
60 features += QString( "\nRelative Axes: " );
61 if ( dev->hasFeature( OInputDevice::Relative ) ) features += "[ x ]"; else features += "[ ]";
62 features += QString( "\nAbsolute Axes: " );
63 if ( dev->hasFeature( OInputDevice::Absolute ) ) features += "[ x ]"; else features += "[ ]";
64 features += QString( "\nMiscellaneous: " );
65 if ( dev->hasFeature( OInputDevice::Miscellaneous ) ) features += "[ x ]"; else features += "[ ]";
66 features += QString( "\nLeds: " );
67 if ( dev->hasFeature( OInputDevice::Leds ) ) features += "[ x ]"; else features += "[ ]";
68 features += QString( "\nSound: " );
69 if ( dev->hasFeature( OInputDevice::Sound ) ) features += "[ x ]"; else features += "[ ]";
70 features += QString( "\nAutoRepeat " );
71 if ( dev->hasFeature( OInputDevice::AutoRepeat ) ) features += "[ x ]"; else features += "[ ]";
72 features += QString( "\nForceFeedback: " );
73 if ( dev->hasFeature( OInputDevice::ForceFeedback ) ) features += "[ x ]"; else features += "[ ]";
74 features += QString( "\nPowerManagement: " );
75 if ( dev->hasFeature( OInputDevice::PowerManagement ) ) features += "[ x ]"; else features += "[ ]";
76 features += QString( "\nFeedbackStatus: " );
77 if ( dev->hasFeature( OInputDevice::ForceFeedbackStatus ) ) features += "[ x ]"; else features += "[ ]";
78
55 odebug << "========================================" 79 odebug << "========================================"
56 << "\nDevice: " << dev->name() 80 << "\nDevice: " << dev->name()
57 << "\nName: " << dev->identity() 81 << "\nName: " << dev->identity()
58 << "\nPath: " << dev->path() 82 << "\nPath: " << dev->path()
59 << "\nUniq: " << dev->uniq() 83 << "\nUniq: " << dev->uniq()
84 << features << "\n"
60 << oendl; 85 << oendl;
61 86
62 ++it; 87 ++it;
63 } 88 }
64} 89}
65 90
66#else 91#else
67 92
68#include <fcntl.h> 93#include <fcntl.h>
69#include <unistd.h> 94#include <unistd.h>
70#include <cstdlib> 95#include <cstdlib>
71#include <cstdio> 96#include <cstdio>
72#include <string> 97#include <string>
73 98
74#include <sys/types.h> 99#include <sys/types.h>
75#include <linux/input.h> 100#include <linux/input.h>
76 101
77using std::string; 102using std::string;
78 103
79const unsigned char BUT1 = 0x01; 104const unsigned char BUT1 = 0x01;
80const unsigned char BUT2 = 0x04; 105const unsigned char BUT2 = 0x04;
81const unsigned char BUT3 = 0x02; 106const unsigned char BUT3 = 0x02;
82const unsigned char BUT4 = 0x40; 107const unsigned char BUT4 = 0x40;
83const unsigned char BUT5 = 0x80; 108const unsigned char BUT5 = 0x80;
84 109
85#define BITMASK( name, numbits ) \ 110#define BITMASK( name, numbits ) \
86 unsigned short name[ ((numbits) - 1) / (sizeof( short ) * 8) + 1 ]; \ 111 unsigned short name[ ((numbits) - 1) / (sizeof( short ) * 8) + 1 ]; \
87 memset( name, 0, sizeof( name ) ) 112 memset( name, 0, sizeof( name ) )
88 113
89#define TEST_BIT( bitmask, bit ) \ 114#define TEST_BIT( bitmask, bit ) \
90 ( bitmask[ (bit) / sizeof(short) / 8 ] & (1u << ( (bit) % (sizeof(short) * 8))) ) 115 ( bitmask[ (bit) / sizeof(short) / 8 ] & (1u << ( (bit) % (sizeof(short) * 8))) )
91 116
92int Open_cPad() 117int Open_cPad()
93{ 118{
94 size_t MAX_DEVICES = 1; 119 size_t MAX_DEVICES = 1;
95 int fd = -1; 120 int fd = -1;
96 input_id info; 121 input_id info;
97 122
98 for( size_t i = 0; i < MAX_DEVICES; ++i ) 123 for( size_t i = 0; i < MAX_DEVICES; ++i )
99 { 124 {
100 string devpath( "/dev/input/event0" ); 125 string devpath( "/dev/input/event0" );
101 126
102 //devpath << (int)i; 127 //devpath << (int)i;
103 128
104 fd = open( devpath.c_str(), O_RDONLY, &info ); 129 fd = open( devpath.c_str(), O_RDONLY, &info );
105 130
106 if( fd >= 0 ) 131 if( fd >= 0 )
107 { 132 {
108 int version = -1; 133 int version = -1;
109 /* ioctl() accesses the underlying driver */ 134 /* ioctl() accesses the underlying driver */
110 if (ioctl(fd, EVIOCGVERSION, &version)) { 135 if (ioctl(fd, EVIOCGVERSION, &version)) {
111 perror("evdev ioctl"); 136 perror("evdev ioctl");
112 } 137 }
113 138
114 /* the EVIOCGVERSION ioctl() returns an int */ 139 /* the EVIOCGVERSION ioctl() returns an int */
115 /* so we unpack it and display it */ 140 /* so we unpack it and display it */
116 printf("evdev driver version is %d.%d.%d\n", 141 printf("evdev driver version is %d.%d.%d\n",
117 version >> 16, (version >> 8) & 0xff, 142 version >> 16, (version >> 8) & 0xff,
118 version & 0xff); 143 version & 0xff);
119 144
120 // Get Identifying info 145 // Get Identifying info
121 146
122 if( ioctl( fd, EVIOCGID, &info) ) 147 if( ioctl( fd, EVIOCGID, &info) )
123 { 148 {
124 perror( "event device ioctl" ); 149 perror( "event device ioctl" );
125 return -1; 150 return -1;
126 } 151 }
127 printf( "Bus: %#x, Vendor: %#x, Product: %#x, Version: %#x\n", 152 printf( "Bus: %#x, Vendor: %#x, Product: %#x, Version: %#x\n",
128 info.bustype, info.vendor, info.product, info.version ); 153 info.bustype, info.vendor, info.product, info.version );
129 154
130 switch ( info.bustype) 155 switch ( info.bustype)
131 { 156 {
132 case BUS_PCI : 157 case BUS_PCI :
133 printf(" is on a PCI bus\n"); 158 printf(" is on a PCI bus\n");
134 break; 159 break;
135 case BUS_USB : 160 case BUS_USB :
136 printf(" is on a Universal Serial Bus\n"); 161 printf(" is on a Universal Serial Bus\n");
137 break; 162 break;
138 /* ... */ 163 /* ... */
139 } 164 }
140 165
141 // Get device 'name'
142
143 char name[256] = "Unknown";
144 if( ioctl( fd, EVIOCGNAME(sizeof name ), name) < 0 )
145 {
146 perror( "event device ioctl" );
147 }else
148 printf( "Device name '%s'\n", name );
149
150 if(ioctl(fd, EVIOCGPHYS(sizeof(name)), name) < 0) {
151 perror("event ioctl");
152 }else
153 printf("Device path '%s'\n", name );
154
155 if(ioctl(fd, EVIOCGUNIQ(sizeof(name)), name) < 0) {
156 perror("event ioctl");
157 }else
158 printf("Device identity '%s'\n", name );
159
160 // Get feature types 166 // Get feature types
161 167
162 BITMASK( features, EV_MAX ); 168 BITMASK( features, EV_MAX );
163 169
164 if( ioctl( fd, EVIOCGBIT( 0, EV_MAX ), features) < 0 ) 170 if( ioctl( fd, EVIOCGBIT( 0, EV_MAX ), features) < 0 )
165 { 171 {
166 perror( "event device ioctl" ); 172 perror( "event device ioctl" );
167 return -1; 173 return -1;
168 } 174 }
169 175
170 printf( "Supported features:\n" ); 176 printf( "Supported features:\n" );
171 for( size_t bit = 0; bit < EV_MAX; ++bit ) 177 for( size_t bit = 0; bit < EV_MAX; ++bit )
172 { 178 {
173 if( TEST_BIT( features, bit ) ) 179 if( TEST_BIT( features, bit ) )
174 { 180 {
175 switch( bit ) 181 switch( bit )
176 { 182 {
177 case EV_SYN : 183 case EV_SYN :
178 printf(" Sync. Events\n"); 184 printf(" Sync. Events\n");
179 break; 185 break;
180 //case EV_RST: 186 //case EV_RST:
181 // printf( " Reset?\n" ); 187 // printf( " Reset?\n" );
182 // break; 188 // break;
183 case EV_KEY: 189 case EV_KEY:
184 printf( " Keys or buttons\n" ); 190 printf( " Keys or buttons\n" );
185 break; 191 break;
186 case EV_REL: 192 case EV_REL:
187 printf( " Relative axes\n" ); 193 printf( " Relative axes\n" );
188 break; 194 break;
189 case EV_ABS: 195 case EV_ABS:
190 printf( " Absolute axes\n" ); 196 printf( " Absolute axes\n" );
191 break; 197 break;
192 case EV_MSC: 198 case EV_MSC:
193 printf( " Misc\n" ); 199 printf( " Misc\n" );
194 break; 200 break;
195 case EV_LED: 201 case EV_LED:
196 printf( " Led's\n" ); 202 printf( " Led's\n" );
197 break; 203 break;
198 case EV_SND: 204 case EV_SND:
199 printf( " Sounds\n" ); 205 printf( " Sounds\n" );
200 break; 206 break;
201 case EV_REP: 207 case EV_REP:
202 printf( " Repeat\n" ); 208 printf( " Repeat\n" );
203 break; 209 break;
204 case EV_FF : // fallthrough 210 case EV_FF : // fallthrough
205 case EV_FF_STATUS: 211 case EV_FF_STATUS:
206 printf(" Force Feedback\n"); 212 printf(" Force Feedback\n");
207 break; 213 break;
diff --git a/libopie2/opiecore/oinputsystem.cpp b/libopie2/opiecore/oinputsystem.cpp
index bfdc31f..fde36c3 100644
--- a/libopie2/opiecore/oinputsystem.cpp
+++ b/libopie2/opiecore/oinputsystem.cpp
@@ -1,90 +1,95 @@
1/* 1/*
2                 This file is part of the Opie Project 2                 This file is part of the Opie Project
3 =. (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de> 3 =. (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
4 .=l. 4 .=l.
5           .>+-= 5           .>+-=
6 _;:,     .>    :=|. This program is free software; you can 6 _;:,     .>    :=|. This program is free software; you can
7.> <`_,   >  .   <= redistribute it and/or modify it under 7.> <`_,   >  .   <= redistribute it and/or modify it under
8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 8:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
9.="- .-=="i,     .._ License as published by the Free Software 9.="- .-=="i,     .._ License as published by the Free Software
10 - .   .-<_>     .<> Foundation; either version 2 of the License, 10 - .   .-<_>     .<> Foundation; either version 2 of the License,
11     ._= =}       : or (at your option) any later version. 11     ._= =}       : or (at your option) any later version.
12    .%`+i>       _;_. 12    .%`+i>       _;_.
13    .i_,=:_.      -<s. This program is distributed in the hope that 13    .i_,=:_.      -<s. This program is distributed in the hope that
14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 14     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
15    : ..    .:,     . . . without even the implied warranty of 15    : ..    .:,     . . . without even the implied warranty of
16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 16    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 17  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
18..}^=.=       =       ; Library General Public License for more 18..}^=.=       =       ; Library General Public License for more
19++=   -.     .`     .: details. 19++=   -.     .`     .: details.
20 :     =  ...= . :.=- 20 :     =  ...= . :.=-
21 -.   .:....=;==+<; You should have received a copy of the GNU 21 -.   .:....=;==+<; You should have received a copy of the GNU
22  -_. . .   )=.  = Library General Public License along with 22  -_. . .   )=.  = Library General Public License along with
23    --        :-=` this library; see the file COPYING.LIB. 23    --        :-=` this library; see the file COPYING.LIB.
24 If not, write to the Free Software Foundation, 24 If not, write to the Free Software Foundation,
25 Inc., 59 Temple Place - Suite 330, 25 Inc., 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA. 26 Boston, MA 02111-1307, USA.
27*/ 27*/
28 28
29#include "oinputsystem.h" 29#include "oinputsystem.h"
30using namespace Opie::Core; 30using namespace Opie::Core;
31 31
32/* QT */ 32/* QT */
33#include <qfile.h> 33#include <qfile.h>
34 34
35/* STD */ 35/* STD */
36#include <errno.h> 36#include <errno.h>
37#include <string.h> 37#include <string.h>
38#include <linux/input.h> 38#include <linux/input.h>
39#include <sys/fcntl.h> 39#include <sys/fcntl.h>
40#include <sys/ioctl.h> 40#include <sys/ioctl.h>
41 41
42#define BUFSIZE 256 42#define BUFSIZE 256
43#define BIT_MASK( name, numbits ) \
44 unsigned short name[ ((numbits) - 1) / (sizeof( short ) * 8) + 1 ]; \
45 memset( name, 0, sizeof( name ) )
46#define BIT_TEST( bitmask, bit ) \
47 ( bitmask[ (bit) / sizeof(short) / 8 ] & (1u << ( (bit) % (sizeof(short) * 8))) )
43 48
44/*====================================================================================== 49/*======================================================================================
45 * OInputSystem 50 * OInputSystem
46 *======================================================================================*/ 51 *======================================================================================*/
47 52
48OInputSystem* OInputSystem::_instance = 0; 53OInputSystem* OInputSystem::_instance = 0;
49 54
50OInputSystem::OInputSystem() : QObject() 55OInputSystem::OInputSystem() : QObject()
51{ 56{
52 qDebug( "OInputSystem::OInputSystem()" ); 57 qDebug( "OInputSystem::OInputSystem()" );
53 synchronize(); 58 synchronize();
54} 59}
55 60
56 61
57void OInputSystem::synchronize() 62void OInputSystem::synchronize()
58{ 63{
59 qDebug( "OInputSystem::synchronize()" ); 64 qDebug( "OInputSystem::synchronize()" );
60 if ( QFile::exists( "/dev/input/event0" ) ) _devices.insert( "0", new OInputDevice( this, "/dev/input/event0" ) ); 65 if ( QFile::exists( "/dev/input/event0" ) ) _devices.insert( "0", new OInputDevice( this, "/dev/input/event0" ) );
61 if ( QFile::exists( "/dev/input/event1" ) ) _devices.insert( "1", new OInputDevice( this, "/dev/input/event1" ) ); 66 if ( QFile::exists( "/dev/input/event1" ) ) _devices.insert( "1", new OInputDevice( this, "/dev/input/event1" ) );
62 if ( QFile::exists( "/dev/input/event2" ) ) _devices.insert( "2", new OInputDevice( this, "/dev/input/event2" ) ); 67 if ( QFile::exists( "/dev/input/event2" ) ) _devices.insert( "2", new OInputDevice( this, "/dev/input/event2" ) );
63 if ( QFile::exists( "/dev/input/event3" ) ) _devices.insert( "3", new OInputDevice( this, "/dev/input/event3" ) ); 68 if ( QFile::exists( "/dev/input/event3" ) ) _devices.insert( "3", new OInputDevice( this, "/dev/input/event3" ) );
64 qDebug( "OInputSystem::synchronize() done" ); 69 qDebug( "OInputSystem::synchronize() done" );
65} 70}
66 71
67 72
68OInputSystem::~OInputSystem() 73OInputSystem::~OInputSystem()
69{ 74{
70 qDebug( "OInputSystem::~OInputSystem()" ); 75 qDebug( "OInputSystem::~OInputSystem()" );
71} 76}
72 77
73 78
74int OInputSystem::count() const 79int OInputSystem::count() const
75{ 80{
76 return _devices.count(); 81 return _devices.count();
77} 82}
78 83
79 84
80OInputDevice* OInputSystem::device( const QString& device ) const 85OInputDevice* OInputSystem::device( const QString& device ) const
81{ 86{
82 return _devices[device]; 87 return _devices[device];
83} 88}
84 89
85 90
86OInputSystem* OInputSystem::instance() 91OInputSystem* OInputSystem::instance()
87{ 92{
88 if ( !_instance ) _instance = new OInputSystem(); 93 if ( !_instance ) _instance = new OInputSystem();
89 return _instance; 94 return _instance;
90} 95}
@@ -95,48 +100,58 @@ OInputSystem::DeviceIterator OInputSystem::iterator() const
95 return OInputSystem::DeviceIterator( _devices ); 100 return OInputSystem::DeviceIterator( _devices );
96} 101}
97 102
98/*====================================================================================== 103/*======================================================================================
99 * OInputDevice 104 * OInputDevice
100 *======================================================================================*/ 105 *======================================================================================*/
101 106
102OInputDevice::OInputDevice( QObject* parent, const char* name ) : QObject( parent, name ) 107OInputDevice::OInputDevice( QObject* parent, const char* name ) : QObject( parent, name )
103{ 108{
104 qDebug( "OInputDevice::OInputDevice( '%s' )", name ); 109 qDebug( "OInputDevice::OInputDevice( '%s' )", name );
105 110
106 _fd = ::open( name, O_RDONLY ); 111 _fd = ::open( name, O_RDONLY );
107 if ( _fd == -1 ) 112 if ( _fd == -1 )
108 { 113 {
109 qDebug( "OInputDevice::OInputDevice() - Warning: couldn't open %s (%s)", name, strerror( errno ) ); 114 qDebug( "OInputDevice::OInputDevice() - Warning: couldn't open %s (%s)", name, strerror( errno ) );
110 } 115 }
111} 116}
112 117
113 118
114OInputDevice::~OInputDevice() 119OInputDevice::~OInputDevice()
115{ 120{
116 qDebug( "OInputDevice::~OInputDevice()" ); 121 qDebug( "OInputDevice::~OInputDevice()" );
117} 122}
118 123
119 124
120QString OInputDevice::identity() const 125QString OInputDevice::identity() const
121{ 126{
122 char buf[BUFSIZE] = "<unknown>"; 127 char buf[BUFSIZE] = "<unknown>";
123 ::ioctl( _fd, EVIOCGNAME(sizeof buf), buf ); 128 ::ioctl( _fd, EVIOCGNAME(sizeof buf), buf );
124 return buf; 129 return buf;
125} 130}
126 131
127 132
128QString OInputDevice::path() const 133QString OInputDevice::path() const
129{ 134{
130 char buf[BUFSIZE] = "<unknown>"; 135 char buf[BUFSIZE] = "<unknown>";
131 ::ioctl( _fd, EVIOCGPHYS(sizeof buf), buf ); 136 ::ioctl( _fd, EVIOCGPHYS(sizeof buf), buf );
132 return buf; 137 return buf;
133} 138}
134 139
135 140
136QString OInputDevice::uniq() const 141QString OInputDevice::uniq() const
137{ 142{
138 char buf[BUFSIZE] = "<unknown>"; 143 char buf[BUFSIZE] = "<unknown>";
139 ::ioctl( _fd, EVIOCGUNIQ(sizeof buf), buf ); 144 ::ioctl( _fd, EVIOCGUNIQ(sizeof buf), buf );
140 return buf; 145 return buf;
141} 146}
142 147
148bool OInputDevice::hasFeature( Feature bit ) const
149{
150 BIT_MASK( features, EV_MAX );
151
152 if( ioctl( _fd, EVIOCGBIT( 0, EV_MAX ), features) < 0 )
153 return false;
154 else
155 return BIT_TEST( features, bit );
156}
157
diff --git a/libopie2/opiecore/oinputsystem.h b/libopie2/opiecore/oinputsystem.h
index 350656b..4d913a1 100644
--- a/libopie2/opiecore/oinputsystem.h
+++ b/libopie2/opiecore/oinputsystem.h
@@ -48,101 +48,102 @@ class OInputDevice;
48 * 48 *
49 * @author Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de> 49 * @author Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de>
50 */ 50 */
51class OInputSystem : public QObject 51class OInputSystem : public QObject
52{ 52{
53 public: 53 public:
54 typedef QDict<OInputDevice> DeviceMap; 54 typedef QDict<OInputDevice> DeviceMap;
55 typedef QDictIterator<OInputDevice> DeviceIterator; 55 typedef QDictIterator<OInputDevice> DeviceIterator;
56 56
57 /** 57 /**
58 * @returns the number of available input devices 58 * @returns the number of available input devices
59 */ 59 */
60 int count() const; 60 int count() const;
61 /** 61 /**
62 * @returns a pointer to the (one and only) @ref OInputSystem instance. 62 * @returns a pointer to the (one and only) @ref OInputSystem instance.
63 */ 63 */
64 static OInputSystem* instance(); 64 static OInputSystem* instance();
65 /** 65 /**
66 * @returns an iterator usable for iterating through all network interfaces. 66 * @returns an iterator usable for iterating through all network interfaces.
67 */ 67 */
68 DeviceIterator iterator() const; 68 DeviceIterator iterator() const;
69 /** 69 /**
70 * @returns a pointer to the @ref OAudioInterface object for the specified @a interface or 0, if not found 70 * @returns a pointer to the @ref OAudioInterface object for the specified @a interface or 0, if not found
71 * @see OAudioInterface 71 * @see OAudioInterface
72 */ 72 */
73 OInputDevice* device( const QString& interface ) const; 73 OInputDevice* device( const QString& interface ) const;
74 /** 74 /**
75 * @internal Rebuild the internal interface database 75 * @internal Rebuild the internal interface database
76 * @note Sometimes it might be useful to call this from client code, 76 * @note Sometimes it might be useful to call this from client code,
77 */ 77 */
78 void synchronize(); 78 void synchronize();
79 /** 79 /**
80 * @internal desctructor 80 * @internal desctructor
81 */ 81 */
82 ~OInputSystem(); 82 ~OInputSystem();
83 83
84 protected: 84 protected:
85 OInputSystem(); 85 OInputSystem();
86 86
87 static OInputSystem* _instance; 87 static OInputSystem* _instance;
88 DeviceMap _devices; 88 DeviceMap _devices;
89}; 89};
90 90
91 91
92class OInputDevice : public QObject 92class OInputDevice : public QObject
93{ 93{
94 public: 94 public:
95 95
96 enum EventType 96 enum Feature
97 { 97 {
98 Synchronous = EV_SYN, 98 Synchronous = EV_SYN,
99 Keyboard = EV_KEY, 99 Keys = EV_KEY,
100 Relative = EV_REL, 100 Relative = EV_REL,
101 Absolute = EV_ABS, 101 Absolute = EV_ABS,
102 Miscellaneous = EV_MSC, 102 Miscellaneous = EV_MSC,
103 Led = EV_LED, 103 Leds = EV_LED,
104 Sound = EV_SND, 104 Sound = EV_SND,
105 AutoRepeat = EV_REP, 105 AutoRepeat = EV_REP,
106 ForceFeedback = EV_FF, 106 ForceFeedback = EV_FF,
107 PowerManagement = EV_PWR, 107 PowerManagement = EV_PWR,
108 ForceFeedbackStatus = EV_FF_STATUS, 108 ForceFeedbackStatus = EV_FF_STATUS,
109 }; 109 };
110 110
111 enum Bus 111 enum Bus
112 { 112 {
113 PCI = BUS_PCI, 113 PCI = BUS_PCI,
114 ISAPNP = BUS_ISAPNP, 114 ISAPNP = BUS_ISAPNP,
115 HIL = BUS_HIL, 115 HIL = BUS_HIL,
116 BLUETOOTH = BUS_BLUETOOTH, 116 BLUETOOTH = BUS_BLUETOOTH,
117 ISA = BUS_ISA, 117 ISA = BUS_ISA,
118 I8042 = BUS_I8042, 118 I8042 = BUS_I8042,
119 XTKBD = BUS_XTKBD, 119 XTKBD = BUS_XTKBD,
120 RS232 = BUS_RS232, 120 RS232 = BUS_RS232,
121 GAMEPORT = BUS_GAMEPORT, 121 GAMEPORT = BUS_GAMEPORT,
122 PARPORT = BUS_PARPORT, 122 PARPORT = BUS_PARPORT,
123 AMIGA = BUS_AMIGA, 123 AMIGA = BUS_AMIGA,
124 ADB = BUS_ADB, 124 ADB = BUS_ADB,
125 I2C = BUS_I2C, 125 I2C = BUS_I2C,
126 HOST = BUS_HOST, 126 HOST = BUS_HOST,
127 }; 127 };
128 128
129 public: 129 public:
130 OInputDevice( QObject* parent, const char* name = 0 ); 130 OInputDevice( QObject* parent, const char* name = 0 );
131 ~OInputDevice(); 131 ~OInputDevice();
132 132
133 public: 133 public:
134 QString identity() const; 134 QString identity() const;
135 QString path() const; 135 QString path() const;
136 QString uniq() const; 136 QString uniq() const;
137 bool hasFeature( Feature ) const;
137 138
138 private: 139 private:
139 int _fd; 140 int _fd;
140 input_id _id; 141 input_id _id;
141 142
142}; 143};
143 144
144} 145}
145} 146}
146 147
147#endif // OINPUTSYSTEM_H 148#endif // OINPUTSYSTEM_H
148 149