-rw-r--r-- | libopie2/opiecore/device/odevice.h | 2 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_ipaq.cpp | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/libopie2/opiecore/device/odevice.h b/libopie2/opiecore/device/odevice.h index 0c78277..2566979 100644 --- a/libopie2/opiecore/device/odevice.h +++ b/libopie2/opiecore/device/odevice.h | |||
@@ -9,129 +9,129 @@ | |||
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; either version 2 of the License, | 11 | - . .-<_> .<> Foundation; either version 2 of the License, |
12 | ._= =} : or (at your option) any later version. | 12 | ._= =} : or (at your option) any later version. |
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 | #ifndef ODEVICE_H_ | 30 | #ifndef ODEVICE_H_ |
31 | #define ODEVICE_H_ | 31 | #define ODEVICE_H_ |
32 | 32 | ||
33 | /* OPIE */ | 33 | /* OPIE */ |
34 | #include <opie2/odevicebutton.h> | 34 | #include <opie2/odevicebutton.h> |
35 | #include <qpe/qpeapplication.h> /* for Transformation enum.. */ | 35 | #include <qpe/qpeapplication.h> /* for Transformation enum.. */ |
36 | 36 | ||
37 | /* QT */ | 37 | /* QT */ |
38 | #include <qnamespace.h> | 38 | #include <qnamespace.h> |
39 | #include <qobject.h> | 39 | #include <qobject.h> |
40 | #include <qstring.h> | 40 | #include <qstring.h> |
41 | 41 | ||
42 | 42 | ||
43 | #include <qstrlist.h> | 43 | #include <qstrlist.h> |
44 | #include <qwindowsystem_qws.h> | 44 | #include <qwindowsystem_qws.h> |
45 | 45 | ||
46 | 46 | ||
47 | class Sound; | 47 | class Sound; |
48 | 48 | ||
49 | namespace Opie{ | 49 | namespace Opie{ |
50 | namespace Core{ | 50 | namespace Core{ |
51 | 51 | ||
52 | class ODeviceData; | 52 | class ODeviceData; |
53 | /** | 53 | /** |
54 | * The available devices | 54 | * The available devices |
55 | */ | 55 | */ |
56 | enum OModel { | 56 | enum OModel { |
57 | Model_Unknown, // = 0 | 57 | Model_Unknown, // = 0 |
58 | 58 | ||
59 | Model_Series_Mask = 0xffff0000, | 59 | Model_Series_Mask = 0xffff0000, |
60 | 60 | ||
61 | Model_iPAQ = ( 1 << 16 ), | 61 | Model_iPAQ = ( 1 << 16 ), |
62 | 62 | ||
63 | Model_iPAQ_All = ( Model_iPAQ | 0xffff ), | 63 | Model_iPAQ_All = ( Model_iPAQ | 0xffff ), |
64 | Model_iPAQ_H31xx = ( Model_iPAQ | 0x0001 ), | 64 | Model_iPAQ_H31xx = ( Model_iPAQ | 0x0001 ), |
65 | Model_iPAQ_H36xx = ( Model_iPAQ | 0x0002 ), | 65 | Model_iPAQ_H36xx = ( Model_iPAQ | 0x0002 ), |
66 | Model_iPAQ_H37xx = ( Model_iPAQ | 0x0003 ), | 66 | Model_iPAQ_H37xx = ( Model_iPAQ | 0x0003 ), |
67 | Model_iPAQ_H38xx = ( Model_iPAQ | 0x0004 ), | 67 | Model_iPAQ_H38xx = ( Model_iPAQ | 0x0004 ), |
68 | Model_iPAQ_H39xx = ( Model_iPAQ | 0x0005 ), | 68 | Model_iPAQ_H39xx = ( Model_iPAQ | 0x0005 ), |
69 | Model_iPAQ_H5xxx = ( Model_iPAQ | 0x0006 ), | 69 | Model_iPAQ_H5xxx = ( Model_iPAQ | 0x0006 ), |
70 | Model_iPAQ_H22xx = ( Model_iPAQ | 0x0007 ), | 70 | Model_iPAQ_H22xx = ( Model_iPAQ | 0x0007 ), |
71 | Model_iPAQ_H191x = ( Model_iPAQ | 0x0008 ), | 71 | Model_iPAQ_H191x = ( Model_iPAQ | 0x0008 ), |
72 | Model_iPAQ_H1940 = ( Model_iPAQ | 0x0009 ), | 72 | Model_iPAQ_H1940 = ( Model_iPAQ | 0x0009 ), |
73 | 73 | Model_iPAQ_HX4700 = ( Model_iPAQ | 0x000A ), | |
74 | Model_Jornada = ( 6 << 16 ), | 74 | Model_Jornada = ( 6 << 16 ), |
75 | Model_Jornada_56x = ( Model_Jornada | 0x0001 ), | 75 | Model_Jornada_56x = ( Model_Jornada | 0x0001 ), |
76 | Model_Jornada_720 = ( Model_Jornada | 0x0002 ), | 76 | Model_Jornada_720 = ( Model_Jornada | 0x0002 ), |
77 | 77 | ||
78 | Model_Zaurus = ( 2 << 16 ), | 78 | Model_Zaurus = ( 2 << 16 ), |
79 | 79 | ||
80 | Model_Zaurus_SL5000 = ( Model_Zaurus | 0x0001 ), | 80 | Model_Zaurus_SL5000 = ( Model_Zaurus | 0x0001 ), |
81 | Model_Zaurus_SL5500 = ( Model_Zaurus | 0x0002 ), | 81 | Model_Zaurus_SL5500 = ( Model_Zaurus | 0x0002 ), |
82 | Model_Zaurus_SLA300 = ( Model_Zaurus | 0x0003 ), | 82 | Model_Zaurus_SLA300 = ( Model_Zaurus | 0x0003 ), |
83 | Model_Zaurus_SLB600 = ( Model_Zaurus | 0x0004 ), | 83 | Model_Zaurus_SLB600 = ( Model_Zaurus | 0x0004 ), |
84 | Model_Zaurus_SLC7x0 = ( Model_Zaurus | 0x0005 ), | 84 | Model_Zaurus_SLC7x0 = ( Model_Zaurus | 0x0005 ), |
85 | Model_Zaurus_SL6000 = ( Model_Zaurus | 0x0006 ), | 85 | Model_Zaurus_SL6000 = ( Model_Zaurus | 0x0006 ), |
86 | Model_Zaurus_SLC3000 = ( Model_Zaurus | 0x0007 ), | 86 | Model_Zaurus_SLC3000 = ( Model_Zaurus | 0x0007 ), |
87 | Model_Zaurus_SLC1000 = ( Model_Zaurus | 0x0008 ), | 87 | Model_Zaurus_SLC1000 = ( Model_Zaurus | 0x0008 ), |
88 | Model_Zaurus_SLC3100 = ( Model_Zaurus | 0x0009 ), | 88 | Model_Zaurus_SLC3100 = ( Model_Zaurus | 0x0009 ), |
89 | 89 | ||
90 | Model_SIMpad = ( 3 << 16 ), | 90 | Model_SIMpad = ( 3 << 16 ), |
91 | 91 | ||
92 | Model_SIMpad_All = ( Model_SIMpad | 0xffff ), | 92 | Model_SIMpad_All = ( Model_SIMpad | 0xffff ), |
93 | Model_SIMpad_CL4 = ( Model_SIMpad | 0x0001 ), | 93 | Model_SIMpad_CL4 = ( Model_SIMpad | 0x0001 ), |
94 | Model_SIMpad_SL4 = ( Model_SIMpad | 0x0002 ), | 94 | Model_SIMpad_SL4 = ( Model_SIMpad | 0x0002 ), |
95 | Model_SIMpad_SLC = ( Model_SIMpad | 0x0003 ), | 95 | Model_SIMpad_SLC = ( Model_SIMpad | 0x0003 ), |
96 | Model_SIMpad_TSinus = ( Model_SIMpad | 0x0004 ), | 96 | Model_SIMpad_TSinus = ( Model_SIMpad | 0x0004 ), |
97 | 97 | ||
98 | Model_Ramses = ( 4 << 16 ), | 98 | Model_Ramses = ( 4 << 16 ), |
99 | 99 | ||
100 | Model_Ramses_All = ( Model_Ramses | 0xffff ), | 100 | Model_Ramses_All = ( Model_Ramses | 0xffff ), |
101 | Model_Ramses_MNCI = ( Model_Ramses | 0x0001 ), | 101 | Model_Ramses_MNCI = ( Model_Ramses | 0x0001 ), |
102 | Model_Ramses_MNCIRX = ( Model_Ramses | 0x0002 ), | 102 | Model_Ramses_MNCIRX = ( Model_Ramses | 0x0002 ), |
103 | 103 | ||
104 | Model_Yopy = ( 5 << 16 ), | 104 | Model_Yopy = ( 5 << 16 ), |
105 | 105 | ||
106 | Model_Yopy_All = ( Model_Yopy | 0xffff ), | 106 | Model_Yopy_All = ( Model_Yopy | 0xffff ), |
107 | Model_Yopy_3000 = ( Model_Yopy | 0x0001 ), | 107 | Model_Yopy_3000 = ( Model_Yopy | 0x0001 ), |
108 | Model_Yopy_3500 = ( Model_Yopy | 0x0002 ), | 108 | Model_Yopy_3500 = ( Model_Yopy | 0x0002 ), |
109 | Model_Yopy_3700 = ( Model_Yopy | 0x0003 ), | 109 | Model_Yopy_3700 = ( Model_Yopy | 0x0003 ), |
110 | 110 | ||
111 | Model_Beagle = ( 6 << 16 ), | 111 | Model_Beagle = ( 6 << 16 ), |
112 | 112 | ||
113 | Model_Beagle_All = ( Model_Beagle | 0xffff ), | 113 | Model_Beagle_All = ( Model_Beagle | 0xffff ), |
114 | Model_Beagle_PA100 = ( Model_Beagle | 0x0001 ), | 114 | Model_Beagle_PA100 = ( Model_Beagle | 0x0001 ), |
115 | 115 | ||
116 | Model_GenuineIntel = ( 7 << 16 ), | 116 | Model_GenuineIntel = ( 7 << 16 ), |
117 | 117 | ||
118 | Model_MyPal = ( 8 << 16 ), | 118 | Model_MyPal = ( 8 << 16 ), |
119 | 119 | ||
120 | Model_MyPal_All = ( Model_MyPal | 0xffff ), | 120 | Model_MyPal_All = ( Model_MyPal | 0xffff ), |
121 | Model_MyPal_620 = ( Model_MyPal | 0x0001 ), | 121 | Model_MyPal_620 = ( Model_MyPal | 0x0001 ), |
122 | Model_MyPal_716 = ( Model_MyPal | 0x0002 ), | 122 | Model_MyPal_716 = ( Model_MyPal | 0x0002 ), |
123 | Model_MyPal_730 = ( Model_MyPal | 0x0003 ), | 123 | Model_MyPal_730 = ( Model_MyPal | 0x0003 ), |
124 | 124 | ||
125 | Model_HTC = ( 9 << 16 ), | 125 | Model_HTC = ( 9 << 16 ), |
126 | Model_HTC_All = ( Model_HTC | 0xffff ), | 126 | Model_HTC_All = ( Model_HTC | 0xffff ), |
127 | Model_HTC_Universal = ( Model_HTC | 0x0001 ) | 127 | Model_HTC_Universal = ( Model_HTC | 0x0001 ) |
128 | }; | 128 | }; |
129 | 129 | ||
130 | /** | 130 | /** |
131 | * The vendor of the device | 131 | * The vendor of the device |
132 | */ | 132 | */ |
133 | enum OVendor { | 133 | enum OVendor { |
134 | Vendor_Unknown, | 134 | Vendor_Unknown, |
135 | 135 | ||
136 | Vendor_HP, | 136 | Vendor_HP, |
137 | Vendor_Sharp, | 137 | Vendor_Sharp, |
diff --git a/libopie2/opiecore/device/odevice_ipaq.cpp b/libopie2/opiecore/device/odevice_ipaq.cpp index a221e23..e6e3145 100644 --- a/libopie2/opiecore/device/odevice_ipaq.cpp +++ b/libopie2/opiecore/device/odevice_ipaq.cpp | |||
@@ -92,140 +92,144 @@ struct i_button ipaq_buttons [] = { | |||
92 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx | Model_iPAQ_H191x, | 92 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx | Model_iPAQ_H191x, |
93 | Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), | 93 | Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), |
94 | "devicebuttons/ipaq_contact", | 94 | "devicebuttons/ipaq_contact", |
95 | "addressbook", "raise()", | 95 | "addressbook", "raise()", |
96 | "addressbook", "beamBusinessCard()" }, | 96 | "addressbook", "beamBusinessCard()" }, |
97 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx, | 97 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx, |
98 | Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), | 98 | Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), |
99 | "devicebuttons/ipaq_menu", | 99 | "devicebuttons/ipaq_menu", |
100 | "QPE/TaskBar", "toggleMenu()", | 100 | "QPE/TaskBar", "toggleMenu()", |
101 | "QPE/TaskBar", "toggleStartMenu()" }, | 101 | "QPE/TaskBar", "toggleStartMenu()" }, |
102 | { Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, | 102 | { Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, |
103 | Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), | 103 | Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), |
104 | "devicebuttons/ipaq_mail", | 104 | "devicebuttons/ipaq_mail", |
105 | "opiemail", "raise()", | 105 | "opiemail", "raise()", |
106 | "opiemail", "newMail()" }, | 106 | "opiemail", "newMail()" }, |
107 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx | Model_iPAQ_H191x, | 107 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx | Model_iPAQ_H191x, |
108 | Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), | 108 | Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), |
109 | "devicebuttons/ipaq_home", | 109 | "devicebuttons/ipaq_home", |
110 | "QPE/Launcher", "home()", | 110 | "QPE/Launcher", "home()", |
111 | "buttonsettings", "raise()" }, | 111 | "buttonsettings", "raise()" }, |
112 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, | 112 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, |
113 | Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"), | 113 | Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"), |
114 | "devicebuttons/ipaq_record", | 114 | "devicebuttons/ipaq_record", |
115 | "QPE/VMemo", "toggleRecord()", | 115 | "QPE/VMemo", "toggleRecord()", |
116 | "sound", "raise()" }, | 116 | "sound", "raise()" }, |
117 | 117 | ||
118 | { Model_iPAQ_H191x, | 118 | { Model_iPAQ_H191x, |
119 | Qt::Key_F8, QT_TRANSLATE_NOOP("Button", "Mail Button"), | 119 | Qt::Key_F8, QT_TRANSLATE_NOOP("Button", "Mail Button"), |
120 | "devicebuttons/ipaq_mail", | 120 | "devicebuttons/ipaq_mail", |
121 | "opiemail", "raise()", | 121 | "opiemail", "raise()", |
122 | "opiemail", "newMail()" }, | 122 | "opiemail", "newMail()" }, |
123 | { Model_iPAQ_H191x, | 123 | { Model_iPAQ_H191x, |
124 | Qt::Key_F7, QT_TRANSLATE_NOOP("Button", "Record Button"), | 124 | Qt::Key_F7, QT_TRANSLATE_NOOP("Button", "Record Button"), |
125 | "devicebuttons/ipaq_record", | 125 | "devicebuttons/ipaq_record", |
126 | "QPE/VMemo", "toggleRecord()", | 126 | "QPE/VMemo", "toggleRecord()", |
127 | "sound", "raise()" }, | 127 | "sound", "raise()" }, |
128 | 128 | ||
129 | }; | 129 | }; |
130 | 130 | ||
131 | void iPAQ::init(const QString& model) | 131 | void iPAQ::init(const QString& model) |
132 | { | 132 | { |
133 | d->m_vendorstr = "HP"; | 133 | d->m_vendorstr = "HP"; |
134 | d->m_vendor = Vendor_HP; | 134 | d->m_vendor = Vendor_HP; |
135 | 135 | ||
136 | d->m_modelstr = model.mid(model.findRev('H')); | 136 | d->m_modelstr = model.mid(model.findRev('H')); |
137 | 137 | ||
138 | if ( d->m_modelstr == "H3100" ) | 138 | if ( d->m_modelstr == "H3100" ) |
139 | d->m_model = Model_iPAQ_H31xx; | 139 | d->m_model = Model_iPAQ_H31xx; |
140 | else if ( d->m_modelstr == "H3600" ) | 140 | else if ( d->m_modelstr == "H3600" ) |
141 | d->m_model = Model_iPAQ_H36xx; | 141 | d->m_model = Model_iPAQ_H36xx; |
142 | else if ( d->m_modelstr == "H3700" ) | 142 | else if ( d->m_modelstr == "H3700" ) |
143 | d->m_model = Model_iPAQ_H37xx; | 143 | d->m_model = Model_iPAQ_H37xx; |
144 | else if ( d->m_modelstr == "H3800" ) | 144 | else if ( d->m_modelstr == "H3800" ) |
145 | d->m_model = Model_iPAQ_H38xx; | 145 | d->m_model = Model_iPAQ_H38xx; |
146 | else if ( d->m_modelstr == "H3900" ) | 146 | else if ( d->m_modelstr == "H3900" ) |
147 | d->m_model = Model_iPAQ_H39xx; | 147 | d->m_model = Model_iPAQ_H39xx; |
148 | else if ( d->m_modelstr == "H5400" ) | 148 | else if ( d->m_modelstr == "H5400" ) |
149 | d->m_model = Model_iPAQ_H5xxx; | 149 | d->m_model = Model_iPAQ_H5xxx; |
150 | else if ( d->m_modelstr == "H2200" ) | 150 | else if ( d->m_modelstr == "H2200" ) |
151 | d->m_model = Model_iPAQ_H22xx; | 151 | d->m_model = Model_iPAQ_H22xx; |
152 | else if ( d->m_modelstr == "H1910" ) | 152 | else if ( d->m_modelstr == "H1910" ) |
153 | d->m_model = Model_iPAQ_H191x; | 153 | d->m_model = Model_iPAQ_H191x; |
154 | else if ( d->m_modelstr == "H1940" ) | 154 | else if ( d->m_modelstr == "H1940" ) |
155 | d->m_model = Model_iPAQ_H1940; | 155 | d->m_model = Model_iPAQ_H1940; |
156 | else if ( d->m_modelstr == "HX4700" ) | ||
157 | d->m_model = Model_iPAQ_HX4700; | ||
158 | |||
156 | else | 159 | else |
157 | d->m_model = Model_Unknown; | 160 | d->m_model = Model_Unknown; |
158 | 161 | ||
159 | switch ( d->m_model ) { | 162 | switch ( d->m_model ) { |
160 | case Model_iPAQ_H31xx: | 163 | case Model_iPAQ_H31xx: |
161 | case Model_iPAQ_H38xx: | 164 | case Model_iPAQ_H38xx: |
162 | d->m_rotation = Rot90; | 165 | d->m_rotation = Rot90; |
163 | break; | 166 | break; |
164 | case Model_iPAQ_H5xxx: | 167 | case Model_iPAQ_H5xxx: |
165 | case Model_iPAQ_H22xx: | 168 | case Model_iPAQ_H22xx: |
166 | case Model_iPAQ_H191x: | 169 | case Model_iPAQ_H191x: |
167 | case Model_iPAQ_H1940: | 170 | case Model_iPAQ_H1940: |
171 | case Model_iPAQ_HX4700: | ||
168 | d->m_rotation = Rot0; | 172 | d->m_rotation = Rot0; |
169 | break; | 173 | break; |
170 | case Model_iPAQ_H36xx: | 174 | case Model_iPAQ_H36xx: |
171 | case Model_iPAQ_H37xx: | 175 | case Model_iPAQ_H37xx: |
172 | case Model_iPAQ_H39xx: | 176 | case Model_iPAQ_H39xx: |
173 | default: | 177 | default: |
174 | d->m_rotation = Rot270; | 178 | d->m_rotation = Rot270; |
175 | break; | 179 | break; |
176 | 180 | ||
177 | } | 181 | } |
178 | 182 | ||
179 | m_leds [0] = m_leds [1] = Led_Off; | 183 | m_leds [0] = m_leds [1] = Led_Off; |
180 | 184 | ||
181 | m_power_timer = 0; | 185 | m_power_timer = 0; |
182 | 186 | ||
183 | } | 187 | } |
184 | 188 | ||
185 | void iPAQ::initButtons() | 189 | void iPAQ::initButtons() |
186 | { | 190 | { |
187 | if ( d->m_buttons ) | 191 | if ( d->m_buttons ) |
188 | return; | 192 | return; |
189 | 193 | ||
190 | if ( isQWS( ) ) { | 194 | if ( isQWS( ) ) { |
191 | addPreHandler(this); | 195 | addPreHandler(this); |
192 | } | 196 | } |
193 | 197 | ||
194 | d->m_buttons = new QValueList <ODeviceButton>; | 198 | d->m_buttons = new QValueList <ODeviceButton>; |
195 | 199 | ||
196 | for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { | 200 | for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { |
197 | i_button *ib = ipaq_buttons + i; | 201 | i_button *ib = ipaq_buttons + i; |
198 | ODeviceButton b; | 202 | ODeviceButton b; |
199 | 203 | ||
200 | if (( ib->model & d->m_model ) == d->m_model ) { | 204 | if (( ib->model & d->m_model ) == d->m_model ) { |
201 | b. setKeycode ( ib->code ); | 205 | b. setKeycode ( ib->code ); |
202 | b. setUserText ( QObject::tr ( "Button", ib->utext )); | 206 | b. setUserText ( QObject::tr ( "Button", ib->utext )); |
203 | b. setPixmap ( OResource::loadPixmap ( ib->pix )); | 207 | b. setPixmap ( OResource::loadPixmap ( ib->pix )); |
204 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib->fpressedservice ), ib->fpressedaction )); | 208 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib->fpressedservice ), ib->fpressedaction )); |
205 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib->fheldservice ), ib->fheldaction )); | 209 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib->fheldservice ), ib->fheldaction )); |
206 | 210 | ||
207 | d->m_buttons->append ( b ); | 211 | d->m_buttons->append ( b ); |
208 | } | 212 | } |
209 | } | 213 | } |
210 | reloadButtonMapping(); | 214 | reloadButtonMapping(); |
211 | } | 215 | } |
212 | 216 | ||
213 | QValueList <OLed> iPAQ::ledList() const | 217 | QValueList <OLed> iPAQ::ledList() const |
214 | { | 218 | { |
215 | QValueList <OLed> vl; | 219 | QValueList <OLed> vl; |
216 | vl << Led_Power; | 220 | vl << Led_Power; |
217 | 221 | ||
218 | if ( d->m_model == Model_iPAQ_H38xx ) | 222 | if ( d->m_model == Model_iPAQ_H38xx ) |
219 | vl << Led_BlueTooth; | 223 | vl << Led_BlueTooth; |
220 | return vl; | 224 | return vl; |
221 | } | 225 | } |
222 | 226 | ||
223 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const | 227 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const |
224 | { | 228 | { |
225 | QValueList <OLedState> vl; | 229 | QValueList <OLedState> vl; |
226 | 230 | ||
227 | if ( l == Led_Power ) | 231 | if ( l == Led_Power ) |
228 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; | 232 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; |
229 | else if ( l == Led_BlueTooth && d->m_model == Model_iPAQ_H38xx ) | 233 | else if ( l == Led_BlueTooth && d->m_model == Model_iPAQ_H38xx ) |
230 | vl << Led_Off; // << Led_On << ??? | 234 | vl << Led_Off; // << Led_On << ??? |
231 | 235 | ||
@@ -321,148 +325,157 @@ bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, b | |||
321 | m_power_timer = startTimer ( 500 ); | 325 | m_power_timer = startTimer ( 500 ); |
322 | } | 326 | } |
323 | else if ( m_power_timer ) { | 327 | else if ( m_power_timer ) { |
324 | killTimer ( m_power_timer ); | 328 | killTimer ( m_power_timer ); |
325 | m_power_timer = 0; | 329 | m_power_timer = 0; |
326 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); | 330 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); |
327 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); | 331 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); |
328 | } | 332 | } |
329 | newkeycode = Key_unknown; | 333 | newkeycode = Key_unknown; |
330 | break; | 334 | break; |
331 | } | 335 | } |
332 | } | 336 | } |
333 | 337 | ||
334 | if ( newkeycode != keycode ) { | 338 | if ( newkeycode != keycode ) { |
335 | if ( newkeycode != Key_unknown ) | 339 | if ( newkeycode != Key_unknown ) |
336 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); | 340 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); |
337 | return true; | 341 | return true; |
338 | } | 342 | } |
339 | else | 343 | else |
340 | return false; | 344 | return false; |
341 | } | 345 | } |
342 | 346 | ||
343 | void iPAQ::timerEvent ( QTimerEvent * ) | 347 | void iPAQ::timerEvent ( QTimerEvent * ) |
344 | { | 348 | { |
345 | killTimer ( m_power_timer ); | 349 | killTimer ( m_power_timer ); |
346 | m_power_timer = 0; | 350 | m_power_timer = 0; |
347 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); | 351 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); |
348 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); | 352 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); |
349 | } | 353 | } |
350 | 354 | ||
351 | 355 | ||
352 | void iPAQ::playAlarmSound() | 356 | void iPAQ::playAlarmSound() |
353 | { | 357 | { |
354 | #ifndef QT_NO_SOUND | 358 | #ifndef QT_NO_SOUND |
355 | static Sound snd ( "alarm" ); | 359 | static Sound snd ( "alarm" ); |
356 | if(!snd.isFinished()) | 360 | if(!snd.isFinished()) |
357 | return; | 361 | return; |
358 | 362 | ||
359 | changeMixerForAlarm(0, "/dev/sound/mixer", &snd ); | 363 | changeMixerForAlarm(0, "/dev/sound/mixer", &snd ); |
360 | snd. play(); | 364 | snd. play(); |
361 | #endif | 365 | #endif |
362 | } | 366 | } |
363 | 367 | ||
364 | bool iPAQ::setDisplayBrightness ( int bright ) | 368 | bool iPAQ::setDisplayBrightness ( int bright ) |
365 | { | 369 | { |
366 | bool res = false; | 370 | bool res = false; |
367 | int fd; | 371 | int fd; |
368 | 372 | ||
369 | if ( bright > 255 ) | 373 | if ( bright > 255 ) |
370 | bright = 255; | 374 | bright = 255; |
371 | if ( bright < 0 ) | 375 | if ( bright < 0 ) |
372 | bright = 0; | 376 | bright = 0; |
373 | 377 | ||
374 | QString cmdline; | 378 | QString cmdline; |
375 | 379 | ||
376 | switch ( model()) { | 380 | switch ( model()) { |
377 | case Model_iPAQ_H191x: | 381 | case Model_iPAQ_H191x: |
378 | if ( !bright ) | 382 | if ( !bright ) |
379 | cmdline = QString::fromLatin1( "echo 4 > /sys/class/backlight/pxafb/power"); | 383 | cmdline = QString::fromLatin1( "echo 4 > /sys/class/backlight/pxafb/power"); |
380 | else | 384 | else |
381 | cmdline = QString::fromLatin1( "echo 0 > /sys/class/backlight/pxafb/power; echo %1 > /sys/class/backlight/pxafb/brightness" ).arg( bright ); | 385 | cmdline = QString::fromLatin1( "echo 0 > /sys/class/backlight/pxafb/power; echo %1 > /sys/class/backlight/pxafb/brightness" ).arg( bright ); |
382 | // No Global::shellQuote as we gurantee it to be sane | 386 | // No Global::shellQuote as we gurantee it to be sane |
383 | res = ( ::system( QFile::encodeName(cmdline) ) == 0 ); | 387 | res = ( ::system( QFile::encodeName(cmdline) ) == 0 ); |
384 | break; | 388 | break; |
389 | |||
390 | case Model_iPAQ_HX4700: | ||
391 | cmdline = QString::fromLatin1( "echo %1 > /sys/class/backlight/w100fb/brightness" ).arg( bright ); | ||
392 | // No Global::shellQuote as we gurantee it to be sane | ||
393 | res = ( ::system( QFile::encodeName(cmdline) ) == 0 ); | ||
394 | break; | ||
395 | |||
396 | |||
385 | default: | 397 | default: |
386 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { | 398 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { |
387 | FLITE_IN bl; | 399 | FLITE_IN bl; |
388 | bl. mode = 1; | 400 | bl. mode = 1; |
389 | bl. pwr = bright ? 1 : 0; | 401 | bl. pwr = bright ? 1 : 0; |
390 | bl. brightness = ( bright * ( displayBrightnessResolution() - 1 ) + 127 ) / 255; | 402 | bl. brightness = ( bright * ( displayBrightnessResolution() - 1 ) + 127 ) / 255; |
391 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); | 403 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); |
392 | ::close ( fd ); | 404 | ::close ( fd ); |
393 | } | 405 | } |
394 | } | 406 | } |
395 | return res; | 407 | return res; |
396 | } | 408 | } |
397 | 409 | ||
398 | int iPAQ::displayBrightnessResolution() const | 410 | int iPAQ::displayBrightnessResolution() const |
399 | { | 411 | { |
400 | switch ( model()) { | 412 | switch ( model()) { |
401 | case Model_iPAQ_H31xx: | 413 | case Model_iPAQ_H31xx: |
402 | case Model_iPAQ_H36xx: | 414 | case Model_iPAQ_H36xx: |
403 | case Model_iPAQ_H37xx: | 415 | case Model_iPAQ_H37xx: |
404 | return 128; // really 256, but >128 could damage the LCD | 416 | return 128; // really 256, but >128 could damage the LCD |
405 | 417 | ||
406 | case Model_iPAQ_H38xx: | 418 | case Model_iPAQ_H38xx: |
407 | case Model_iPAQ_H39xx: | 419 | case Model_iPAQ_H39xx: |
408 | return 64; | 420 | return 64; |
409 | case Model_iPAQ_H5xxx: | 421 | case Model_iPAQ_H5xxx: |
422 | case Model_iPAQ_HX4700: | ||
410 | return 255; | 423 | return 255; |
411 | case Model_iPAQ_H191x: | 424 | case Model_iPAQ_H191x: |
412 | return 7; | 425 | return 7; |
413 | case Model_iPAQ_H1940: | 426 | case Model_iPAQ_H1940: |
414 | return 44; | 427 | return 44; |
415 | default: | 428 | default: |
416 | return 2; | 429 | return 2; |
417 | } | 430 | } |
418 | } | 431 | } |
419 | 432 | ||
420 | bool iPAQ::setDisplayStatus ( bool on ) | 433 | bool iPAQ::setDisplayStatus ( bool on ) |
421 | { | 434 | { |
422 | bool res = false; | 435 | bool res = false; |
423 | 436 | ||
424 | QString cmdline; | 437 | QString cmdline; |
425 | 438 | ||
426 | if ( model() == Model_iPAQ_H191x ) { | 439 | if ( model() == Model_iPAQ_H191x ) { |
427 | cmdline = QString::fromLatin1( "echo %1 > /sys/class/lcd/pxafb/power; echo %2 > /sys/class/backlight/pxafb/power").arg( on ? "0" : "4" ).arg( on ? "0" : "4" ); | 440 | cmdline = QString::fromLatin1( "echo %1 > /sys/class/lcd/pxafb/power; echo %2 > /sys/class/backlight/pxafb/power").arg( on ? "0" : "4" ).arg( on ? "0" : "4" ); |
428 | } else { | 441 | } else { |
429 | return OAbstractMobileDevice::setDisplayStatus(on); | 442 | return OAbstractMobileDevice::setDisplayStatus(on); |
430 | } | 443 | } |
431 | 444 | ||
432 | res = ( ::system( QFile::encodeName(cmdline) ) == 0 ); | 445 | res = ( ::system( QFile::encodeName(cmdline) ) == 0 ); |
433 | 446 | ||
434 | return res; | 447 | return res; |
435 | } | 448 | } |
436 | 449 | ||
437 | bool iPAQ::hasLightSensor() const | 450 | bool iPAQ::hasLightSensor() const |
438 | { | 451 | { |
439 | return true; | 452 | return true; |
440 | } | 453 | } |
441 | 454 | ||
442 | int iPAQ::readLightSensor() | 455 | int iPAQ::readLightSensor() |
443 | { | 456 | { |
444 | int fd; | 457 | int fd; |
445 | int val = -1; | 458 | int val = -1; |
446 | 459 | ||
447 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { | 460 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { |
448 | char buffer [8]; | 461 | char buffer [8]; |
449 | 462 | ||
450 | if ( ::read ( fd, buffer, 5 ) == 5 ) { | 463 | if ( ::read ( fd, buffer, 5 ) == 5 ) { |
451 | char *endptr; | 464 | char *endptr; |
452 | 465 | ||
453 | buffer [4] = 0; | 466 | buffer [4] = 0; |
454 | val = ::strtol ( buffer + 2, &endptr, 16 ); | 467 | val = ::strtol ( buffer + 2, &endptr, 16 ); |
455 | 468 | ||
456 | if ( *endptr != 0 ) | 469 | if ( *endptr != 0 ) |
457 | val = -1; | 470 | val = -1; |
458 | } | 471 | } |
459 | ::close ( fd ); | 472 | ::close ( fd ); |
460 | } | 473 | } |
461 | 474 | ||
462 | return val; | 475 | return val; |
463 | } | 476 | } |
464 | 477 | ||
465 | int iPAQ::lightSensorResolution() const | 478 | int iPAQ::lightSensorResolution() const |
466 | { | 479 | { |
467 | return 256; | 480 | return 256; |
468 | } | 481 | } |