summaryrefslogtreecommitdiff
path: root/libopie/odevice.cpp
blob: fef623ac0891fee3a3d949562aa586a3e88fb428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
/*  This file is part of the OPIE libraries
    Copyright (C) 2002 Robert Griebl (sandman@handhelds.org)

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.
*/

#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <signal.h>
#include <sys/time.h>
#ifndef QT_NO_SOUND
#include <linux/soundcard.h>
#endif
#include <math.h>

#include <qapplication.h>

#include <qfile.h>
#include <qtextstream.h>
#include <qpe/sound.h>
#include <qpe/resource.h>
#include <qpe/config.h>
#include <qpe/qcopenvelope_qws.h>

#include "odevice.h"

#include <qwindowsystem_qws.h>

#ifndef ARRAY_SIZE
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
#endif

// _IO and friends are only defined in kernel headers ...

#define OD_IOC(dir,type,number,size)    (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 ))

#define OD_IO(type,number)              OD_IOC(0,type,number,0)
#define OD_IOW(type,number,size)        OD_IOC(1,type,number,sizeof(size))
#define OD_IOR(type,number,size)        OD_IOC(2,type,number,sizeof(size))
#define OD_IORW(type,number,size)       OD_IOC(3,type,number,sizeof(size))

using namespace Opie;

class ODeviceData {
public:
	QString m_vendorstr;
	OVendor m_vendor;

	QString m_modelstr;
	OModel m_model;

	QString m_systemstr;
	OSystem m_system;

	QString m_sysverstr;

	Transformation m_rotation;
	ODirection m_direction;

	QValueList <ODeviceButton> *m_buttons;
	uint                        m_holdtime;
	QStrList                   *m_cpu_frequencies;
};

class iPAQ : public ODevice, public QWSServer::KeyboardFilter {
protected:
	virtual void init ( );
	virtual void initButtons ( );

public:
	virtual bool setSoftSuspend ( bool soft );

	virtual bool setDisplayBrightness ( int b );
	virtual int displayBrightnessResolution ( ) const;

	virtual void alarmSound ( );

	virtual QValueList <OLed> ledList ( ) const;
	virtual QValueList <OLedState> ledStateList ( OLed led ) const;
	virtual OLedState ledState ( OLed led ) const;
	virtual bool setLedState ( OLed led, OLedState st );

	virtual bool hasLightSensor ( ) const;
	virtual int readLightSensor ( );
	virtual int lightSensorResolution ( ) const;

protected:
	virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat );
	virtual void timerEvent ( QTimerEvent *te );

	int m_power_timer;

	OLedState m_leds [2];
};

class Jornada : public ODevice {
protected:
	virtual void init ( );
	//virtual void initButtons ( );
public:
	virtual bool setSoftSuspend ( bool soft );
	virtual bool setDisplayBrightness ( int b );
	virtual int displayBrightnessResolution ( ) const;
	static bool isJornada();

};

class Zaurus : public ODevice {
protected:
	virtual void init ( );
	virtual void initButtons ( );

public:
	virtual bool setSoftSuspend ( bool soft );

	virtual bool setDisplayBrightness ( int b );
	virtual int displayBrightnessResolution ( ) const;

	virtual void alarmSound ( );
	virtual void keySound ( );
	virtual void touchSound ( );

	virtual QValueList <OLed> ledList ( ) const;
	virtual QValueList <OLedState> ledStateList ( OLed led ) const;
	virtual OLedState ledState ( OLed led ) const;
	virtual bool setLedState ( OLed led, OLedState st );

	static bool isZaurus();

protected:
	virtual void buzzer ( int snd );

	OLedState m_leds [1];
	bool m_embedix;
};

class SIMpad : public ODevice, public QWSServer::KeyboardFilter {
protected:
	virtual void init ( );
	virtual void initButtons ( );

public:
	virtual bool setSoftSuspend ( bool soft );
	virtual bool suspend();

	virtual bool setDisplayStatus( bool on );
	virtual bool setDisplayBrightness ( int b );
	virtual int displayBrightnessResolution ( ) const;

	virtual void alarmSound ( );

	virtual QValueList <OLed> ledList ( ) const;
	virtual QValueList <OLedState> ledStateList ( OLed led ) const;
	virtual OLedState ledState ( OLed led ) const;
	virtual bool setLedState ( OLed led, OLedState st );

protected:
	virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat );
	virtual void timerEvent ( QTimerEvent *te );

	int m_power_timer;

	OLedState m_leds [1]; //FIXME check if really only one
};

class Ramses : public ODevice, public QWSServer::KeyboardFilter {
protected:
	virtual void init ( );

public:
	virtual bool setSoftSuspend ( bool soft );
	virtual bool suspend ( );

	virtual bool setDisplayStatus( bool on );
	virtual bool setDisplayBrightness ( int b );
	virtual int displayBrightnessResolution ( ) const;
	virtual bool setDisplayContrast ( int b );
	virtual int displayContrastResolution ( ) const;

protected:
	virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat );
	virtual void timerEvent ( QTimerEvent *te );

	int m_power_timer;
};

struct i_button {
	uint model;
	Qt::Key code;
	char *utext;
	char *pix;
	char *fpressedservice;
	char *fpressedaction;
	char *fheldservice;
	char *fheldaction;
} ipaq_buttons [] = {
    { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx,
    Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
	"devicebuttons/ipaq_calendar",
	"datebook", "nextView()",
	"today", "raise()" },
    { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx,
    Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
	"devicebuttons/ipaq_contact",
	"addressbook", "raise()",
	"addressbook", "beamBusinessCard()" },
    { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx,
    Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
	"devicebuttons/ipaq_menu",
 	"QPE/TaskBar", "toggleMenu()",
	"QPE/TaskBar", "toggleStartMenu()" },
    { Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx,
    Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"),
	"devicebuttons/ipaq_mail",
	"mail", "raise()",
	"mail", "newMail()" },
    { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx,
    Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
	"devicebuttons/ipaq_home",
	"QPE/Launcher", "home()",
	"buttonsettings", "raise()" },
    { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx,
    Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"),
	"devicebuttons/ipaq_record",
	"QPE/VMemo", "toggleRecord()",
	"sound", "raise()" },
};

struct z_button {
    Qt::Key code;
    char *utext;
    char *pix;
    char *fpressedservice;
    char *fpressedaction;
    char *fheldservice;
    char *fheldaction;
} z_buttons [] = {
    { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
	"devicebuttons/z_calendar",
	"datebook", "nextView()",
	"today", "raise()" },
    { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
	"devicebuttons/z_contact",
	"addressbook", "raise()",
	"addressbook", "beamBusinessCard()" },
    { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
	"devicebuttons/z_home",
	"QPE/Launcher", "home()",
	"buttonsettings", "raise()" },
    { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
	"devicebuttons/z_menu",
 	"QPE/TaskBar", "toggleMenu()",
	"QPE/TaskBar", "toggleStartMenu()" },
    { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"),
	"devicebuttons/z_mail",
	"mail", "raise()",
	"mail", "newMail()" },
};

struct z_button z_buttons_c700 [] = {
    { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
	"devicebuttons/z_calendar",
	"datebook", "nextView()",
	"today", "raise()" },
    { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
	"devicebuttons/z_contact",
	"addressbook", "raise()",
	"addressbook", "beamBusinessCard()" },
    { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
	"devicebuttons/z_home",
	"QPE/Launcher", "home()",
	"buttonsettings", "raise()" },
    { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
	"devicebuttons/z_menu",
 	"QPE/TaskBar", "toggleMenu()",
	"QPE/TaskBar", "toggleStartMenu()" },
    { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Display Rotate"),
	"",
	"QPE/Rotation", "flip()",
	"QPE/Rotation", "flip()" },
};

struct s_button {
    uint model;
    Qt::Key code;
    char *utext;
    char *pix;
    char *fpressedservice;
    char *fpressedaction;
    char *fheldservice;
    char *fheldaction;
} simpad_buttons [] = {
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Lower+Up"),
    "devicebuttons/simpad_lower_up",
    "datebook", "nextView()",
    "today", "raise()" },
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Lower+Down"),
    "devicebuttons/simpad_lower_down",
    "addressbook", "raise()",
    "addressbook", "beamBusinessCard()" },
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Lower+Right"),
    "devicebuttons/simpad_lower_right",
    "QPE/TaskBar", "toggleMenu()",
    "QPE/TaskBar", "toggleStartMenu()" },
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Lower+Left"),
    "devicebuttons/simpad_lower_left",
    "mail", "raise()",
    "mail", "newMail()" },

    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F5, QT_TRANSLATE_NOOP("Button", "Upper+Up"),
    "devicebuttons/simpad_upper_up",
    "QPE/Launcher", "home()",
    "buttonsettings", "raise()" },
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F6, QT_TRANSLATE_NOOP("Button", "Upper+Down"),
    "devicebuttons/simpad_upper_down",
    "addressbook", "raise()",
    "addressbook", "beamBusinessCard()" },
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F7, QT_TRANSLATE_NOOP("Button", "Upper+Right"),
    "devicebuttons/simpad_upper_right",
    "QPE/TaskBar", "toggleMenu()",
    "QPE/TaskBar", "toggleStartMenu()" },
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Upper+Left"),
    "devicebuttons/simpad_upper_left",
    "QPE/Rotation", "flip()",
    "QPE/Rotation", "flip()" },
    /*
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Lower+Upper"),
    "devicebuttons/simpad_lower_upper",
    "QPE/Launcher", "home()",
    "buttonsettings", "raise()" },
    { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
    Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Lower+Upper"),
    "devicebuttons/simpad_upper_lower",
    "QPE/Launcher", "home()",
    "buttonsettings", "raise()" },
    */
};

struct r_button {
	uint model;
    Qt::Key code;
    char *utext;
    char *pix;
    char *fpressedservice;
    char *fpressedaction;
    char *fheldservice;
    char *fheldaction;
} ramses_buttons [] = {
    { Model_Ramses_MNCI,
    Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
	"devicebuttons/z_menu",
 	"QPE/TaskBar", "toggleMenu()",
	"QPE/TaskBar", "toggleStartMenu()" },
    { Model_Ramses_MNCI,
    Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
	"devicebuttons/ipaq_home",
	"QPE/Launcher", "home()",
	"buttonsettings", "raise()" },
};

class Yopy : public ODevice {
protected:
  virtual void init ( );
  virtual void initButtons ( );

public:
  virtual bool suspend ( );

  virtual bool setDisplayBrightness ( int b );
  virtual int displayBrightnessResolution ( ) const;

  static bool isYopy ( );
};

struct yopy_button {
    Qt::Key code;
    char *utext;
    char *pix;
    char *fpressedservice;
    char *fpressedaction;
    char *fheldservice;
    char *fheldaction;
} yopy_buttons [] = {
  { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Action Button"),
    "devicebuttons/yopy_action",
    "datebook", "nextView()",
    "today", "raise()" },
  { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "OK Button"),
    "devicebuttons/yopy_ok",
    "addressbook", "raise()",
    "addressbook", "beamBusinessCard()" },
  { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "End Button"),
    "devicebuttons/yopy_end",
    "QPE/Launcher", "home()",
    "buttonsettings", "raise()" },
};

static QCString makeChannel ( const char *str )
{
	if ( str && !::strchr ( str, '/' ))
		return QCString ( "QPE/Application/" ) + str;
	else
		return str;
}

static inline bool isQWS()
{
	return qApp ? ( qApp-> type ( ) == QApplication::GuiServer ) : false;
}

ODevice *ODevice::inst ( )
{
	static ODevice *dev = 0;

	if ( !dev ) {		
		if ( QFile::exists ( "/proc/hal/model" ))
			dev = new iPAQ ( );
		else if ( Zaurus::isZaurus() )
			dev = new Zaurus ( );
		else if ( QFile::exists ( "/proc/ucb1x00" ) && QFile::exists ( "/proc/cs3" ))
			dev = new SIMpad ( );
		else if ( QFile::exists ( "/proc/sys/board/name" ))
			dev = new Ramses ( );
		else if ( Yopy::isYopy() )
		        dev = new Yopy ( );
		else if ( Jornada::isJornada() )
			dev = new Jornada ( );
		else
			dev = new ODevice ( );
		dev-> init ( );
	}
	return dev;
}


/**************************************************
 *
 * common
 *
 **************************************************/


ODevice::ODevice ( )
{
	d = new ODeviceData;

	d-> m_modelstr = "Unknown";
	d-> m_model = Model_Unknown;
	d-> m_vendorstr = "Unknown";
	d-> m_vendor = Vendor_Unknown;
	d-> m_systemstr = "Unknown";
	d-> m_system = System_Unknown;
	d-> m_sysverstr = "0.0";
	d-> m_rotation = Rot0;
	d-> m_direction = CW;

	d-> m_holdtime = 1000; // 1000ms
	d-> m_buttons = 0;
	d-> m_cpu_frequencies = new QStrList;
}

void ODevice::systemMessage ( const QCString &msg, const QByteArray & )
{
	if ( msg == "deviceButtonMappingChanged()" ) {
		reloadButtonMapping ( );
	}
}

void ODevice::init ( )
{
}

/**
 * This method initialises the  button mapping
 */
void ODevice::initButtons ( )
{
	if ( d-> m_buttons )
		return;

	// Simulation uses iPAQ 3660 device buttons

	qDebug ( "init Buttons" );
	d-> m_buttons = new QValueList <ODeviceButton>;

	for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) {
		i_button *ib = ipaq_buttons + i;
		ODeviceButton b;

		if (( ib-> model & Model_iPAQ_H36xx ) == Model_iPAQ_H36xx ) {
			b. setKeycode ( ib-> code );
			b. setUserText ( QObject::tr ( "Button", ib-> utext ));
			b. setPixmap ( Resource::loadPixmap ( ib-> pix ));
			b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction ));
			b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction ));
			d-> m_buttons-> append ( b );
		}
	}
	reloadButtonMapping ( );

	QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
	connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
}

ODevice::~ODevice ( )
{
// we leak m_devicebuttons and m_cpu_frequency 
// but it's a singleton and it is not so importantant
// -zecke
	delete d;
}

bool ODevice::setSoftSuspend ( bool /*soft*/ )
{
	return false;
}

//#include <linux/apm_bios.h>

#define APM_IOC_SUSPEND          OD_IO( 'A', 2 )

/**
 * This method will try to suspend the device
 * It only works if the user is the QWS Server and the apm application
 * is installed.
 * It tries to suspend and then waits some time cause some distributions
 * do have asynchronus apm implementations.
 * This method will either fail and return false or it'll suspend the
 * device and return once the device got woken up
 *
 * @return if the device got suspended
 */
bool ODevice::suspend ( )
{
	qDebug("ODevice::suspend");
	if ( !isQWS( ) ) // only qwsserver is allowed to suspend
		return false;

	if ( d-> m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices
		return false;

	bool res = false;

	struct timeval tvs, tvn;
	::gettimeofday ( &tvs, 0 );

	::sync ( ); // flush fs caches
	res = ( ::system ( "apm --suspend" ) == 0 );

	// This is needed because the iPAQ apm implementation is asynchronous and we
	// can not be sure when exactly the device is really suspended
	// This can be deleted as soon as a stable familiar with a synchronous apm implementation exists.

	if ( res ) {
		do { // wait at most 1.5 sec: either suspend didn't work or the device resumed
			::usleep ( 200 * 1000 );
			::gettimeofday ( &tvn, 0 );
		} while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 );
	}

	return res;
}

//#include <linux/fb.h> better not rely on kernel headers in userspace ...

#define FBIOBLANK             OD_IO( 'F', 0x11 ) // 0x4611

/* VESA Blanking Levels */
#define VESA_NO_BLANKING      0
#define VESA_VSYNC_SUSPEND    1
#define VESA_HSYNC_SUSPEND    2
#define VESA_POWERDOWN        3

/**
 * This sets the display on or off
 */
bool ODevice::setDisplayStatus ( bool on )
{
	qDebug("ODevice::setDisplayStatus(%d)", on);

	if ( d-> m_model == Model_Unknown )
		return false;

	bool res = false;
	int fd;

	if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) {
		res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 );
		::close ( fd );
	}
	return res;
}

/**
 * This sets the display brightness
 *
 * @param p The brightness to be set on a scale from 0 to 255
 * @return success or failure
 */
bool ODevice::setDisplayBrightness ( int p)
{
        Q_UNUSED( p )
	return false;
}

/**
 * @return returns the number of steppings on the brightness slider
 * in the Light-'n-Power settings.
 */
int ODevice::displayBrightnessResolution ( ) const
{
	return 16;
}

/**
 * This sets the display contrast
 * @param p The contrast to be set on a scale from 0 to 255
 * @return success or failure
 */
bool ODevice::setDisplayContrast ( int p)
{
        Q_UNUSED( p )
	return false;
}

/**
 * @return return the max value for the brightness settings slider
 *         or 0 if the device doesn't support setting of a contrast
 */
int ODevice::displayContrastResolution ( ) const
{
	return 0;
}

/**
 * This returns the vendor as string
 * @return Vendor as QString
 */
QString ODevice::vendorString ( ) const
{
	return d-> m_vendorstr;
}

/**
 * This returns the vendor as one of the values of OVendor
 * @return OVendor
 */
OVendor ODevice::vendor ( ) const
{
	return d-> m_vendor;
}

/**
 * This returns the model as a string
 * @return A string representing the model
 */
QString ODevice::modelString ( ) const
{
	return d-> m_modelstr;
}

/**
 * This does return the OModel used
 */
OModel ODevice::model ( ) const
{
	return d-> m_model;
}

/**
 * This does return the systen name
 */
QString ODevice::systemString ( ) const
{
	return d-> m_systemstr;
}

/**
 * Return System as OSystem value
 */
OSystem ODevice::system ( ) const
{
	return d-> m_system;
}

/**
 * @return the version string of the base system
 */
QString ODevice::systemVersionString ( ) const
{
	return d-> m_sysverstr;
}

/**
 *  @return the current Transformation
 */
Transformation ODevice::rotation ( ) const
{
	return d-> m_rotation;
}

/**
 *  @return the current rotation direction
 */
ODirection ODevice::direction ( ) const
{
	return d-> m_direction;
}

/**
 * This plays an alarmSound
 */
void ODevice::alarmSound ( )
{
#ifndef QT_NO_SOUND
	static Sound snd ( "alarm" );

	if ( snd. isFinished ( ))
		snd. play ( );
#endif
}

/**
 * This plays a key sound
 */
void ODevice::keySound ( )
{
#ifndef QT_NO_SOUND
	static Sound snd ( "keysound" );

	if ( snd. isFinished ( ))
		snd. play ( );
#endif
}

/**
 * This plays a touch sound
 */
void ODevice::touchSound ( )
{
#ifndef QT_NO_SOUND
	static Sound snd ( "touchsound" );

	if ( snd. isFinished ( ))
		snd. play ( );
#endif
}

/**
 * This method will return a list of leds
 * available on this device
 * @return a list of LEDs.
 */
QValueList <OLed> ODevice::ledList ( ) const
{
	return QValueList <OLed> ( );
}

/**
 * This does return the state of the LEDs
 */
QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const
{
	return QValueList <OLedState> ( );
}

/**
 * @return the state for a given OLed
 */
OLedState ODevice::ledState ( OLed /*which*/ ) const
{
	return Led_Off;
}

/**
 * Set the state for a LED
 * @param which Which OLed to use
 * @param st The state to set
 * @return success or failure
 */
bool ODevice::setLedState ( OLed which, OLedState st )
{
        Q_UNUSED( which )
        Q_UNUSED( st    )
	return false;
}

/**
 * @return if the device has a light sensor
 */
bool ODevice::hasLightSensor ( ) const
{
	return false;
}

/**
 * @return a value from the light senso
 */
int ODevice::readLightSensor ( )
{
	return -1;
}

/**
 * @return the light sensor resolution whatever that is ;)
 */
int ODevice::lightSensorResolution ( ) const
{
	return 0;
}

/**
 * @return a list with CPU frequencies supported by the hardware
 */
const QStrList &ODevice::allowedCpuFrequencies ( ) const
{
	return *d->m_cpu_frequencies;
}


/**
 * Set desired CPU frequency
 * 
 * @param index index into d->m_cpu_frequencies of the frequency to be set
 */
bool ODevice::setCurrentCpuFrequency(uint index)
{
	if (index >= d->m_cpu_frequencies->count())
		return false;

	char *freq = d->m_cpu_frequencies->at(index);
	qWarning("set freq to %s", freq);

	int fd;

	if ((fd = ::open("/proc/sys/cpu/0/speed", O_WRONLY)) >= 0) {
		char writeCommand[50];
		const int count = sprintf(writeCommand, "%s\n", freq);
		int res = (::write(fd, writeCommand, count) != -1);
		::close(fd);
		return res;
	}

	return false;
}


/**
 * @return a list of hardware buttons
 */
const QValueList <ODeviceButton> &ODevice::buttons ( )
{
	initButtons ( );

	return *d-> m_buttons;
}

/**
 * @return The amount of time that would count as a hold
 */
uint ODevice::buttonHoldTime ( ) const
{
	return d-> m_holdtime;
}

/**
 * This method return a ODeviceButton for a key code
 * or 0 if no special hardware button is available for the device
 *
 * @return The devicebutton or 0l
 * @see ODeviceButton
 */
const ODeviceButton *ODevice::buttonForKeycode ( ushort code )
{
	initButtons ( );

	for ( QValueListConstIterator<ODeviceButton> it = d-> m_buttons-> begin ( ); it != d-> m_buttons-> end ( ); ++it ) {
		if ( (*it). keycode ( ) == code )
			return &(*it);
	}
	return 0;
}

void ODevice::reloadButtonMapping ( )
{
	initButtons ( );

	Config cfg ( "ButtonSettings" );

	for ( uint i = 0; i < d-> m_buttons-> count ( ); i++ ) {
		ODeviceButton &b = ( *d-> m_buttons ) [i];
		QString group = "Button" + QString::number ( i );

		QCString pch, hch;
		QCString pm, hm;
		QByteArray pdata, hdata;

		if ( cfg. hasGroup ( group )) {
			cfg. setGroup ( group );
			pch = cfg. readEntry ( "PressedActionChannel" ). latin1 ( );
			pm  = cfg. readEntry ( "PressedActionMessage" ). latin1 ( );
			// pdata = decodeBase64 ( buttonFile. readEntry ( "PressedActionArgs" ));

			hch = cfg. readEntry ( "HeldActionChannel" ). latin1 ( );
			hm  = cfg. readEntry ( "HeldActionMessage" ). latin1 ( );
			// hdata = decodeBase64 ( buttonFile. readEntry ( "HeldActionArgs" ));
		}

		b. setPressedAction ( OQCopMessage ( pch, pm, pdata ));

		b. setHeldAction ( OQCopMessage ( hch, hm, hdata ));
	}
}

void ODevice::remapPressedAction ( int button, const OQCopMessage &action )
{
	initButtons ( );

	QString mb_chan;

	if ( button >= (int) d-> m_buttons-> count ( ))
		return;

	ODeviceButton &b = ( *d-> m_buttons ) [button];
        b. setPressedAction ( action );

	mb_chan=b. pressedAction ( ). channel ( );

	Config buttonFile ( "ButtonSettings" );
	buttonFile. setGroup ( "Button" + QString::number ( button ));
	buttonFile. writeEntry ( "PressedActionChannel", (const char*) mb_chan);
	buttonFile. writeEntry ( "PressedActionMessage", (const char*) b. pressedAction ( ). message ( ));

//	buttonFile. writeEntry ( "PressedActionArgs", encodeBase64 ( b. pressedAction ( ). data ( )));

	QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" );
}

void ODevice::remapHeldAction ( int button, const OQCopMessage &action )
{
	initButtons ( );

	if ( button >= (int) d-> m_buttons-> count ( ))
		return;

	ODeviceButton &b = ( *d-> m_buttons ) [button];
    	b. setHeldAction ( action );

	Config buttonFile ( "ButtonSettings" );
	buttonFile. setGroup ( "Button" + QString::number ( button ));
	buttonFile. writeEntry ( "HeldActionChannel", (const char *) b. heldAction ( ). channel ( ));
	buttonFile. writeEntry ( "HeldActionMessage", (const char *) b. heldAction ( ). message ( ));

//	buttonFile. writeEntry ( "HeldActionArgs", decodeBase64 ( b. heldAction ( ). data ( )));

	QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" );
}
void ODevice::virtual_hook(int, void* ){

}

/**************************************************
 *
 * Yopy 3500/3700
 *
 **************************************************/

bool Yopy::isYopy ( )
{
  QFile f( "/proc/cpuinfo" );
  if ( f. open ( IO_ReadOnly ) ) {
    QTextStream ts ( &f );
    QString line;
    while( line = ts. readLine ( ) ) {
      if ( line. left ( 8 ) == "Hardware" ) {
	int loc = line. find ( ":" );
	if ( loc != -1 ) {
	  QString model =
	    line. mid ( loc + 2 ). simplifyWhiteSpace( );
	  return ( model == "Yopy" );
	}
      }
    }
  }
  return false;
}

void Yopy::init ( )
{
  d-> m_vendorstr = "G.Mate";
  d-> m_vendor = Vendor_GMate;
  d-> m_modelstr = "Yopy3700";
  d-> m_model = Model_Yopy_3700;
  d-> m_rotation = Rot0;
  
  d-> m_systemstr = "Linupy";
  d-> m_system = System_Linupy;
  
  QFile f ( "/etc/issue" );
  if ( f. open ( IO_ReadOnly )) {
    QTextStream ts ( &f );
    ts.readLine();
    d-> m_sysverstr = ts. readLine ( );
    f. close ( );
  }
}

void Yopy::initButtons ( )
{
  if ( d-> m_buttons )
    return;

  d-> m_buttons = new QValueList <ODeviceButton>;

  for (uint i = 0; i < ( sizeof( yopy_buttons ) / sizeof(yopy_button)); i++) {

    yopy_button *ib = yopy_buttons + i;
    
    ODeviceButton b;

    b. setKeycode ( ib-> code );
    b. setUserText ( QObject::tr ( "Button", ib-> utext ));
    b. setPixmap ( Resource::loadPixmap ( ib-> pix ));
    b. setFactoryPresetPressedAction
      (OQCopMessage(makeChannel(ib->fpressedservice), ib->fpressedaction));
    b. setFactoryPresetHeldAction
      (OQCopMessage(makeChannel(ib->fheldservice), ib->fheldaction));

    d-> m_buttons-> append ( b );
  }
  reloadButtonMapping ( );
  
  QCopChannel *sysch = new QCopChannel("QPE/System", this);
  connect(sysch, SIGNAL(received(const QCString &, const QByteArray & )), 
	  this, SLOT(systemMessage(const QCString &, const QByteArray & )));
}

bool Yopy::suspend()
{
  /* Opie for Yopy does not implement its own power management at the 
     moment.  The public version runs parallel to X, and relies on the 
     existing power management features. */
  return false;
}

bool Yopy::setDisplayBrightness(int bright)
{
  /* The code here works, but is disabled as the current version runs
     parallel to X, and relies on the existing backlight demon. */
#if 0
  if ( QFile::exists("/proc/sys/pm/light") ) {
    int fd = ::open("/proc/sys/pm/light", O_WRONLY);
    if (fd >= 0 ) {
      if (bright)
	::write(fd, "1\n", 2);
      else
	::write(fd, "0\n", 2);
      ::close(fd);
      return true;
    }
  }
#endif
  return false;
}

int Yopy::displayBrightnessResolution() const
{
  return 2;
}

/**************************************************
 *
 * iPAQ
 *
 **************************************************/

void iPAQ::init ( )
{
	d-> m_vendorstr = "HP";
	d-> m_vendor = Vendor_HP;

	QFile f ( "/proc/hal/model" );

	if ( f. open ( IO_ReadOnly )) {
		QTextStream ts ( &f );

		d-> m_modelstr = "H" + ts. readLine ( );

		if ( d-> m_modelstr == "H3100" )
			d-> m_model = Model_iPAQ_H31xx;
		else if ( d-> m_modelstr == "H3600" )
			d-> m_model = Model_iPAQ_H36xx;
		else if ( d-> m_modelstr == "H3700" )
			d-> m_model = Model_iPAQ_H37xx;
		else if ( d-> m_modelstr == "H3800" )
			d-> m_model = Model_iPAQ_H38xx;
		else if ( d-> m_modelstr == "H3900" )
			d-> m_model = Model_iPAQ_H39xx;
		else if ( d-> m_modelstr == "H5400" )
			d-> m_model = Model_iPAQ_H5xxx;
		else
			d-> m_model = Model_Unknown;

		f. close ( );
	}

	switch ( d-> m_model ) {
		case Model_iPAQ_H31xx:
		case Model_iPAQ_H38xx:
			d-> m_rotation = Rot90;
			break;
		case Model_iPAQ_H36xx:
		case Model_iPAQ_H37xx:
		case Model_iPAQ_H39xx:
		default:
			d-> m_rotation = Rot270;
			break;
		case Model_iPAQ_H5xxx:
			d-> m_rotation = Rot0;
		}

	f. setName ( "/etc/familiar-version" );
	if ( f. open ( IO_ReadOnly )) {
		d-> m_systemstr = "Familiar";
		d-> m_system = System_Familiar;

		QTextStream ts ( &f );
		d-> m_sysverstr = ts. readLine ( ). mid ( 10 );

		f. close ( );
	} else {
	    f. setName ( "/etc/oz_version" );

                    if ( f. open ( IO_ReadOnly )) {
	    	d-> m_systemstr = "OpenEmbedded/iPaq";
    		d-> m_system = System_Familiar;

	    	QTextStream ts ( &f );
		    ts.setDevice ( &f );
	    	d-> m_sysverstr = ts. readLine ( );
		    f. close ( );
        }
    }





	m_leds [0] = m_leds [1] = Led_Off;

	m_power_timer = 0;

}

void iPAQ::initButtons ( )
{
	if ( d-> m_buttons )
		return;

	if ( isQWS( ) )
		QWSServer::setKeyboardFilter ( this );

	d-> m_buttons = new QValueList <ODeviceButton>;

	for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) {
		i_button *ib = ipaq_buttons + i;
		ODeviceButton b;

		if (( ib-> model & d-> m_model ) == d-> m_model ) {
			b. setKeycode ( ib-> code );
			b. setUserText ( QObject::tr ( "Button", ib-> utext ));
			b. setPixmap ( Resource::loadPixmap ( ib-> pix ));
			b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction ));
			b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction ));

			d-> m_buttons-> append ( b );
		}
	}
	reloadButtonMapping ( );

	QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
	connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
}


//#include <linux/h3600_ts.h>  // including kernel headers is evil ...

typedef struct {
  unsigned char OffOnBlink;       /* 0=off 1=on 2=Blink */
  unsigned char TotalTime;        /* Units of 5 seconds */
  unsigned char OnTime;           /* units of 100m/s */
  unsigned char OffTime;          /* units of 100m/s */
} LED_IN;

typedef struct {
	unsigned char mode;
	unsigned char pwr;
	unsigned char brightness;
} FLITE_IN;

#define LED_ON    OD_IOW( 'f', 5, LED_IN )
#define FLITE_ON  OD_IOW( 'f', 7, FLITE_IN )


QValueList <OLed> iPAQ::ledList ( ) const
{
	QValueList <OLed> vl;
	vl << Led_Power;

	if ( d-> m_model == Model_iPAQ_H38xx )
		vl << Led_BlueTooth;
	return vl;
}

QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const
{
	QValueList <OLedState> vl;

	if ( l == Led_Power )
		vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast;
	else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx )
		vl << Led_Off; // << Led_On << ???

	return vl;
}

OLedState iPAQ::ledState ( OLed l ) const
{
	switch ( l ) {
		case Led_Power:
			return m_leds [0];
		case Led_BlueTooth:
			return m_leds [1];
		default:
			return Led_Off;
	}
}

bool iPAQ::setLedState ( OLed l, OLedState st )
{
	static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK );

	if ( l == Led_Power ) {
		if ( fd >= 0 ) {
			LED_IN leds;
			::memset ( &leds, 0, sizeof( leds ));
			leds. TotalTime  = 0;
			leds. OnTime     = 0;
			leds. OffTime    = 1;
			leds. OffOnBlink = 2;

			switch ( st ) {
				case Led_Off      : leds. OffOnBlink = 0; break;
				case Led_On       : leds. OffOnBlink = 1; break;
				case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break;
				case Led_BlinkFast: leds. OnTime =  5; leds. OffTime =  5; break;
			}

			if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) {
				m_leds [0] = st;
				return true;
			}
		}
	}
	return false;
}


bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat )
{
	int newkeycode = keycode;

	switch ( keycode ) {
		// H38xx/H39xx have no "Q" key anymore - this is now the Mail key
		case HardKey_Menu: {
			if (( d-> m_model == Model_iPAQ_H38xx ) ||
			    ( d-> m_model == Model_iPAQ_H39xx ) ||
			    ( d-> m_model == Model_iPAQ_H5xxx)) {
				newkeycode = HardKey_Mail;
			}
			break;
		}

		// Rotate cursor keys 180°
		case Key_Left :
		case Key_Right:
		case Key_Up   :
		case Key_Down : {
			if (( d-> m_model == Model_iPAQ_H31xx ) ||
			    ( d-> m_model == Model_iPAQ_H38xx )) {
				newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4;
			}
			break;
		}

		// map Power Button short/long press to F34/F35
		case Key_SysReq: {
			if ( isPress ) {
				if ( m_power_timer )
					killTimer ( m_power_timer );
				m_power_timer = startTimer ( 500 );
			}
			else if ( m_power_timer ) {
				killTimer ( m_power_timer );
				m_power_timer = 0;
				QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false );
				QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false );
			}
			newkeycode = Key_unknown;
			break;
		}
	}

	if ( newkeycode != keycode ) {
		if ( newkeycode != Key_unknown )
			QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat );
		return true;
	}
	else
		return false;
}

void iPAQ::timerEvent ( QTimerEvent * )
{
	killTimer ( m_power_timer );
	m_power_timer = 0;
	QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false );
	QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false );
}


void iPAQ::alarmSound ( )
{
#ifndef QT_NO_SOUND
	static Sound snd ( "alarm" );
	int fd;
	int vol;
	bool vol_reset = false;

	if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) {
		if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) {
			Config cfg ( "qpe" );
			cfg. setGroup ( "Volume" );

 			int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 );
			if ( volalarm < 0 )
				volalarm = 0;
			else if ( volalarm > 100 )
				volalarm = 100;
			volalarm |= ( volalarm << 8 );

			if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 )
				vol_reset = true;
		}
	}

	snd. play ( );
	while ( !snd. isFinished ( ))
		qApp-> processEvents ( );

	if ( fd >= 0 ) {
		if ( vol_reset )
			::ioctl ( fd, MIXER_WRITE( 0 ), &vol );
		::close ( fd );
	}
#endif
}


bool iPAQ::setSoftSuspend ( bool soft )
{
	bool res = false;
	int fd;

	if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) {
		if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 )
			res = true;
		else
			::perror ( "write to /proc/sys/ts/suspend_button_mode" );

		::close ( fd );
	}
	else
		::perror ( "/proc/sys/ts/suspend_button_mode" );

	return res;
}


bool iPAQ::setDisplayBrightness ( int bright )
{
	bool res = false;
	int fd;

	if ( bright > 255 )
		bright = 255;
	if ( bright < 0 )
		bright = 0;

	if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) {
		FLITE_IN bl;
		bl. mode = 1;
		bl. pwr = bright ? 1 : 0;
		bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255;
		res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 );
		::close ( fd );
	}
	return res;
}

int iPAQ::displayBrightnessResolution ( ) const
{
	switch ( model ( )) {
		case Model_iPAQ_H31xx:
		case Model_iPAQ_H36xx:
		case Model_iPAQ_H37xx:
			return 128;  	// really 256, but >128 could damage the LCD

		case Model_iPAQ_H38xx:
		case Model_iPAQ_H39xx:
			return 64;
		case Model_iPAQ_H5xxx:
			return 255;

		default:
			return 2;
	}
}


bool iPAQ::hasLightSensor ( ) const
{
	return true;
}

int iPAQ::readLightSensor ( )
{
	int fd;
	int val = -1;

	if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) {
		char buffer [8];

		if ( ::read ( fd, buffer, 5 ) == 5 ) {
			char *endptr;

			buffer [4] = 0;
			val = ::strtol ( buffer + 2, &endptr, 16 );

			if ( *endptr != 0 )
				val = -1;
		}
		::close ( fd );
	}

	return val;
}

int iPAQ::lightSensorResolution ( ) const
{
	return 256;
}

/**************************************************
 *
 * Zaurus
 *
 **************************************************/

// Check whether this device is the sharp zaurus..
bool Zaurus::isZaurus()
{

	// If the special devices by embedix exist, it is quite simple: it is a Zaurus !
	if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ) ){
		return true;
	}	

	// On non-embedix kenrnels, we have too look closer.
	bool is_zaurus = false;
	QFile f ( "/proc/cpuinfo" );
	if ( f. open ( IO_ReadOnly ) ) {
		QString model;
		QFile f ( "/proc/cpuinfo" );

  		QTextStream ts ( &f );
  		QString line;
  		while( line = ts. readLine ( ) ) {
  			if ( line. left ( 8 ) == "Hardware" )
  				break;
  		}
  		int loc = line. find ( ":" );
  		if ( loc != -1 )
  			model = line. mid ( loc + 2 ). simplifyWhiteSpace( );

		if ( model == "Sharp-Collie" 
		     || model == "Collie" 
		     || model == "SHARP Corgi"
		     || model == "SHARP Shepherd" 
		     || model == "SHARP Poodle" 
		   )
			is_zaurus = true;

  	}
	return is_zaurus;
}


void Zaurus::init ( )
{
	d-> m_vendorstr = "Sharp";
	d-> m_vendor = Vendor_Sharp;
	m_embedix = true;  // Not openzaurus means: It has an embedix kernel !

	// QFile f ( "/proc/filesystems" );
	QString model;

	// It isn't a good idea to check the system configuration to 
	// detect the distribution ! 
	// Otherwise it may happen that any other distribution is detected as openzaurus, just
	// because it uses a jffs2 filesystem..  
	// (eilers)
	// if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) {
	QFile f ("/etc/oz_version");
	if ( f.exists() ){
		d-> m_vendorstr = "OpenZaurus Team";
		d-> m_systemstr = "OpenZaurus";
		d-> m_system = System_OpenZaurus;

		if ( f. open ( IO_ReadOnly )) {
			QTextStream ts ( &f );
			d-> m_sysverstr = ts. readLine ( );//. mid ( 10 );
			f. close ( );
		}

		// Openzaurus sometimes uses the embedix kernel!
		// => Check whether this is an embedix kernel
		FILE *uname = popen("uname -r", "r");
		QString line;
		if ( f.open(IO_ReadOnly, uname) ) {
			QTextStream ts ( &f );
			line = ts. readLine ( );
			int loc = line. find ( "embedix" );
			if ( loc != -1 )
				m_embedix = true;
			else
				m_embedix = false;
			f. close ( );
		}
		pclose(uname);
	}
	else {
		d-> m_systemstr = "Zaurus";
		d-> m_system = System_Zaurus;
	}

	f. setName ( "/proc/cpuinfo" );
	if ( f. open ( IO_ReadOnly ) ) {
		QTextStream ts ( &f );
		QString line;
		while( line = ts. readLine ( ) ) {
			if ( line. left ( 8 ) == "Hardware" )
				break;
		}
		int loc = line. find ( ":" );
		if ( loc != -1 )
			model = line. mid ( loc + 2 ). simplifyWhiteSpace( );
	}

	if ( model == "SHARP Corgi" ) {
		d-> m_model = Model_Zaurus_SLC700;
		d-> m_modelstr = "Zaurus SL-C700";
	} else if ( model == "SHARP Shepherd" ) {
		d-> m_model = Model_Zaurus_SLC700; // Do we need a special type for the C750 ? (eilers)
		d-> m_modelstr = "Zaurus SL-C750";
	} else if ( model == "SHARP Poodle" ) {
		d-> m_model = Model_Zaurus_SLB600;
		d-> m_modelstr = "Zaurus SL-B500 or SL-5600";
	} else if ( model == "Sharp-Collie" || model == "Collie" ) {
		d-> m_model = Model_Zaurus_SL5500;
		d-> m_modelstr = "Zaurus SL-5500 or SL-5000d";
	} else {
		d-> m_model = Model_Zaurus_SL5500;
		d-> m_modelstr = "Zaurus (Model unknown)";
	}

	bool flipstate = false;
	switch ( d-> m_model ) {
		case Model_Zaurus_SLA300:
			d-> m_rotation = Rot0;
			break;
		case Model_Zaurus_SLC700:
			// Note: need to 1) set flipstate based on physical screen orientation
			// and 2) check to see if the user overrode the rotation direction
			// using appearance, and if so, remove that item from the Config to
			// ensure the rotate applet flips us back to the previous state.
			if ( flipstate ) {
				// 480x640
				d-> m_rotation = Rot0;
				d-> m_direction = CW;
			} else {
				// 640x480
				d-> m_rotation = Rot270;
				d-> m_direction = CCW;
			}
			break;
		case Model_Zaurus_SLB600:
		case Model_Zaurus_SL5500:
		case Model_Zaurus_SL5000:
		default:
			d-> m_rotation = Rot270;
			break;
	}
	m_leds [0] = Led_Off;
}

void Zaurus::initButtons ( )
{
	if ( d-> m_buttons )
		return;

	d-> m_buttons = new QValueList <ODeviceButton>;

	struct z_button * pz_buttons;
	int buttoncount;
	switch ( d-> m_model ) {
		case Model_Zaurus_SLC700:
			pz_buttons = z_buttons_c700;
			buttoncount = ARRAY_SIZE(z_buttons_c700);
			break;
		default:
			pz_buttons = z_buttons;
			buttoncount = ARRAY_SIZE(z_buttons);
			break;
	}

	for ( int i = 0; i < buttoncount; i++ ) {
		struct z_button *zb = pz_buttons + i;
		ODeviceButton b;

		b. setKeycode ( zb-> code );
		b. setUserText ( QObject::tr ( "Button", zb-> utext ));
		b. setPixmap ( Resource::loadPixmap ( zb-> pix ));
		b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), 
								  zb-> fpressedaction ));
		b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), 
							       zb-> fheldaction ));

		d-> m_buttons-> append ( b );
	}

	reloadButtonMapping ( );

	QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
	connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), 
		  this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
}

#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>

//#include <asm/sharp_char.h> // including kernel headers is evil ...

#define SHARP_DEV_IOCTL_COMMAND_START 0x5680

#define	SHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
#define SHARP_BUZZER_MAKESOUND   (SHARP_BUZZER_IOCTL_START)

#define SHARP_BUZ_TOUCHSOUND       1  /* touch panel sound */
#define SHARP_BUZ_KEYSOUND         2  /* key sound */
#define SHARP_BUZ_SCHEDULE_ALARM  11  /* schedule alarm */

/* --- for SHARP_BUZZER device --- */

//#define	SHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
//#define SHARP_BUZZER_MAKESOUND   (SHARP_BUZZER_IOCTL_START)

#define SHARP_BUZZER_SETVOLUME   (SHARP_BUZZER_IOCTL_START+1)
#define SHARP_BUZZER_GETVOLUME   (SHARP_BUZZER_IOCTL_START+2)
#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3)
#define SHARP_BUZZER_SETMUTE     (SHARP_BUZZER_IOCTL_START+4)
#define SHARP_BUZZER_STOPSOUND   (SHARP_BUZZER_IOCTL_START+5)

//#define SHARP_BUZ_TOUCHSOUND       1  /* touch panel sound */
//#define SHARP_BUZ_KEYSOUND         2  /* key sound */

//#define SHARP_PDA_ILLCLICKSOUND    3  /* illegal click */
//#define SHARP_PDA_WARNSOUND        4  /* warning occurred */
//#define SHARP_PDA_ERRORSOUND       5  /* error occurred */
//#define SHARP_PDA_CRITICALSOUND    6  /* critical error occurred */
//#define SHARP_PDA_SYSSTARTSOUND    7  /* system start */
//#define SHARP_PDA_SYSTEMENDSOUND   8  /* system shutdown */
//#define SHARP_PDA_APPSTART         9  /* application start */
//#define SHARP_PDA_APPQUIT         10  /* application ends */

//#define SHARP_BUZ_SCHEDULE_ALARM  11  /* schedule alarm */
//#define SHARP_BUZ_DAILY_ALARM     12  /* daily alarm */
//#define SHARP_BUZ_GOT_PHONE_CALL  13  /* phone call sound */
//#define SHARP_BUZ_GOT_MAIL        14  /* mail sound */
//

#define	SHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
#define SHARP_LED_SETSTATUS   (SHARP_LED_IOCTL_START+1)

typedef struct sharp_led_status {
  int which;   /* select which LED status is wanted. */
  int status;  /* set new led status if you call SHARP_LED_SETSTATUS */
} sharp_led_status;

#define SHARP_LED_MAIL_EXISTS  9       /* mail status (exists or not) */

#define LED_MAIL_NO_UNREAD_MAIL  0   /* for SHARP_LED_MAIL_EXISTS */
#define LED_MAIL_NEWMAIL_EXISTS  1   /* for SHARP_LED_MAIL_EXISTS */
#define LED_MAIL_UNREAD_MAIL_EX  2   /* for SHARP_LED_MAIL_EXISTS */

// #include <asm/sharp_apm.h> // including kernel headers is evil ...

#define APM_IOCGEVTSRC          OD_IOR( 'A', 203, int )
#define APM_IOCSEVTSRC          OD_IORW( 'A', 204, int )
#define APM_EVT_POWER_BUTTON    (1 << 0)

#define FL_IOCTL_STEP_CONTRAST    100


void Zaurus::buzzer ( int sound )
{
#ifndef QT_NO_SOUND
	QString soundname;

	// Not all devices have real sound. But I expect
	// that Openzaurus now has a sound driver which 
	// I will use instead the buzzer...		
	if ( ( d->m_model == Model_Zaurus_SLC700 )
	     || d->m_system == System_OpenZaurus ){

		switch ( sound ){
		case SHARP_BUZ_SCHEDULE_ALARM:
			soundname = "alarm";
			break;
		case SHARP_BUZ_TOUCHSOUND:
			soundname = "touchsound";
			break;
		case SHARP_BUZ_KEYSOUND:
			soundname = "keysound";
			break;
		default:
			soundname = "alarm";
			
		}
	}

	// If a soundname is defined, we expect that this device has
	// sound capabilities.. Otherwise we expect to have the buzzer
	// device..
	if ( !soundname.isEmpty() ){
		int fd;
		int vol;
		bool vol_reset = false;

		Sound snd ( soundname );
		
		if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) {
			if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) {
				Config cfg ( "qpe" );
				cfg. setGroup ( "Volume" );

				int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 );
				if ( volalarm < 0 )
					volalarm = 0;
				else if ( volalarm > 100 )
					volalarm = 100;
				volalarm |= ( volalarm << 8 );

				if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 )
					vol_reset = true;
			}
		}

		snd. play ( );
		while ( !snd. isFinished ( ))
			qApp-> processEvents ( );

		if ( fd >= 0 ) {
			if ( vol_reset )
				::ioctl ( fd, MIXER_WRITE( 0 ), &vol );
			::close ( fd );
		}
	} else {		
		int fd = ::open ( "/dev/sharp_buz", O_WRONLY|O_NONBLOCK );
		
		if ( fd >= 0 ) {
			::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound );
			::close ( fd );
		}

	} 
#endif
}


void Zaurus::alarmSound ( )
{
	buzzer ( SHARP_BUZ_SCHEDULE_ALARM );
}

void Zaurus::touchSound ( )
{
	buzzer ( SHARP_BUZ_TOUCHSOUND );
}

void Zaurus::keySound ( )
{
	buzzer ( SHARP_BUZ_KEYSOUND );
}


QValueList <OLed> Zaurus::ledList ( ) const
{
	QValueList <OLed> vl;
	vl << Led_Mail;
	return vl;
}

QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const
{
	QValueList <OLedState> vl;

	if ( l == Led_Mail )
		vl << Led_Off << Led_On << Led_BlinkSlow;
	return vl;
}

OLedState Zaurus::ledState ( OLed which ) const
{
	if ( which == Led_Mail )
		return m_leds [0];
	else
		return Led_Off;
}

bool Zaurus::setLedState ( OLed which, OLedState st )
{
	if (!m_embedix) // Currently not supported on non_embedix kernels
		return false;

	static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK );

	if ( which == Led_Mail ) {
		if ( fd >= 0 ) {
			struct sharp_led_status leds;
			::memset ( &leds, 0, sizeof( leds ));
			leds. which = SHARP_LED_MAIL_EXISTS;
			bool ok = true;

			switch ( st ) {
				case Led_Off      : leds. status = LED_MAIL_NO_UNREAD_MAIL; break;
				case Led_On       : leds. status = LED_MAIL_NEWMAIL_EXISTS; break;
				case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break;
				default            : ok = false;
			}

			if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) {
				m_leds [0] = st;
				return true;
			}
		}
	}
	return false;
}

bool Zaurus::setSoftSuspend ( bool soft )
{
	if (!m_embedix) {
		/* non-Embedix kernels dont have kernel autosuspend */
		return ODevice::setSoftSuspend( soft );
	}

	bool res = false;
	int fd;

	if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) ||
        (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) {

		int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources

		if ( sources >= 0 ) {
			if ( soft )
				sources &= ~APM_EVT_POWER_BUTTON;
			else
				sources |= APM_EVT_POWER_BUTTON;

			if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources
				res = true;
			else
				perror ( "APM_IOCGEVTSRC" );
		}
		else
			perror ( "APM_IOCGEVTSRC" );

		::close ( fd );
	}
	else
		perror ( "/dev/apm_bios or /dev/misc/apm_bios" );

    return res;
}


bool Zaurus::setDisplayBrightness ( int bright )
{
	bool res = false;
	int fd;

	if ( bright > 255 )
		bright = 255;
	if ( bright < 0 )
		bright = 0;

	if (m_embedix) {
		if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) {
			int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus
			if ( bright && !bl )
				bl = 1;
			res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 );
			::close ( fd );
		}
	} else {
#define FB_BACKLIGHT_SET_BRIGHTNESS     _IOW('F', 1, u_int)             /* set brightness */
		if (( fd = ::open ( "/dev/fb0", O_WRONLY )) >= 0 ) {
			res = ( ::ioctl ( fd , FB_BACKLIGHT_SET_BRIGHTNESS, bright ) == 0 );
			::close ( fd );
		}
	}
	return res;
}


int Zaurus::displayBrightnessResolution ( ) const
{
	if (m_embedix)
		return 5;
	else
		return 256;
}

/**************************************************
 *
 * SIMpad
 *
 **************************************************/

void SIMpad::init ( )
{
	d-> m_vendorstr = "SIEMENS";
	d-> m_vendor = Vendor_SIEMENS;

	QFile f ( "/proc/hal/model" );

    //TODO Implement model checking
    //FIXME For now we assume an SL4

    d-> m_modelstr = "SL4";
    d-> m_model = Model_SIMpad_SL4;

	switch ( d-> m_model ) {
		default:
			d-> m_rotation = Rot0;
			d-> m_direction = CCW;
			d-> m_holdtime = 1000; // 1000ms

			break;
	}

	f. setName ( "/etc/familiar-version" );
	if ( f. open ( IO_ReadOnly )) {
		d-> m_systemstr = "Familiar";
		d-> m_system = System_Familiar;

		QTextStream ts ( &f );
		d-> m_sysverstr = ts. readLine ( ). mid ( 10 );

		f. close ( );
	} else {
	    f. setName ( "/etc/oz_version" );

                    if ( f. open ( IO_ReadOnly )) {
	    	d-> m_systemstr = "OpenEmbedded/SIMpad";
    		d-> m_system = System_OpenZaurus;

	    	QTextStream ts ( &f );
		    ts.setDevice ( &f );
	    	d-> m_sysverstr = ts. readLine ( );
		    f. close ( );
        }
    }

	m_leds [0] = m_leds [1] = Led_Off;

	m_power_timer = 0;

}

void SIMpad::initButtons ( )
{
	if ( d-> m_buttons )
		return;

	if ( isQWS( ) )
		QWSServer::setKeyboardFilter ( this );

	d-> m_buttons = new QValueList <ODeviceButton>;

	for ( uint i = 0; i < ( sizeof( simpad_buttons ) / sizeof( s_button )); i++ ) {
		s_button *sb = simpad_buttons + i;
		ODeviceButton b;

		if (( sb-> model & d-> m_model ) == d-> m_model ) {
			b. setKeycode ( sb-> code );
			b. setUserText ( QObject::tr ( "Button", sb-> utext ));
			b. setPixmap ( Resource::loadPixmap ( sb-> pix ));
			b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( sb-> fpressedservice ), sb-> fpressedaction ));
			b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( sb-> fheldservice ), sb-> fheldaction ));

			d-> m_buttons-> append ( b );
		}
	}
	reloadButtonMapping ( );

	QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
	connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
}

// SIMpad boardcontrol register CS3
#define SIMPAD_BOARDCONTROL "/proc/cs3"
#define SIMPAD_VCC_5V_EN                   0x0001 // For 5V PCMCIA
#define SIMPAD_VCC_3V_EN                   0x0002 // FOR 3.3V PCMCIA
#define SIMPAD_EN1                         0x0004 // This is only for EPROM's
#define SIMPAD_EN0                         0x0008 // Both should be enable for 3.3V or 5V
#define SIMPAD_DISPLAY_ON                  0x0010
#define SIMPAD_PCMCIA_BUFF_DIS             0x0020
#define SIMPAD_MQ_RESET                    0x0040
#define SIMPAD_PCMCIA_RESET                0x0080
#define SIMPAD_DECT_POWER_ON               0x0100
#define SIMPAD_IRDA_SD                     0x0200 // Shutdown for powersave
#define SIMPAD_RS232_ON                    0x0400
#define SIMPAD_SD_MEDIAQ                   0x0800 // Shutdown for powersave
#define SIMPAD_LED2_ON                     0x1000
#define SIMPAD_IRDA_MODE                   0x2000 // Fast/Slow IrDA mode
#define SIMPAD_ENABLE_5V                   0x4000 // Enable 5V circuit
#define SIMPAD_RESET_SIMCARD               0x8000

//SIMpad touchscreen backlight strength control
#define SIMPAD_BACKLIGHT_CONTROL "/proc/driver/mq200/registers/PWM_CONTROL"
#define SIMPAD_BACKLIGHT_MASK    0x00a10044

QValueList <OLed> SIMpad::ledList ( ) const
{
	QValueList <OLed> vl;
	vl << Led_Power; //FIXME which LED is LED2 ? The green one or the amber one?
	//vl << Led_Mail; //TODO find out if LED1 is accessible anyway
	return vl;
}

QValueList <OLedState> SIMpad::ledStateList ( OLed l ) const
{
	QValueList <OLedState> vl;

	if ( l == Led_Power )  //FIXME which LED is LED2 ? The green one or the amber one?
		vl << Led_Off << Led_On;
	//else if ( l == Led_Mail ) //TODO find out if LED1 is accessible anyway
		//vl << Led_Off;
	return vl;
}

OLedState SIMpad::ledState ( OLed l ) const
{
	switch ( l ) {
		case Led_Power:
			return m_leds [0];
		//case Led_Mail:
		//	return m_leds [1];
		default:
			return Led_Off;
	}
}

bool SIMpad::setLedState ( OLed l, OLedState st )
{
	static int fd = ::open ( SIMPAD_BOARDCONTROL, O_RDWR | O_NONBLOCK );

	if ( l == Led_Power ) {
		if ( fd >= 0 ) {
			LED_IN leds;
			::memset ( &leds, 0, sizeof( leds ));
			leds. TotalTime  = 0;
			leds. OnTime     = 0;
			leds. OffTime    = 1;
			leds. OffOnBlink = 2;

			switch ( st ) {
				case Led_Off      : leds. OffOnBlink = 0; break;
				case Led_On       : leds. OffOnBlink = 1; break;
				case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break;
				case Led_BlinkFast: leds. OnTime =  5; leds. OffTime =  5; break;
			}

			{
            /*TODO Implement this like that:
               read from cs3
               && with SIMPAD_LED2_ON
               write to cs3 */
				m_leds [0] = st;
				return true;
			}
		}
	}
	return false;
}


bool SIMpad::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat )
{
	//TODO
	return false;
}

void SIMpad::timerEvent ( QTimerEvent * )
{
	killTimer ( m_power_timer );
	m_power_timer = 0;
	QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false );
	QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false );
}


void SIMpad::alarmSound ( )
{
#ifndef QT_NO_SOUND
	static Sound snd ( "alarm" );
	int fd;
	int vol;
	bool vol_reset = false;

	if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) {
		if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) {
			Config cfg ( "qpe" );
			cfg. setGroup ( "Volume" );

 			int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 );
			if ( volalarm < 0 )
				volalarm = 0;
			else if ( volalarm > 100 )
				volalarm = 100;
			volalarm |= ( volalarm << 8 );

			if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 )
				vol_reset = true;
		}
	}

	snd. play ( );
	while ( !snd. isFinished ( ))
		qApp-> processEvents ( );

	if ( fd >= 0 ) {
		if ( vol_reset )
			::ioctl ( fd, MIXER_WRITE( 0 ), &vol );
		::close ( fd );
	}
#endif
}


bool SIMpad::suspend ( ) // Must override because SIMpad does NOT have apm
{
	qDebug( "ODevice for SIMpad: suspend()" );
	if ( !isQWS( ) ) // only qwsserver is allowed to suspend
		return false;

	bool res = false;

	struct timeval tvs, tvn;
	::gettimeofday ( &tvs, 0 );

	::sync ( ); // flush fs caches
	res = ( ::system ( "cat /dev/fb/0 >/tmp/.buffer; echo > /proc/sys/pm/suspend; cat /tmp/.buffer >/dev/fb/0" ) == 0 ); //TODO make better :)

	return res;
}


bool SIMpad::setSoftSuspend ( bool soft )
{
	qDebug( "ODevice for SIMpad: UNHANDLED setSoftSuspend(%s)", soft? "on" : "off" );
	return false;
}


bool SIMpad::setDisplayStatus ( bool on )
{
	qDebug( "ODevice for SIMpad: setDisplayStatus(%s)", on? "on" : "off" );

	bool res = false;
	int fd;

	QString cmdline = QString().sprintf( "echo %s > /proc/cs3", on ? "0xd41a" : "0xd40a" ); //TODO make better :)

	res = ( ::system( (const char*) cmdline ) == 0 );

	return res;
}


bool SIMpad::setDisplayBrightness ( int bright )
{
	qDebug( "ODevice for SIMpad: setDisplayBrightness( %d )", bright );
	bool res = false;
	int fd;

	if ( bright > 255 )
		bright = 255;
	if ( bright < 1 )
		bright = 0;

	if (( fd = ::open ( SIMPAD_BACKLIGHT_CONTROL, O_WRONLY )) >= 0 ) {
		int value = 255 - bright;
		const int mask = SIMPAD_BACKLIGHT_MASK;
		value = value << 8;
		value += mask;
		char writeCommand[100];
		const int count = sprintf( writeCommand, "0x%x\n", value );
		res = ( ::write ( fd, writeCommand, count ) != -1 );
		::close ( fd );
	}
	return res;
}


int SIMpad::displayBrightnessResolution ( ) const
{
	return 255; // All SIMpad models share the same display
}

/**************************************************
 *
 * Ramses
 *
 **************************************************/

void Ramses::init()
{
	d->m_vendorstr = "M und N";
	d->m_vendor = Vendor_MundN;

	QFile f("/proc/sys/board/ramses");

	d->m_modelstr = "Ramses";
	d->m_model = Model_Ramses_MNCI;

	d->m_rotation = Rot0;
	d->m_holdtime = 1000;

	f.setName("/etc/oz_version");

	if (f.open(IO_ReadOnly)) {
	   	d->m_systemstr = "OpenEmbedded/Ramses";
	    	d->m_system = System_OpenZaurus;

		QTextStream ts(&f);
		ts.setDevice(&f);
		d->m_sysverstr = ts.readLine();
		f.close();
	}

	m_power_timer = 0;

#ifdef QT_QWS_ALLOW_OVERCLOCK
#warning *** Overclocking enabled - this may fry your hardware - you have been warned ***
#define OC(x...)        x
#else
#define OC(x...)
#endif


	// This table is true for a Intel XScale PXA 255

	d->m_cpu_frequencies->append("99000");      // mem= 99, run= 99, turbo= 99, PXbus= 50
OC(	d->m_cpu_frequencies->append("118000"); )   // mem=118, run=118, turbo=118, PXbus= 59 OC'd mem
	d->m_cpu_frequencies->append("199100");     // mem= 99, run=199, turbo=199, PXbus= 99
OC(	d->m_cpu_frequencies->append("236000"); )   // mem=118, run=236, turbo=236, PXbus=118 OC'd mem
	d->m_cpu_frequencies->append("298600");     // mem= 99, run=199, turbo=298, PXbus= 99
OC(	d->m_cpu_frequencies->append("354000"); )   // mem=118, run=236, turbo=354, PXbus=118 OC'd mem
	d->m_cpu_frequencies->append("398099");     // mem= 99, run=199, turbo=398, PXbus= 99
	d->m_cpu_frequencies->append("398100");     // mem= 99, run=398, turbo=398, PXbus=196
OC(	d->m_cpu_frequencies->append("471000"); )   // mem=118, run=471, turbo=471, PXbus=236 OC'd mem/core/bus

}

bool Ramses::filter(int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat)
{
        Q_UNUSED( keycode );
        Q_UNUSED( modifiers );
        Q_UNUSED( isPress );
        Q_UNUSED( autoRepeat );
	return false;
}

void Ramses::timerEvent(QTimerEvent *)
{
	killTimer(m_power_timer);
	m_power_timer = 0;
	QWSServer::sendKeyEvent(-1, HardKey_Backlight, 0, true, false);
	QWSServer::sendKeyEvent(-1, HardKey_Backlight, 0, false, false);
}


bool Ramses::setSoftSuspend(bool soft)
{
	qDebug("Ramses::setSoftSuspend(%d)", soft);
#if 0
	bool res = false;
	int fd;

	if (((fd = ::open("/dev/apm_bios", O_RDWR)) >= 0) ||
        ((fd = ::open("/dev/misc/apm_bios",O_RDWR)) >= 0)) {

		int sources = ::ioctl(fd, APM_IOCGEVTSRC, 0); // get current event sources

		if (sources >= 0) {
			if (soft)
				sources &= ~APM_EVT_POWER_BUTTON;
			else
				sources |= APM_EVT_POWER_BUTTON;

			if (::ioctl(fd, APM_IOCSEVTSRC, sources) >= 0) // set new event sources
				res = true;
			else
				perror("APM_IOCGEVTSRC");
		}
		else
			perror("APM_IOCGEVTSRC");

		::close(fd);
	}
	else
		perror("/dev/apm_bios or /dev/misc/apm_bios");

    return res;
#else
    return true;
#endif
}

bool Ramses::suspend ( )
{
	qDebug("Ramses::suspend");
	return false;
}

/**
 * This sets the display on or off
 */
bool Ramses::setDisplayStatus(bool on)
{
	qDebug("Ramses::setDisplayStatus(%d)", on);
#if 0
	bool res = false;
	int fd;

	if ((fd = ::open ("/dev/fb/0", O_RDWR)) >= 0) {
		res = (::ioctl(fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN) == 0);
		::close(fd);
	}
	return res;
#else
	return true;
#endif
}


/*
 * We get something between 0..255 into us
*/
bool Ramses::setDisplayBrightness(int bright)
{
	qDebug("Ramses::setDisplayBrightness(%d)", bright);
	bool res = false;
	int fd;

	// pwm1 brighness: 20 steps 500..0 (dunkel->hell)

	if (bright > 255 )
		bright = 255;
	if (bright < 0)
		bright = 0;

	// Turn backlight completely off
	if ((fd = ::open("/proc/sys/board/lcd_backlight", O_WRONLY)) >= 0) {
		char writeCommand[10];
		const int count = sprintf(writeCommand, "%d\n", bright ? 1 : 0);
		res = (::write(fd, writeCommand, count) != -1);
		::close(fd);
	}

	// scale backlight brightness to hardware
	bright = 500-(bright * 500 / 255);
	if ((fd = ::open("/proc/sys/board/pwm1", O_WRONLY)) >= 0) {
		qDebug(" %d -> pwm1", bright);
		char writeCommand[100];
		const int count = sprintf(writeCommand, "%d\n", bright);
		res = (::write(fd, writeCommand, count) != -1);
		::close(fd);
	}
	return res;
}


int Ramses::displayBrightnessResolution() const
{
	return 32;
}

bool Ramses::setDisplayContrast(int contr)
{
	qDebug("Ramses::setDisplayContrast(%d)", contr);
	bool res = false;
	int fd;

	// pwm0 contrast: 20 steps 79..90 (dunkel->hell)

	if (contr > 255 )
		contr = 255;
	if (contr < 0)
		contr = 0;
	contr = 90 - (contr * 20 / 255);

	if ((fd = ::open("/proc/sys/board/pwm0", O_WRONLY)) >= 0) {
		qDebug(" %d -> pwm0", contr);
		char writeCommand[100];
		const int count = sprintf(writeCommand, "%d\n", contr);
		res = (::write(fd, writeCommand, count) != -1);
		res = true;
		::close(fd);
	}
	return res;
}


int Ramses::displayContrastResolution() const
{
	return 20;
}


/**************************************************
 *                                                *
 * Jornada                                        *
 *                                                *
 **************************************************/


bool Jornada::isJornada ( )
{
  QFile f( "/proc/cpuinfo" );
  if ( f. open ( IO_ReadOnly ) ) {
    QTextStream ts ( &f );
    QString line;
    while( line = ts. readLine ( ) ) {
      if ( line. left ( 8 ) == "Hardware" ) {
	int loc = line. find ( ":" );
	if ( loc != -1 ) {
	  QString model =
	    line. mid ( loc + 2 ). simplifyWhiteSpace( );
	  return ( model == "HP Jornada 56x" );
	}
      }
    }
  }
  return false;
}

void Jornada::init ( )
{
	d-> m_vendorstr = "HP";
	d-> m_vendor = Vendor_HP;
	d-> m_modelstr = "Jornada 56x";
	d-> m_model = Model_Jornada_56x;
	d-> m_systemstr = "Familiar";
	d-> m_system = System_Familiar;
	d-> m_rotation = Rot0;

	QFile f ( "/etc/familiar-version" );
	f. setName ( "/etc/familiar-version" );
	if ( f. open ( IO_ReadOnly )) {

		QTextStream ts ( &f );
		d-> m_sysverstr = ts. readLine ( ). mid ( 10 );

		f. close ( );
	}
}

#if 0
void Jornada::initButtons ( )
{
	if ( d-> m_buttons )
		return;

	// Simulation uses iPAQ 3660 device buttons

	qDebug ( "init Buttons" );
	d-> m_buttons = new QValueList <ODeviceButton>;

	for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) {
		i_button *ib = ipaq_buttons + i;
		ODeviceButton b;

		if (( ib-> model & Model_iPAQ_H36xx ) == Model_iPAQ_H36xx ) {
			b. setKeycode ( ib-> code );
			b. setUserText ( QObject::tr ( "Button", ib-> utext ));
			b. setPixmap ( Resource::loadPixmap ( ib-> pix ));
			b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction ));
			b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction ));
			d-> m_buttons-> append ( b );
		}
	}
	reloadButtonMapping ( );

	QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
	connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
}
#endif
int Jornada::displayBrightnessResolution ( ) const
{
}

bool Jornada::setDisplayBrightness ( int bright )
{
	bool res = false;
	int fd;

	if ( bright > 255 )
		bright = 255;
	if ( bright < 0 )
		bright = 0;

	if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) {
		FLITE_IN bl;
		bl. mode = 1;
		bl. pwr = bright ? 1 : 0;
		bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255;
		res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 );
		::close ( fd );
	}
	return res;
}

bool Jornada::setSoftSuspend ( bool soft )
{
	bool res = false;
	int fd;

	if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) {
		if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 )
			res = true;
		else
			::perror ( "write to /proc/sys/ts/suspend_button_mode" );

		::close ( fd );
	}
	else
		::perror ( "/proc/sys/ts/suspend_button_mode" );

	return res;
}