summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-05-19 21:22:16 (UTC)
committer mickeyl <mickeyl>2003-05-19 21:22:16 (UTC)
commit71b023064e90282346055f0fea37d9a0d84bfa1b (patch) (unidiff)
treead82d6360ff7ef04aed5309e59e80729fcadd2a7
parente1435cdf8522e2a932533390b72f39edfe39a24c (diff)
downloadopie-71b023064e90282346055f0fea37d9a0d84bfa1b.zip
opie-71b023064e90282346055f0fea37d9a0d84bfa1b.tar.gz
opie-71b023064e90282346055f0fea37d9a0d84bfa1b.tar.bz2
SIMpad specific fix
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 921a94e..103104f 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -46,513 +46,513 @@
46// _IO and friends are only defined in kernel headers ... 46// _IO and friends are only defined in kernel headers ...
47 47
48#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) 48#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 ))
49 49
50#define OD_IO(type,number) OD_IOC(0,type,number,0) 50#define OD_IO(type,number) OD_IOC(0,type,number,0)
51#define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size)) 51#define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size))
52#define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size)) 52#define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size))
53#define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size)) 53#define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size))
54 54
55using namespace Opie; 55using namespace Opie;
56 56
57class ODeviceData { 57class ODeviceData {
58public: 58public:
59 QString m_vendorstr; 59 QString m_vendorstr;
60 OVendor m_vendor; 60 OVendor m_vendor;
61 61
62 QString m_modelstr; 62 QString m_modelstr;
63 OModel m_model; 63 OModel m_model;
64 64
65 QString m_systemstr; 65 QString m_systemstr;
66 OSystem m_system; 66 OSystem m_system;
67 67
68 QString m_sysverstr; 68 QString m_sysverstr;
69 69
70 Transformation m_rotation; 70 Transformation m_rotation;
71 ODirection m_direction; 71 ODirection m_direction;
72 72
73 QValueList <ODeviceButton> *m_buttons; 73 QValueList <ODeviceButton> *m_buttons;
74 uint m_holdtime; 74 uint m_holdtime;
75}; 75};
76 76
77 77
78class iPAQ : public ODevice, public QWSServer::KeyboardFilter { 78class iPAQ : public ODevice, public QWSServer::KeyboardFilter {
79protected: 79protected:
80 virtual void init ( ); 80 virtual void init ( );
81 virtual void initButtons ( ); 81 virtual void initButtons ( );
82 82
83public: 83public:
84 virtual bool setSoftSuspend ( bool soft ); 84 virtual bool setSoftSuspend ( bool soft );
85 85
86 virtual bool setDisplayBrightness ( int b ); 86 virtual bool setDisplayBrightness ( int b );
87 virtual int displayBrightnessResolution ( ) const; 87 virtual int displayBrightnessResolution ( ) const;
88 88
89 virtual void alarmSound ( ); 89 virtual void alarmSound ( );
90 90
91 virtual QValueList <OLed> ledList ( ) const; 91 virtual QValueList <OLed> ledList ( ) const;
92 virtual QValueList <OLedState> ledStateList ( OLed led ) const; 92 virtual QValueList <OLedState> ledStateList ( OLed led ) const;
93 virtual OLedState ledState ( OLed led ) const; 93 virtual OLedState ledState ( OLed led ) const;
94 virtual bool setLedState ( OLed led, OLedState st ); 94 virtual bool setLedState ( OLed led, OLedState st );
95 95
96 virtual bool hasLightSensor ( ) const; 96 virtual bool hasLightSensor ( ) const;
97 virtual int readLightSensor ( ); 97 virtual int readLightSensor ( );
98 virtual int lightSensorResolution ( ) const; 98 virtual int lightSensorResolution ( ) const;
99 99
100protected: 100protected:
101 virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat ); 101 virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat );
102 virtual void timerEvent ( QTimerEvent *te ); 102 virtual void timerEvent ( QTimerEvent *te );
103 103
104 int m_power_timer; 104 int m_power_timer;
105 105
106 OLedState m_leds [2]; 106 OLedState m_leds [2];
107}; 107};
108 108
109class Zaurus : public ODevice { 109class Zaurus : public ODevice {
110protected: 110protected:
111 virtual void init ( ); 111 virtual void init ( );
112 virtual void initButtons ( ); 112 virtual void initButtons ( );
113 113
114public: 114public:
115 virtual bool setSoftSuspend ( bool soft ); 115 virtual bool setSoftSuspend ( bool soft );
116 116
117 virtual bool setDisplayBrightness ( int b ); 117 virtual bool setDisplayBrightness ( int b );
118 virtual int displayBrightnessResolution ( ) const; 118 virtual int displayBrightnessResolution ( ) const;
119 119
120 virtual void alarmSound ( ); 120 virtual void alarmSound ( );
121 virtual void keySound ( ); 121 virtual void keySound ( );
122 virtual void touchSound ( ); 122 virtual void touchSound ( );
123 123
124 virtual QValueList <OLed> ledList ( ) const; 124 virtual QValueList <OLed> ledList ( ) const;
125 virtual QValueList <OLedState> ledStateList ( OLed led ) const; 125 virtual QValueList <OLedState> ledStateList ( OLed led ) const;
126 virtual OLedState ledState ( OLed led ) const; 126 virtual OLedState ledState ( OLed led ) const;
127 virtual bool setLedState ( OLed led, OLedState st ); 127 virtual bool setLedState ( OLed led, OLedState st );
128 128
129protected: 129protected:
130 virtual void buzzer ( int snd ); 130 virtual void buzzer ( int snd );
131 131
132 OLedState m_leds [1]; 132 OLedState m_leds [1];
133}; 133};
134 134
135class SIMpad : public ODevice, public QWSServer::KeyboardFilter { 135class SIMpad : public ODevice, public QWSServer::KeyboardFilter {
136protected: 136protected:
137 virtual void init ( ); 137 virtual void init ( );
138 virtual void initButtons ( ); 138 virtual void initButtons ( );
139 139
140public: 140public:
141 virtual bool setSoftSuspend ( bool soft ); 141 virtual bool setSoftSuspend ( bool soft );
142 142
143 virtual bool setDisplayBrightness ( int b ); 143 virtual bool setDisplayBrightness ( int b );
144 virtual int displayBrightnessResolution ( ) const; 144 virtual int displayBrightnessResolution ( ) const;
145 145
146 virtual void alarmSound ( ); 146 virtual void alarmSound ( );
147 147
148 virtual QValueList <OLed> ledList ( ) const; 148 virtual QValueList <OLed> ledList ( ) const;
149 virtual QValueList <OLedState> ledStateList ( OLed led ) const; 149 virtual QValueList <OLedState> ledStateList ( OLed led ) const;
150 virtual OLedState ledState ( OLed led ) const; 150 virtual OLedState ledState ( OLed led ) const;
151 virtual bool setLedState ( OLed led, OLedState st ); 151 virtual bool setLedState ( OLed led, OLedState st );
152 152
153protected: 153protected:
154 virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat ); 154 virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat );
155 virtual void timerEvent ( QTimerEvent *te ); 155 virtual void timerEvent ( QTimerEvent *te );
156 156
157 int m_power_timer; 157 int m_power_timer;
158 158
159 OLedState m_leds [1]; //FIXME check if really only one 159 OLedState m_leds [1]; //FIXME check if really only one
160}; 160};
161 161
162struct i_button { 162struct i_button {
163 uint model; 163 uint model;
164 Qt::Key code; 164 Qt::Key code;
165 char *utext; 165 char *utext;
166 char *pix; 166 char *pix;
167 char *fpressedservice; 167 char *fpressedservice;
168 char *fpressedaction; 168 char *fpressedaction;
169 char *fheldservice; 169 char *fheldservice;
170 char *fheldaction; 170 char *fheldaction;
171} ipaq_buttons [] = { 171} ipaq_buttons [] = {
172 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx, 172 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx,
173 Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), 173 Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
174 "devicebuttons/ipaq_calendar", 174 "devicebuttons/ipaq_calendar",
175 "datebook", "nextView()", 175 "datebook", "nextView()",
176 "today", "raise()" }, 176 "today", "raise()" },
177 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx, 177 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx,
178 Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), 178 Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
179 "devicebuttons/ipaq_contact", 179 "devicebuttons/ipaq_contact",
180 "addressbook", "raise()", 180 "addressbook", "raise()",
181 "addressbook", "beamBusinessCard()" }, 181 "addressbook", "beamBusinessCard()" },
182 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx, 182 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx,
183 Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), 183 Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
184 "devicebuttons/ipaq_menu", 184 "devicebuttons/ipaq_menu",
185 "QPE/TaskBar", "toggleMenu()", 185 "QPE/TaskBar", "toggleMenu()",
186 "QPE/TaskBar", "toggleStartMenu()" }, 186 "QPE/TaskBar", "toggleStartMenu()" },
187 { Model_iPAQ_H38xx | Model_iPAQ_H39xx, 187 { Model_iPAQ_H38xx | Model_iPAQ_H39xx,
188 Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), 188 Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"),
189 "devicebuttons/ipaq_mail", 189 "devicebuttons/ipaq_mail",
190 "mail", "raise()", 190 "mail", "raise()",
191 "mail", "newMail()" }, 191 "mail", "newMail()" },
192 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx, 192 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx,
193 Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), 193 Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
194 "devicebuttons/ipaq_home", 194 "devicebuttons/ipaq_home",
195 "QPE/Launcher", "home()", 195 "QPE/Launcher", "home()",
196 "buttonsettings", "raise()" }, 196 "buttonsettings", "raise()" },
197 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx, 197 { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx,
198 Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"), 198 Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"),
199 "devicebuttons/ipaq_record", 199 "devicebuttons/ipaq_record",
200 "QPE/VMemo", "toggleRecord()", 200 "QPE/VMemo", "toggleRecord()",
201 "sound", "raise()" }, 201 "sound", "raise()" },
202}; 202};
203 203
204struct z_button { 204struct z_button {
205 Qt::Key code; 205 Qt::Key code;
206 char *utext; 206 char *utext;
207 char *pix; 207 char *pix;
208 char *fpressedservice; 208 char *fpressedservice;
209 char *fpressedaction; 209 char *fpressedaction;
210 char *fheldservice; 210 char *fheldservice;
211 char *fheldaction; 211 char *fheldaction;
212} z_buttons [] = { 212} z_buttons [] = {
213 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), 213 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
214 "devicebuttons/z_calendar", 214 "devicebuttons/z_calendar",
215 "datebook", "nextView()", 215 "datebook", "nextView()",
216 "today", "raise()" }, 216 "today", "raise()" },
217 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), 217 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
218 "devicebuttons/z_contact", 218 "devicebuttons/z_contact",
219 "addressbook", "raise()", 219 "addressbook", "raise()",
220 "addressbook", "beamBusinessCard()" }, 220 "addressbook", "beamBusinessCard()" },
221 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), 221 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
222 "devicebuttons/z_home", 222 "devicebuttons/z_home",
223 "QPE/Launcher", "home()", 223 "QPE/Launcher", "home()",
224 "buttonsettings", "raise()" }, 224 "buttonsettings", "raise()" },
225 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), 225 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
226 "devicebuttons/z_menu", 226 "devicebuttons/z_menu",
227 "QPE/TaskBar", "toggleMenu()", 227 "QPE/TaskBar", "toggleMenu()",
228 "QPE/TaskBar", "toggleStartMenu()" }, 228 "QPE/TaskBar", "toggleStartMenu()" },
229 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), 229 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"),
230 "devicebuttons/z_mail", 230 "devicebuttons/z_mail",
231 "mail", "raise()", 231 "mail", "raise()",
232 "mail", "newMail()" }, 232 "mail", "newMail()" },
233}; 233};
234 234
235struct z_button z_buttons_c700 [] = { 235struct z_button z_buttons_c700 [] = {
236 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), 236 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
237 "devicebuttons/z_calendar", 237 "devicebuttons/z_calendar",
238 "datebook", "nextView()", 238 "datebook", "nextView()",
239 "today", "raise()" }, 239 "today", "raise()" },
240 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), 240 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
241 "devicebuttons/z_contact", 241 "devicebuttons/z_contact",
242 "addressbook", "raise()", 242 "addressbook", "raise()",
243 "addressbook", "beamBusinessCard()" }, 243 "addressbook", "beamBusinessCard()" },
244 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), 244 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
245 "devicebuttons/z_home", 245 "devicebuttons/z_home",
246 "QPE/Launcher", "home()", 246 "QPE/Launcher", "home()",
247 "buttonsettings", "raise()" }, 247 "buttonsettings", "raise()" },
248 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), 248 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
249 "devicebuttons/z_menu", 249 "devicebuttons/z_menu",
250 "QPE/TaskBar", "toggleMenu()", 250 "QPE/TaskBar", "toggleMenu()",
251 "QPE/TaskBar", "toggleStartMenu()" }, 251 "QPE/TaskBar", "toggleStartMenu()" },
252 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Display Rotate"), 252 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Display Rotate"),
253 "", 253 "",
254 "QPE/Rotation", "flip()", 254 "QPE/Rotation", "flip()",
255 "QPE/Rotation", "flip()" }, 255 "QPE/Rotation", "flip()" },
256}; 256};
257 257
258struct s_button { 258struct s_button {
259 uint model; 259 uint model;
260 Qt::Key code; 260 Qt::Key code;
261 char *utext; 261 char *utext;
262 char *pix; 262 char *pix;
263 char *fpressedservice; 263 char *fpressedservice;
264 char *fpressedaction; 264 char *fpressedaction;
265 char *fheldservice; 265 char *fheldservice;
266 char *fheldaction; 266 char *fheldaction;
267} simpad_buttons [] = { 267} simpad_buttons [] = {
268 { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus, 268 { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
269 Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), 269 Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
270 "devicebuttons/simpad_menu", 270 "devicebuttons/simpad_menu",
271 "QPE/TaskBar", "toggleMenu()", 271 "QPE/TaskBar", "toggleMenu()",
272 "QPE/TaskBar", "toggleStartMenu()" }, 272 "QPE/TaskBar", "toggleStartMenu()" },
273 { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus, 273 { Model_SIMpad_CL4 | Model_SIMpad_SL4 | Model_SIMpad_SLC | Model_SIMpad_TSinus,
274 Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), 274 Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
275 "devicebuttons/ipaq_home", 275 "devicebuttons/ipaq_home",
276 "QPE/Launcher", "home()", 276 "QPE/Launcher", "home()",
277 "buttonsettings", "raise()" }, 277 "buttonsettings", "raise()" },
278}; 278};
279 279
280static QCString makeChannel ( const char *str ) 280static QCString makeChannel ( const char *str )
281{ 281{
282 if ( str && !::strchr ( str, '/' )) 282 if ( str && !::strchr ( str, '/' ))
283 return QCString ( "QPE/Application/" ) + str; 283 return QCString ( "QPE/Application/" ) + str;
284 else 284 else
285 return str; 285 return str;
286} 286}
287 287
288static inline bool isQWS() 288static inline bool isQWS()
289{ 289{
290 return qApp ? ( qApp-> type ( ) == QApplication::GuiServer ) : false; 290 return qApp ? ( qApp-> type ( ) == QApplication::GuiServer ) : false;
291} 291}
292 292
293ODevice *ODevice::inst ( ) 293ODevice *ODevice::inst ( )
294{ 294{
295 static ODevice *dev = 0; 295 static ODevice *dev = 0;
296 296
297 if ( !dev ) { 297 if ( !dev ) {
298 if ( QFile::exists ( "/proc/hal/model" )) 298 if ( QFile::exists ( "/proc/hal/model" ))
299 dev = new iPAQ ( ); 299 dev = new iPAQ ( );
300 else if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" )) 300 else if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ))
301 dev = new Zaurus ( ); 301 dev = new Zaurus ( );
302 else if ( QFile::exists ( "/proc/ucb1x00" ) && QFile::exists ( "/proc/CS3" )) 302 else if ( QFile::exists ( "/proc/ucb1x00" ) && QFile::exists ( "/proc/cs3" ))
303 dev = new SIMpad ( ); 303 dev = new SIMpad ( );
304 else 304 else
305 dev = new ODevice ( ); 305 dev = new ODevice ( );
306 306
307 dev-> init ( ); 307 dev-> init ( );
308 } 308 }
309 return dev; 309 return dev;
310} 310}
311 311
312 312
313/************************************************** 313/**************************************************
314 * 314 *
315 * common 315 * common
316 * 316 *
317 **************************************************/ 317 **************************************************/
318 318
319 319
320ODevice::ODevice ( ) 320ODevice::ODevice ( )
321{ 321{
322 d = new ODeviceData; 322 d = new ODeviceData;
323 323
324 d-> m_modelstr = "Unknown"; 324 d-> m_modelstr = "Unknown";
325 d-> m_model = Model_Unknown; 325 d-> m_model = Model_Unknown;
326 d-> m_vendorstr = "Unknown"; 326 d-> m_vendorstr = "Unknown";
327 d-> m_vendor = Vendor_Unknown; 327 d-> m_vendor = Vendor_Unknown;
328 d-> m_systemstr = "Unknown"; 328 d-> m_systemstr = "Unknown";
329 d-> m_system = System_Unknown; 329 d-> m_system = System_Unknown;
330 d-> m_sysverstr = "0.0"; 330 d-> m_sysverstr = "0.0";
331 d-> m_rotation = Rot0; 331 d-> m_rotation = Rot0;
332 d-> m_direction = CW; 332 d-> m_direction = CW;
333 333
334 d-> m_holdtime = 1000; // 1000ms 334 d-> m_holdtime = 1000; // 1000ms
335 d-> m_buttons = 0; 335 d-> m_buttons = 0;
336} 336}
337 337
338void ODevice::systemMessage ( const QCString &msg, const QByteArray & ) 338void ODevice::systemMessage ( const QCString &msg, const QByteArray & )
339{ 339{
340 if ( msg == "deviceButtonMappingChanged()" ) { 340 if ( msg == "deviceButtonMappingChanged()" ) {
341 reloadButtonMapping ( ); 341 reloadButtonMapping ( );
342 } 342 }
343} 343}
344 344
345void ODevice::init ( ) 345void ODevice::init ( )
346{ 346{
347} 347}
348 348
349/** 349/**
350 * This method initialises the button mapping 350 * This method initialises the button mapping
351 */ 351 */
352void ODevice::initButtons ( ) 352void ODevice::initButtons ( )
353{ 353{
354 if ( d-> m_buttons ) 354 if ( d-> m_buttons )
355 return; 355 return;
356 356
357 // Simulation uses iPAQ 3660 device buttons 357 // Simulation uses iPAQ 3660 device buttons
358 358
359 qDebug ( "init Buttons" ); 359 qDebug ( "init Buttons" );
360 d-> m_buttons = new QValueList <ODeviceButton>; 360 d-> m_buttons = new QValueList <ODeviceButton>;
361 361
362 for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { 362 for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) {
363 i_button *ib = ipaq_buttons + i; 363 i_button *ib = ipaq_buttons + i;
364 ODeviceButton b; 364 ODeviceButton b;
365 365
366 if (( ib-> model & Model_iPAQ_H36xx ) == Model_iPAQ_H36xx ) { 366 if (( ib-> model & Model_iPAQ_H36xx ) == Model_iPAQ_H36xx ) {
367 b. setKeycode ( ib-> code ); 367 b. setKeycode ( ib-> code );
368 b. setUserText ( QObject::tr ( "Button", ib-> utext )); 368 b. setUserText ( QObject::tr ( "Button", ib-> utext ));
369 b. setPixmap ( Resource::loadPixmap ( ib-> pix )); 369 b. setPixmap ( Resource::loadPixmap ( ib-> pix ));
370 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction )); 370 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction ));
371 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction )); 371 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction ));
372 d-> m_buttons-> append ( b ); 372 d-> m_buttons-> append ( b );
373 } 373 }
374 } 374 }
375 reloadButtonMapping ( ); 375 reloadButtonMapping ( );
376 376
377 QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); 377 QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
378 connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); 378 connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
379} 379}
380 380
381ODevice::~ODevice ( ) 381ODevice::~ODevice ( )
382{ 382{
383 delete d; 383 delete d;
384} 384}
385 385
386bool ODevice::setSoftSuspend ( bool /*soft*/ ) 386bool ODevice::setSoftSuspend ( bool /*soft*/ )
387{ 387{
388 return false; 388 return false;
389} 389}
390 390
391//#include <linux/apm_bios.h> 391//#include <linux/apm_bios.h>
392 392
393#define APM_IOC_SUSPEND OD_IO( 'A', 2 ) 393#define APM_IOC_SUSPEND OD_IO( 'A', 2 )
394 394
395/** 395/**
396 * This method will try to suspend the device 396 * This method will try to suspend the device
397 * It only works if the user is the QWS Server and the apm application 397 * It only works if the user is the QWS Server and the apm application
398 * is installed. 398 * is installed.
399 * It tries to suspend and then waits some time cause some distributions 399 * It tries to suspend and then waits some time cause some distributions
400 * do have asynchronus apm implementations. 400 * do have asynchronus apm implementations.
401 * This method will either fail and return false or it'll suspend the 401 * This method will either fail and return false or it'll suspend the
402 * device and return once the device got woken up 402 * device and return once the device got woken up
403 * 403 *
404 * @return if the device got suspended 404 * @return if the device got suspended
405 */ 405 */
406bool ODevice::suspend ( ) 406bool ODevice::suspend ( )
407{ 407{
408 if ( !isQWS( ) ) // only qwsserver is allowed to suspend 408 if ( !isQWS( ) ) // only qwsserver is allowed to suspend
409 return false; 409 return false;
410 410
411 if ( d-> m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices 411 if ( d-> m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices
412 return false; 412 return false;
413 413
414 bool res = false; 414 bool res = false;
415 415
416 struct timeval tvs, tvn; 416 struct timeval tvs, tvn;
417 ::gettimeofday ( &tvs, 0 ); 417 ::gettimeofday ( &tvs, 0 );
418 418
419 ::sync ( ); // flush fs caches 419 ::sync ( ); // flush fs caches
420 res = ( ::system ( "apm --suspend" ) == 0 ); 420 res = ( ::system ( "apm --suspend" ) == 0 );
421 421
422 // This is needed because the iPAQ apm implementation is asynchronous and we 422 // This is needed because the iPAQ apm implementation is asynchronous and we
423 // can not be sure when exactly the device is really suspended 423 // can not be sure when exactly the device is really suspended
424 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists. 424 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists.
425 425
426 if ( res ) { 426 if ( res ) {
427 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed 427 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed
428 ::usleep ( 200 * 1000 ); 428 ::usleep ( 200 * 1000 );
429 ::gettimeofday ( &tvn, 0 ); 429 ::gettimeofday ( &tvn, 0 );
430 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 ); 430 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 );
431 } 431 }
432 432
433 return res; 433 return res;
434} 434}
435 435
436//#include <linux/fb.h> better not rely on kernel headers in userspace ... 436//#include <linux/fb.h> better not rely on kernel headers in userspace ...
437 437
438#define FBIOBLANK OD_IO( 'F', 0x11 ) // 0x4611 438#define FBIOBLANK OD_IO( 'F', 0x11 ) // 0x4611
439 439
440/* VESA Blanking Levels */ 440/* VESA Blanking Levels */
441#define VESA_NO_BLANKING 0 441#define VESA_NO_BLANKING 0
442#define VESA_VSYNC_SUSPEND 1 442#define VESA_VSYNC_SUSPEND 1
443#define VESA_HSYNC_SUSPEND 2 443#define VESA_HSYNC_SUSPEND 2
444#define VESA_POWERDOWN 3 444#define VESA_POWERDOWN 3
445 445
446/** 446/**
447 * This sets the display on or off 447 * This sets the display on or off
448 */ 448 */
449bool ODevice::setDisplayStatus ( bool on ) 449bool ODevice::setDisplayStatus ( bool on )
450{ 450{
451 if ( d-> m_model == Model_Unknown ) 451 if ( d-> m_model == Model_Unknown )
452 return false; 452 return false;
453 453
454 bool res = false; 454 bool res = false;
455 int fd; 455 int fd;
456 456
457 if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) { 457 if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) {
458 res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 ); 458 res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 );
459 ::close ( fd ); 459 ::close ( fd );
460 } 460 }
461 return res; 461 return res;
462} 462}
463 463
464/** 464/**
465 * This sets the display brightness 465 * This sets the display brightness
466 * @return success or failure 466 * @return success or failure
467 */ 467 */
468bool ODevice::setDisplayBrightness ( int p) 468bool ODevice::setDisplayBrightness ( int p)
469{ 469{
470 Q_UNUSED( p ) 470 Q_UNUSED( p )
471 return false; 471 return false;
472} 472}
473 473
474int ODevice::displayBrightnessResolution ( ) const 474int ODevice::displayBrightnessResolution ( ) const
475{ 475{
476 return 16; 476 return 16;
477} 477}
478 478
479/** 479/**
480 * This returns the vendor as string 480 * This returns the vendor as string
481 * @return Vendor as QString 481 * @return Vendor as QString
482 */ 482 */
483QString ODevice::vendorString ( ) const 483QString ODevice::vendorString ( ) const
484{ 484{
485 return d-> m_vendorstr; 485 return d-> m_vendorstr;
486} 486}
487 487
488/** 488/**
489 * This returns the vendor as one of the values of OVendor 489 * This returns the vendor as one of the values of OVendor
490 * @return OVendor 490 * @return OVendor
491 */ 491 */
492OVendor ODevice::vendor ( ) const 492OVendor ODevice::vendor ( ) const
493{ 493{
494 return d-> m_vendor; 494 return d-> m_vendor;
495} 495}
496 496
497/** 497/**
498 * This returns the model as a string 498 * This returns the model as a string
499 * @return A string representing the model 499 * @return A string representing the model
500 */ 500 */
501QString ODevice::modelString ( ) const 501QString ODevice::modelString ( ) const
502{ 502{
503 return d-> m_modelstr; 503 return d-> m_modelstr;
504} 504}
505 505
506/** 506/**
507 * This does return the OModel used 507 * This does return the OModel used
508 */ 508 */
509OModel ODevice::model ( ) const 509OModel ODevice::model ( ) const
510{ 510{
511 return d-> m_model; 511 return d-> m_model;
512} 512}
513 513
514/** 514/**
515 * This does return the systen name 515 * This does return the systen name
516 */ 516 */
517QString ODevice::systemString ( ) const 517QString ODevice::systemString ( ) const
518{ 518{
519 return d-> m_systemstr; 519 return d-> m_systemstr;
520} 520}
521 521
522/** 522/**
523 * Return System as OSystem value 523 * Return System as OSystem value
524 */ 524 */
525OSystem ODevice::system ( ) const 525OSystem ODevice::system ( ) const
526{ 526{
527 return d-> m_system; 527 return d-> m_system;
528} 528}
529 529
530/** 530/**
531 * @return the version string of the base system 531 * @return the version string of the base system
532 */ 532 */
533QString ODevice::systemVersionString ( ) const 533QString ODevice::systemVersionString ( ) const
534{ 534{
535 return d-> m_sysverstr; 535 return d-> m_sysverstr;
536} 536}
537 537
538/** 538/**
539 * @return the current Transformation 539 * @return the current Transformation
540 */ 540 */
541Transformation ODevice::rotation ( ) const 541Transformation ODevice::rotation ( ) const
542{ 542{
543 return d-> m_rotation; 543 return d-> m_rotation;
544} 544}
545 545
546/** 546/**
547 * @return the current rotation direction 547 * @return the current rotation direction
548 */ 548 */
549ODirection ODevice::direction ( ) const 549ODirection ODevice::direction ( ) const
550{ 550{
551 return d-> m_direction; 551 return d-> m_direction;
552} 552}
553 553
554/** 554/**
555 * This plays an alarmSound 555 * This plays an alarmSound
556 */ 556 */
557void ODevice::alarmSound ( ) 557void ODevice::alarmSound ( )
558{ 558{
@@ -1322,441 +1322,441 @@ void Zaurus::initButtons ( )
1322//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ 1322//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */
1323//#define SHARP_PDA_APPSTART 9 /* application start */ 1323//#define SHARP_PDA_APPSTART 9 /* application start */
1324//#define SHARP_PDA_APPQUIT 10 /* application ends */ 1324//#define SHARP_PDA_APPQUIT 10 /* application ends */
1325 1325
1326//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 1326//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
1327//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ 1327//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */
1328//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ 1328//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */
1329//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ 1329//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */
1330// 1330//
1331 1331
1332 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 1332 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
1333#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) 1333#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1)
1334 1334
1335typedef struct sharp_led_status { 1335typedef struct sharp_led_status {
1336 int which; /* select which LED status is wanted. */ 1336 int which; /* select which LED status is wanted. */
1337 int status; /* set new led status if you call SHARP_LED_SETSTATUS */ 1337 int status; /* set new led status if you call SHARP_LED_SETSTATUS */
1338} sharp_led_status; 1338} sharp_led_status;
1339 1339
1340#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ 1340#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */
1341 1341
1342#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ 1342#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */
1343#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ 1343#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */
1344#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ 1344#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */
1345 1345
1346// #include <asm/sharp_apm.h> // including kernel headers is evil ... 1346// #include <asm/sharp_apm.h> // including kernel headers is evil ...
1347 1347
1348#define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) 1348#define APM_IOCGEVTSRC OD_IOR( 'A', 203, int )
1349#define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) 1349#define APM_IOCSEVTSRC OD_IORW( 'A', 204, int )
1350#define APM_EVT_POWER_BUTTON (1 << 0) 1350#define APM_EVT_POWER_BUTTON (1 << 0)
1351 1351
1352#define FL_IOCTL_STEP_CONTRAST 100 1352#define FL_IOCTL_STEP_CONTRAST 100
1353 1353
1354 1354
1355void Zaurus::buzzer ( int sound ) 1355void Zaurus::buzzer ( int sound )
1356{ 1356{
1357 int fd = ::open ( "/dev/sharp_buz", O_WRONLY|O_NONBLOCK ); 1357 int fd = ::open ( "/dev/sharp_buz", O_WRONLY|O_NONBLOCK );
1358 1358
1359 if ( fd >= 0 ) { 1359 if ( fd >= 0 ) {
1360 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); 1360 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound );
1361 ::close ( fd ); 1361 ::close ( fd );
1362 } 1362 }
1363} 1363}
1364 1364
1365 1365
1366void Zaurus::alarmSound ( ) 1366void Zaurus::alarmSound ( )
1367{ 1367{
1368 buzzer ( SHARP_BUZ_SCHEDULE_ALARM ); 1368 buzzer ( SHARP_BUZ_SCHEDULE_ALARM );
1369} 1369}
1370 1370
1371void Zaurus::touchSound ( ) 1371void Zaurus::touchSound ( )
1372{ 1372{
1373 buzzer ( SHARP_BUZ_TOUCHSOUND ); 1373 buzzer ( SHARP_BUZ_TOUCHSOUND );
1374} 1374}
1375 1375
1376void Zaurus::keySound ( ) 1376void Zaurus::keySound ( )
1377{ 1377{
1378 buzzer ( SHARP_BUZ_KEYSOUND ); 1378 buzzer ( SHARP_BUZ_KEYSOUND );
1379} 1379}
1380 1380
1381 1381
1382QValueList <OLed> Zaurus::ledList ( ) const 1382QValueList <OLed> Zaurus::ledList ( ) const
1383{ 1383{
1384 QValueList <OLed> vl; 1384 QValueList <OLed> vl;
1385 vl << Led_Mail; 1385 vl << Led_Mail;
1386 return vl; 1386 return vl;
1387} 1387}
1388 1388
1389QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const 1389QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const
1390{ 1390{
1391 QValueList <OLedState> vl; 1391 QValueList <OLedState> vl;
1392 1392
1393 if ( l == Led_Mail ) 1393 if ( l == Led_Mail )
1394 vl << Led_Off << Led_On << Led_BlinkSlow; 1394 vl << Led_Off << Led_On << Led_BlinkSlow;
1395 return vl; 1395 return vl;
1396} 1396}
1397 1397
1398OLedState Zaurus::ledState ( OLed which ) const 1398OLedState Zaurus::ledState ( OLed which ) const
1399{ 1399{
1400 if ( which == Led_Mail ) 1400 if ( which == Led_Mail )
1401 return m_leds [0]; 1401 return m_leds [0];
1402 else 1402 else
1403 return Led_Off; 1403 return Led_Off;
1404} 1404}
1405 1405
1406bool Zaurus::setLedState ( OLed which, OLedState st ) 1406bool Zaurus::setLedState ( OLed which, OLedState st )
1407{ 1407{
1408 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); 1408 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK );
1409 1409
1410 if ( which == Led_Mail ) { 1410 if ( which == Led_Mail ) {
1411 if ( fd >= 0 ) { 1411 if ( fd >= 0 ) {
1412 struct sharp_led_status leds; 1412 struct sharp_led_status leds;
1413 ::memset ( &leds, 0, sizeof( leds )); 1413 ::memset ( &leds, 0, sizeof( leds ));
1414 leds. which = SHARP_LED_MAIL_EXISTS; 1414 leds. which = SHARP_LED_MAIL_EXISTS;
1415 bool ok = true; 1415 bool ok = true;
1416 1416
1417 switch ( st ) { 1417 switch ( st ) {
1418 case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; 1418 case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break;
1419 case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; 1419 case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break;
1420 case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; 1420 case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break;
1421 default : ok = false; 1421 default : ok = false;
1422 } 1422 }
1423 1423
1424 if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { 1424 if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) {
1425 m_leds [0] = st; 1425 m_leds [0] = st;
1426 return true; 1426 return true;
1427 } 1427 }
1428 } 1428 }
1429 } 1429 }
1430 return false; 1430 return false;
1431} 1431}
1432 1432
1433bool Zaurus::setSoftSuspend ( bool soft ) 1433bool Zaurus::setSoftSuspend ( bool soft )
1434{ 1434{
1435 bool res = false; 1435 bool res = false;
1436 int fd; 1436 int fd;
1437 1437
1438 if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || 1438 if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) ||
1439 (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { 1439 (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) {
1440 1440
1441 int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources 1441 int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources
1442 1442
1443 if ( sources >= 0 ) { 1443 if ( sources >= 0 ) {
1444 if ( soft ) 1444 if ( soft )
1445 sources &= ~APM_EVT_POWER_BUTTON; 1445 sources &= ~APM_EVT_POWER_BUTTON;
1446 else 1446 else
1447 sources |= APM_EVT_POWER_BUTTON; 1447 sources |= APM_EVT_POWER_BUTTON;
1448 1448
1449 if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources 1449 if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources
1450 res = true; 1450 res = true;
1451 else 1451 else
1452 perror ( "APM_IOCGEVTSRC" ); 1452 perror ( "APM_IOCGEVTSRC" );
1453 } 1453 }
1454 else 1454 else
1455 perror ( "APM_IOCGEVTSRC" ); 1455 perror ( "APM_IOCGEVTSRC" );
1456 1456
1457 ::close ( fd ); 1457 ::close ( fd );
1458 } 1458 }
1459 else 1459 else
1460 perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); 1460 perror ( "/dev/apm_bios or /dev/misc/apm_bios" );
1461 1461
1462 return res; 1462 return res;
1463} 1463}
1464 1464
1465 1465
1466bool Zaurus::setDisplayBrightness ( int bright ) 1466bool Zaurus::setDisplayBrightness ( int bright )
1467{ 1467{
1468 bool res = false; 1468 bool res = false;
1469 int fd; 1469 int fd;
1470 1470
1471 if ( bright > 255 ) 1471 if ( bright > 255 )
1472 bright = 255; 1472 bright = 255;
1473 if ( bright < 0 ) 1473 if ( bright < 0 )
1474 bright = 0; 1474 bright = 0;
1475 1475
1476 if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { 1476 if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) {
1477 int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus 1477 int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus
1478 if ( bright && !bl ) 1478 if ( bright && !bl )
1479 bl = 1; 1479 bl = 1;
1480 res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); 1480 res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 );
1481 ::close ( fd ); 1481 ::close ( fd );
1482 } 1482 }
1483 return res; 1483 return res;
1484} 1484}
1485 1485
1486 1486
1487int Zaurus::displayBrightnessResolution ( ) const 1487int Zaurus::displayBrightnessResolution ( ) const
1488{ 1488{
1489 return 5; 1489 return 5;
1490} 1490}
1491 1491
1492 1492
1493/************************************************** 1493/**************************************************
1494 * 1494 *
1495 * SIMpad 1495 * SIMpad
1496 * 1496 *
1497 **************************************************/ 1497 **************************************************/
1498 1498
1499void SIMpad::init ( ) 1499void SIMpad::init ( )
1500{ 1500{
1501 d-> m_vendorstr = "SIEMENS"; 1501 d-> m_vendorstr = "SIEMENS";
1502 d-> m_vendor = Vendor_SIEMENS; 1502 d-> m_vendor = Vendor_SIEMENS;
1503 1503
1504 QFile f ( "/proc/hal/model" ); 1504 QFile f ( "/proc/hal/model" );
1505 1505
1506 //TODO Implement model checking 1506 //TODO Implement model checking
1507 //FIXME For now we assume an SL4 1507 //FIXME For now we assume an SL4
1508 1508
1509 d-> m_modelstr = "SL4"; 1509 d-> m_modelstr = "SL4";
1510 d-> m_model = Model_SIMpad_SL4; 1510 d-> m_model = Model_SIMpad_SL4;
1511 1511
1512 switch ( d-> m_model ) { 1512 switch ( d-> m_model ) {
1513 default: 1513 default:
1514 d-> m_rotation = Rot270; 1514 d-> m_rotation = Rot270;
1515 break; 1515 break;
1516 } 1516 }
1517 1517
1518 f. setName ( "/etc/familiar-version" ); 1518 f. setName ( "/etc/familiar-version" );
1519 if ( f. open ( IO_ReadOnly )) { 1519 if ( f. open ( IO_ReadOnly )) {
1520 d-> m_systemstr = "Familiar"; 1520 d-> m_systemstr = "Familiar";
1521 d-> m_system = System_Familiar; 1521 d-> m_system = System_Familiar;
1522 1522
1523 QTextStream ts ( &f ); 1523 QTextStream ts ( &f );
1524 d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); 1524 d-> m_sysverstr = ts. readLine ( ). mid ( 10 );
1525 1525
1526 f. close ( ); 1526 f. close ( );
1527 } else { 1527 } else {
1528 f. setName ( "/etc/oz_version" ); 1528 f. setName ( "/etc/oz_version" );
1529 1529
1530 if ( f. open ( IO_ReadOnly )) { 1530 if ( f. open ( IO_ReadOnly )) {
1531 d-> m_systemstr = "OpenEmbedded/SIMpad"; 1531 d-> m_systemstr = "OpenEmbedded/SIMpad";
1532 d-> m_system = System_OpenZaurus; 1532 d-> m_system = System_OpenZaurus;
1533 1533
1534 QTextStream ts ( &f ); 1534 QTextStream ts ( &f );
1535 ts.setDevice ( &f ); 1535 ts.setDevice ( &f );
1536 d-> m_sysverstr = ts. readLine ( ); 1536 d-> m_sysverstr = ts. readLine ( );
1537 f. close ( ); 1537 f. close ( );
1538 } 1538 }
1539 } 1539 }
1540 1540
1541 m_leds [0] = m_leds [1] = Led_Off; 1541 m_leds [0] = m_leds [1] = Led_Off;
1542 1542
1543 m_power_timer = 0; 1543 m_power_timer = 0;
1544 1544
1545} 1545}
1546 1546
1547void SIMpad::initButtons ( ) 1547void SIMpad::initButtons ( )
1548{ 1548{
1549 if ( d-> m_buttons ) 1549 if ( d-> m_buttons )
1550 return; 1550 return;
1551 1551
1552 if ( isQWS( ) ) 1552 if ( isQWS( ) )
1553 QWSServer::setKeyboardFilter ( this ); 1553 QWSServer::setKeyboardFilter ( this );
1554 1554
1555 d-> m_buttons = new QValueList <ODeviceButton>; 1555 d-> m_buttons = new QValueList <ODeviceButton>;
1556 1556
1557 for ( uint i = 0; i < ( sizeof( simpad_buttons ) / sizeof( s_button )); i++ ) { 1557 for ( uint i = 0; i < ( sizeof( simpad_buttons ) / sizeof( s_button )); i++ ) {
1558 s_button *sb = simpad_buttons + i; 1558 s_button *sb = simpad_buttons + i;
1559 ODeviceButton b; 1559 ODeviceButton b;
1560 1560
1561 if (( sb-> model & d-> m_model ) == d-> m_model ) { 1561 if (( sb-> model & d-> m_model ) == d-> m_model ) {
1562 b. setKeycode ( sb-> code ); 1562 b. setKeycode ( sb-> code );
1563 b. setUserText ( QObject::tr ( "Button", sb-> utext )); 1563 b. setUserText ( QObject::tr ( "Button", sb-> utext ));
1564 b. setPixmap ( Resource::loadPixmap ( sb-> pix )); 1564 b. setPixmap ( Resource::loadPixmap ( sb-> pix ));
1565 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( sb-> fpressedservice ), sb-> fpressedaction )); 1565 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( sb-> fpressedservice ), sb-> fpressedaction ));
1566 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( sb-> fheldservice ), sb-> fheldaction )); 1566 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( sb-> fheldservice ), sb-> fheldaction ));
1567 1567
1568 d-> m_buttons-> append ( b ); 1568 d-> m_buttons-> append ( b );
1569 } 1569 }
1570 } 1570 }
1571 reloadButtonMapping ( ); 1571 reloadButtonMapping ( );
1572 1572
1573 QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); 1573 QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
1574 connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); 1574 connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
1575} 1575}
1576 1576
1577// SIMpad boardcontrol register CS3 1577// SIMpad boardcontrol register CS3
1578#define SIMPAD_BOARDCONTROL "/proc/CS3" 1578#define SIMPAD_BOARDCONTROL "/proc/cs3"
1579#define SIMPAD_VCC_5V_EN 0x0001 // For 5V PCMCIA 1579#define SIMPAD_VCC_5V_EN 0x0001 // For 5V PCMCIA
1580#define SIMPAD_VCC_3V_EN 0x0002 // FOR 3.3V PCMCIA 1580#define SIMPAD_VCC_3V_EN 0x0002 // FOR 3.3V PCMCIA
1581#define SIMPAD_EN1 0x0004 // This is only for EPROM's 1581#define SIMPAD_EN1 0x0004 // This is only for EPROM's
1582#define SIMPAD_EN0 0x0008 // Both should be enable for 3.3V or 5V 1582#define SIMPAD_EN0 0x0008 // Both should be enable for 3.3V or 5V
1583#define SIMPAD_DISPLAY_ON 0x0010 1583#define SIMPAD_DISPLAY_ON 0x0010
1584#define SIMPAD_PCMCIA_BUFF_DIS 0x0020 1584#define SIMPAD_PCMCIA_BUFF_DIS 0x0020
1585#define SIMPAD_MQ_RESET 0x0040 1585#define SIMPAD_MQ_RESET 0x0040
1586#define SIMPAD_PCMCIA_RESET 0x0080 1586#define SIMPAD_PCMCIA_RESET 0x0080
1587#define SIMPAD_DECT_POWER_ON 0x0100 1587#define SIMPAD_DECT_POWER_ON 0x0100
1588#define SIMPAD_IRDA_SD 0x0200 // Shutdown for powersave 1588#define SIMPAD_IRDA_SD 0x0200 // Shutdown for powersave
1589#define SIMPAD_RS232_ON 0x0400 1589#define SIMPAD_RS232_ON 0x0400
1590#define SIMPAD_SD_MEDIAQ 0x0800 // Shutdown for powersave 1590#define SIMPAD_SD_MEDIAQ 0x0800 // Shutdown for powersave
1591#define SIMPAD_LED2_ON 0x1000 1591#define SIMPAD_LED2_ON 0x1000
1592#define SIMPAD_IRDA_MODE 0x2000 // Fast/Slow IrDA mode 1592#define SIMPAD_IRDA_MODE 0x2000 // Fast/Slow IrDA mode
1593#define SIMPAD_ENABLE_5V 0x4000 // Enable 5V circuit 1593#define SIMPAD_ENABLE_5V 0x4000 // Enable 5V circuit
1594#define SIMPAD_RESET_SIMCARD 0x8000 1594#define SIMPAD_RESET_SIMCARD 0x8000
1595 1595
1596//SIMpad touchscreen backlight strength control 1596//SIMpad touchscreen backlight strength control
1597#define SIMPAD_BACKLIGHT_CONTROL "/proc/driver/mq200/registers/PWM_CONTROL" 1597#define SIMPAD_BACKLIGHT_CONTROL "/proc/driver/mq200/registers/PWM_CONTROL"
1598#define SIMPAD_BACKLIGHT_MASK 0x00a10044 1598#define SIMPAD_BACKLIGHT_MASK 0x00a10044
1599 1599
1600QValueList <OLed> SIMpad::ledList ( ) const 1600QValueList <OLed> SIMpad::ledList ( ) const
1601{ 1601{
1602 QValueList <OLed> vl; 1602 QValueList <OLed> vl;
1603 vl << Led_Power; //FIXME which LED is LED2 ? The green one or the amber one? 1603 vl << Led_Power; //FIXME which LED is LED2 ? The green one or the amber one?
1604 //vl << Led_Mail; //TODO find out if LED1 is accessible anyway 1604 //vl << Led_Mail; //TODO find out if LED1 is accessible anyway
1605 return vl; 1605 return vl;
1606} 1606}
1607 1607
1608QValueList <OLedState> SIMpad::ledStateList ( OLed l ) const 1608QValueList <OLedState> SIMpad::ledStateList ( OLed l ) const
1609{ 1609{
1610 QValueList <OLedState> vl; 1610 QValueList <OLedState> vl;
1611 1611
1612 if ( l == Led_Power ) //FIXME which LED is LED2 ? The green one or the amber one? 1612 if ( l == Led_Power ) //FIXME which LED is LED2 ? The green one or the amber one?
1613 vl << Led_Off << Led_On; 1613 vl << Led_Off << Led_On;
1614 //else if ( l == Led_Mail ) //TODO find out if LED1 is accessible anyway 1614 //else if ( l == Led_Mail ) //TODO find out if LED1 is accessible anyway
1615 //vl << Led_Off; 1615 //vl << Led_Off;
1616 return vl; 1616 return vl;
1617} 1617}
1618 1618
1619OLedState SIMpad::ledState ( OLed l ) const 1619OLedState SIMpad::ledState ( OLed l ) const
1620{ 1620{
1621 switch ( l ) { 1621 switch ( l ) {
1622 case Led_Power: 1622 case Led_Power:
1623 return m_leds [0]; 1623 return m_leds [0];
1624 //case Led_Mail: 1624 //case Led_Mail:
1625 //return m_leds [1]; 1625 //return m_leds [1];
1626 default: 1626 default:
1627 return Led_Off; 1627 return Led_Off;
1628 } 1628 }
1629} 1629}
1630 1630
1631bool SIMpad::setLedState ( OLed l, OLedState st ) 1631bool SIMpad::setLedState ( OLed l, OLedState st )
1632{ 1632{
1633 static int fd = ::open ( SIMPAD_BOARDCONTROL, O_RDWR | O_NONBLOCK ); 1633 static int fd = ::open ( SIMPAD_BOARDCONTROL, O_RDWR | O_NONBLOCK );
1634 1634
1635 if ( l == Led_Power ) { 1635 if ( l == Led_Power ) {
1636 if ( fd >= 0 ) { 1636 if ( fd >= 0 ) {
1637 LED_IN leds; 1637 LED_IN leds;
1638 ::memset ( &leds, 0, sizeof( leds )); 1638 ::memset ( &leds, 0, sizeof( leds ));
1639 leds. TotalTime = 0; 1639 leds. TotalTime = 0;
1640 leds. OnTime = 0; 1640 leds. OnTime = 0;
1641 leds. OffTime = 1; 1641 leds. OffTime = 1;
1642 leds. OffOnBlink = 2; 1642 leds. OffOnBlink = 2;
1643 1643
1644 switch ( st ) { 1644 switch ( st ) {
1645 case Led_Off : leds. OffOnBlink = 0; break; 1645 case Led_Off : leds. OffOnBlink = 0; break;
1646 case Led_On : leds. OffOnBlink = 1; break; 1646 case Led_On : leds. OffOnBlink = 1; break;
1647 case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; 1647 case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break;
1648 case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; 1648 case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break;
1649 } 1649 }
1650 1650
1651 { 1651 {
1652 /*TODO Implement this like that: 1652 /*TODO Implement this like that:
1653 read from CS3 1653 read from cs3
1654 && with SIMPAD_LED2_ON 1654 && with SIMPAD_LED2_ON
1655 write to CS3 */ 1655 write to cs3 */
1656 m_leds [0] = st; 1656 m_leds [0] = st;
1657 return true; 1657 return true;
1658 } 1658 }
1659 } 1659 }
1660 } 1660 }
1661 return false; 1661 return false;
1662} 1662}
1663 1663
1664 1664
1665bool SIMpad::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) 1665bool SIMpad::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat )
1666{ 1666{
1667 //TODO 1667 //TODO
1668 return false; 1668 return false;
1669} 1669}
1670 1670
1671void SIMpad::timerEvent ( QTimerEvent * ) 1671void SIMpad::timerEvent ( QTimerEvent * )
1672{ 1672{
1673 killTimer ( m_power_timer ); 1673 killTimer ( m_power_timer );
1674 m_power_timer = 0; 1674 m_power_timer = 0;
1675 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); 1675 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false );
1676 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); 1676 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false );
1677} 1677}
1678 1678
1679 1679
1680void SIMpad::alarmSound ( ) 1680void SIMpad::alarmSound ( )
1681{ 1681{
1682#ifndef QT_NO_SOUND 1682#ifndef QT_NO_SOUND
1683 static Sound snd ( "alarm" ); 1683 static Sound snd ( "alarm" );
1684 int fd; 1684 int fd;
1685 int vol; 1685 int vol;
1686 bool vol_reset = false; 1686 bool vol_reset = false;
1687 1687
1688 if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { 1688 if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) {
1689 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { 1689 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) {
1690 Config cfg ( "qpe" ); 1690 Config cfg ( "qpe" );
1691 cfg. setGroup ( "Volume" ); 1691 cfg. setGroup ( "Volume" );
1692 1692
1693 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); 1693 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 );
1694 if ( volalarm < 0 ) 1694 if ( volalarm < 0 )
1695 volalarm = 0; 1695 volalarm = 0;
1696 else if ( volalarm > 100 ) 1696 else if ( volalarm > 100 )
1697 volalarm = 100; 1697 volalarm = 100;
1698 volalarm |= ( volalarm << 8 ); 1698 volalarm |= ( volalarm << 8 );
1699 1699
1700 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) 1700 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 )
1701 vol_reset = true; 1701 vol_reset = true;
1702 } 1702 }
1703 } 1703 }
1704 1704
1705 snd. play ( ); 1705 snd. play ( );
1706 while ( !snd. isFinished ( )) 1706 while ( !snd. isFinished ( ))
1707 qApp-> processEvents ( ); 1707 qApp-> processEvents ( );
1708 1708
1709 if ( fd >= 0 ) { 1709 if ( fd >= 0 ) {
1710 if ( vol_reset ) 1710 if ( vol_reset )
1711 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); 1711 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol );
1712 ::close ( fd ); 1712 ::close ( fd );
1713 } 1713 }
1714#endif 1714#endif
1715} 1715}
1716 1716
1717 1717
1718bool SIMpad::setSoftSuspend ( bool soft ) 1718bool SIMpad::setSoftSuspend ( bool soft )
1719{ 1719{
1720 //TODO 1720 //TODO
1721 return false; 1721 return false;
1722} 1722}
1723 1723
1724 1724
1725bool SIMpad::setDisplayBrightness ( int bright ) 1725bool SIMpad::setDisplayBrightness ( int bright )
1726{ 1726{
1727 bool res = false; 1727 bool res = false;
1728 int fd; 1728 int fd;
1729 1729
1730 if ( bright > 255 ) 1730 if ( bright > 255 )
1731 bright = 255; 1731 bright = 255;
1732 if ( bright < 0 ) 1732 if ( bright < 0 )
1733 bright = 0; 1733 bright = 0;
1734 1734
1735 if (( fd = ::open ( SIMPAD_BACKLIGHT_CONTROL, O_WRONLY )) >= 0 ) { 1735 if (( fd = ::open ( SIMPAD_BACKLIGHT_CONTROL, O_WRONLY )) >= 0 ) {
1736 int value = 255 - bright; 1736 int value = 255 - bright;
1737 const int mask = SIMPAD_BACKLIGHT_MASK; 1737 const int mask = SIMPAD_BACKLIGHT_MASK;
1738 value = value << 8; 1738 value = value << 8;
1739 value += mask; 1739 value += mask;
1740 char writeCommand[100]; 1740 char writeCommand[100];
1741 const int count = sprintf( writeCommand, "0x%x\n", value ); 1741 const int count = sprintf( writeCommand, "0x%x\n", value );
1742 res = ( ::write ( fd, writeCommand, count ) != -1 ); 1742 res = ( ::write ( fd, writeCommand, count ) != -1 );
1743 ::close ( fd ); 1743 ::close ( fd );
1744 } 1744 }
1745 return res; 1745 return res;
1746} 1746}
1747 1747
1748 1748
1749int SIMpad::displayBrightnessResolution ( ) const 1749int SIMpad::displayBrightnessResolution ( ) const
1750{ 1750{
1751 switch ( model ( )) { 1751 switch ( model ( )) {
1752 case Model_SIMpad_CL4: 1752 case Model_SIMpad_CL4:
1753 case Model_SIMpad_SL4: 1753 case Model_SIMpad_SL4:
1754 case Model_SIMpad_SLC: 1754 case Model_SIMpad_SLC:
1755 case Model_SIMpad_TSinus: 1755 case Model_SIMpad_TSinus:
1756 return 255; //TODO find out if this is save 1756 return 255; //TODO find out if this is save
1757 1757
1758 default: 1758 default:
1759 return 2; 1759 return 2;
1760 } 1760 }
1761} 1761}
1762 1762