author | mickeyl <mickeyl> | 2005-08-27 22:40:41 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-08-27 22:40:41 (UTC) |
commit | 43217700cc9b23519776a27661fbf0c29a7d100d (patch) (unidiff) | |
tree | 566f54414b7148c519bf3781f723a269b33c32e1 | |
parent | 85bddcabafcf7a0529e3738f306d63988b7dcbbc (diff) | |
download | opie-43217700cc9b23519776a27661fbf0c29a7d100d.zip opie-43217700cc9b23519776a27661fbf0c29a7d100d.tar.gz opie-43217700cc9b23519776a27661fbf0c29a7d100d.tar.bz2 |
call QCopChannel::send() instead of using a QCopEnvelop
-rw-r--r-- | libopie2/opiecore/device/odevice_abstractmobiledevice.cpp | 16 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_zaurus.cpp | 24 |
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 | ||
42 | namespace Opie { | 43 | namespace Opie { |
43 | namespace Core { | 44 | namespace Core { |
44 | OAbstractMobileDevice::OAbstractMobileDevice() | 45 | OAbstractMobileDevice::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 | */ |
55 | void OAbstractMobileDevice::setAPMTimeOut( int time ) { | 56 | void OAbstractMobileDevice::setAPMTimeOut( int time ) { |
56 | m_timeOut = time; | 57 | m_timeOut = time; |
57 | } | 58 | } |
58 | 59 | ||
59 | 60 | ||
60 | bool OAbstractMobileDevice::suspend() { | 61 | bool 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 | ||
110 | bool OAbstractMobileDevice::setDisplayStatus ( bool on ) { | 104 | bool 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,140 +1,140 @@ | |||
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 | ||
58 | using namespace Opie::Core; | 58 | using namespace Opie::Core; |
59 | using namespace Opie::Core::Internal; | 59 | using namespace Opie::Core::Internal; |
60 | 60 | ||
61 | struct z_button z_buttons [] = { | 61 | struct 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 | ||
84 | struct z_button z_buttons_c700 [] = { | 84 | struct 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 | ||
117 | struct z_button z_buttons_6000 [] = { | 117 | struct 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, |
@@ -619,126 +619,120 @@ ODirection Zaurus::direction() const | |||
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 | ||
629 | bool Zaurus::hasHingeSensor() const | 629 | bool 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 | ||
637 | OHingeStatus Zaurus::readHingeSensor() const | 637 | OHingeStatus 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 | */ |
680 | bool Zaurus::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) | 680 | bool 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 | ||
710 | bool Zaurus::suspend() { | 710 | bool 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 | } |