-rw-r--r-- | examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp | 68 | ||||
-rw-r--r-- | libopie2/opiecore/oinputsystem.cpp | 113 | ||||
-rw-r--r-- | libopie2/opiecore/oinputsystem.h | 108 | ||||
-rw-r--r-- | libopie2/opiemm/osoundsystem.h | 4 |
4 files changed, 286 insertions, 7 deletions
diff --git a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp index 89209a7..5450966 100644 --- a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp +++ b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp | |||
@@ -1,48 +1,115 @@ | |||
1 | /* | ||
2 | This file is part of the Opie Project | ||
3 | =. (C) 2005 Michael 'Mickey' Lauer <mickey@Vanille.de> | ||
4 | .=l. | ||
5 | .>+-= | ||
6 | _;:, .> :=|. This program is free software; you can | ||
7 | .> <`_, > . <= redistribute it and/or modify it under | ||
8 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | ||
9 | .="- .-=="i, .._ License as published by the Free Software | ||
10 | - . .-<_> .<> Foundation; either version 2 of the License, | ||
11 | ._= =} : or (at your option) any later version. | ||
12 | .%`+i> _;_. | ||
13 | .i_,=:_. -<s. This program is distributed in the hope that | ||
14 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | ||
15 | : .. .:, . . . without even the implied warranty of | ||
16 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | ||
17 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | ||
18 | ..}^=.= = ; Library General Public License for more | ||
19 | ++= -. .` .: details. | ||
20 | : = ...= . :.=- | ||
21 | -. .:....=;==+<; You should have received a copy of the GNU | ||
22 | -_. . . )=. = Library General Public License along with | ||
23 | -- :-=` this library; see the file COPYING.LIB. | ||
24 | If not, write to the Free Software Foundation, | ||
25 | Inc., 59 Temple Place - Suite 330, | ||
26 | Boston, MA 02111-1307, USA. | ||
27 | */ | ||
28 | |||
29 | #include <opie2/odebug.h> | ||
30 | #include <opie2/oinputsystem.h> | ||
31 | |||
32 | using namespace Opie::Core; | ||
33 | |||
34 | #include <stdlib.h> | ||
35 | #include <stdio.h> | ||
36 | #include <unistd.h> | ||
37 | #include <sys/ioctl.h> | ||
38 | #include <sys/fcntl.h> | ||
39 | |||
40 | #if 1 | ||
41 | |||
42 | int main( int argc, char** argv ) | ||
43 | { | ||
44 | OInputSystem* sys = OInputSystem::instance(); | ||
45 | OInputSystem::DeviceIterator it = sys->iterator(); | ||
46 | |||
47 | OInputDevice* dev = 0; | ||
48 | |||
49 | while ( it.current() ) | ||
50 | { | ||
51 | odebug << "DEMO: OInputSystem contains Device '" << it.current()->name() << "'" << oendl; | ||
52 | |||
53 | dev = it.current(); | ||
54 | |||
55 | odebug << "========================================" | ||
56 | << "\nDevice: " << dev->name() | ||
57 | << "\nName: " << dev->identity() | ||
58 | << "\nPath: " << dev->path() | ||
59 | << "\nUniq: " << dev->uniq() | ||
60 | << oendl; | ||
61 | |||
62 | ++it; | ||
63 | } | ||
64 | } | ||
65 | |||
66 | #else | ||
67 | |||
1 | #include <fcntl.h> | 68 | #include <fcntl.h> |
2 | #include <unistd.h> | 69 | #include <unistd.h> |
3 | #include <cstdlib> | 70 | #include <cstdlib> |
4 | #include <cstdio> | 71 | #include <cstdio> |
5 | #include <string> | 72 | #include <string> |
6 | 73 | ||
7 | #include <sys/types.h> | 74 | #include <sys/types.h> |
8 | #include <linux/input.h> | 75 | #include <linux/input.h> |
9 | 76 | ||
10 | using std::string; | 77 | using std::string; |
11 | 78 | ||
12 | const unsigned char BUT1 = 0x01; | 79 | const unsigned char BUT1 = 0x01; |
13 | const unsigned char BUT2 = 0x04; | 80 | const unsigned char BUT2 = 0x04; |
14 | const unsigned char BUT3 = 0x02; | 81 | const unsigned char BUT3 = 0x02; |
15 | const unsigned char BUT4 = 0x40; | 82 | const unsigned char BUT4 = 0x40; |
16 | const unsigned char BUT5 = 0x80; | 83 | const unsigned char BUT5 = 0x80; |
17 | 84 | ||
18 | #define BITMASK( name, numbits ) \ | 85 | #define BITMASK( name, numbits ) \ |
19 | unsigned short name[ ((numbits) - 1) / (sizeof( short ) * 8) + 1 ]; \ | 86 | unsigned short name[ ((numbits) - 1) / (sizeof( short ) * 8) + 1 ]; \ |
20 | memset( name, 0, sizeof( name ) ) | 87 | memset( name, 0, sizeof( name ) ) |
21 | 88 | ||
22 | #define TEST_BIT( bitmask, bit ) \ | 89 | #define TEST_BIT( bitmask, bit ) \ |
23 | ( bitmask[ (bit) / sizeof(short) / 8 ] & (1u << ( (bit) % (sizeof(short) * 8))) ) | 90 | ( bitmask[ (bit) / sizeof(short) / 8 ] & (1u << ( (bit) % (sizeof(short) * 8))) ) |
24 | 91 | ||
25 | int Open_cPad() | 92 | int Open_cPad() |
26 | { | 93 | { |
27 | size_t MAX_DEVICES = 1; | 94 | size_t MAX_DEVICES = 1; |
28 | int fd = -1; | 95 | int fd = -1; |
29 | input_id info; | 96 | input_id info; |
30 | 97 | ||
31 | for( size_t i = 0; i < MAX_DEVICES; ++i ) | 98 | for( size_t i = 0; i < MAX_DEVICES; ++i ) |
32 | { | 99 | { |
33 | string devpath( "/dev/input/event0" ); | 100 | string devpath( "/dev/input/event0" ); |
34 | 101 | ||
35 | //devpath << (int)i; | 102 | //devpath << (int)i; |
36 | 103 | ||
37 | fd = open( devpath.c_str(), O_RDONLY, &info ); | 104 | fd = open( devpath.c_str(), O_RDONLY, &info ); |
38 | 105 | ||
39 | if( fd >= 0 ) | 106 | if( fd >= 0 ) |
40 | { | 107 | { |
41 | int version = -1; | 108 | int version = -1; |
42 | /* ioctl() accesses the underlying driver */ | 109 | /* ioctl() accesses the underlying driver */ |
43 | if (ioctl(fd, EVIOCGVERSION, &version)) { | 110 | if (ioctl(fd, EVIOCGVERSION, &version)) { |
44 | perror("evdev ioctl"); | 111 | perror("evdev ioctl"); |
45 | } | 112 | } |
46 | 113 | ||
47 | /* the EVIOCGVERSION ioctl() returns an int */ | 114 | /* the EVIOCGVERSION ioctl() returns an int */ |
48 | /* so we unpack it and display it */ | 115 | /* so we unpack it and display it */ |
@@ -203,48 +270,49 @@ int main( int argc, char **argv ) | |||
203 | 270 | ||
204 | printf( "Type: %d, Code: %d, Value: %d\n", evbuf.type, evbuf.code, evbuf.value ); | 271 | printf( "Type: %d, Code: %d, Value: %d\n", evbuf.type, evbuf.code, evbuf.value ); |
205 | } | 272 | } |
206 | 273 | ||
207 | #endif | 274 | #endif |
208 | #if 0 | 275 | #if 0 |
209 | unsigned char buf[ 4 ]; | 276 | unsigned char buf[ 4 ]; |
210 | 277 | ||
211 | for(;;) | 278 | for(;;) |
212 | { | 279 | { |
213 | if( read( fd, buf, sizeof buf ) == -1 ) | 280 | if( read( fd, buf, sizeof buf ) == -1 ) |
214 | { | 281 | { |
215 | printf( "Read error\n" ); | 282 | printf( "Read error\n" ); |
216 | goto hell; | 283 | goto hell; |
217 | } | 284 | } |
218 | 285 | ||
219 | printf( "Raw:\t%#x\t%#x\t%#x\t%#x\n", buf[ 0 ], buf[ 1 ], buf[ 2 ], buf[ 3 ] ); | 286 | printf( "Raw:\t%#x\t%#x\t%#x\t%#x\n", buf[ 0 ], buf[ 1 ], buf[ 2 ], buf[ 3 ] ); |
220 | 287 | ||
221 | int dx = buf[ 1 ]; | 288 | int dx = buf[ 1 ]; |
222 | 289 | ||
223 | if( ( buf[ 0 ] & 0x10 ) != 0 ) | 290 | if( ( buf[ 0 ] & 0x10 ) != 0 ) |
224 | dx -= 256; | 291 | dx -= 256; |
225 | 292 | ||
226 | int dy = - buf[ 2 ]; | 293 | int dy = - buf[ 2 ]; |
227 | 294 | ||
228 | if( ( buf[ 0 ] & 0x20 ) != 0 ) | 295 | if( ( buf[ 0 ] & 0x20 ) != 0 ) |
229 | dy += 256; | 296 | dy += 256; |
230 | 297 | ||
231 | printf( "( %d, %d )\t", dx, dy ); | 298 | printf( "( %d, %d )\t", dx, dy ); |
232 | 299 | ||
233 | if( buf[ 0 ] & BUT1 ) | 300 | if( buf[ 0 ] & BUT1 ) |
234 | printf( "Left\t" ); | 301 | printf( "Left\t" ); |
235 | if( buf[ 0 ] & BUT2 ) | 302 | if( buf[ 0 ] & BUT2 ) |
236 | printf( "Middle\t" ); | 303 | printf( "Middle\t" ); |
237 | if( buf[ 0 ] & BUT3 ) | 304 | if( buf[ 0 ] & BUT3 ) |
238 | printf( "Right\t" ); | 305 | printf( "Right\t" ); |
239 | 306 | ||
240 | printf( "\n" ); | 307 | printf( "\n" ); |
241 | } | 308 | } |
242 | #endif | 309 | #endif |
243 | 310 | ||
244 | //close( fd ); | 311 | //close( fd ); |
245 | 312 | ||
246 | exit( EXIT_SUCCESS ); | 313 | exit( EXIT_SUCCESS ); |
247 | hell: | 314 | hell: |
248 | exit( EXIT_FAILURE ); | 315 | exit( EXIT_FAILURE ); |
249 | } | 316 | } |
250 | 317 | ||
318 | #endif \ No newline at end of file | ||
diff --git a/libopie2/opiecore/oinputsystem.cpp b/libopie2/opiecore/oinputsystem.cpp index c33d5c8..bfdc31f 100644 --- a/libopie2/opiecore/oinputsystem.cpp +++ b/libopie2/opiecore/oinputsystem.cpp | |||
@@ -1,31 +1,142 @@ | |||
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" |
30 | |||
31 | using namespace Opie::Core; | 30 | using namespace Opie::Core; |
31 | |||
32 | /* QT */ | ||
33 | #include <qfile.h> | ||
34 | |||
35 | /* STD */ | ||
36 | #include <errno.h> | ||
37 | #include <string.h> | ||
38 | #include <linux/input.h> | ||
39 | #include <sys/fcntl.h> | ||
40 | #include <sys/ioctl.h> | ||
41 | |||
42 | #define BUFSIZE 256 | ||
43 | |||
44 | /*====================================================================================== | ||
45 | * OInputSystem | ||
46 | *======================================================================================*/ | ||
47 | |||
48 | OInputSystem* OInputSystem::_instance = 0; | ||
49 | |||
50 | OInputSystem::OInputSystem() : QObject() | ||
51 | { | ||
52 | qDebug( "OInputSystem::OInputSystem()" ); | ||
53 | synchronize(); | ||
54 | } | ||
55 | |||
56 | |||
57 | void OInputSystem::synchronize() | ||
58 | { | ||
59 | qDebug( "OInputSystem::synchronize()" ); | ||
60 | 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" ) ); | ||
62 | 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" ) ); | ||
64 | qDebug( "OInputSystem::synchronize() done" ); | ||
65 | } | ||
66 | |||
67 | |||
68 | OInputSystem::~OInputSystem() | ||
69 | { | ||
70 | qDebug( "OInputSystem::~OInputSystem()" ); | ||
71 | } | ||
72 | |||
73 | |||
74 | int OInputSystem::count() const | ||
75 | { | ||
76 | return _devices.count(); | ||
77 | } | ||
78 | |||
79 | |||
80 | OInputDevice* OInputSystem::device( const QString& device ) const | ||
81 | { | ||
82 | return _devices[device]; | ||
83 | } | ||
84 | |||
85 | |||
86 | OInputSystem* OInputSystem::instance() | ||
87 | { | ||
88 | if ( !_instance ) _instance = new OInputSystem(); | ||
89 | return _instance; | ||
90 | } | ||
91 | |||
92 | |||
93 | OInputSystem::DeviceIterator OInputSystem::iterator() const | ||
94 | { | ||
95 | return OInputSystem::DeviceIterator( _devices ); | ||
96 | } | ||
97 | |||
98 | /*====================================================================================== | ||
99 | * OInputDevice | ||
100 | *======================================================================================*/ | ||
101 | |||
102 | OInputDevice::OInputDevice( QObject* parent, const char* name ) : QObject( parent, name ) | ||
103 | { | ||
104 | qDebug( "OInputDevice::OInputDevice( '%s' )", name ); | ||
105 | |||
106 | _fd = ::open( name, O_RDONLY ); | ||
107 | if ( _fd == -1 ) | ||
108 | { | ||
109 | qDebug( "OInputDevice::OInputDevice() - Warning: couldn't open %s (%s)", name, strerror( errno ) ); | ||
110 | } | ||
111 | } | ||
112 | |||
113 | |||
114 | OInputDevice::~OInputDevice() | ||
115 | { | ||
116 | qDebug( "OInputDevice::~OInputDevice()" ); | ||
117 | } | ||
118 | |||
119 | |||
120 | QString OInputDevice::identity() const | ||
121 | { | ||
122 | char buf[BUFSIZE] = "<unknown>"; | ||
123 | ::ioctl( _fd, EVIOCGNAME(sizeof buf), buf ); | ||
124 | return buf; | ||
125 | } | ||
126 | |||
127 | |||
128 | QString OInputDevice::path() const | ||
129 | { | ||
130 | char buf[BUFSIZE] = "<unknown>"; | ||
131 | ::ioctl( _fd, EVIOCGPHYS(sizeof buf), buf ); | ||
132 | return buf; | ||
133 | } | ||
134 | |||
135 | |||
136 | QString OInputDevice::uniq() const | ||
137 | { | ||
138 | char buf[BUFSIZE] = "<unknown>"; | ||
139 | ::ioctl( _fd, EVIOCGUNIQ(sizeof buf), buf ); | ||
140 | return buf; | ||
141 | } | ||
142 | |||
diff --git a/libopie2/opiecore/oinputsystem.h b/libopie2/opiecore/oinputsystem.h index 2bcdc3a..350656b 100644 --- a/libopie2/opiecore/oinputsystem.h +++ b/libopie2/opiecore/oinputsystem.h | |||
@@ -1,48 +1,148 @@ | |||
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 | #ifndef OINPUTSYSTEM_H | 29 | #ifndef OINPUTSYSTEM_H |
30 | #define OINPUTSYSTEM_H | 30 | #define OINPUTSYSTEM_H |
31 | 31 | ||
32 | /* QT */ | ||
32 | #include <qobject.h> | 33 | #include <qobject.h> |
34 | #include <qdict.h> | ||
35 | |||
36 | /* STD */ | ||
37 | #include <linux/input.h> | ||
33 | 38 | ||
34 | namespace Opie { | 39 | namespace Opie { |
35 | namespace Core { | 40 | namespace Core { |
36 | 41 | ||
37 | /** | 42 | class OInputDevice; |
38 | * ... | ||
39 | * | ||
40 | */ | ||
41 | 43 | ||
44 | /** | ||
45 | * @brief A container class for all input devices | ||
46 | * | ||
47 | * This class provides access to all available input system devices of your computer. | ||
48 | * | ||
49 | * @author Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de> | ||
50 | */ | ||
42 | class OInputSystem : public QObject | 51 | class OInputSystem : public QObject |
43 | { | 52 | { |
53 | public: | ||
54 | typedef QDict<OInputDevice> DeviceMap; | ||
55 | typedef QDictIterator<OInputDevice> DeviceIterator; | ||
56 | |||
57 | /** | ||
58 | * @returns the number of available input devices | ||
59 | */ | ||
60 | int count() const; | ||
61 | /** | ||
62 | * @returns a pointer to the (one and only) @ref OInputSystem instance. | ||
63 | */ | ||
64 | static OInputSystem* instance(); | ||
65 | /** | ||
66 | * @returns an iterator usable for iterating through all network interfaces. | ||
67 | */ | ||
68 | DeviceIterator iterator() const; | ||
69 | /** | ||
70 | * @returns a pointer to the @ref OAudioInterface object for the specified @a interface or 0, if not found | ||
71 | * @see OAudioInterface | ||
72 | */ | ||
73 | OInputDevice* device( const QString& interface ) const; | ||
74 | /** | ||
75 | * @internal Rebuild the internal interface database | ||
76 | * @note Sometimes it might be useful to call this from client code, | ||
77 | */ | ||
78 | void synchronize(); | ||
79 | /** | ||
80 | * @internal desctructor | ||
81 | */ | ||
82 | ~OInputSystem(); | ||
83 | |||
84 | protected: | ||
85 | OInputSystem(); | ||
86 | |||
87 | static OInputSystem* _instance; | ||
88 | DeviceMap _devices; | ||
89 | }; | ||
90 | |||
91 | |||
92 | class OInputDevice : public QObject | ||
93 | { | ||
94 | public: | ||
95 | |||
96 | enum EventType | ||
97 | { | ||
98 | Synchronous = EV_SYN, | ||
99 | Keyboard = EV_KEY, | ||
100 | Relative = EV_REL, | ||
101 | Absolute = EV_ABS, | ||
102 | Miscellaneous = EV_MSC, | ||
103 | Led = EV_LED, | ||
104 | Sound = EV_SND, | ||
105 | AutoRepeat = EV_REP, | ||
106 | ForceFeedback = EV_FF, | ||
107 | PowerManagement = EV_PWR, | ||
108 | ForceFeedbackStatus = EV_FF_STATUS, | ||
109 | }; | ||
110 | |||
111 | enum Bus | ||
112 | { | ||
113 | PCI = BUS_PCI, | ||
114 | ISAPNP = BUS_ISAPNP, | ||
115 | HIL = BUS_HIL, | ||
116 | BLUETOOTH = BUS_BLUETOOTH, | ||
117 | ISA = BUS_ISA, | ||
118 | I8042 = BUS_I8042, | ||
119 | XTKBD = BUS_XTKBD, | ||
120 | RS232 = BUS_RS232, | ||
121 | GAMEPORT = BUS_GAMEPORT, | ||
122 | PARPORT = BUS_PARPORT, | ||
123 | AMIGA = BUS_AMIGA, | ||
124 | ADB = BUS_ADB, | ||
125 | I2C = BUS_I2C, | ||
126 | HOST = BUS_HOST, | ||
127 | }; | ||
128 | |||
129 | public: | ||
130 | OInputDevice( QObject* parent, const char* name = 0 ); | ||
131 | ~OInputDevice(); | ||
132 | |||
133 | public: | ||
134 | QString identity() const; | ||
135 | QString path() const; | ||
136 | QString uniq() const; | ||
137 | |||
138 | private: | ||
139 | int _fd; | ||
140 | input_id _id; | ||
141 | |||
44 | }; | 142 | }; |
143 | |||
45 | } | 144 | } |
46 | } | 145 | } |
47 | 146 | ||
48 | #endif // OINPUTSYSTEM_H | 147 | #endif // OINPUTSYSTEM_H |
148 | |||
diff --git a/libopie2/opiemm/osoundsystem.h b/libopie2/opiemm/osoundsystem.h index cce90c0..5f6fb7a 100644 --- a/libopie2/opiemm/osoundsystem.h +++ b/libopie2/opiemm/osoundsystem.h | |||
@@ -22,101 +22,101 @@ | |||
22 | -. .:....=;==+<; You should have received a copy of the GNU | 22 | -. .:....=;==+<; You should have received a copy of the GNU |
23 | -_. . . )=. = Library General Public License along with | 23 | -_. . . )=. = Library General Public License along with |
24 | -- :-=` this library; see the file COPYING.LIB. | 24 | -- :-=` this library; see the file COPYING.LIB. |
25 | If not, write to the Free Software Foundation, | 25 | If not, write to the Free Software Foundation, |
26 | Inc., 59 Temple Place - Suite 330, | 26 | Inc., 59 Temple Place - Suite 330, |
27 | Boston, MA 02111-1307, USA. | 27 | Boston, MA 02111-1307, USA. |
28 | 28 | ||
29 | */ | 29 | */ |
30 | 30 | ||
31 | #ifndef OSOUNDSYSTEM_H | 31 | #ifndef OSOUNDSYSTEM_H |
32 | #define OSOUNDSYSTEM_H | 32 | #define OSOUNDSYSTEM_H |
33 | 33 | ||
34 | #include <qobject.h> | 34 | #include <qobject.h> |
35 | #include <qdict.h> | 35 | #include <qdict.h> |
36 | #include <qmap.h> | 36 | #include <qmap.h> |
37 | 37 | ||
38 | namespace Opie { | 38 | namespace Opie { |
39 | namespace MM { | 39 | namespace MM { |
40 | 40 | ||
41 | class OAudioInterface; | 41 | class OAudioInterface; |
42 | class OMixerInterface; | 42 | class OMixerInterface; |
43 | class OSoundCard; | 43 | class OSoundCard; |
44 | 44 | ||
45 | /*====================================================================================== | 45 | /*====================================================================================== |
46 | * OSoundSystem | 46 | * OSoundSystem |
47 | *======================================================================================*/ | 47 | *======================================================================================*/ |
48 | 48 | ||
49 | /** | 49 | /** |
50 | * @brief A container class for all audio interfaces | 50 | * @brief A container class for all audio interfaces |
51 | * | 51 | * |
52 | * This class provides access to all available audio/midi/sequencer interfaces of your computer. | 52 | * This class provides access to all available audio/midi/sequencer interfaces of your computer. |
53 | * | 53 | * |
54 | * @author Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de> | 54 | * @author Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de> |
55 | */ | 55 | */ |
56 | class OSoundSystem : public QObject | 56 | class OSoundSystem : public QObject |
57 | { | 57 | { |
58 | Q_OBJECT | 58 | Q_OBJECT |
59 | 59 | ||
60 | public: | 60 | public: |
61 | typedef QDict<OSoundCard> CardMap; | 61 | typedef QDict<OSoundCard> CardMap; |
62 | typedef QDictIterator<OSoundCard> CardIterator; | 62 | typedef QDictIterator<OSoundCard> CardIterator; |
63 | 63 | ||
64 | public: | 64 | public: |
65 | /** | 65 | /** |
66 | * @returns the number of available interfaces | 66 | * @returns the number of available interfaces |
67 | */ | 67 | */ |
68 | int count() const; | 68 | int count() const; |
69 | /** | 69 | /** |
70 | * @returns a pointer to the (one and only) @ref ONetwork instance. | 70 | * @returns a pointer to the (one and only) @ref OSystem instance. |
71 | */ | 71 | */ |
72 | static OSoundSystem* instance(); | 72 | static OSoundSystem* instance(); |
73 | /** | 73 | /** |
74 | * @returns an iterator usable for iterating through all network interfaces. | 74 | * @returns an iterator usable for iterating through all sound cards. |
75 | */ | 75 | */ |
76 | CardIterator iterator() const; | 76 | CardIterator iterator() const; |
77 | /** | 77 | /** |
78 | * @returns a pointer to the @ref OAudioInterface object for the specified @a interface or 0, if not found | 78 | * @returns a pointer to the @ref OAudioInterface object for the specified @a interface or 0, if not found |
79 | * @see OAudioInterface | 79 | * @see OAudioInterface |
80 | */ | 80 | */ |
81 | OSoundCard* card( const QString& interface ) const; | 81 | OSoundCard* card( const QString& interface ) const; |
82 | /** | 82 | /** |
83 | * @internal Rebuild the internal interface database | 83 | * @internal Rebuild the internal interface database |
84 | * @note Sometimes it might be useful to call this from client code, | 84 | * @note Sometimes it might be useful to call this from client code, |
85 | * e.g. after issuing a cardctl insert | 85 | * e.g. after issuing a cardctl insert |
86 | */ | 86 | */ |
87 | void synchronize(); | 87 | void synchronize(); |
88 | 88 | ||
89 | protected: | 89 | protected: |
90 | OSoundSystem(); | 90 | OSoundSystem(); |
91 | 91 | ||
92 | private: | 92 | private: |
93 | static OSoundSystem* _instance; | 93 | static OSoundSystem* _instance; |
94 | CardMap _interfaces; | 94 | CardMap _interfaces; |
95 | class Private; | 95 | class Private; |
96 | Private *d; | 96 | Private *d; |
97 | }; | 97 | }; |
98 | 98 | ||
99 | 99 | ||
100 | /*====================================================================================== | 100 | /*====================================================================================== |
101 | * OSoundCard | 101 | * OSoundCard |
102 | *======================================================================================*/ | 102 | *======================================================================================*/ |
103 | 103 | ||
104 | class OSoundCard : public QObject | 104 | class OSoundCard : public QObject |
105 | { | 105 | { |
106 | Q_OBJECT | 106 | Q_OBJECT |
107 | 107 | ||
108 | public: | 108 | public: |
109 | /** | 109 | /** |
110 | * Constructor. Normally you don't create @ref OSoundCard objects yourself, | 110 | * Constructor. Normally you don't create @ref OSoundCard objects yourself, |
111 | * but access them via @ref OSoundSystem::card(). | 111 | * but access them via @ref OSoundSystem::card(). |
112 | */ | 112 | */ |
113 | OSoundCard( QObject* parent, const char* name ); | 113 | OSoundCard( QObject* parent, const char* name ); |
114 | /** | 114 | /** |
115 | * Destructor. | 115 | * Destructor. |
116 | */ | 116 | */ |
117 | virtual ~OSoundCard(); | 117 | virtual ~OSoundCard(); |
118 | 118 | ||
119 | bool hasMixer() const { return _audio; }; | 119 | bool hasMixer() const { return _audio; }; |
120 | bool hasAudio() const { return _mixer; }; | 120 | bool hasAudio() const { return _mixer; }; |
121 | 121 | ||
122 | OAudioInterface* audio() const { return _audio; }; | 122 | OAudioInterface* audio() const { return _audio; }; |