summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_abstractmobiledevice.cpp16
-rw-r--r--libopie2/opiecore/device/odevice_zaurus.cpp24
2 files changed, 14 insertions, 26 deletions
diff --git a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
index b446d05..7ee72ba 100644
--- a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
+++ b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
@@ -1,126 +1,120 @@
1/* 1/*
2                 This file is part of the Opie Project 2                 This file is part of the Opie Project
3 Copyright (C) 2004, 2005 Holger Hans Peter Freyther <freyther@handhelds.org> 3 Copyright (C) 2004, 2005 Holger Hans Peter Freyther <freyther@handhelds.org>
4 =. Copyright (C) 2004, 2005 Michael 'Mickey' Lauer <mickey@Vanille.de> 4 =. Copyright (C) 2004, 2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
5 .=l. Copyright (C) 2002, 2003 Robert Griebl <sandman@handhelds.org> 5 .=l. Copyright (C) 2002, 2003 Robert Griebl <sandman@handhelds.org>
6           .>+-= 6           .>+-=
7 _;:,     .>    :=|. This program is free software; you can 7 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under 8.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i,     .._ License as published by the Free Software 10.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; version 2 of the License. 11 - .   .-<_>     .<> Foundation; version 2 of the License.
12     ._= =}       : 12     ._= =}       :
13    .%`+i>       _;_. 13    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that 14    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of 16    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 19..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 20++=   -.     .`     .: details.
21 :     =  ...= . :.=- 21 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 22 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 23  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 24    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28*/ 28*/
29 29
30#include "odevice_abstractmobiledevice.h" 30#include "odevice_abstractmobiledevice.h"
31 31
32#include <qpe/qcopenvelope_qws.h> 32/* QT */
33#include <qcopchannel_qws.h>
33 34
35/* STD */
34#include <sys/time.h> 36#include <sys/time.h>
35#include <sys/ioctl.h> 37#include <sys/ioctl.h>
36
37#include <time.h> 38#include <time.h>
38#include <fcntl.h> 39#include <fcntl.h>
39#include <unistd.h> 40#include <unistd.h>
40#include <stdlib.h> 41#include <stdlib.h>
41 42
42namespace Opie { 43namespace Opie {
43namespace Core { 44namespace Core {
44OAbstractMobileDevice::OAbstractMobileDevice() 45OAbstractMobileDevice::OAbstractMobileDevice()
45 : m_timeOut( 1500 ) 46 : m_timeOut( 1500 )
46{} 47{}
47 48
48/** 49/**
49 * @short Time to wait for the asynchronos APM implementation to suspend 50 * @short Time to wait for the asynchronos APM implementation to suspend
50 * 51 *
51 * Milli Seconds to wait before returning from the suspend method. 52 * Milli Seconds to wait before returning from the suspend method.
52 * This is needed due asynchrnonus implementations of the APM bios. 53 * This is needed due asynchrnonus implementations of the APM bios.
53 * 54 *
54 */ 55 */
55void OAbstractMobileDevice::setAPMTimeOut( int time ) { 56void OAbstractMobileDevice::setAPMTimeOut( int time ) {
56 m_timeOut = time; 57 m_timeOut = time;
57} 58}
58 59
59 60
60bool OAbstractMobileDevice::suspend() { 61bool OAbstractMobileDevice::suspend() {
61 if ( !isQWS( ) ) // only qwsserver is allowed to suspend 62 if ( !isQWS( ) ) // only qwsserver is allowed to suspend
62 return false; 63 return false;
63 64
64 bool res = false; 65 bool res = false;
65 66 QCopChannel::send( "QPE/System", "aboutToSuspend()" );
66 {
67 QCopEnvelope( "QPE/System", "aboutToSuspend()" );
68 }
69 qApp->processEvents(); // ensure the qcop call is being processed asap
70 67
71 struct timeval tvs, tvn; 68 struct timeval tvs, tvn;
72 ::gettimeofday ( &tvs, 0 ); 69 ::gettimeofday ( &tvs, 0 );
73 70
74 ::sync(); // flush fs caches 71 ::sync(); // flush fs caches
75 res = ( ::system ( "apm --suspend" ) == 0 ); 72 res = ( ::system ( "apm --suspend" ) == 0 );
76 73
77 // This is needed because some apm implementations are asynchronous and we 74 // This is needed because some apm implementations are asynchronous and we
78 // can not be sure when exactly the device is really suspended 75 // can not be sure when exactly the device is really suspended
79 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists. 76 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists.
80 77
81 if ( res ) { 78 if ( res ) {
82 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed 79 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed
83 ::usleep ( 200 * 1000 ); 80 ::usleep ( 200 * 1000 );
84 ::gettimeofday ( &tvn, 0 ); 81 ::gettimeofday ( &tvn, 0 );
85 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut ); 82 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut );
86 } 83 }
87 84
88 { 85 QCopChannel::send( "QPE/System", "returnFromSuspend()" );
89 QCopEnvelope( "QPE/System", "returnFromSuspend()" );
90 }
91 qApp->processEvents(); // ensure the qcop call is being processed asap
92 86
93 return res; 87 return res;
94} 88}
95 89
96//#include <linux/fb.h> better not rely on kernel headers in userspace ... 90//#include <linux/fb.h> better not rely on kernel headers in userspace ...
97 91
98// _IO and friends are only defined in kernel headers ... 92// _IO and friends are only defined in kernel headers ...
99#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) 93#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 ))
100#define OD_IO(type,number) OD_IOC(0,type,number,0) 94#define OD_IO(type,number) OD_IOC(0,type,number,0)
101 95
102#define FBIOBLANK OD_IO( 'F', 0x11 ) // 0x4611 96#define FBIOBLANK OD_IO( 'F', 0x11 ) // 0x4611
103 97
104/* VESA Blanking Levels */ 98/* VESA Blanking Levels */
105#define VESA_NO_BLANKING 0 99#define VESA_NO_BLANKING 0
106#define VESA_VSYNC_SUSPEND 1 100#define VESA_VSYNC_SUSPEND 1
107#define VESA_HSYNC_SUSPEND 2 101#define VESA_HSYNC_SUSPEND 2
108#define VESA_POWERDOWN 3 102#define VESA_POWERDOWN 3
109 103
110bool OAbstractMobileDevice::setDisplayStatus ( bool on ) { 104bool OAbstractMobileDevice::setDisplayStatus ( bool on ) {
111 bool res = false; 105 bool res = false;
112 int fd; 106 int fd;
113 107
114#ifdef QT_QWS_DEVFS 108#ifdef QT_QWS_DEVFS
115 if (( fd = ::open ( "/dev/fb/0", O_RDWR )) >= 0 ) { 109 if (( fd = ::open ( "/dev/fb/0", O_RDWR )) >= 0 ) {
116#else 110#else
117 if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) { 111 if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) {
118#endif 112#endif
119 res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 ); 113 res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 );
120 ::close ( fd ); 114 ::close ( fd );
121 } 115 }
122 116
123 return res; 117 return res;
124} 118}
125} 119}
126} 120}
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp
index 2b2467c..33d5cd6 100644
--- a/libopie2/opiecore/device/odevice_zaurus.cpp
+++ b/libopie2/opiecore/device/odevice_zaurus.cpp
@@ -1,744 +1,738 @@
1/* 1/*
2                 This file is part of the Opie Project 2                 This file is part of the Opie Project
3              Copyright (C) 2002-2005 The Opie Team <opie-devel@handhelds.org> 3              Copyright (C) 2002-2005 The Opie Team <opie-devel@handhelds.org>
4 =. Copyright (C) 2002-2005 Michael 'Mickey' Lauer <mickey@Vanille.de> 4 =. Copyright (C) 2002-2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
5 .=l. 5 .=l.
6           .>+-= 6           .>+-=
7 _;:,     .>    :=|. This program is free software; you can 7 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under 8.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i,     .._ License as published by the Free Software 10.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; version 2 of the License. 11 - .   .-<_>     .<> Foundation; version 2 of the License.
12     ._= =}       : 12     ._= =}       :
13    .%`+i>       _;_. 13    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that 14    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of 16    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 19..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 20++=   -.     .`     .: details.
21 :     =  ...= . :.=- 21 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 22 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 23  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 24    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28*/ 28*/
29 29
30#include "odevice_zaurus.h" 30#include "odevice_zaurus.h"
31 31
32/* QT */
33#include <qapplication.h>
34#include <qfile.h>
35#include <qtextstream.h>
36#include <qwindowsystem_qws.h>
37
38/* OPIE */ 32/* OPIE */
39#include <opie2/oinputsystem.h> 33#include <opie2/oinputsystem.h>
40#include <opie2/oresource.h> 34#include <opie2/oresource.h>
41 35
42#include <qpe/config.h> 36#include <qpe/config.h>
43#include <qpe/sound.h> 37#include <qpe/sound.h>
44#include <qpe/qcopenvelope_qws.h> 38
39/* QT */
40#include <qapplication.h>
41#include <qfile.h>
42#include <qtextstream.h>
43#include <qwindowsystem_qws.h>
44#include <qcopchannel_qws.h>
45 45
46/* STD */ 46/* STD */
47#include <fcntl.h> 47#include <fcntl.h>
48#include <math.h> 48#include <math.h>
49#include <stdlib.h> 49#include <stdlib.h>
50#include <signal.h> 50#include <signal.h>
51#include <sys/ioctl.h> 51#include <sys/ioctl.h>
52#include <sys/time.h> 52#include <sys/time.h>
53#include <unistd.h> 53#include <unistd.h>
54#ifndef QT_NO_SOUND 54#ifndef QT_NO_SOUND
55#include <linux/soundcard.h> 55#include <linux/soundcard.h>
56#endif 56#endif
57 57
58using namespace Opie::Core; 58using namespace Opie::Core;
59using namespace Opie::Core::Internal; 59using namespace Opie::Core::Internal;
60 60
61struct z_button z_buttons [] = { 61struct z_button z_buttons [] = {
62 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), 62 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
63 "devicebuttons/z_calendar", 63 "devicebuttons/z_calendar",
64 "datebook", "nextView()", 64 "datebook", "nextView()",
65 "today", "raise()" }, 65 "today", "raise()" },
66 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), 66 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
67 "devicebuttons/z_contact", 67 "devicebuttons/z_contact",
68 "addressbook", "raise()", 68 "addressbook", "raise()",
69 "addressbook", "beamBusinessCard()" }, 69 "addressbook", "beamBusinessCard()" },
70 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), 70 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
71 "devicebuttons/z_home", 71 "devicebuttons/z_home",
72 "QPE/Launcher", "home()", 72 "QPE/Launcher", "home()",
73 "buttonsettings", "raise()" }, 73 "buttonsettings", "raise()" },
74 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), 74 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
75 "devicebuttons/z_menu", 75 "devicebuttons/z_menu",
76 "QPE/TaskBar", "toggleMenu()", 76 "QPE/TaskBar", "toggleMenu()",
77 "QPE/TaskBar", "toggleStartMenu()" }, 77 "QPE/TaskBar", "toggleStartMenu()" },
78 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), 78 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"),
79 "devicebuttons/z_mail", 79 "devicebuttons/z_mail",
80 "opiemail", "raise()", 80 "opiemail", "raise()",
81 "opiemail", "newMail()" }, 81 "opiemail", "newMail()" },
82}; 82};
83 83
84struct z_button z_buttons_c700 [] = { 84struct z_button z_buttons_c700 [] = {
85 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), 85 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
86 "devicebuttons/z_calendar", 86 "devicebuttons/z_calendar",
87 "datebook", "nextView()", 87 "datebook", "nextView()",
88 "today", "raise()" }, 88 "today", "raise()" },
89 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), 89 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
90 "devicebuttons/z_contact", 90 "devicebuttons/z_contact",
91 "addressbook", "raise()", 91 "addressbook", "raise()",
92 "addressbook", "beamBusinessCard()" }, 92 "addressbook", "beamBusinessCard()" },
93 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), 93 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
94 "devicebuttons/z_home", 94 "devicebuttons/z_home",
95 "QPE/Launcher", "home()", 95 "QPE/Launcher", "home()",
96 "buttonsettings", "raise()" }, 96 "buttonsettings", "raise()" },
97 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), 97 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
98 "devicebuttons/z_menu", 98 "devicebuttons/z_menu",
99 "QPE/TaskBar", "toggleMenu()", 99 "QPE/TaskBar", "toggleMenu()",
100 "QPE/TaskBar", "toggleStartMenu()" }, 100 "QPE/TaskBar", "toggleStartMenu()" },
101 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), 101 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"),
102 "devicebuttons/z_mail", 102 "devicebuttons/z_mail",
103 "opiemail", "raise()", 103 "opiemail", "raise()",
104 "opiemail", "newMail()" }, 104 "opiemail", "newMail()" },
105 105
106 { Qt::Key_F15, QT_TRANSLATE_NOOP("Button", "Hinge1"), 106 { Qt::Key_F15, QT_TRANSLATE_NOOP("Button", "Hinge1"),
107 "devicebuttons/z_hinge1", 107 "devicebuttons/z_hinge1",
108 "QPE/Rotation", "rotateDefault()",0}, 108 "QPE/Rotation", "rotateDefault()",0},
109 { Qt::Key_F16, QT_TRANSLATE_NOOP("Button", "Hinge2"), 109 { Qt::Key_F16, QT_TRANSLATE_NOOP("Button", "Hinge2"),
110 "devicebuttons/z_hinge2", 110 "devicebuttons/z_hinge2",
111 "QPE/Rotation", "rotateDefault()",0}, 111 "QPE/Rotation", "rotateDefault()",0},
112 { Qt::Key_F17, QT_TRANSLATE_NOOP("Button", "Hinge3"), 112 { Qt::Key_F17, QT_TRANSLATE_NOOP("Button", "Hinge3"),
113 "devicebuttons/z_hinge3", 113 "devicebuttons/z_hinge3",
114 "QPE/Rotation", "rotateDefault()",0}, 114 "QPE/Rotation", "rotateDefault()",0},
115}; 115};
116 116
117struct z_button z_buttons_6000 [] = { 117struct z_button z_buttons_6000 [] = {
118 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), 118 { Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
119 "devicebuttons/z_calendar", 119 "devicebuttons/z_calendar",
120 "datebook", "nextView()", 120 "datebook", "nextView()",
121 "today", "raise()" }, 121 "today", "raise()" },
122 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), 122 { Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"),
123 "devicebuttons/z_contact", 123 "devicebuttons/z_contact",
124 "addressbook", "raise()", 124 "addressbook", "raise()",
125 "addressbook", "beamBusinessCard()" }, 125 "addressbook", "beamBusinessCard()" },
126 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), 126 { Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"),
127 "devicebuttons/z_home", 127 "devicebuttons/z_home",
128 "QPE/Launcher", "home()", 128 "QPE/Launcher", "home()",
129 "buttonsettings", "raise()" }, 129 "buttonsettings", "raise()" },
130 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), 130 { Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"),
131 "devicebuttons/z_menu", 131 "devicebuttons/z_menu",
132 "QPE/TaskBar", "toggleMenu()", 132 "QPE/TaskBar", "toggleMenu()",
133 "QPE/TaskBar", "toggleStartMenu()" }, 133 "QPE/TaskBar", "toggleStartMenu()" },
134 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), 134 { Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"),
135 "devicebuttons/z_mail", 135 "devicebuttons/z_mail",
136 "opiemail", "raise()", 136 "opiemail", "raise()",
137 "opiemail", "newMail()" }, 137 "opiemail", "newMail()" },
138 { Qt::Key_F15, QT_TRANSLATE_NOOP("Button", "Rotate Button"), 138 { Qt::Key_F15, QT_TRANSLATE_NOOP("Button", "Rotate Button"),
139 "devicebuttons/z_rotate", 139 "devicebuttons/z_rotate",
140 0, 140 0,
141 "QPE/Rotation", "rotateDefault()" }, 141 "QPE/Rotation", "rotateDefault()" },
142 { Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"), 142 { Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"),
143 "devicebuttons/z_hinge3", 143 "devicebuttons/z_hinge3",
144 "QPE/VMemo", "toggleRecord()", 144 "QPE/VMemo", "toggleRecord()",
145 "sound", "raise()" }, 145 "sound", "raise()" },
146}; 146};
147 147
148// FIXME This gets unnecessary complicated. We should think about splitting the Zaurus 148// FIXME This gets unnecessary complicated. We should think about splitting the Zaurus
149// class up into individual classes. We would need three classes 149// class up into individual classes. We would need three classes
150// 150//
151// Zaurus-Collie (SA-model w/ 320x240 lcd, for SL5500 and SL5000) 151// Zaurus-Collie (SA-model w/ 320x240 lcd, for SL5500 and SL5000)
152// Zaurus-Poodle (PXA-model w/ 320x240 lcd, for SL5600) 152// Zaurus-Poodle (PXA-model w/ 320x240 lcd, for SL5600)
153// Zaurus-Corgi (PXA-model w/ 640x480 lcd, for C700, C750, C760, C860, C3000, C1000, C3100) 153// Zaurus-Corgi (PXA-model w/ 640x480 lcd, for C700, C750, C760, C860, C3000, C1000, C3100)
154// Zaurus-Tosa (PXA-model w/ 480x640 lcd, for SL6000) 154// Zaurus-Tosa (PXA-model w/ 480x640 lcd, for SL6000)
155 155
156void Zaurus::init(const QString& cpu_info) 156void Zaurus::init(const QString& cpu_info)
157{ 157{
158 // Set the time to wait until the system is really suspended 158 // Set the time to wait until the system is really suspended
159 // the delta between apm --suspend and sleeping 159 // the delta between apm --suspend and sleeping
160 setAPMTimeOut( 15000 ); 160 setAPMTimeOut( 15000 );
161 161
162 // generic distribution code already scanned /etc/issue at that point - 162 // generic distribution code already scanned /etc/issue at that point -
163 // embedix releases contain "Embedix <version> | Linux for Embedded Devices" 163 // embedix releases contain "Embedix <version> | Linux for Embedded Devices"
164 if ( d->m_sysverstr.contains( "embedix", false ) ) 164 if ( d->m_sysverstr.contains( "embedix", false ) )
165 { 165 {
166 d->m_vendorstr = "Sharp"; 166 d->m_vendorstr = "Sharp";
167 d->m_vendor = Vendor_Sharp; 167 d->m_vendor = Vendor_Sharp;
168 d->m_systemstr = "Zaurus"; 168 d->m_systemstr = "Zaurus";
169 d->m_system = System_Zaurus; 169 d->m_system = System_Zaurus;
170 m_embedix = true; 170 m_embedix = true;
171 } 171 }
172 else 172 else
173 { 173 {
174 d->m_vendorstr = "OpenZaurus Team"; 174 d->m_vendorstr = "OpenZaurus Team";
175 d->m_systemstr = "OpenZaurus"; 175 d->m_systemstr = "OpenZaurus";
176 d->m_system = System_OpenZaurus; 176 d->m_system = System_OpenZaurus;
177 // sysver already gathered 177 // sysver already gathered
178 178
179 // OpenZaurus sometimes uses the 2.4 (embedix) kernel, check if this is one 179 // OpenZaurus sometimes uses the 2.4 (embedix) kernel, check if this is one
180 FILE *uname = popen("uname -r", "r"); 180 FILE *uname = popen("uname -r", "r");
181 QFile f; 181 QFile f;
182 QString line; 182 QString line;
183 if ( f.open(IO_ReadOnly, uname) ) { 183 if ( f.open(IO_ReadOnly, uname) ) {
184 QTextStream ts ( &f ); 184 QTextStream ts ( &f );
185 line = ts.readLine(); 185 line = ts.readLine();
186 m_embedix = line.startsWith( "2.4." ); 186 m_embedix = line.startsWith( "2.4." );
187 f.close(); 187 f.close();
188 } 188 }
189 pclose(uname); 189 pclose(uname);
190 } 190 }
191 191
192 // check the Zaurus model 192 // check the Zaurus model
193 QString model; 193 QString model;
194 int loc = cpu_info.find( ":" ); 194 int loc = cpu_info.find( ":" );
195 if ( loc != -1 ) 195 if ( loc != -1 )
196 model = cpu_info.mid( loc+2 ).simplifyWhiteSpace(); 196 model = cpu_info.mid( loc+2 ).simplifyWhiteSpace();
197 else 197 else
198 model = cpu_info; 198 model = cpu_info;
199 199
200 if ( model == "SHARP Corgi" ) { 200 if ( model == "SHARP Corgi" ) {
201 d->m_model = Model_Zaurus_SLC7x0; 201 d->m_model = Model_Zaurus_SLC7x0;
202 d->m_modelstr = "Zaurus SL-C700"; 202 d->m_modelstr = "Zaurus SL-C700";
203 } else if ( model == "SHARP Shepherd" ) { 203 } else if ( model == "SHARP Shepherd" ) {
204 d->m_model = Model_Zaurus_SLC7x0; 204 d->m_model = Model_Zaurus_SLC7x0;
205 d->m_modelstr = "Zaurus SL-C750"; 205 d->m_modelstr = "Zaurus SL-C750";
206 } else if ( model == "SHARP Husky" ) { 206 } else if ( model == "SHARP Husky" ) {
207 d->m_model = Model_Zaurus_SLC7x0; 207 d->m_model = Model_Zaurus_SLC7x0;
208 d->m_modelstr = "Zaurus SL-C760 or SL-C860"; 208 d->m_modelstr = "Zaurus SL-C760 or SL-C860";
209 } else if ( model == "SHARP Boxer" ) { 209 } else if ( model == "SHARP Boxer" ) {
210 d->m_model = Model_Zaurus_SLC7x0; 210 d->m_model = Model_Zaurus_SLC7x0;
211 d->m_modelstr = "Zaurus SL-C760 or SL-C860"; 211 d->m_modelstr = "Zaurus SL-C760 or SL-C860";
212 } else if ( model == "SHARP Poodle" ) { 212 } else if ( model == "SHARP Poodle" ) {
213 d->m_model = Model_Zaurus_SLB600; 213 d->m_model = Model_Zaurus_SLB600;
214 d->m_modelstr = "Zaurus SL-B500 or SL-5600"; 214 d->m_modelstr = "Zaurus SL-B500 or SL-5600";
215 } else if ( model == "Sharp-Collie" || model == "Collie" ) { 215 } else if ( model == "Sharp-Collie" || model == "Collie" ) {
216 d->m_model = Model_Zaurus_SL5500; 216 d->m_model = Model_Zaurus_SL5500;
217 d->m_modelstr = "Zaurus SL-5500 or SL-5000d"; 217 d->m_modelstr = "Zaurus SL-5500 or SL-5000d";
218 } else if ( model == "SHARP Tosa" ) { 218 } else if ( model == "SHARP Tosa" ) {
219 d->m_model = Model_Zaurus_SL6000; 219 d->m_model = Model_Zaurus_SL6000;
220 d->m_modelstr = "Zaurus SL-6000"; 220 d->m_modelstr = "Zaurus SL-6000";
221 } else if ( model == "SHARP Spitz" ) { 221 } else if ( model == "SHARP Spitz" ) {
222 d->m_model = Model_Zaurus_SLC3000; 222 d->m_model = Model_Zaurus_SLC3000;
223 d->m_modelstr = "Zaurus SL-C3000"; 223 d->m_modelstr = "Zaurus SL-C3000";
224 } else if ( model == "SHARP Akita" ) { 224 } else if ( model == "SHARP Akita" ) {
225 d->m_model = Model_Zaurus_SLC1000; 225 d->m_model = Model_Zaurus_SLC1000;
226 d->m_modelstr = "Zaurus SL-C1000"; 226 d->m_modelstr = "Zaurus SL-C1000";
227 } else if ( model == "SHARP Borzoi" ) { 227 } else if ( model == "SHARP Borzoi" ) {
228 d->m_model = Model_Zaurus_SLC3100; 228 d->m_model = Model_Zaurus_SLC3100;
229 d->m_modelstr = "Zaurus SL-C3100"; 229 d->m_modelstr = "Zaurus SL-C3100";
230 } else { 230 } else {
231 d->m_model = Model_Zaurus_SL5500; 231 d->m_model = Model_Zaurus_SL5500;
232 d->m_modelstr = "Unknown Zaurus"; 232 d->m_modelstr = "Unknown Zaurus";
233 } 233 }
234 234
235 // set path to backlight device in kernel 2.6 235 // set path to backlight device in kernel 2.6
236 switch ( d->m_model ) 236 switch ( d->m_model )
237 { 237 {
238 case Model_Zaurus_SLB600: // fallthrough 238 case Model_Zaurus_SLB600: // fallthrough
239 case Model_Zaurus_SL5500: 239 case Model_Zaurus_SL5500:
240 m_backlightdev = "/sys/class/backlight/locomo-backlight/"; 240 m_backlightdev = "/sys/class/backlight/locomo-backlight/";
241 break; 241 break;
242 case Model_Zaurus_SL6000: 242 case Model_Zaurus_SL6000:
243 m_backlightdev = "/sys/class/backlight/tosa-bl/"; 243 m_backlightdev = "/sys/class/backlight/tosa-bl/";
244 break; 244 break;
245 default: 245 default:
246 m_backlightdev = "/sys/class/backlight/corgi-bl/"; 246 m_backlightdev = "/sys/class/backlight/corgi-bl/";
247 } 247 }
248 248
249 // set initial rotation 249 // set initial rotation
250 switch( d->m_model ) 250 switch( d->m_model )
251 { 251 {
252 case Model_Zaurus_SL6000: // fallthrough 252 case Model_Zaurus_SL6000: // fallthrough
253 case Model_Zaurus_SLA300: 253 case Model_Zaurus_SLA300:
254 d->m_rotation = Rot0; 254 d->m_rotation = Rot0;
255 break; 255 break;
256 case Model_Zaurus_SLC3100: // fallthrough 256 case Model_Zaurus_SLC3100: // fallthrough
257 case Model_Zaurus_SLC3000: // fallthrough 257 case Model_Zaurus_SLC3000: // fallthrough
258 case Model_Zaurus_SLC1000: // fallthrough 258 case Model_Zaurus_SLC1000: // fallthrough
259 case Model_Zaurus_SLC7x0: 259 case Model_Zaurus_SLC7x0:
260 d->m_rotation = rotation(); 260 d->m_rotation = rotation();
261 d->m_direction = direction(); 261 d->m_direction = direction();
262 break; 262 break;
263 case Model_Zaurus_SLB600: // fallthrough 263 case Model_Zaurus_SLB600: // fallthrough
264 case Model_Zaurus_SL5000: // fallthrough 264 case Model_Zaurus_SL5000: // fallthrough
265 case Model_Zaurus_SL5500: // fallthrough 265 case Model_Zaurus_SL5500: // fallthrough
266 default: 266 default:
267 d->m_rotation = Rot270; 267 d->m_rotation = Rot270;
268 } 268 }
269 269
270 // set default qte driver 270 // set default qte driver
271 switch( d->m_model ) 271 switch( d->m_model )
272 { 272 {
273 case Model_Zaurus_SLC7x0: 273 case Model_Zaurus_SLC7x0:
274 d->m_qteDriver = "W100"; 274 d->m_qteDriver = "W100";
275 break; 275 break;
276 default: 276 default:
277 d->m_qteDriver = "Transformed"; 277 d->m_qteDriver = "Transformed";
278 } 278 }
279 279
280 m_leds[0] = Led_Off; 280 m_leds[0] = Led_Off;
281 281
282 if ( m_embedix ) 282 if ( m_embedix )
283 qDebug( "Zaurus::init() - Using the 2.4 Embedix HAL on a %s", (const char*) d->m_modelstr ); 283 qDebug( "Zaurus::init() - Using the 2.4 Embedix HAL on a %s", (const char*) d->m_modelstr );
284 else 284 else
285 qDebug( "Zaurus::init() - Using the 2.6 OpenZaurus HAL on a %s", (const char*) d->m_modelstr ); 285 qDebug( "Zaurus::init() - Using the 2.6 OpenZaurus HAL on a %s", (const char*) d->m_modelstr );
286} 286}
287 287
288void Zaurus::initButtons() 288void Zaurus::initButtons()
289{ 289{
290 if ( d->m_buttons ) 290 if ( d->m_buttons )
291 return; 291 return;
292 292
293 d->m_buttons = new QValueList <ODeviceButton>; 293 d->m_buttons = new QValueList <ODeviceButton>;
294 294
295 struct z_button * pz_buttons; 295 struct z_button * pz_buttons;
296 int buttoncount; 296 int buttoncount;
297 switch ( d->m_model ) 297 switch ( d->m_model )
298 { 298 {
299 case Model_Zaurus_SL6000: 299 case Model_Zaurus_SL6000:
300 pz_buttons = z_buttons_6000; 300 pz_buttons = z_buttons_6000;
301 buttoncount = ARRAY_SIZE(z_buttons_6000); 301 buttoncount = ARRAY_SIZE(z_buttons_6000);
302 break; 302 break;
303 case Model_Zaurus_SLC3100: // fallthrough 303 case Model_Zaurus_SLC3100: // fallthrough
304 case Model_Zaurus_SLC3000: // fallthrough 304 case Model_Zaurus_SLC3000: // fallthrough
305 case Model_Zaurus_SLC1000: // fallthrough 305 case Model_Zaurus_SLC1000: // fallthrough
306 case Model_Zaurus_SLC7x0: 306 case Model_Zaurus_SLC7x0:
307 if ( isQWS( ) ) { 307 if ( isQWS( ) ) {
308 addPreHandler(this); // hinge-sensor-handler 308 addPreHandler(this); // hinge-sensor-handler
309 } 309 }
310 pz_buttons = z_buttons_c700; 310 pz_buttons = z_buttons_c700;
311 buttoncount = ARRAY_SIZE(z_buttons_c700); 311 buttoncount = ARRAY_SIZE(z_buttons_c700);
312 break; 312 break;
313 default: 313 default:
314 pz_buttons = z_buttons; 314 pz_buttons = z_buttons;
315 buttoncount = ARRAY_SIZE(z_buttons); 315 buttoncount = ARRAY_SIZE(z_buttons);
316 break; 316 break;
317 } 317 }
318 318
319 for ( int i = 0; i < buttoncount; i++ ) { 319 for ( int i = 0; i < buttoncount; i++ ) {
320 struct z_button *zb = pz_buttons + i; 320 struct z_button *zb = pz_buttons + i;
321 ODeviceButton b; 321 ODeviceButton b;
322 322
323 b.setKeycode( zb->code ); 323 b.setKeycode( zb->code );
324 b.setUserText( QObject::tr( "Button", zb->utext )); 324 b.setUserText( QObject::tr( "Button", zb->utext ));
325 b.setPixmap( OResource::loadPixmap( zb->pix )); 325 b.setPixmap( OResource::loadPixmap( zb->pix ));
326 b.setFactoryPresetPressedAction( OQCopMessage( makeChannel ( zb->fpressedservice ), zb->fpressedaction )); 326 b.setFactoryPresetPressedAction( OQCopMessage( makeChannel ( zb->fpressedservice ), zb->fpressedaction ));
327 b.setFactoryPresetHeldAction( OQCopMessage( makeChannel ( zb->fheldservice ), zb->fheldaction )); 327 b.setFactoryPresetHeldAction( OQCopMessage( makeChannel ( zb->fheldservice ), zb->fheldaction ));
328 d->m_buttons->append( b ); 328 d->m_buttons->append( b );
329 } 329 }
330 330
331 reloadButtonMapping(); 331 reloadButtonMapping();
332} 332}
333 333
334 334
335 335
336typedef struct sharp_led_status { 336typedef struct sharp_led_status {
337 int which; /* select which LED status is wanted. */ 337 int which; /* select which LED status is wanted. */
338 int status; /* set new led status if you call SHARP_LED_SETSTATUS */ 338 int status; /* set new led status if you call SHARP_LED_SETSTATUS */
339} sharp_led_status; 339} sharp_led_status;
340 340
341void Zaurus::buzzer( int sound ) 341void Zaurus::buzzer( int sound )
342{ 342{
343#ifndef QT_NO_SOUND 343#ifndef QT_NO_SOUND
344 Sound *snd = 0; 344 Sound *snd = 0;
345 345
346 // All devices except SL5500 have a DSP device 346 // All devices except SL5500 have a DSP device
347 if ( d->m_model != Model_Zaurus_SL5000 347 if ( d->m_model != Model_Zaurus_SL5000
348 && d->m_model != Model_Zaurus_SL5500 ) { 348 && d->m_model != Model_Zaurus_SL5500 ) {
349 349
350 switch ( sound ){ 350 switch ( sound ){
351 case SHARP_BUZ_TOUCHSOUND: { 351 case SHARP_BUZ_TOUCHSOUND: {
352 static Sound touch_sound("touchsound"); 352 static Sound touch_sound("touchsound");
353 snd = &touch_sound; 353 snd = &touch_sound;
354 } 354 }
355 break; 355 break;
356 case SHARP_BUZ_KEYSOUND: { 356 case SHARP_BUZ_KEYSOUND: {
357 static Sound key_sound( "keysound" ); 357 static Sound key_sound( "keysound" );
358 snd = &key_sound; 358 snd = &key_sound;
359 } 359 }
360 break; 360 break;
361 case SHARP_BUZ_SCHEDULE_ALARM: 361 case SHARP_BUZ_SCHEDULE_ALARM:
362 default: { 362 default: {
363 static Sound alarm_sound("alarm"); 363 static Sound alarm_sound("alarm");
364 snd = &alarm_sound; 364 snd = &alarm_sound;
365 } 365 }
366 break; 366 break;
367 } 367 }
368 } 368 }
369 369
370 // If a soundname is defined, we expect that this device has 370 // If a soundname is defined, we expect that this device has
371 // sound capabilities.. Otherwise we expect to have the buzzer 371 // sound capabilities.. Otherwise we expect to have the buzzer
372 // device.. 372 // device..
373 if ( snd && snd->isFinished() ){ 373 if ( snd && snd->isFinished() ){
374 changeMixerForAlarm( 0, "/dev/sound/mixer", snd ); 374 changeMixerForAlarm( 0, "/dev/sound/mixer", snd );
375 snd->play(); 375 snd->play();
376 } else if( !snd ) { 376 } else if( !snd ) {
377 int fd = ::open ( "/dev/sharp_buz", O_WRONLY|O_NONBLOCK ); 377 int fd = ::open ( "/dev/sharp_buz", O_WRONLY|O_NONBLOCK );
378 378
379 if ( fd >= 0 ) { 379 if ( fd >= 0 ) {
380 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); 380 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound );
381 ::close ( fd ); 381 ::close ( fd );
382 } 382 }
383 383
384 } 384 }
385#endif 385#endif
386} 386}
387 387
388 388
389void Zaurus::playAlarmSound() 389void Zaurus::playAlarmSound()
390{ 390{
391 buzzer( SHARP_BUZ_SCHEDULE_ALARM ); 391 buzzer( SHARP_BUZ_SCHEDULE_ALARM );
392} 392}
393 393
394void Zaurus::playTouchSound() 394void Zaurus::playTouchSound()
395{ 395{
396 buzzer( SHARP_BUZ_TOUCHSOUND ); 396 buzzer( SHARP_BUZ_TOUCHSOUND );
397} 397}
398 398
399void Zaurus::playKeySound() 399void Zaurus::playKeySound()
400{ 400{
401 buzzer( SHARP_BUZ_KEYSOUND ); 401 buzzer( SHARP_BUZ_KEYSOUND );
402} 402}
403 403
404 404
405QValueList <OLed> Zaurus::ledList() const 405QValueList <OLed> Zaurus::ledList() const
406{ 406{
407 QValueList <OLed> vl; 407 QValueList <OLed> vl;
408 vl << Led_Mail; 408 vl << Led_Mail;
409 return vl; 409 return vl;
410} 410}
411 411
412QValueList <OLedState> Zaurus::ledStateList( OLed l ) const 412QValueList <OLedState> Zaurus::ledStateList( OLed l ) const
413{ 413{
414 QValueList <OLedState> vl; 414 QValueList <OLedState> vl;
415 415
416 if ( l == Led_Mail ) 416 if ( l == Led_Mail )
417 vl << Led_Off << Led_On << Led_BlinkSlow; 417 vl << Led_Off << Led_On << Led_BlinkSlow;
418 return vl; 418 return vl;
419} 419}
420 420
421OLedState Zaurus::ledState( OLed which ) const 421OLedState Zaurus::ledState( OLed which ) const
422{ 422{
423 if ( which == Led_Mail ) 423 if ( which == Led_Mail )
424 return m_leds [0]; 424 return m_leds [0];
425 else 425 else
426 return Led_Off; 426 return Led_Off;
427} 427}
428 428
429bool Zaurus::setLedState( OLed which, OLedState st ) 429bool Zaurus::setLedState( OLed which, OLedState st )
430{ 430{
431 // Currently not supported on non_embedix kernels 431 // Currently not supported on non_embedix kernels
432 if (!m_embedix) 432 if (!m_embedix)
433 { 433 {
434 qDebug( "Zaurus::setLedState: ODevice handling for non-embedix kernels not yet implemented" ); 434 qDebug( "Zaurus::setLedState: ODevice handling for non-embedix kernels not yet implemented" );
435 return false; 435 return false;
436 } 436 }
437 437
438 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); 438 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK );
439 439
440 if ( which == Led_Mail ) { 440 if ( which == Led_Mail ) {
441 if ( fd >= 0 ) { 441 if ( fd >= 0 ) {
442 struct sharp_led_status leds; 442 struct sharp_led_status leds;
443 ::memset ( &leds, 0, sizeof( leds )); 443 ::memset ( &leds, 0, sizeof( leds ));
444 leds. which = SHARP_LED_MAIL_EXISTS; 444 leds. which = SHARP_LED_MAIL_EXISTS;
445 bool ok = true; 445 bool ok = true;
446 446
447 switch ( st ) { 447 switch ( st ) {
448 case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; 448 case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break;
449 case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; 449 case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break;
450 case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; 450 case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break;
451 default : ok = false; 451 default : ok = false;
452 } 452 }
453 453
454 if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { 454 if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) {
455 m_leds [0] = st; 455 m_leds [0] = st;
456 return true; 456 return true;
457 } 457 }
458 } 458 }
459 } 459 }
460 return false; 460 return false;
461} 461}
462 462
463int Zaurus::displayBrightnessResolution() const 463int Zaurus::displayBrightnessResolution() const
464{ 464{
465 int res = 1; 465 int res = 1;
466 if (m_embedix) 466 if (m_embedix)
467 { 467 {
468 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_RDWR|O_NONBLOCK ); 468 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_RDWR|O_NONBLOCK );
469 if ( fd ) 469 if ( fd )
470 { 470 {
471 int value = ::ioctl( fd, SHARP_FL_IOCTL_GET_STEP, 0 ); 471 int value = ::ioctl( fd, SHARP_FL_IOCTL_GET_STEP, 0 );
472 ::close( fd ); 472 ::close( fd );
473 return value ? value : res; 473 return value ? value : res;
474 } 474 }
475 } 475 }
476 else 476 else
477 { 477 {
478 int fd = ::open( m_backlightdev + "max_brightness", O_RDONLY|O_NONBLOCK ); 478 int fd = ::open( m_backlightdev + "max_brightness", O_RDONLY|O_NONBLOCK );
479 if ( fd ) 479 if ( fd )
480 { 480 {
481 char buf[100]; 481 char buf[100];
482 if ( ::read( fd, &buf[0], sizeof buf ) ) ::sscanf( &buf[0], "%d", &res ); 482 if ( ::read( fd, &buf[0], sizeof buf ) ) ::sscanf( &buf[0], "%d", &res );
483 ::close( fd ); 483 ::close( fd );
484 } 484 }
485 } 485 }
486 return res; 486 return res;
487} 487}
488 488
489bool Zaurus::setDisplayBrightness( int bright ) 489bool Zaurus::setDisplayBrightness( int bright )
490{ 490{
491 //qDebug( "Zaurus::setDisplayBrightness( %d )", bright ); 491 //qDebug( "Zaurus::setDisplayBrightness( %d )", bright );
492 bool res = false; 492 bool res = false;
493 493
494 if ( bright > 255 ) bright = 255; 494 if ( bright > 255 ) bright = 255;
495 if ( bright < 0 ) bright = 0; 495 if ( bright < 0 ) bright = 0;
496 496
497 int numberOfSteps = displayBrightnessResolution(); 497 int numberOfSteps = displayBrightnessResolution();
498 int val = ( bright == 1 ) ? 1 : ( bright * numberOfSteps ) / 255; 498 int val = ( bright == 1 ) ? 1 : ( bright * numberOfSteps ) / 255;
499 499
500 if ( m_embedix ) 500 if ( m_embedix )
501 { 501 {
502 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK ); 502 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK );
503 if ( fd ) 503 if ( fd )
504 { 504 {
505 res = ( ::ioctl( fd, SHARP_FL_IOCTL_STEP_CONTRAST, val ) == 0 ); 505 res = ( ::ioctl( fd, SHARP_FL_IOCTL_STEP_CONTRAST, val ) == 0 );
506 ::close( fd ); 506 ::close( fd );
507 } 507 }
508 } 508 }
509 else 509 else
510 { 510 {
511 int fd = ::open( m_backlightdev + "brightness", O_WRONLY|O_NONBLOCK ); 511 int fd = ::open( m_backlightdev + "brightness", O_WRONLY|O_NONBLOCK );
512 if ( fd ) 512 if ( fd )
513 { 513 {
514 char buf[100]; 514 char buf[100];
515 int len = ::snprintf( &buf[0], sizeof buf, "%d", val ); 515 int len = ::snprintf( &buf[0], sizeof buf, "%d", val );
516 res = ( ::write( fd, &buf[0], len ) == 0 ); 516 res = ( ::write( fd, &buf[0], len ) == 0 );
517 ::close( fd ); 517 ::close( fd );
518 } 518 }
519 } 519 }
520 return res; 520 return res;
521} 521}
522 522
523bool Zaurus::setDisplayStatus( bool on ) 523bool Zaurus::setDisplayStatus( bool on )
524{ 524{
525 bool res = false; 525 bool res = false;
526 if ( m_embedix ) 526 if ( m_embedix )
527 { 527 {
528 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK ); 528 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK );
529 if ( fd ) 529 if ( fd )
530 { 530 {
531 int ioctlnum = on ? SHARP_FL_IOCTL_ON : SHARP_FL_IOCTL_OFF; 531 int ioctlnum = on ? SHARP_FL_IOCTL_ON : SHARP_FL_IOCTL_OFF;
532 res = ( ::ioctl ( fd, ioctlnum, 0 ) == 0 ); 532 res = ( ::ioctl ( fd, ioctlnum, 0 ) == 0 );
533 ::close ( fd ); 533 ::close ( fd );
534 } 534 }
535 } 535 }
536 else 536 else
537 { 537 {
538 int fd = ::open( m_backlightdev + "power", O_WRONLY|O_NONBLOCK ); 538 int fd = ::open( m_backlightdev + "power", O_WRONLY|O_NONBLOCK );
539 if ( fd ) 539 if ( fd )
540 { 540 {
541 char buf[10]; 541 char buf[10];
542 buf[0] = on ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN; 542 buf[0] = on ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN;
543 buf[1] = '\0'; 543 buf[1] = '\0';
544 res = ( ::write( fd, &buf[0], 2 ) == 0 ); 544 res = ( ::write( fd, &buf[0], 2 ) == 0 );
545 ::close( fd ); 545 ::close( fd );
546 } 546 }
547 } 547 }
548 return res; 548 return res;
549} 549}
550 550
551Transformation Zaurus::rotation() const 551Transformation Zaurus::rotation() const
552{ 552{
553 qDebug( "Zaurus::rotation()" ); 553 qDebug( "Zaurus::rotation()" );
554 Transformation rot; 554 Transformation rot;
555 555
556 switch ( d->m_model ) { 556 switch ( d->m_model ) {
557 case Model_Zaurus_SLC3100: // fallthrough 557 case Model_Zaurus_SLC3100: // fallthrough
558 case Model_Zaurus_SLC3000: // fallthrough 558 case Model_Zaurus_SLC3000: // fallthrough
559 case Model_Zaurus_SLC1000: 559 case Model_Zaurus_SLC1000:
560 { 560 {
561 OHingeStatus hs = readHingeSensor(); 561 OHingeStatus hs = readHingeSensor();
562 qDebug( "Zaurus::rotation() - hinge sensor = %d", (int) hs ); 562 qDebug( "Zaurus::rotation() - hinge sensor = %d", (int) hs );
563 if ( hs == CASE_PORTRAIT ) rot = Rot0; 563 if ( hs == CASE_PORTRAIT ) rot = Rot0;
564 else if ( hs == CASE_UNKNOWN ) rot = Rot270; 564 else if ( hs == CASE_UNKNOWN ) rot = Rot270;
565 else rot = Rot270; 565 else rot = Rot270;
566 } 566 }
567 break; 567 break;
568 568
569 // SLC7x0 needs a special case here, because we were able to set the W100 569 // SLC7x0 needs a special case here, because we were able to set the W100
570 // hardware default rotation on kernel 2.6 to Rot0 570 // hardware default rotation on kernel 2.6 to Rot0
571 case Model_Zaurus_SLC7x0: 571 case Model_Zaurus_SLC7x0:
572 { 572 {
573 OHingeStatus hs = readHingeSensor(); 573 OHingeStatus hs = readHingeSensor();
574 qDebug( "Zaurus::rotation() - hinge sensor = %d", (int) hs ); 574 qDebug( "Zaurus::rotation() - hinge sensor = %d", (int) hs );
575 575
576 if ( m_embedix ) 576 if ( m_embedix )
577 { 577 {
578 if ( hs == CASE_PORTRAIT ) rot = Rot0; 578 if ( hs == CASE_PORTRAIT ) rot = Rot0;
579 else if ( hs == CASE_UNKNOWN ) rot = Rot270; 579 else if ( hs == CASE_UNKNOWN ) rot = Rot270;
580 else rot = Rot270; 580 else rot = Rot270;
581 } 581 }
582 else 582 else
583 { 583 {
584 if ( hs == CASE_PORTRAIT ) rot = Rot90; 584 if ( hs == CASE_PORTRAIT ) rot = Rot90;
585 else if ( hs == CASE_UNKNOWN ) rot = Rot0; 585 else if ( hs == CASE_UNKNOWN ) rot = Rot0;
586 else rot = Rot0; 586 else rot = Rot0;
587 } 587 }
588 } 588 }
589 break; 589 break;
590 case Model_Zaurus_SL6000: 590 case Model_Zaurus_SL6000:
591 case Model_Zaurus_SLB600: 591 case Model_Zaurus_SLB600:
592 case Model_Zaurus_SLA300: 592 case Model_Zaurus_SLA300:
593 case Model_Zaurus_SL5500: 593 case Model_Zaurus_SL5500:
594 case Model_Zaurus_SL5000: 594 case Model_Zaurus_SL5000:
595 default: 595 default:
596 rot = d->m_rotation; 596 rot = d->m_rotation;
597 break; 597 break;
598 } 598 }
599 599
600 return rot; 600 return rot;
601} 601}
602ODirection Zaurus::direction() const 602ODirection Zaurus::direction() const
603{ 603{
604 ODirection dir; 604 ODirection dir;
605 605
606 switch ( d->m_model ) { 606 switch ( d->m_model ) {
607 case Model_Zaurus_SLC3100: // fallthrough 607 case Model_Zaurus_SLC3100: // fallthrough
608 case Model_Zaurus_SLC3000: // fallthrough 608 case Model_Zaurus_SLC3000: // fallthrough
609 case Model_Zaurus_SLC1000: // fallthrough 609 case Model_Zaurus_SLC1000: // fallthrough
610 case Model_Zaurus_SLC7x0: { 610 case Model_Zaurus_SLC7x0: {
611 OHingeStatus hs = readHingeSensor(); 611 OHingeStatus hs = readHingeSensor();
612 if ( hs == CASE_PORTRAIT ) dir = CCW; 612 if ( hs == CASE_PORTRAIT ) dir = CCW;
613 else if ( hs == CASE_UNKNOWN ) dir = CCW; 613 else if ( hs == CASE_UNKNOWN ) dir = CCW;
614 else dir = CW; 614 else dir = CW;
615 } 615 }
616 break; 616 break;
617 case Model_Zaurus_SL6000: 617 case Model_Zaurus_SL6000:
618 case Model_Zaurus_SLA300: 618 case Model_Zaurus_SLA300:
619 case Model_Zaurus_SLB600: 619 case Model_Zaurus_SLB600:
620 case Model_Zaurus_SL5500: 620 case Model_Zaurus_SL5500:
621 case Model_Zaurus_SL5000: 621 case Model_Zaurus_SL5000:
622 default: dir = d->m_direction; 622 default: dir = d->m_direction;
623 break; 623 break;
624 } 624 }
625 return dir; 625 return dir;
626 626
627} 627}
628 628
629bool Zaurus::hasHingeSensor() const 629bool Zaurus::hasHingeSensor() const
630{ 630{
631 return d->m_model == Model_Zaurus_SLC7x0 || 631 return d->m_model == Model_Zaurus_SLC7x0 ||
632 d->m_model == Model_Zaurus_SLC3100 || 632 d->m_model == Model_Zaurus_SLC3100 ||
633 d->m_model == Model_Zaurus_SLC3000 || 633 d->m_model == Model_Zaurus_SLC3000 ||
634 d->m_model == Model_Zaurus_SLC1000; 634 d->m_model == Model_Zaurus_SLC1000;
635} 635}
636 636
637OHingeStatus Zaurus::readHingeSensor() const 637OHingeStatus Zaurus::readHingeSensor() const
638{ 638{
639 if (m_embedix) 639 if (m_embedix)
640 { 640 {
641 int handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK); 641 int handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK);
642 if (handle == -1) 642 if (handle == -1)
643 { 643 {
644 qWarning("Zaurus::readHingeSensor() - failed (%s)", "unknown reason" ); //FIXME: use strerror 644 qWarning("Zaurus::readHingeSensor() - failed (%s)", "unknown reason" ); //FIXME: use strerror
645 return CASE_UNKNOWN; 645 return CASE_UNKNOWN;
646 } 646 }
647 else 647 else
648 { 648 {
649 int retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION); 649 int retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION);
650 ::close (handle); 650 ::close (handle);
651 if ( retval == CASE_CLOSED || retval == CASE_PORTRAIT || retval == CASE_LANDSCAPE ) 651 if ( retval == CASE_CLOSED || retval == CASE_PORTRAIT || retval == CASE_LANDSCAPE )
652 { 652 {
653 qDebug( "Zaurus::readHingeSensor() - result = %d", retval ); 653 qDebug( "Zaurus::readHingeSensor() - result = %d", retval );
654 return static_cast<OHingeStatus>( retval ); 654 return static_cast<OHingeStatus>( retval );
655 } 655 }
656 else 656 else
657 { 657 {
658 qWarning("Zaurus::readHingeSensor() - couldn't compute hinge status!" ); 658 qWarning("Zaurus::readHingeSensor() - couldn't compute hinge status!" );
659 return CASE_UNKNOWN; 659 return CASE_UNKNOWN;
660 } 660 }
661 } 661 }
662 } 662 }
663 else 663 else
664 { 664 {
665 // corgi keyboard is event source 0 in OZ kernel 2.6 665 // corgi keyboard is event source 0 in OZ kernel 2.6
666 OInputDevice* keyboard = OInputSystem::instance()->device( "event0" ); 666 OInputDevice* keyboard = OInputSystem::instance()->device( "event0" );
667 if ( keyboard && keyboard->isHeld( OInputDevice::Key_KP0 ) ) return CASE_LANDSCAPE; 667 if ( keyboard && keyboard->isHeld( OInputDevice::Key_KP0 ) ) return CASE_LANDSCAPE;
668 else if ( keyboard && keyboard->isHeld( OInputDevice::Key_KP1 ) ) return CASE_PORTRAIT; 668 else if ( keyboard && keyboard->isHeld( OInputDevice::Key_KP1 ) ) return CASE_PORTRAIT;
669 else if ( keyboard && keyboard->isHeld( OInputDevice::Key_KP2 ) ) return CASE_CLOSED; 669 else if ( keyboard && keyboard->isHeld( OInputDevice::Key_KP2 ) ) return CASE_CLOSED;
670 qWarning("Zaurus::readHingeSensor() - couldn't compute hinge status!" ); 670 qWarning("Zaurus::readHingeSensor() - couldn't compute hinge status!" );
671 return CASE_UNKNOWN; 671 return CASE_UNKNOWN;
672 } 672 }
673} 673}
674 674
675/* 675/*
676 * Take code from iPAQ device. 676 * Take code from iPAQ device.
677 * That way we switch the cursor directions depending on status of hinge sensor, eg. hardware direction. 677 * That way we switch the cursor directions depending on status of hinge sensor, eg. hardware direction.
678 * I hope that is ok - Alwin 678 * I hope that is ok - Alwin
679 */ 679 */
680bool Zaurus::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) 680bool Zaurus::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat )
681{ 681{
682 int newkeycode = keycode; 682 int newkeycode = keycode;
683 683
684 if ( !hasHingeSensor() ) return false; 684 if ( !hasHingeSensor() ) return false;
685 685
686 /* map cursor keys depending on the hinge status */ 686 /* map cursor keys depending on the hinge status */
687 switch ( keycode ) { 687 switch ( keycode ) {
688 // Rotate cursor keys 688 // Rotate cursor keys
689 case Key_Left : 689 case Key_Left :
690 case Key_Right: 690 case Key_Right:
691 case Key_Up : 691 case Key_Up :
692 case Key_Down : 692 case Key_Down :
693 { 693 {
694 if (rotation()==Rot90) { 694 if (rotation()==Rot90) {
695 newkeycode = Key_Left + ( keycode - Key_Left + 3 ) % 4; 695 newkeycode = Key_Left + ( keycode - Key_Left + 3 ) % 4;
696 } 696 }
697 } 697 }
698 break; 698 break;
699 699
700 } 700 }
701 if (newkeycode!=keycode) { 701 if (newkeycode!=keycode) {
702 if ( newkeycode != Key_unknown ) { 702 if ( newkeycode != Key_unknown ) {
703 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); 703 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat );
704 } 704 }
705 return true; 705 return true;
706 } 706 }
707 return false; 707 return false;
708} 708}
709 709
710bool Zaurus::suspend() { 710bool Zaurus::suspend() {
711 if ( !isQWS( ) ) // only qwsserver is allowed to suspend 711 if ( !isQWS( ) ) // only qwsserver is allowed to suspend
712 return false; 712 return false;
713 713
714 bool res = false; 714 bool res = false;
715 { 715 QCopChannel::send( "QPE/System", "aboutToSuspend()" );
716 QCopEnvelope( "QPE/System", "aboutToSuspend()" );
717 }
718 qApp->processEvents(); // ensure the qcop call is being processed asap
719 716
720 struct timeval tvs, tvn; 717 struct timeval tvs, tvn;
721 ::gettimeofday ( &tvs, 0 ); 718 ::gettimeofday ( &tvs, 0 );
722 719
723 ::sync(); // flush fs caches 720 ::sync(); // flush fs caches
724 res = ( ::system ( "apm --suspend" ) == 0 ); 721 res = ( ::system ( "apm --suspend" ) == 0 );
725 722
726 // This is needed because some apm implementations are asynchronous and we 723 // This is needed because some apm implementations are asynchronous and we
727 // can not be sure when exactly the device is really suspended 724 // can not be sure when exactly the device is really suspended
728 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists. 725 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists.
729 // on non embedix eg. 2.6 kernel line apm is synchronous so we don't need it here. 726 // on non embedix eg. 2.6 kernel line apm is synchronous so we don't need it here.
730 727
731 if ( res && m_embedix) { 728 if ( res && m_embedix) {
732 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed 729 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed
733 ::usleep ( 200 * 1000 ); 730 ::usleep ( 200 * 1000 );
734 ::gettimeofday ( &tvn, 0 ); 731 ::gettimeofday ( &tvn, 0 );
735 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut ); 732 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < m_timeOut );
736 } 733 }
737 734
738 { 735 QCopChannel::send( "QPE/System", "returnFromSuspend()" );
739 QCopEnvelope( "QPE/System", "returnFromSuspend()" );
740 }
741 qApp->processEvents(); // ensure the qcop call is being processed asap
742 736
743 return res; 737 return res;
744} 738}