author | kergoth <kergoth> | 2002-12-12 00:28:48 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-12-12 00:28:48 (UTC) |
commit | cb783a8ddbeb6c85481c5b1a807f21be83817255 (patch) (unidiff) | |
tree | ba7823d58f7cf34d8fffd5818ea5e1ff72432182 | |
parent | 474b8efcacfffb04bf72f486eca7b1455a2b81dd (diff) | |
download | opie-cb783a8ddbeb6c85481c5b1a807f21be83817255.zip opie-cb783a8ddbeb6c85481c5b1a807f21be83817255.tar.gz opie-cb783a8ddbeb6c85481c5b1a807f21be83817255.tar.bz2 |
Proper zaurus model checking for ODevice
-rw-r--r-- | libopie/odevice.cpp | 19 | ||||
-rw-r--r-- | libopie/odevice.h | 1 |
2 files changed, 18 insertions, 2 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index bc43c52..a33d4ad 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp | |||
@@ -1,948 +1,963 @@ | |||
1 | /* This file is part of the OPIE libraries | 1 | /* This file is part of the OPIE libraries |
2 | Copyright (C) 2002 Robert Griebl (sandman@handhelds.org) | 2 | Copyright (C) 2002 Robert Griebl (sandman@handhelds.org) |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Library General Public | 5 | modify it under the terms of the GNU Library General Public |
6 | License as published by the Free Software Foundation; either | 6 | License as published by the Free Software Foundation; either |
7 | version 2 of the License, or (at your option) any later version. | 7 | version 2 of the License, or (at your option) any later version. |
8 | 8 | ||
9 | This library is distributed in the hope that it will be useful, | 9 | This library is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | Library General Public License for more details. | 12 | Library General Public License for more details. |
13 | 13 | ||
14 | You should have received a copy of the GNU Library General Public License | 14 | You should have received a copy of the GNU Library General Public License |
15 | along with this library; see the file COPYING.LIB. If not, write to | 15 | along with this library; see the file COPYING.LIB. If not, write to |
16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | Boston, MA 02111-1307, USA. | 17 | Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include <stdlib.h> | 20 | #include <stdlib.h> |
21 | #include <unistd.h> | 21 | #include <unistd.h> |
22 | #include <fcntl.h> | 22 | #include <fcntl.h> |
23 | #include <sys/ioctl.h> | 23 | #include <sys/ioctl.h> |
24 | #include <signal.h> | 24 | #include <signal.h> |
25 | #include <sys/time.h> | 25 | #include <sys/time.h> |
26 | #include <linux/soundcard.h> | 26 | #include <linux/soundcard.h> |
27 | #include <math.h> | 27 | #include <math.h> |
28 | 28 | ||
29 | #include <qapplication.h> | 29 | #include <qapplication.h> |
30 | 30 | ||
31 | #include <qfile.h> | 31 | #include <qfile.h> |
32 | #include <qtextstream.h> | 32 | #include <qtextstream.h> |
33 | #include <qpe/sound.h> | 33 | #include <qpe/sound.h> |
34 | #include <qpe/resource.h> | 34 | #include <qpe/resource.h> |
35 | #include <qpe/config.h> | 35 | #include <qpe/config.h> |
36 | 36 | ||
37 | #include "odevice.h" | 37 | #include "odevice.h" |
38 | 38 | ||
39 | #include <qwindowsystem_qws.h> | 39 | #include <qwindowsystem_qws.h> |
40 | 40 | ||
41 | 41 | ||
42 | // _IO and friends are only defined in kernel headers ... | 42 | // _IO and friends are only defined in kernel headers ... |
43 | 43 | ||
44 | #define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) | 44 | #define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) |
45 | 45 | ||
46 | #define OD_IO(type,number) OD_IOC(0,type,number,0) | 46 | #define OD_IO(type,number) OD_IOC(0,type,number,0) |
47 | #define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size)) | 47 | #define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size)) |
48 | #define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size)) | 48 | #define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size)) |
49 | #define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size)) | 49 | #define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size)) |
50 | 50 | ||
51 | using namespace Opie; | 51 | using namespace Opie; |
52 | 52 | ||
53 | class ODeviceData { | 53 | class ODeviceData { |
54 | public: | 54 | public: |
55 | bool m_qwsserver; | 55 | bool m_qwsserver; |
56 | 56 | ||
57 | QString m_vendorstr; | 57 | QString m_vendorstr; |
58 | OVendor m_vendor; | 58 | OVendor m_vendor; |
59 | 59 | ||
60 | QString m_modelstr; | 60 | QString m_modelstr; |
61 | OModel m_model; | 61 | OModel m_model; |
62 | 62 | ||
63 | QString m_systemstr; | 63 | QString m_systemstr; |
64 | OSystem m_system; | 64 | OSystem m_system; |
65 | 65 | ||
66 | QString m_sysverstr; | 66 | QString m_sysverstr; |
67 | }; | 67 | }; |
68 | 68 | ||
69 | 69 | ||
70 | class iPAQ : public QObject, public ODevice, public QWSServer::KeyboardFilter { | 70 | class iPAQ : public QObject, public ODevice, public QWSServer::KeyboardFilter { |
71 | protected: | 71 | protected: |
72 | virtual void init ( ); | 72 | virtual void init ( ); |
73 | 73 | ||
74 | public: | 74 | public: |
75 | virtual bool setSoftSuspend ( bool soft ); | 75 | virtual bool setSoftSuspend ( bool soft ); |
76 | 76 | ||
77 | virtual bool setDisplayBrightness ( int b ); | 77 | virtual bool setDisplayBrightness ( int b ); |
78 | virtual int displayBrightnessResolution ( ) const; | 78 | virtual int displayBrightnessResolution ( ) const; |
79 | 79 | ||
80 | virtual void alarmSound ( ); | 80 | virtual void alarmSound ( ); |
81 | 81 | ||
82 | virtual QValueList <OLed> ledList ( ) const; | 82 | virtual QValueList <OLed> ledList ( ) const; |
83 | virtual QValueList <OLedState> ledStateList ( OLed led ) const; | 83 | virtual QValueList <OLedState> ledStateList ( OLed led ) const; |
84 | virtual OLedState ledState ( OLed led ) const; | 84 | virtual OLedState ledState ( OLed led ) const; |
85 | virtual bool setLedState ( OLed led, OLedState st ); | 85 | virtual bool setLedState ( OLed led, OLedState st ); |
86 | 86 | ||
87 | virtual bool hasLightSensor ( ) const; | 87 | virtual bool hasLightSensor ( ) const; |
88 | virtual int readLightSensor ( ); | 88 | virtual int readLightSensor ( ); |
89 | virtual int lightSensorResolution ( ) const; | 89 | virtual int lightSensorResolution ( ) const; |
90 | 90 | ||
91 | //virtual QValueList <int> keyList ( ) const; | 91 | //virtual QValueList <int> keyList ( ) const; |
92 | 92 | ||
93 | protected: | 93 | protected: |
94 | virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat ); | 94 | virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat ); |
95 | virtual void timerEvent ( QTimerEvent *te ); | 95 | virtual void timerEvent ( QTimerEvent *te ); |
96 | 96 | ||
97 | int m_power_timer; | 97 | int m_power_timer; |
98 | 98 | ||
99 | OLedState m_leds [2]; | 99 | OLedState m_leds [2]; |
100 | }; | 100 | }; |
101 | 101 | ||
102 | class Zaurus : public ODevice { | 102 | class Zaurus : public ODevice { |
103 | protected: | 103 | protected: |
104 | virtual void init ( ); | 104 | virtual void init ( ); |
105 | 105 | ||
106 | public: | 106 | public: |
107 | virtual bool setSoftSuspend ( bool soft ); | 107 | virtual bool setSoftSuspend ( bool soft ); |
108 | 108 | ||
109 | virtual bool setDisplayBrightness ( int b ); | 109 | virtual bool setDisplayBrightness ( int b ); |
110 | virtual int displayBrightnessResolution ( ) const; | 110 | virtual int displayBrightnessResolution ( ) const; |
111 | 111 | ||
112 | virtual void alarmSound ( ); | 112 | virtual void alarmSound ( ); |
113 | virtual void keySound ( ); | 113 | virtual void keySound ( ); |
114 | virtual void touchSound ( ); | 114 | virtual void touchSound ( ); |
115 | 115 | ||
116 | virtual QValueList <OLed> ledList ( ) const; | 116 | virtual QValueList <OLed> ledList ( ) const; |
117 | virtual QValueList <OLedState> ledStateList ( OLed led ) const; | 117 | virtual QValueList <OLedState> ledStateList ( OLed led ) const; |
118 | virtual OLedState ledState ( OLed led ) const; | 118 | virtual OLedState ledState ( OLed led ) const; |
119 | virtual bool setLedState ( OLed led, OLedState st ); | 119 | virtual bool setLedState ( OLed led, OLedState st ); |
120 | 120 | ||
121 | //virtual QValueList <int> keyList ( ) const; | 121 | //virtual QValueList <int> keyList ( ) const; |
122 | 122 | ||
123 | protected: | 123 | protected: |
124 | virtual void buzzer ( int snd ); | 124 | virtual void buzzer ( int snd ); |
125 | 125 | ||
126 | OLedState m_leds [1]; | 126 | OLedState m_leds [1]; |
127 | }; | 127 | }; |
128 | 128 | ||
129 | 129 | ||
130 | 130 | ||
131 | 131 | ||
132 | 132 | ||
133 | 133 | ||
134 | 134 | ||
135 | ODevice *ODevice::inst ( ) | 135 | ODevice *ODevice::inst ( ) |
136 | { | 136 | { |
137 | static ODevice *dev = 0; | 137 | static ODevice *dev = 0; |
138 | 138 | ||
139 | if ( !dev ) { | 139 | if ( !dev ) { |
140 | if ( QFile::exists ( "/proc/hal/model" )) | 140 | if ( QFile::exists ( "/proc/hal/model" )) |
141 | dev = new iPAQ ( ); | 141 | dev = new iPAQ ( ); |
142 | else if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" )) | 142 | else if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" )) |
143 | dev = new Zaurus ( ); | 143 | dev = new Zaurus ( ); |
144 | else | 144 | else |
145 | dev = new ODevice ( ); | 145 | dev = new ODevice ( ); |
146 | 146 | ||
147 | dev-> init ( ); | 147 | dev-> init ( ); |
148 | } | 148 | } |
149 | return dev; | 149 | return dev; |
150 | } | 150 | } |
151 | 151 | ||
152 | 152 | ||
153 | /************************************************** | 153 | /************************************************** |
154 | * | 154 | * |
155 | * common | 155 | * common |
156 | * | 156 | * |
157 | **************************************************/ | 157 | **************************************************/ |
158 | 158 | ||
159 | 159 | ||
160 | ODevice::ODevice ( ) | 160 | ODevice::ODevice ( ) |
161 | { | 161 | { |
162 | d = new ODeviceData; | 162 | d = new ODeviceData; |
163 | 163 | ||
164 | d-> m_qwsserver = qApp ? ( qApp-> type ( ) == QApplication::GuiServer ) : false; | 164 | d-> m_qwsserver = qApp ? ( qApp-> type ( ) == QApplication::GuiServer ) : false; |
165 | 165 | ||
166 | d-> m_modelstr = "Unknown"; | 166 | d-> m_modelstr = "Unknown"; |
167 | d-> m_model = Model_Unknown; | 167 | d-> m_model = Model_Unknown; |
168 | d-> m_vendorstr = "Unkown"; | 168 | d-> m_vendorstr = "Unkown"; |
169 | d-> m_vendor = Vendor_Unknown; | 169 | d-> m_vendor = Vendor_Unknown; |
170 | d-> m_systemstr = "Unkown"; | 170 | d-> m_systemstr = "Unkown"; |
171 | d-> m_system = System_Unknown; | 171 | d-> m_system = System_Unknown; |
172 | d-> m_sysverstr = "0.0"; | 172 | d-> m_sysverstr = "0.0"; |
173 | } | 173 | } |
174 | 174 | ||
175 | void ODevice::init ( ) | 175 | void ODevice::init ( ) |
176 | { | 176 | { |
177 | } | 177 | } |
178 | 178 | ||
179 | ODevice::~ODevice ( ) | 179 | ODevice::~ODevice ( ) |
180 | { | 180 | { |
181 | delete d; | 181 | delete d; |
182 | } | 182 | } |
183 | 183 | ||
184 | bool ODevice::setSoftSuspend ( bool /*soft*/ ) | 184 | bool ODevice::setSoftSuspend ( bool /*soft*/ ) |
185 | { | 185 | { |
186 | return false; | 186 | return false; |
187 | } | 187 | } |
188 | 188 | ||
189 | //#include <linux/apm_bios.h> | 189 | //#include <linux/apm_bios.h> |
190 | 190 | ||
191 | #define APM_IOC_SUSPEND OD_IO( 'A', 2 ) | 191 | #define APM_IOC_SUSPEND OD_IO( 'A', 2 ) |
192 | 192 | ||
193 | 193 | ||
194 | bool ODevice::suspend ( ) | 194 | bool ODevice::suspend ( ) |
195 | { | 195 | { |
196 | if ( !d-> m_qwsserver ) // only qwsserver is allowed to suspend | 196 | if ( !d-> m_qwsserver ) // only qwsserver is allowed to suspend |
197 | return false; | 197 | return false; |
198 | 198 | ||
199 | if ( d-> m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices | 199 | if ( d-> m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices |
200 | return false; | 200 | return false; |
201 | 201 | ||
202 | bool res = false; | 202 | bool res = false; |
203 | 203 | ||
204 | struct timeval tvs, tvn; | 204 | struct timeval tvs, tvn; |
205 | ::gettimeofday ( &tvs, 0 ); | 205 | ::gettimeofday ( &tvs, 0 ); |
206 | 206 | ||
207 | ::sync ( ); // flush fs caches | 207 | ::sync ( ); // flush fs caches |
208 | res = ( ::system ( "apm --suspend" ) == 0 ); | 208 | res = ( ::system ( "apm --suspend" ) == 0 ); |
209 | 209 | ||
210 | // This is needed because the iPAQ apm implementation is asynchronous and we | 210 | // This is needed because the iPAQ apm implementation is asynchronous and we |
211 | // can not be sure when exactly the device is really suspended | 211 | // can not be sure when exactly the device is really suspended |
212 | // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists. | 212 | // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists. |
213 | 213 | ||
214 | if ( res ) { | 214 | if ( res ) { |
215 | do { // wait at most 1.5 sec: either suspend didn't work or the device resumed | 215 | do { // wait at most 1.5 sec: either suspend didn't work or the device resumed |
216 | ::usleep ( 200 * 1000 ); | 216 | ::usleep ( 200 * 1000 ); |
217 | ::gettimeofday ( &tvn, 0 ); | 217 | ::gettimeofday ( &tvn, 0 ); |
218 | } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 ); | 218 | } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 ); |
219 | } | 219 | } |
220 | 220 | ||
221 | return res; | 221 | return res; |
222 | } | 222 | } |
223 | 223 | ||
224 | //#include <linux/fb.h> better not rely on kernel headers in userspace ... | 224 | //#include <linux/fb.h> better not rely on kernel headers in userspace ... |
225 | 225 | ||
226 | #define FBIOBLANK OD_IO( 'F', 0x11 ) // 0x4611 | 226 | #define FBIOBLANK OD_IO( 'F', 0x11 ) // 0x4611 |
227 | 227 | ||
228 | /* VESA Blanking Levels */ | 228 | /* VESA Blanking Levels */ |
229 | #define VESA_NO_BLANKING 0 | 229 | #define VESA_NO_BLANKING 0 |
230 | #define VESA_VSYNC_SUSPEND 1 | 230 | #define VESA_VSYNC_SUSPEND 1 |
231 | #define VESA_HSYNC_SUSPEND 2 | 231 | #define VESA_HSYNC_SUSPEND 2 |
232 | #define VESA_POWERDOWN 3 | 232 | #define VESA_POWERDOWN 3 |
233 | 233 | ||
234 | 234 | ||
235 | bool ODevice::setDisplayStatus ( bool on ) | 235 | bool ODevice::setDisplayStatus ( bool on ) |
236 | { | 236 | { |
237 | if ( d-> m_model == Model_Unknown ) | 237 | if ( d-> m_model == Model_Unknown ) |
238 | return false; | 238 | return false; |
239 | 239 | ||
240 | bool res = false; | 240 | bool res = false; |
241 | int fd; | 241 | int fd; |
242 | 242 | ||
243 | if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) { | 243 | if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) { |
244 | res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 ); | 244 | res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 ); |
245 | ::close ( fd ); | 245 | ::close ( fd ); |
246 | } | 246 | } |
247 | return res; | 247 | return res; |
248 | } | 248 | } |
249 | 249 | ||
250 | bool ODevice::setDisplayBrightness ( int ) | 250 | bool ODevice::setDisplayBrightness ( int ) |
251 | { | 251 | { |
252 | return false; | 252 | return false; |
253 | } | 253 | } |
254 | 254 | ||
255 | int ODevice::displayBrightnessResolution ( ) const | 255 | int ODevice::displayBrightnessResolution ( ) const |
256 | { | 256 | { |
257 | return 16; | 257 | return 16; |
258 | } | 258 | } |
259 | 259 | ||
260 | QString ODevice::vendorString ( ) const | 260 | QString ODevice::vendorString ( ) const |
261 | { | 261 | { |
262 | return d-> m_vendorstr; | 262 | return d-> m_vendorstr; |
263 | } | 263 | } |
264 | 264 | ||
265 | OVendor ODevice::vendor ( ) const | 265 | OVendor ODevice::vendor ( ) const |
266 | { | 266 | { |
267 | return d-> m_vendor; | 267 | return d-> m_vendor; |
268 | } | 268 | } |
269 | 269 | ||
270 | QString ODevice::modelString ( ) const | 270 | QString ODevice::modelString ( ) const |
271 | { | 271 | { |
272 | return d-> m_modelstr; | 272 | return d-> m_modelstr; |
273 | } | 273 | } |
274 | 274 | ||
275 | OModel ODevice::model ( ) const | 275 | OModel ODevice::model ( ) const |
276 | { | 276 | { |
277 | return d-> m_model; | 277 | return d-> m_model; |
278 | } | 278 | } |
279 | 279 | ||
280 | QString ODevice::systemString ( ) const | 280 | QString ODevice::systemString ( ) const |
281 | { | 281 | { |
282 | return d-> m_systemstr; | 282 | return d-> m_systemstr; |
283 | } | 283 | } |
284 | 284 | ||
285 | OSystem ODevice::system ( ) const | 285 | OSystem ODevice::system ( ) const |
286 | { | 286 | { |
287 | return d-> m_system; | 287 | return d-> m_system; |
288 | } | 288 | } |
289 | 289 | ||
290 | QString ODevice::systemVersionString ( ) const | 290 | QString ODevice::systemVersionString ( ) const |
291 | { | 291 | { |
292 | return d-> m_sysverstr; | 292 | return d-> m_sysverstr; |
293 | } | 293 | } |
294 | 294 | ||
295 | void ODevice::alarmSound ( ) | 295 | void ODevice::alarmSound ( ) |
296 | { | 296 | { |
297 | #ifndef QT_NO_SOUND | 297 | #ifndef QT_NO_SOUND |
298 | static Sound snd ( "alarm" ); | 298 | static Sound snd ( "alarm" ); |
299 | 299 | ||
300 | if ( snd. isFinished ( )) | 300 | if ( snd. isFinished ( )) |
301 | snd. play ( ); | 301 | snd. play ( ); |
302 | #endif | 302 | #endif |
303 | } | 303 | } |
304 | 304 | ||
305 | void ODevice::keySound ( ) | 305 | void ODevice::keySound ( ) |
306 | { | 306 | { |
307 | #ifndef QT_NO_SOUND | 307 | #ifndef QT_NO_SOUND |
308 | static Sound snd ( "keysound" ); | 308 | static Sound snd ( "keysound" ); |
309 | 309 | ||
310 | if ( snd. isFinished ( )) | 310 | if ( snd. isFinished ( )) |
311 | snd. play ( ); | 311 | snd. play ( ); |
312 | #endif | 312 | #endif |
313 | } | 313 | } |
314 | 314 | ||
315 | void ODevice::touchSound ( ) | 315 | void ODevice::touchSound ( ) |
316 | { | 316 | { |
317 | 317 | ||
318 | #ifndef QT_NO_SOUND | 318 | #ifndef QT_NO_SOUND |
319 | static Sound snd ( "touchsound" ); | 319 | static Sound snd ( "touchsound" ); |
320 | 320 | ||
321 | if ( snd. isFinished ( )) | 321 | if ( snd. isFinished ( )) |
322 | snd. play ( ); | 322 | snd. play ( ); |
323 | #endif | 323 | #endif |
324 | } | 324 | } |
325 | 325 | ||
326 | 326 | ||
327 | QValueList <OLed> ODevice::ledList ( ) const | 327 | QValueList <OLed> ODevice::ledList ( ) const |
328 | { | 328 | { |
329 | return QValueList <OLed> ( ); | 329 | return QValueList <OLed> ( ); |
330 | } | 330 | } |
331 | 331 | ||
332 | QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const | 332 | QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const |
333 | { | 333 | { |
334 | return QValueList <OLedState> ( ); | 334 | return QValueList <OLedState> ( ); |
335 | } | 335 | } |
336 | 336 | ||
337 | OLedState ODevice::ledState ( OLed /*which*/ ) const | 337 | OLedState ODevice::ledState ( OLed /*which*/ ) const |
338 | { | 338 | { |
339 | return Led_Off; | 339 | return Led_Off; |
340 | } | 340 | } |
341 | 341 | ||
342 | bool ODevice::setLedState ( OLed /*which*/, OLedState /*st*/ ) | 342 | bool ODevice::setLedState ( OLed /*which*/, OLedState /*st*/ ) |
343 | { | 343 | { |
344 | return false; | 344 | return false; |
345 | } | 345 | } |
346 | 346 | ||
347 | bool ODevice::hasLightSensor ( ) const | 347 | bool ODevice::hasLightSensor ( ) const |
348 | { | 348 | { |
349 | return false; | 349 | return false; |
350 | } | 350 | } |
351 | 351 | ||
352 | int ODevice::readLightSensor ( ) | 352 | int ODevice::readLightSensor ( ) |
353 | { | 353 | { |
354 | return -1; | 354 | return -1; |
355 | } | 355 | } |
356 | 356 | ||
357 | int ODevice::lightSensorResolution ( ) const | 357 | int ODevice::lightSensorResolution ( ) const |
358 | { | 358 | { |
359 | return 0; | 359 | return 0; |
360 | } | 360 | } |
361 | 361 | ||
362 | //QValueList <int> ODevice::keyList ( ) const | 362 | //QValueList <int> ODevice::keyList ( ) const |
363 | //{ | 363 | //{ |
364 | //return QValueList <int> ( ); | 364 | //return QValueList <int> ( ); |
365 | //} | 365 | //} |
366 | 366 | ||
367 | 367 | ||
368 | 368 | ||
369 | /************************************************** | 369 | /************************************************** |
370 | * | 370 | * |
371 | * iPAQ | 371 | * iPAQ |
372 | * | 372 | * |
373 | **************************************************/ | 373 | **************************************************/ |
374 | 374 | ||
375 | void iPAQ::init ( ) | 375 | void iPAQ::init ( ) |
376 | { | 376 | { |
377 | d-> m_vendorstr = "HP"; | 377 | d-> m_vendorstr = "HP"; |
378 | d-> m_vendor = Vendor_HP; | 378 | d-> m_vendor = Vendor_HP; |
379 | 379 | ||
380 | QFile f ( "/proc/hal/model" ); | 380 | QFile f ( "/proc/hal/model" ); |
381 | 381 | ||
382 | if ( f. open ( IO_ReadOnly )) { | 382 | if ( f. open ( IO_ReadOnly )) { |
383 | QTextStream ts ( &f ); | 383 | QTextStream ts ( &f ); |
384 | 384 | ||
385 | d-> m_modelstr = "H" + ts. readLine ( ); | 385 | d-> m_modelstr = "H" + ts. readLine ( ); |
386 | 386 | ||
387 | if ( d-> m_modelstr == "H3100" ) | 387 | if ( d-> m_modelstr == "H3100" ) |
388 | d-> m_model = Model_iPAQ_H31xx; | 388 | d-> m_model = Model_iPAQ_H31xx; |
389 | else if ( d-> m_modelstr == "H3600" ) | 389 | else if ( d-> m_modelstr == "H3600" ) |
390 | d-> m_model = Model_iPAQ_H36xx; | 390 | d-> m_model = Model_iPAQ_H36xx; |
391 | else if ( d-> m_modelstr == "H3700" ) | 391 | else if ( d-> m_modelstr == "H3700" ) |
392 | d-> m_model = Model_iPAQ_H37xx; | 392 | d-> m_model = Model_iPAQ_H37xx; |
393 | else if ( d-> m_modelstr == "H3800" ) | 393 | else if ( d-> m_modelstr == "H3800" ) |
394 | d-> m_model = Model_iPAQ_H38xx; | 394 | d-> m_model = Model_iPAQ_H38xx; |
395 | else if ( d-> m_modelstr == "H3900" ) | 395 | else if ( d-> m_modelstr == "H3900" ) |
396 | d-> m_model = Model_iPAQ_H39xx; | 396 | d-> m_model = Model_iPAQ_H39xx; |
397 | else | 397 | else |
398 | d-> m_model = Model_Unknown; | 398 | d-> m_model = Model_Unknown; |
399 | 399 | ||
400 | f. close ( ); | 400 | f. close ( ); |
401 | } | 401 | } |
402 | 402 | ||
403 | f. setName ( "/etc/familiar-version" ); | 403 | f. setName ( "/etc/familiar-version" ); |
404 | if ( f. open ( IO_ReadOnly )) { | 404 | if ( f. open ( IO_ReadOnly )) { |
405 | d-> m_systemstr = "Familiar"; | 405 | d-> m_systemstr = "Familiar"; |
406 | d-> m_system = System_Familiar; | 406 | d-> m_system = System_Familiar; |
407 | 407 | ||
408 | QTextStream ts ( &f ); | 408 | QTextStream ts ( &f ); |
409 | d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); | 409 | d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); |
410 | 410 | ||
411 | f. close ( ); | 411 | f. close ( ); |
412 | } | 412 | } |
413 | 413 | ||
414 | m_leds [0] = m_leds [1] = Led_Off; | 414 | m_leds [0] = m_leds [1] = Led_Off; |
415 | 415 | ||
416 | m_power_timer = 0; | 416 | m_power_timer = 0; |
417 | 417 | ||
418 | if ( d-> m_qwsserver ) | 418 | if ( d-> m_qwsserver ) |
419 | QWSServer::setKeyboardFilter ( this ); | 419 | QWSServer::setKeyboardFilter ( this ); |
420 | } | 420 | } |
421 | 421 | ||
422 | //#include <linux/h3600_ts.h> // including kernel headers is evil ... | 422 | //#include <linux/h3600_ts.h> // including kernel headers is evil ... |
423 | 423 | ||
424 | typedef struct { | 424 | typedef struct { |
425 | unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ | 425 | unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ |
426 | unsigned char TotalTime; /* Units of 5 seconds */ | 426 | unsigned char TotalTime; /* Units of 5 seconds */ |
427 | unsigned char OnTime; /* units of 100m/s */ | 427 | unsigned char OnTime; /* units of 100m/s */ |
428 | unsigned char OffTime; /* units of 100m/s */ | 428 | unsigned char OffTime; /* units of 100m/s */ |
429 | } LED_IN; | 429 | } LED_IN; |
430 | 430 | ||
431 | typedef struct { | 431 | typedef struct { |
432 | unsigned char mode; | 432 | unsigned char mode; |
433 | unsigned char pwr; | 433 | unsigned char pwr; |
434 | unsigned char brightness; | 434 | unsigned char brightness; |
435 | } FLITE_IN; | 435 | } FLITE_IN; |
436 | 436 | ||
437 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) | 437 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) |
438 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) | 438 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) |
439 | 439 | ||
440 | 440 | ||
441 | 441 | ||
442 | QValueList <OLed> iPAQ::ledList ( ) const | 442 | QValueList <OLed> iPAQ::ledList ( ) const |
443 | { | 443 | { |
444 | QValueList <OLed> vl; | 444 | QValueList <OLed> vl; |
445 | vl << Led_Power; | 445 | vl << Led_Power; |
446 | 446 | ||
447 | if ( d-> m_model == Model_iPAQ_H38xx ) | 447 | if ( d-> m_model == Model_iPAQ_H38xx ) |
448 | vl << Led_BlueTooth; | 448 | vl << Led_BlueTooth; |
449 | return vl; | 449 | return vl; |
450 | } | 450 | } |
451 | 451 | ||
452 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const | 452 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const |
453 | { | 453 | { |
454 | QValueList <OLedState> vl; | 454 | QValueList <OLedState> vl; |
455 | 455 | ||
456 | if ( l == Led_Power ) | 456 | if ( l == Led_Power ) |
457 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; | 457 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; |
458 | else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) | 458 | else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) |
459 | vl << Led_Off; // << Led_On << ??? | 459 | vl << Led_Off; // << Led_On << ??? |
460 | 460 | ||
461 | return vl; | 461 | return vl; |
462 | } | 462 | } |
463 | 463 | ||
464 | OLedState iPAQ::ledState ( OLed l ) const | 464 | OLedState iPAQ::ledState ( OLed l ) const |
465 | { | 465 | { |
466 | switch ( l ) { | 466 | switch ( l ) { |
467 | case Led_Power: | 467 | case Led_Power: |
468 | return m_leds [0]; | 468 | return m_leds [0]; |
469 | case Led_BlueTooth: | 469 | case Led_BlueTooth: |
470 | return m_leds [1]; | 470 | return m_leds [1]; |
471 | default: | 471 | default: |
472 | return Led_Off; | 472 | return Led_Off; |
473 | } | 473 | } |
474 | } | 474 | } |
475 | 475 | ||
476 | bool iPAQ::setLedState ( OLed l, OLedState st ) | 476 | bool iPAQ::setLedState ( OLed l, OLedState st ) |
477 | { | 477 | { |
478 | static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); | 478 | static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); |
479 | 479 | ||
480 | if ( l == Led_Power ) { | 480 | if ( l == Led_Power ) { |
481 | if ( fd >= 0 ) { | 481 | if ( fd >= 0 ) { |
482 | LED_IN leds; | 482 | LED_IN leds; |
483 | ::memset ( &leds, 0, sizeof( leds )); | 483 | ::memset ( &leds, 0, sizeof( leds )); |
484 | leds. TotalTime = 0; | 484 | leds. TotalTime = 0; |
485 | leds. OnTime = 0; | 485 | leds. OnTime = 0; |
486 | leds. OffTime = 1; | 486 | leds. OffTime = 1; |
487 | leds. OffOnBlink = 2; | 487 | leds. OffOnBlink = 2; |
488 | 488 | ||
489 | switch ( st ) { | 489 | switch ( st ) { |
490 | case Led_Off : leds. OffOnBlink = 0; break; | 490 | case Led_Off : leds. OffOnBlink = 0; break; |
491 | case Led_On : leds. OffOnBlink = 1; break; | 491 | case Led_On : leds. OffOnBlink = 1; break; |
492 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; | 492 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; |
493 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; | 493 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; |
494 | } | 494 | } |
495 | 495 | ||
496 | if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { | 496 | if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { |
497 | m_leds [0] = st; | 497 | m_leds [0] = st; |
498 | return true; | 498 | return true; |
499 | } | 499 | } |
500 | } | 500 | } |
501 | } | 501 | } |
502 | return false; | 502 | return false; |
503 | } | 503 | } |
504 | 504 | ||
505 | 505 | ||
506 | //QValueList <int> iPAQ::keyList ( ) const | 506 | //QValueList <int> iPAQ::keyList ( ) const |
507 | //{ | 507 | //{ |
508 | //QValueList <int> vl; | 508 | //QValueList <int> vl; |
509 | //vl << HardKey_Datebook << HardKey_Contacts << ( model ( ) == Model_iPAQ_H38xx ? HardKey_Mail : HardKey_Menu ) << HardKey_Home << HardKey_Record << HardKey_Suspend << HardKey_Backlight; | 509 | //vl << HardKey_Datebook << HardKey_Contacts << ( model ( ) == Model_iPAQ_H38xx ? HardKey_Mail : HardKey_Menu ) << HardKey_Home << HardKey_Record << HardKey_Suspend << HardKey_Backlight; |
510 | //return vl; | 510 | //return vl; |
511 | //} | 511 | //} |
512 | 512 | ||
513 | bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) | 513 | bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) |
514 | { | 514 | { |
515 | int newkeycode = keycode; | 515 | int newkeycode = keycode; |
516 | 516 | ||
517 | switch ( keycode ) { | 517 | switch ( keycode ) { |
518 | // H38xx/H39xx have no "Q" key anymore - this is now the Mail key | 518 | // H38xx/H39xx have no "Q" key anymore - this is now the Mail key |
519 | case HardKey_Menu: { | 519 | case HardKey_Menu: { |
520 | if (( d-> m_model == Model_iPAQ_H38xx ) || | 520 | if (( d-> m_model == Model_iPAQ_H38xx ) || |
521 | ( d-> m_model == Model_iPAQ_H39xx )) { | 521 | ( d-> m_model == Model_iPAQ_H39xx )) { |
522 | newkeycode = HardKey_Mail; | 522 | newkeycode = HardKey_Mail; |
523 | } | 523 | } |
524 | break; | 524 | break; |
525 | } | 525 | } |
526 | 526 | ||
527 | // Rotate cursor keys 180° | 527 | // Rotate cursor keys 180° |
528 | case Key_Left : | 528 | case Key_Left : |
529 | case Key_Right: | 529 | case Key_Right: |
530 | case Key_Up : | 530 | case Key_Up : |
531 | case Key_Down : { | 531 | case Key_Down : { |
532 | if (( d-> m_model == Model_iPAQ_H31xx ) || | 532 | if (( d-> m_model == Model_iPAQ_H31xx ) || |
533 | ( d-> m_model == Model_iPAQ_H38xx )) { | 533 | ( d-> m_model == Model_iPAQ_H38xx )) { |
534 | newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; | 534 | newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; |
535 | } | 535 | } |
536 | break; | 536 | break; |
537 | } | 537 | } |
538 | 538 | ||
539 | // map Power Button short/long press to F34/F35 | 539 | // map Power Button short/long press to F34/F35 |
540 | case Key_SysReq: { | 540 | case Key_SysReq: { |
541 | if ( isPress ) { | 541 | if ( isPress ) { |
542 | if ( m_power_timer ) | 542 | if ( m_power_timer ) |
543 | killTimer ( m_power_timer ); | 543 | killTimer ( m_power_timer ); |
544 | m_power_timer = startTimer ( 500 ); | 544 | m_power_timer = startTimer ( 500 ); |
545 | } | 545 | } |
546 | else if ( m_power_timer ) { | 546 | else if ( m_power_timer ) { |
547 | killTimer ( m_power_timer ); | 547 | killTimer ( m_power_timer ); |
548 | m_power_timer = 0; | 548 | m_power_timer = 0; |
549 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); | 549 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); |
550 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); | 550 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); |
551 | } | 551 | } |
552 | newkeycode = Key_unknown; | 552 | newkeycode = Key_unknown; |
553 | break; | 553 | break; |
554 | } | 554 | } |
555 | } | 555 | } |
556 | 556 | ||
557 | if ( newkeycode != keycode ) { | 557 | if ( newkeycode != keycode ) { |
558 | if ( newkeycode != Key_unknown ) | 558 | if ( newkeycode != Key_unknown ) |
559 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); | 559 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); |
560 | return true; | 560 | return true; |
561 | } | 561 | } |
562 | else | 562 | else |
563 | return false; | 563 | return false; |
564 | } | 564 | } |
565 | 565 | ||
566 | void iPAQ::timerEvent ( QTimerEvent * ) | 566 | void iPAQ::timerEvent ( QTimerEvent * ) |
567 | { | 567 | { |
568 | killTimer ( m_power_timer ); | 568 | killTimer ( m_power_timer ); |
569 | m_power_timer = 0; | 569 | m_power_timer = 0; |
570 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); | 570 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); |
571 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); | 571 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); |
572 | } | 572 | } |
573 | 573 | ||
574 | 574 | ||
575 | void iPAQ::alarmSound ( ) | 575 | void iPAQ::alarmSound ( ) |
576 | { | 576 | { |
577 | #ifndef QT_NO_SOUND | 577 | #ifndef QT_NO_SOUND |
578 | static Sound snd ( "alarm" ); | 578 | static Sound snd ( "alarm" ); |
579 | int fd; | 579 | int fd; |
580 | int vol; | 580 | int vol; |
581 | bool vol_reset = false; | 581 | bool vol_reset = false; |
582 | 582 | ||
583 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { | 583 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { |
584 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { | 584 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { |
585 | Config cfg ( "qpe" ); | 585 | Config cfg ( "qpe" ); |
586 | cfg. setGroup ( "Volume" ); | 586 | cfg. setGroup ( "Volume" ); |
587 | 587 | ||
588 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); | 588 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); |
589 | if ( volalarm < 0 ) | 589 | if ( volalarm < 0 ) |
590 | volalarm = 0; | 590 | volalarm = 0; |
591 | else if ( volalarm > 100 ) | 591 | else if ( volalarm > 100 ) |
592 | volalarm = 100; | 592 | volalarm = 100; |
593 | volalarm |= ( volalarm << 8 ); | 593 | volalarm |= ( volalarm << 8 ); |
594 | 594 | ||
595 | if (( volalarm & 0xff ) > ( vol & 0xff )) { | 595 | if (( volalarm & 0xff ) > ( vol & 0xff )) { |
596 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) | 596 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) |
597 | vol_reset = true; | 597 | vol_reset = true; |
598 | } | 598 | } |
599 | } | 599 | } |
600 | } | 600 | } |
601 | 601 | ||
602 | snd. play ( ); | 602 | snd. play ( ); |
603 | while ( !snd. isFinished ( )) | 603 | while ( !snd. isFinished ( )) |
604 | qApp-> processEvents ( ); | 604 | qApp-> processEvents ( ); |
605 | 605 | ||
606 | if ( fd >= 0 ) { | 606 | if ( fd >= 0 ) { |
607 | if ( vol_reset ) | 607 | if ( vol_reset ) |
608 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); | 608 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); |
609 | ::close ( fd ); | 609 | ::close ( fd ); |
610 | } | 610 | } |
611 | #endif | 611 | #endif |
612 | } | 612 | } |
613 | 613 | ||
614 | 614 | ||
615 | bool iPAQ::setSoftSuspend ( bool soft ) | 615 | bool iPAQ::setSoftSuspend ( bool soft ) |
616 | { | 616 | { |
617 | bool res = false; | 617 | bool res = false; |
618 | int fd; | 618 | int fd; |
619 | 619 | ||
620 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { | 620 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { |
621 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) | 621 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) |
622 | res = true; | 622 | res = true; |
623 | else | 623 | else |
624 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); | 624 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); |
625 | 625 | ||
626 | ::close ( fd ); | 626 | ::close ( fd ); |
627 | } | 627 | } |
628 | else | 628 | else |
629 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); | 629 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); |
630 | 630 | ||
631 | return res; | 631 | return res; |
632 | } | 632 | } |
633 | 633 | ||
634 | 634 | ||
635 | bool iPAQ::setDisplayBrightness ( int bright ) | 635 | bool iPAQ::setDisplayBrightness ( int bright ) |
636 | { | 636 | { |
637 | bool res = false; | 637 | bool res = false; |
638 | int fd; | 638 | int fd; |
639 | 639 | ||
640 | if ( bright > 255 ) | 640 | if ( bright > 255 ) |
641 | bright = 255; | 641 | bright = 255; |
642 | if ( bright < 0 ) | 642 | if ( bright < 0 ) |
643 | bright = 0; | 643 | bright = 0; |
644 | 644 | ||
645 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { | 645 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { |
646 | FLITE_IN bl; | 646 | FLITE_IN bl; |
647 | bl. mode = 1; | 647 | bl. mode = 1; |
648 | bl. pwr = bright ? 1 : 0; | 648 | bl. pwr = bright ? 1 : 0; |
649 | bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255; | 649 | bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255; |
650 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); | 650 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); |
651 | ::close ( fd ); | 651 | ::close ( fd ); |
652 | } | 652 | } |
653 | return res; | 653 | return res; |
654 | } | 654 | } |
655 | 655 | ||
656 | int iPAQ::displayBrightnessResolution ( ) const | 656 | int iPAQ::displayBrightnessResolution ( ) const |
657 | { | 657 | { |
658 | switch ( model ( )) { | 658 | switch ( model ( )) { |
659 | case Model_iPAQ_H31xx: | 659 | case Model_iPAQ_H31xx: |
660 | case Model_iPAQ_H36xx: | 660 | case Model_iPAQ_H36xx: |
661 | case Model_iPAQ_H37xx: | 661 | case Model_iPAQ_H37xx: |
662 | return 128; // really 256, but >128 could damage the LCD | 662 | return 128; // really 256, but >128 could damage the LCD |
663 | 663 | ||
664 | case Model_iPAQ_H38xx: | 664 | case Model_iPAQ_H38xx: |
665 | case Model_iPAQ_H39xx: | 665 | case Model_iPAQ_H39xx: |
666 | return 64; | 666 | return 64; |
667 | 667 | ||
668 | default: | 668 | default: |
669 | return 2; | 669 | return 2; |
670 | } | 670 | } |
671 | } | 671 | } |
672 | 672 | ||
673 | 673 | ||
674 | bool iPAQ::hasLightSensor ( ) const | 674 | bool iPAQ::hasLightSensor ( ) const |
675 | { | 675 | { |
676 | return true; | 676 | return true; |
677 | } | 677 | } |
678 | 678 | ||
679 | int iPAQ::readLightSensor ( ) | 679 | int iPAQ::readLightSensor ( ) |
680 | { | 680 | { |
681 | int fd; | 681 | int fd; |
682 | int val = -1; | 682 | int val = -1; |
683 | 683 | ||
684 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { | 684 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { |
685 | char buffer [8]; | 685 | char buffer [8]; |
686 | 686 | ||
687 | if ( ::read ( fd, buffer, 5 ) == 5 ) { | 687 | if ( ::read ( fd, buffer, 5 ) == 5 ) { |
688 | char *endptr; | 688 | char *endptr; |
689 | 689 | ||
690 | buffer [4] = 0; | 690 | buffer [4] = 0; |
691 | val = ::strtol ( buffer + 2, &endptr, 16 ); | 691 | val = ::strtol ( buffer + 2, &endptr, 16 ); |
692 | 692 | ||
693 | if ( *endptr != 0 ) | 693 | if ( *endptr != 0 ) |
694 | val = -1; | 694 | val = -1; |
695 | } | 695 | } |
696 | ::close ( fd ); | 696 | ::close ( fd ); |
697 | } | 697 | } |
698 | 698 | ||
699 | return val; | 699 | return val; |
700 | } | 700 | } |
701 | 701 | ||
702 | int iPAQ::lightSensorResolution ( ) const | 702 | int iPAQ::lightSensorResolution ( ) const |
703 | { | 703 | { |
704 | return 256; | 704 | return 256; |
705 | } | 705 | } |
706 | 706 | ||
707 | /************************************************** | 707 | /************************************************** |
708 | * | 708 | * |
709 | * Zaurus | 709 | * Zaurus |
710 | * | 710 | * |
711 | **************************************************/ | 711 | **************************************************/ |
712 | 712 | ||
713 | 713 | ||
714 | 714 | ||
715 | void Zaurus::init ( ) | 715 | void Zaurus::init ( ) |
716 | { | 716 | { |
717 | d-> m_modelstr = "Zaurus SL5000"; | ||
718 | d-> m_model = Model_Zaurus_SL5000; | ||
719 | d-> m_vendorstr = "Sharp"; | 717 | d-> m_vendorstr = "Sharp"; |
720 | d-> m_vendor = Vendor_Sharp; | 718 | d-> m_vendor = Vendor_Sharp; |
721 | 719 | ||
722 | QFile f ( "/proc/filesystems" ); | 720 | QFile f ( "/proc/filesystems" ); |
723 | 721 | ||
724 | if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { | 722 | if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { |
725 | d-> m_systemstr = "OpenZaurus"; | 723 | d-> m_systemstr = "OpenZaurus"; |
726 | d-> m_system = System_OpenZaurus; | 724 | d-> m_system = System_OpenZaurus; |
727 | 725 | ||
728 | f. close ( ); | 726 | f. close ( ); |
729 | 727 | ||
730 | f. setName ( "/etc/oz_version" ); | 728 | f. setName ( "/etc/oz_version" ); |
731 | if ( f. open ( IO_ReadOnly )) { | 729 | if ( f. open ( IO_ReadOnly )) { |
732 | QTextStream ts ( &f ); | 730 | QTextStream ts ( &f ); |
733 | d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); | 731 | d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); |
734 | f. close ( ); | 732 | f. close ( ); |
735 | } | 733 | } |
736 | } | 734 | } |
737 | else { | 735 | else { |
738 | d-> m_systemstr = "Zaurus"; | 736 | d-> m_systemstr = "Zaurus"; |
739 | d-> m_system = System_Zaurus; | 737 | d-> m_system = System_Zaurus; |
740 | } | 738 | } |
741 | 739 | ||
740 | f. setName ( "/proc/deviceinfo/product" ); | ||
741 | if ( f. open ( IO_ReadOnly ) ) { | ||
742 | QTextStream ts ( &f ); | ||
743 | QString model = ts. readLine ( ); | ||
744 | f. close ( ); | ||
745 | if ( model == "SL-5000D" ) { | ||
746 | d-> m_model = Model_Zaurus_SL5000; | ||
747 | d-> m_modelstr = "Zaurus SL-5000D"; | ||
748 | } else if ( model == "SL-5500" ) { | ||
749 | d-> m_model = Model_Zaurus_SL5500; | ||
750 | d-> m_modelstr = "Zaurus SL-5500"; | ||
751 | } | ||
752 | } | ||
753 | else { | ||
754 | d-> m_model = Model_Zaurus_SL5000; | ||
755 | d-> m_modelstr = "Zaurus SL-5000D (unverified)"; | ||
756 | } | ||
742 | 757 | ||
743 | m_leds [0] = Led_Off; | 758 | m_leds [0] = Led_Off; |
744 | } | 759 | } |
745 | 760 | ||
746 | #include <unistd.h> | 761 | #include <unistd.h> |
747 | #include <fcntl.h> | 762 | #include <fcntl.h> |
748 | #include <sys/ioctl.h> | 763 | #include <sys/ioctl.h> |
749 | 764 | ||
750 | //#include <asm/sharp_char.h> // including kernel headers is evil ... | 765 | //#include <asm/sharp_char.h> // including kernel headers is evil ... |
751 | 766 | ||
752 | #define SHARP_DEV_IOCTL_COMMAND_START 0x5680 | 767 | #define SHARP_DEV_IOCTL_COMMAND_START 0x5680 |
753 | 768 | ||
754 | #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) | 769 | #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) |
755 | #define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) | 770 | #define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) |
756 | 771 | ||
757 | #define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ | 772 | #define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ |
758 | #define SHARP_BUZ_KEYSOUND 2 /* key sound */ | 773 | #define SHARP_BUZ_KEYSOUND 2 /* key sound */ |
759 | #define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ | 774 | #define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ |
760 | 775 | ||
761 | /* --- for SHARP_BUZZER device --- */ | 776 | /* --- for SHARP_BUZZER device --- */ |
762 | 777 | ||
763 | //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) | 778 | //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) |
764 | //#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) | 779 | //#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) |
765 | 780 | ||
766 | #define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) | 781 | #define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) |
767 | #define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) | 782 | #define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) |
768 | #define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) | 783 | #define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) |
769 | #define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) | 784 | #define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) |
770 | #define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) | 785 | #define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) |
771 | 786 | ||
772 | //#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ | 787 | //#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ |
773 | //#define SHARP_BUZ_KEYSOUND 2 /* key sound */ | 788 | //#define SHARP_BUZ_KEYSOUND 2 /* key sound */ |
774 | 789 | ||
775 | //#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */ | 790 | //#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */ |
776 | //#define SHARP_PDA_WARNSOUND 4 /* warning occurred */ | 791 | //#define SHARP_PDA_WARNSOUND 4 /* warning occurred */ |
777 | //#define SHARP_PDA_ERRORSOUND 5 /* error occurred */ | 792 | //#define SHARP_PDA_ERRORSOUND 5 /* error occurred */ |
778 | //#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */ | 793 | //#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */ |
779 | //#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */ | 794 | //#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */ |
780 | //#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ | 795 | //#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ |
781 | //#define SHARP_PDA_APPSTART 9 /* application start */ | 796 | //#define SHARP_PDA_APPSTART 9 /* application start */ |
782 | //#define SHARP_PDA_APPQUIT 10 /* application ends */ | 797 | //#define SHARP_PDA_APPQUIT 10 /* application ends */ |
783 | 798 | ||
784 | //#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ | 799 | //#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ |
785 | //#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ | 800 | //#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ |
786 | //#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ | 801 | //#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ |
787 | //#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ | 802 | //#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ |
788 | // | 803 | // |
789 | 804 | ||
790 | #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) | 805 | #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) |
791 | #define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) | 806 | #define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) |
792 | 807 | ||
793 | typedef struct sharp_led_status { | 808 | typedef struct sharp_led_status { |
794 | int which; /* select which LED status is wanted. */ | 809 | int which; /* select which LED status is wanted. */ |
795 | int status; /* set new led status if you call SHARP_LED_SETSTATUS */ | 810 | int status; /* set new led status if you call SHARP_LED_SETSTATUS */ |
796 | } sharp_led_status; | 811 | } sharp_led_status; |
797 | 812 | ||
798 | #define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ | 813 | #define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ |
799 | 814 | ||
800 | #define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ | 815 | #define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ |
801 | #define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ | 816 | #define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ |
802 | #define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ | 817 | #define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ |
803 | 818 | ||
804 | // #include <asm/sharp_apm.h> // including kernel headers is evil ... | 819 | // #include <asm/sharp_apm.h> // including kernel headers is evil ... |
805 | 820 | ||
806 | #define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) | 821 | #define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) |
807 | #define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) | 822 | #define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) |
808 | #define APM_EVT_POWER_BUTTON (1 << 0) | 823 | #define APM_EVT_POWER_BUTTON (1 << 0) |
809 | 824 | ||
810 | #define FL_IOCTL_STEP_CONTRAST 100 | 825 | #define FL_IOCTL_STEP_CONTRAST 100 |
811 | 826 | ||
812 | 827 | ||
813 | void Zaurus::buzzer ( int sound ) | 828 | void Zaurus::buzzer ( int sound ) |
814 | { | 829 | { |
815 | static int fd = ::open ( "/dev/sharp_buz", O_RDWR|O_NONBLOCK ); | 830 | static int fd = ::open ( "/dev/sharp_buz", O_RDWR|O_NONBLOCK ); |
816 | 831 | ||
817 | if ( fd >= 0 ) | 832 | if ( fd >= 0 ) |
818 | ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); | 833 | ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); |
819 | } | 834 | } |
820 | 835 | ||
821 | 836 | ||
822 | void Zaurus::alarmSound ( ) | 837 | void Zaurus::alarmSound ( ) |
823 | { | 838 | { |
824 | buzzer ( SHARP_BUZ_SCHEDULE_ALARM ); | 839 | buzzer ( SHARP_BUZ_SCHEDULE_ALARM ); |
825 | } | 840 | } |
826 | 841 | ||
827 | void Zaurus::touchSound ( ) | 842 | void Zaurus::touchSound ( ) |
828 | { | 843 | { |
829 | buzzer ( SHARP_BUZ_TOUCHSOUND ); | 844 | buzzer ( SHARP_BUZ_TOUCHSOUND ); |
830 | } | 845 | } |
831 | 846 | ||
832 | void Zaurus::keySound ( ) | 847 | void Zaurus::keySound ( ) |
833 | { | 848 | { |
834 | buzzer ( SHARP_BUZ_KEYSOUND ); | 849 | buzzer ( SHARP_BUZ_KEYSOUND ); |
835 | } | 850 | } |
836 | 851 | ||
837 | 852 | ||
838 | QValueList <OLed> Zaurus::ledList ( ) const | 853 | QValueList <OLed> Zaurus::ledList ( ) const |
839 | { | 854 | { |
840 | QValueList <OLed> vl; | 855 | QValueList <OLed> vl; |
841 | vl << Led_Mail; | 856 | vl << Led_Mail; |
842 | return vl; | 857 | return vl; |
843 | } | 858 | } |
844 | 859 | ||
845 | QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const | 860 | QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const |
846 | { | 861 | { |
847 | QValueList <OLedState> vl; | 862 | QValueList <OLedState> vl; |
848 | 863 | ||
849 | if ( l == Led_Mail ) | 864 | if ( l == Led_Mail ) |
850 | vl << Led_Off << Led_On << Led_BlinkSlow; | 865 | vl << Led_Off << Led_On << Led_BlinkSlow; |
851 | return vl; | 866 | return vl; |
852 | } | 867 | } |
853 | 868 | ||
854 | OLedState Zaurus::ledState ( OLed which ) const | 869 | OLedState Zaurus::ledState ( OLed which ) const |
855 | { | 870 | { |
856 | if ( which == Led_Mail ) | 871 | if ( which == Led_Mail ) |
857 | return m_leds [0]; | 872 | return m_leds [0]; |
858 | else | 873 | else |
859 | return Led_Off; | 874 | return Led_Off; |
860 | } | 875 | } |
861 | 876 | ||
862 | bool Zaurus::setLedState ( OLed which, OLedState st ) | 877 | bool Zaurus::setLedState ( OLed which, OLedState st ) |
863 | { | 878 | { |
864 | static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); | 879 | static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); |
865 | 880 | ||
866 | if ( which == Led_Mail ) { | 881 | if ( which == Led_Mail ) { |
867 | if ( fd >= 0 ) { | 882 | if ( fd >= 0 ) { |
868 | struct sharp_led_status leds; | 883 | struct sharp_led_status leds; |
869 | ::memset ( &leds, 0, sizeof( leds )); | 884 | ::memset ( &leds, 0, sizeof( leds )); |
870 | leds. which = SHARP_LED_MAIL_EXISTS; | 885 | leds. which = SHARP_LED_MAIL_EXISTS; |
871 | bool ok = true; | 886 | bool ok = true; |
872 | 887 | ||
873 | switch ( st ) { | 888 | switch ( st ) { |
874 | case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; | 889 | case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; |
875 | case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; | 890 | case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; |
876 | case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; | 891 | case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; |
877 | default : ok = false; | 892 | default : ok = false; |
878 | } | 893 | } |
879 | 894 | ||
880 | if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { | 895 | if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { |
881 | m_leds [0] = st; | 896 | m_leds [0] = st; |
882 | return true; | 897 | return true; |
883 | } | 898 | } |
884 | } | 899 | } |
885 | } | 900 | } |
886 | return false; | 901 | return false; |
887 | } | 902 | } |
888 | 903 | ||
889 | bool Zaurus::setSoftSuspend ( bool soft ) | 904 | bool Zaurus::setSoftSuspend ( bool soft ) |
890 | { | 905 | { |
891 | bool res = false; | 906 | bool res = false; |
892 | int fd; | 907 | int fd; |
893 | 908 | ||
894 | if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || | 909 | if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || |
895 | (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { | 910 | (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { |
896 | 911 | ||
897 | int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources | 912 | int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources |
898 | 913 | ||
899 | if ( sources >= 0 ) { | 914 | if ( sources >= 0 ) { |
900 | if ( soft ) | 915 | if ( soft ) |
901 | sources &= ~APM_EVT_POWER_BUTTON; | 916 | sources &= ~APM_EVT_POWER_BUTTON; |
902 | else | 917 | else |
903 | sources |= APM_EVT_POWER_BUTTON; | 918 | sources |= APM_EVT_POWER_BUTTON; |
904 | 919 | ||
905 | if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources | 920 | if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources |
906 | res = true; | 921 | res = true; |
907 | else | 922 | else |
908 | perror ( "APM_IOCGEVTSRC" ); | 923 | perror ( "APM_IOCGEVTSRC" ); |
909 | } | 924 | } |
910 | else | 925 | else |
911 | perror ( "APM_IOCGEVTSRC" ); | 926 | perror ( "APM_IOCGEVTSRC" ); |
912 | 927 | ||
913 | ::close ( fd ); | 928 | ::close ( fd ); |
914 | } | 929 | } |
915 | else | 930 | else |
916 | perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); | 931 | perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); |
917 | 932 | ||
918 | return res; | 933 | return res; |
919 | } | 934 | } |
920 | 935 | ||
921 | 936 | ||
922 | bool Zaurus::setDisplayBrightness ( int bright ) | 937 | bool Zaurus::setDisplayBrightness ( int bright ) |
923 | { | 938 | { |
924 | bool res = false; | 939 | bool res = false; |
925 | int fd; | 940 | int fd; |
926 | 941 | ||
927 | if ( bright > 255 ) | 942 | if ( bright > 255 ) |
928 | bright = 255; | 943 | bright = 255; |
929 | if ( bright < 0 ) | 944 | if ( bright < 0 ) |
930 | bright = 0; | 945 | bright = 0; |
931 | 946 | ||
932 | if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { | 947 | if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { |
933 | int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus | 948 | int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus |
934 | if ( bright && !bl ) | 949 | if ( bright && !bl ) |
935 | bl = 1; | 950 | bl = 1; |
936 | res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); | 951 | res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); |
937 | ::close ( fd ); | 952 | ::close ( fd ); |
938 | } | 953 | } |
939 | return res; | 954 | return res; |
940 | } | 955 | } |
941 | 956 | ||
942 | 957 | ||
943 | int Zaurus::displayBrightnessResolution ( ) const | 958 | int Zaurus::displayBrightnessResolution ( ) const |
944 | { | 959 | { |
945 | return 5; | 960 | return 5; |
946 | } | 961 | } |
947 | 962 | ||
948 | 963 | ||
diff --git a/libopie/odevice.h b/libopie/odevice.h index e50009c..86491d4 100644 --- a/libopie/odevice.h +++ b/libopie/odevice.h | |||
@@ -1,149 +1,150 @@ | |||
1 | /* This file is part of the OPIE libraries | 1 | /* This file is part of the OPIE libraries |
2 | Copyright (C) 2002 Robert Griebl (sandman@handhelds.org) | 2 | Copyright (C) 2002 Robert Griebl (sandman@handhelds.org) |
3 | 3 | ||
4 | This library is free software; you can redistribute it and/or | 4 | This library is free software; you can redistribute it and/or |
5 | modify it under the terms of the GNU Library General Public | 5 | modify it under the terms of the GNU Library General Public |
6 | License as published by the Free Software Foundation; either | 6 | License as published by the Free Software Foundation; either |
7 | version 2 of the License, or (at your option) any later version. | 7 | version 2 of the License, or (at your option) any later version. |
8 | 8 | ||
9 | This library is distributed in the hope that it will be useful, | 9 | This library is distributed in the hope that it will be useful, |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | Library General Public License for more details. | 12 | Library General Public License for more details. |
13 | 13 | ||
14 | You should have received a copy of the GNU Library General Public License | 14 | You should have received a copy of the GNU Library General Public License |
15 | along with this library; see the file COPYING.LIB. If not, write to | 15 | along with this library; see the file COPYING.LIB. If not, write to |
16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 16 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | Boston, MA 02111-1307, USA. | 17 | Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #ifndef _LIBOPIE_ODEVICE_H_ | 20 | #ifndef _LIBOPIE_ODEVICE_H_ |
21 | #define _LIBOPIE_ODEVICE_H_ | 21 | #define _LIBOPIE_ODEVICE_H_ |
22 | 22 | ||
23 | #include <qstring.h> | 23 | #include <qstring.h> |
24 | #include <qnamespace.h> | 24 | #include <qnamespace.h> |
25 | 25 | ||
26 | class ODeviceData; | 26 | class ODeviceData; |
27 | 27 | ||
28 | namespace Opie { | 28 | namespace Opie { |
29 | 29 | ||
30 | enum OModel { | 30 | enum OModel { |
31 | Model_Unknown, | 31 | Model_Unknown, |
32 | 32 | ||
33 | Model_Series_Mask = 0xff000000, | 33 | Model_Series_Mask = 0xff000000, |
34 | 34 | ||
35 | Model_iPAQ = ( 1 << 24 ), | 35 | Model_iPAQ = ( 1 << 24 ), |
36 | 36 | ||
37 | Model_iPAQ_All = ( Model_iPAQ | 0xffffff ), | 37 | Model_iPAQ_All = ( Model_iPAQ | 0xffffff ), |
38 | Model_iPAQ_H31xx = ( Model_iPAQ | 0x000001 ), | 38 | Model_iPAQ_H31xx = ( Model_iPAQ | 0x000001 ), |
39 | Model_iPAQ_H36xx = ( Model_iPAQ | 0x000002 ), | 39 | Model_iPAQ_H36xx = ( Model_iPAQ | 0x000002 ), |
40 | Model_iPAQ_H37xx = ( Model_iPAQ | 0x000004 ), | 40 | Model_iPAQ_H37xx = ( Model_iPAQ | 0x000004 ), |
41 | Model_iPAQ_H38xx = ( Model_iPAQ | 0x000008 ), | 41 | Model_iPAQ_H38xx = ( Model_iPAQ | 0x000008 ), |
42 | Model_iPAQ_H39xx = ( Model_iPAQ | 0x000010 ), | 42 | Model_iPAQ_H39xx = ( Model_iPAQ | 0x000010 ), |
43 | 43 | ||
44 | Model_Zaurus = ( 2 << 24 ), | 44 | Model_Zaurus = ( 2 << 24 ), |
45 | 45 | ||
46 | Model_Zaurus_SL5000 = ( Model_Zaurus | 0x000001 ), | 46 | Model_Zaurus_SL5000 = ( Model_Zaurus | 0x000001 ), |
47 | Model_Zaurus_SL5500 = ( Model_Zaurus | 0x000002 ), | ||
47 | }; | 48 | }; |
48 | 49 | ||
49 | enum OVendor { | 50 | enum OVendor { |
50 | Vendor_Unknown, | 51 | Vendor_Unknown, |
51 | 52 | ||
52 | Vendor_HP, | 53 | Vendor_HP, |
53 | Vendor_Sharp | 54 | Vendor_Sharp |
54 | }; | 55 | }; |
55 | 56 | ||
56 | enum OSystem { | 57 | enum OSystem { |
57 | System_Unknown, | 58 | System_Unknown, |
58 | 59 | ||
59 | System_Familiar, | 60 | System_Familiar, |
60 | System_Zaurus, | 61 | System_Zaurus, |
61 | System_OpenZaurus | 62 | System_OpenZaurus |
62 | }; | 63 | }; |
63 | 64 | ||
64 | enum OLedState { | 65 | enum OLedState { |
65 | Led_Off, | 66 | Led_Off, |
66 | Led_On, | 67 | Led_On, |
67 | Led_BlinkSlow, | 68 | Led_BlinkSlow, |
68 | Led_BlinkFast | 69 | Led_BlinkFast |
69 | }; | 70 | }; |
70 | 71 | ||
71 | enum OLed { | 72 | enum OLed { |
72 | Led_Mail, | 73 | Led_Mail, |
73 | Led_Power, | 74 | Led_Power, |
74 | Led_BlueTooth | 75 | Led_BlueTooth |
75 | }; | 76 | }; |
76 | 77 | ||
77 | enum OHardKey { | 78 | enum OHardKey { |
78 | HardKey_Datebook = Qt::Key_F9, | 79 | HardKey_Datebook = Qt::Key_F9, |
79 | HardKey_Contacts = Qt::Key_F10, | 80 | HardKey_Contacts = Qt::Key_F10, |
80 | HardKey_Menu = Qt::Key_F11, | 81 | HardKey_Menu = Qt::Key_F11, |
81 | HardKey_Home = Qt::Key_F12, | 82 | HardKey_Home = Qt::Key_F12, |
82 | HardKey_Mail = Qt::Key_F14, | 83 | HardKey_Mail = Qt::Key_F14, |
83 | HardKey_Record = Qt::Key_F24, | 84 | HardKey_Record = Qt::Key_F24, |
84 | HardKey_Suspend = Qt::Key_F34, | 85 | HardKey_Suspend = Qt::Key_F34, |
85 | HardKey_Backlight = Qt::Key_F35, | 86 | HardKey_Backlight = Qt::Key_F35, |
86 | }; | 87 | }; |
87 | 88 | ||
88 | 89 | ||
89 | class ODevice | 90 | class ODevice |
90 | { | 91 | { |
91 | private: | 92 | private: |
92 | ODevice ( const ODevice & ); | 93 | ODevice ( const ODevice & ); |
93 | 94 | ||
94 | protected: | 95 | protected: |
95 | ODevice ( ); | 96 | ODevice ( ); |
96 | virtual void init ( ); | 97 | virtual void init ( ); |
97 | 98 | ||
98 | ODeviceData *d; | 99 | ODeviceData *d; |
99 | 100 | ||
100 | public: | 101 | public: |
101 | virtual ~ODevice ( ); | 102 | virtual ~ODevice ( ); |
102 | 103 | ||
103 | static ODevice *inst ( ); | 104 | static ODevice *inst ( ); |
104 | 105 | ||
105 | 106 | ||
106 | 107 | ||
107 | // information | 108 | // information |
108 | 109 | ||
109 | QString modelString ( ) const; | 110 | QString modelString ( ) const; |
110 | OModel model ( ) const; | 111 | OModel model ( ) const; |
111 | inline OModel series ( ) const { return (OModel) ( model ( ) & Model_Series_Mask ); } | 112 | inline OModel series ( ) const { return (OModel) ( model ( ) & Model_Series_Mask ); } |
112 | 113 | ||
113 | QString vendorString ( ) const; | 114 | QString vendorString ( ) const; |
114 | OVendor vendor ( ) const; | 115 | OVendor vendor ( ) const; |
115 | 116 | ||
116 | QString systemString ( ) const; | 117 | QString systemString ( ) const; |
117 | OSystem system ( ) const; | 118 | OSystem system ( ) const; |
118 | 119 | ||
119 | QString systemVersionString ( ) const; | 120 | QString systemVersionString ( ) const; |
120 | 121 | ||
121 | // system | 122 | // system |
122 | 123 | ||
123 | virtual bool setSoftSuspend ( bool on ); | 124 | virtual bool setSoftSuspend ( bool on ); |
124 | virtual bool suspend ( ); | 125 | virtual bool suspend ( ); |
125 | 126 | ||
126 | virtual bool setDisplayStatus ( bool on ); | 127 | virtual bool setDisplayStatus ( bool on ); |
127 | virtual bool setDisplayBrightness ( int brightness ); | 128 | virtual bool setDisplayBrightness ( int brightness ); |
128 | virtual int displayBrightnessResolution ( ) const; | 129 | virtual int displayBrightnessResolution ( ) const; |
129 | 130 | ||
130 | // input / output | 131 | // input / output |
131 | 132 | ||
132 | virtual void alarmSound ( ); | 133 | virtual void alarmSound ( ); |
133 | virtual void keySound ( ); | 134 | virtual void keySound ( ); |
134 | virtual void touchSound ( ); | 135 | virtual void touchSound ( ); |
135 | 136 | ||
136 | virtual QValueList <OLed> ledList ( ) const; | 137 | virtual QValueList <OLed> ledList ( ) const; |
137 | virtual QValueList <OLedState> ledStateList ( OLed led ) const; | 138 | virtual QValueList <OLedState> ledStateList ( OLed led ) const; |
138 | virtual OLedState ledState ( OLed led ) const; | 139 | virtual OLedState ledState ( OLed led ) const; |
139 | virtual bool setLedState ( OLed led, OLedState st ); | 140 | virtual bool setLedState ( OLed led, OLedState st ); |
140 | 141 | ||
141 | virtual bool hasLightSensor ( ) const; | 142 | virtual bool hasLightSensor ( ) const; |
142 | virtual int readLightSensor ( ); | 143 | virtual int readLightSensor ( ); |
143 | virtual int lightSensorResolution ( ) const; | 144 | virtual int lightSensorResolution ( ) const; |
144 | }; | 145 | }; |
145 | 146 | ||
146 | } | 147 | } |
147 | 148 | ||
148 | #endif | 149 | #endif |
149 | 150 | ||