summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/desktop.cpp31
-rw-r--r--core/launcher/desktop.h2
-rw-r--r--core/launcher/taskbar.h3
3 files changed, 28 insertions, 8 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp
index 86527f6..6def126 100644
--- a/core/launcher/desktop.cpp
+++ b/core/launcher/desktop.cpp
@@ -1,861 +1,878 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include <syslog.h> 21#include <syslog.h>
22 22
23#include "desktop.h" 23#include "desktop.h"
24#include "info.h" 24#include "info.h"
25#include "launcher.h" 25#include "launcher.h"
26#include "qcopbridge.h" 26#include "qcopbridge.h"
27#include "shutdownimpl.h" 27#include "shutdownimpl.h"
28#include "startmenu.h" 28#include "startmenu.h"
29#include "taskbar.h" 29#include "taskbar.h"
30#include "transferserver.h" 30#include "transferserver.h"
31#include "irserver.h" 31#include "irserver.h"
32#include "packageslave.h" 32#include "packageslave.h"
33#include "screensaver.h" 33#include "screensaver.h"
34 34
35#include <qpe/applnk.h> 35#include <qpe/applnk.h>
36#include <qpe/mimetype.h> 36#include <qpe/mimetype.h>
37#include <qpe/password.h> 37#include <qpe/password.h>
38#include <qpe/config.h> 38#include <qpe/config.h>
39#include <qpe/power.h> 39#include <qpe/power.h>
40#include <qpe/timeconversion.h> 40#include <qpe/timeconversion.h>
41#include <qpe/qcopenvelope_qws.h> 41#include <qpe/qcopenvelope_qws.h>
42#include <qpe/network.h> 42#include <qpe/network.h>
43#include <qpe/global.h> 43#include <qpe/global.h>
44 44
45#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ ) 45#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ )
46#include <qpe/custom.h> 46#include <qpe/custom.h>
47#endif 47#endif
48 48
49#include <opie/odevice.h> 49#include <opie/odevice.h>
50 50
51#include <qgfx_qws.h> 51#include <qgfx_qws.h>
52#include <qmainwindow.h> 52#include <qmainwindow.h>
53#include <qmessagebox.h> 53#include <qmessagebox.h>
54#include <qtimer.h> 54#include <qtimer.h>
55#include <qwindowsystem_qws.h> 55#include <qwindowsystem_qws.h>
56 56
57#include <qvaluelist.h> 57#include <qvaluelist.h>
58 58
59#include <stdlib.h> 59#include <stdlib.h>
60#include <unistd.h> 60#include <unistd.h>
61#include <fcntl.h> 61#include <fcntl.h>
62 62
63 63
64using namespace Opie; 64using namespace Opie;
65 65
66class QCopKeyRegister 66class QCopKeyRegister
67{ 67{
68public: 68public:
69 QCopKeyRegister() : keyCode( 0 ) 69 QCopKeyRegister() : keyCode( 0 )
70 { } 70 { }
71 QCopKeyRegister( int k, const QCString &c, const QCString &m ) 71 QCopKeyRegister( int k, const QCString &c, const QCString &m )
72 : keyCode( k ), channel( c ), message( m ) 72 : keyCode( k ), channel( c ), message( m )
73 { } 73 { }
74 74
75 int getKeyCode() const 75 int getKeyCode() const
76 { 76 {
77 return keyCode; 77 return keyCode;
78 } 78 }
79 QCString getChannel() const 79 QCString getChannel() const
80 { 80 {
81 return channel; 81 return channel;
82 } 82 }
83 QCString getMessage() const 83 QCString getMessage() const
84 { 84 {
85 return message; 85 return message;
86 } 86 }
87 87
88private: 88private:
89 int keyCode; 89 int keyCode;
90 QCString channel, message; 90 QCString channel, message;
91}; 91};
92 92
93typedef QValueList<QCopKeyRegister> KeyRegisterList; 93typedef QValueList<QCopKeyRegister> KeyRegisterList;
94KeyRegisterList keyRegisterList; 94KeyRegisterList keyRegisterList;
95 95
96static Desktop* qpedesktop = 0; 96static Desktop* qpedesktop = 0;
97static int loggedin = 0; 97static int loggedin = 0;
98static void login( bool at_poweron ) 98static void login( bool at_poweron )
99{ 99{
100 if ( !loggedin ) { 100 if ( !loggedin ) {
101 Global::terminateBuiltin( "calibrate" ); 101 Global::terminateBuiltin( "calibrate" );
102 Password::authenticate( at_poweron ); 102 Password::authenticate( at_poweron );
103 loggedin = 1; 103 loggedin = 1;
104 QCopEnvelope e( "QPE/Desktop", "unlocked()" ); 104 QCopEnvelope e( "QPE/Desktop", "unlocked()" );
105 } 105 }
106} 106}
107 107
108bool Desktop::screenLocked() 108bool Desktop::screenLocked()
109{ 109{
110 return loggedin == 0; 110 return loggedin == 0;
111} 111}
112 112
113/* 113/*
114 Priority is number of alerts that are needed to pop up 114 Priority is number of alerts that are needed to pop up
115 alert. 115 alert.
116 */ 116 */
117class DesktopPowerAlerter : public QMessageBox 117class DesktopPowerAlerter : public QMessageBox
118{ 118{
119public: 119public:
120 DesktopPowerAlerter( QWidget *parent, const char *name = 0 ) 120 DesktopPowerAlerter( QWidget *parent, const char *name = 0 )
121 : QMessageBox( tr( "Battery Status" ), "Low Battery", 121 : QMessageBox( tr( "Battery Status" ), "Low Battery",
122 QMessageBox::Critical, 122 QMessageBox::Critical,
123 QMessageBox::Ok | QMessageBox::Default, 123 QMessageBox::Ok | QMessageBox::Default,
124 QMessageBox::NoButton, QMessageBox::NoButton, 124 QMessageBox::NoButton, QMessageBox::NoButton,
125 parent, name, FALSE ) 125 parent, name, FALSE )
126 { 126 {
127 currentPriority = INT_MAX; 127 currentPriority = INT_MAX;
128 alertCount = 0; 128 alertCount = 0;
129 } 129 }
130 130
131 void alert( const QString &text, int priority ); 131 void alert( const QString &text, int priority );
132 void hideEvent( QHideEvent * ); 132 void hideEvent( QHideEvent * );
133private: 133private:
134 int currentPriority; 134 int currentPriority;
135 int alertCount; 135 int alertCount;
136}; 136};
137 137
138void DesktopPowerAlerter::alert( const QString &text, int priority ) 138void DesktopPowerAlerter::alert( const QString &text, int priority )
139{ 139{
140 alertCount++; 140 alertCount++;
141 if ( alertCount < priority ) 141 if ( alertCount < priority )
142 return ; 142 return ;
143 if ( priority > currentPriority ) 143 if ( priority > currentPriority )
144 return ; 144 return ;
145 currentPriority = priority; 145 currentPriority = priority;
146 setText( text ); 146 setText( text );
147 show(); 147 show();
148} 148}
149 149
150 150
151void DesktopPowerAlerter::hideEvent( QHideEvent *e ) 151void DesktopPowerAlerter::hideEvent( QHideEvent *e )
152{ 152{
153 QMessageBox::hideEvent( e ); 153 QMessageBox::hideEvent( e );
154 alertCount = 0; 154 alertCount = 0;
155 currentPriority = INT_MAX; 155 currentPriority = INT_MAX;
156} 156}
157 157
158 158
159void DesktopApplication::switchLCD ( bool on ) 159void DesktopApplication::switchLCD ( bool on )
160{ 160{
161 if ( qApp ) { 161 if ( qApp ) {
162 DesktopApplication *dapp = (DesktopApplication *) qApp; 162 DesktopApplication *dapp = (DesktopApplication *) qApp;
163 163
164 if ( dapp-> m_screensaver ) { 164 if ( dapp-> m_screensaver ) {
165 if ( on ) { 165 if ( on ) {
166 dapp-> m_screensaver-> setDisplayState ( true ); 166 dapp-> m_screensaver-> setDisplayState ( true );
167 dapp-> m_screensaver-> setBacklight ( -3 ); 167 dapp-> m_screensaver-> setBacklight ( -3 );
168 } 168 }
169 else { 169 else {
170 dapp-> m_screensaver-> setDisplayState ( false ); 170 dapp-> m_screensaver-> setDisplayState ( false );
171 } 171 }
172 } 172 }
173 } 173 }
174} 174}
175 175
176 176
177DesktopApplication::DesktopApplication( int& argc, char **argv, Type appType ) 177DesktopApplication::DesktopApplication( int& argc, char **argv, Type appType )
178 : QPEApplication( argc, argv, appType ) 178 : QPEApplication( argc, argv, appType )
179{ 179{
180 m_ps = new PowerStatus; 180 m_ps = new PowerStatus;
181 m_ps_last = new PowerStatus; 181 m_ps_last = new PowerStatus;
182 pa = new DesktopPowerAlerter( 0 ); 182 pa = new DesktopPowerAlerter( 0 );
183 183
184 m_apm_timer = new QTimer ( this ); 184 m_apm_timer = new QTimer ( this );
185 connect ( m_apm_timer, SIGNAL( timeout ( )), this, SLOT( apmTimeout ( ))); 185 connect ( m_apm_timer, SIGNAL( timeout ( )), this, SLOT( apmTimeout ( )));
186 reloadPowerWarnSettings ( ); 186 reloadPowerWarnSettings ( );
187 187
188 m_last_button = 0; 188 m_last_button = 0;
189 m_button_timer = new QTimer ( ); 189 m_button_timer = new QTimer ( );
190 connect ( m_button_timer, SIGNAL( timeout ( )), this, SLOT( sendHeldAction ( ))); 190 connect ( m_button_timer, SIGNAL( timeout ( )), this, SLOT( sendHeldAction ( )));
191 191
192 channel = new QCopChannel( "QPE/System", this ); 192 channel = new QCopChannel( "QPE/System", this );
193 connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ), 193 connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ),
194 this, SLOT( systemMessage( const QCString&, const QByteArray& ) ) ); 194 this, SLOT( systemMessage( const QCString&, const QByteArray& ) ) );
195 195
196 channel = new QCopChannel( "QPE/Launcher", this ); 196 channel = new QCopChannel( "QPE/Launcher", this );
197 connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ), 197 connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ),
198 this, SLOT( launcherMessage( const QCString&, const QByteArray& ) ) ); 198 this, SLOT( launcherMessage( const QCString&, const QByteArray& ) ) );
199 199
200 m_screensaver = new OpieScreenSaver ( ); 200 m_screensaver = new OpieScreenSaver ( );
201 m_screensaver-> setInterval ( -1 ); 201 m_screensaver-> setInterval ( -1 );
202 QWSServer::setScreenSaver( m_screensaver ); 202 QWSServer::setScreenSaver( m_screensaver );
203 203
204 rereadVolumes(); 204 rereadVolumes();
205 connect( qApp, SIGNAL( volumeChanged( bool ) ), this, SLOT( rereadVolumes() ) ); 205 connect( qApp, SIGNAL( volumeChanged( bool ) ), this, SLOT( rereadVolumes() ) );
206 206
207 apmTimeout ( ); 207 apmTimeout ( );
208 208
209 grabKeyboard ( ); 209 grabKeyboard ( );
210} 210}
211 211
212 212
213DesktopApplication::~DesktopApplication() 213DesktopApplication::~DesktopApplication()
214{ 214{
215 ungrabKeyboard ( ); 215 ungrabKeyboard ( );
216 216
217 delete m_ps; 217 delete m_ps;
218 delete m_ps_last; 218 delete m_ps_last;
219 delete pa; 219 delete pa;
220} 220}
221 221
222void DesktopApplication::apmTimeout() 222void DesktopApplication::apmTimeout()
223{ 223{
224 qpedesktop-> checkMemory ( ); // in case no events are being generated 224 qpedesktop-> checkMemory ( ); // in case no events are being generated
225 225
226 *m_ps_last = *m_ps; 226 *m_ps_last = *m_ps;
227 *m_ps = PowerStatusManager::readStatus(); 227 *m_ps = PowerStatusManager::readStatus();
228 228
229 if ( m_ps-> acStatus ( ) != m_ps_last-> acStatus ( )) 229 if ( m_ps-> acStatus ( ) != m_ps_last-> acStatus ( ))
230 m_screensaver-> powerStatusChanged ( *m_ps ); 230 m_screensaver-> powerStatusChanged ( *m_ps );
231 231
232 if ( m_ps-> acStatus ( ) != PowerStatus::Online ) { 232 if ( m_ps-> acStatus ( ) != PowerStatus::Online ) {
233 int bat = m_ps-> batteryPercentRemaining ( ); 233 int bat = m_ps-> batteryPercentRemaining ( );
234 234
235 if ( bat < m_ps_last-> batteryPercentRemaining ( )) { 235 if ( bat < m_ps_last-> batteryPercentRemaining ( )) {
236 if ( bat <= m_powerCritical ) 236 if ( bat <= m_powerCritical )
237 pa->alert( tr( "Battery level is critical!\nKeep power off until power restored!" ), 1 ); 237 pa->alert( tr( "Battery level is critical!\nKeep power off until power restored!" ), 1 );
238 else if ( bat <= m_powerVeryLow ) 238 else if ( bat <= m_powerVeryLow )
239 pa->alert( tr( "Battery is running very low." ), 2 ); 239 pa->alert( tr( "Battery is running very low." ), 2 );
240 } 240 }
241 if ( m_ps-> backupBatteryStatus ( ) == PowerStatus::VeryLow ) 241 if ( m_ps-> backupBatteryStatus ( ) == PowerStatus::VeryLow )
242 pa->alert( tr( "The Back-up battery is very low.\nPlease charge the back-up battery." ), 2 ); 242 pa->alert( tr( "The Back-up battery is very low.\nPlease charge the back-up battery." ), 2 );
243 } 243 }
244} 244}
245 245
246 246
247void DesktopApplication::systemMessage( const QCString & msg, const QByteArray & data ) 247void DesktopApplication::systemMessage( const QCString & msg, const QByteArray & data )
248{ 248{
249 QDataStream stream ( data, IO_ReadOnly ); 249 QDataStream stream ( data, IO_ReadOnly );
250 250
251 if ( msg == "setScreenSaverInterval(int)" ) { 251 if ( msg == "setScreenSaverInterval(int)" ) {
252 int time; 252 int time;
253 stream >> time; 253 stream >> time;
254 m_screensaver-> setInterval( time ); 254 m_screensaver-> setInterval( time );
255 } 255 }
256 else if ( msg == "setScreenSaverIntervals(int,int,int)" ) { 256 else if ( msg == "setScreenSaverIntervals(int,int,int)" ) {
257 int t1, t2, t3; 257 int t1, t2, t3;
258 stream >> t1 >> t2 >> t3; 258 stream >> t1 >> t2 >> t3;
259 m_screensaver-> setIntervals( t1, t2, t3 ); 259 m_screensaver-> setIntervals( t1, t2, t3 );
260 } 260 }
261 else if ( msg == "setBacklight(int)" ) { 261 else if ( msg == "setBacklight(int)" ) {
262 int bright; 262 int bright;
263 stream >> bright; 263 stream >> bright;
264 m_screensaver-> setBacklight( bright ); 264 m_screensaver-> setBacklight( bright );
265 } 265 }
266 else if ( msg == "setScreenSaverMode(int)" ) { 266 else if ( msg == "setScreenSaverMode(int)" ) {
267 int mode; 267 int mode;
268 stream >> mode; 268 stream >> mode;
269 m_screensaver-> setMode ( mode ); 269 m_screensaver-> setMode ( mode );
270 } 270 }
271 else if ( msg == "reloadPowerWarnSettings()" ) { 271 else if ( msg == "reloadPowerWarnSettings()" ) {
272 reloadPowerWarnSettings(); 272 reloadPowerWarnSettings();
273 } 273 }
274 else if ( msg == "setDisplayState(int)" ) { 274 else if ( msg == "setDisplayState(int)" ) {
275 int state; 275 int state;
276 stream >> state; 276 stream >> state;
277 m_screensaver-> setDisplayState ( state != 0 ); 277 m_screensaver-> setDisplayState ( state != 0 );
278 } 278 }
279 else if ( msg == "suspend()" ) { 279 else if ( msg == "suspend()" ) {
280 emit power(); 280 emit power();
281 } 281 }
282 else if ( msg == "sendBusinessCard()" ) { 282 else if ( msg == "sendBusinessCard()" ) {
283 QString card = ::getenv ( "HOME" ); 283 QString card = ::getenv ( "HOME" );
284 card += "/Applications/addressbook/businesscard.vcf"; 284 card += "/Applications/addressbook/businesscard.vcf";
285 285
286 if ( QFile::exists( card ) ) { 286 if ( QFile::exists( card ) ) {
287 QCopEnvelope e ( "QPE/Obex", "send(QString,QString,QString)" ); 287 QCopEnvelope e ( "QPE/Obex", "send(QString,QString,QString)" );
288 QString mimetype = "text/x-vCard"; 288 QString mimetype = "text/x-vCard";
289 e << tr( "business card" ) << card << mimetype; 289 e << tr( "business card" ) << card << mimetype;
290 } 290 }
291 } 291 }
292} 292}
293 293
294void DesktopApplication::reloadPowerWarnSettings ( ) 294void DesktopApplication::reloadPowerWarnSettings ( )
295{ 295{
296 Config cfg ( "apm" ); 296 Config cfg ( "apm" );
297 cfg. setGroup ( "Warnings" ); 297 cfg. setGroup ( "Warnings" );
298 298
299 int iv = cfg. readNumEntry ( "checkinterval", 10000 ); 299 int iv = cfg. readNumEntry ( "checkinterval", 10000 );
300 300
301 m_apm_timer-> stop ( ); 301 m_apm_timer-> stop ( );
302 if ( iv ) 302 if ( iv )
303 m_apm_timer-> start ( iv ); 303 m_apm_timer-> start ( iv );
304 304
305 m_powerVeryLow = cfg. readNumEntry ( "powerverylow", 10 ); 305 m_powerVeryLow = cfg. readNumEntry ( "powerverylow", 10 );
306 m_powerCritical = cfg. readNumEntry ( "powervcritical", 5 ); 306 m_powerCritical = cfg. readNumEntry ( "powervcritical", 5 );
307} 307}
308 308
309 309
310enum MemState { Unknown, VeryLow, Low, Normal } memstate = Unknown; 310enum MemState { Unknown, VeryLow, Low, Normal } memstate = Unknown;
311 311
312 312
313void DesktopApplication::launcherMessage( const QCString & msg, const QByteArray & data ) 313void DesktopApplication::launcherMessage( const QCString & msg, const QByteArray & data )
314{ 314{
315 QDataStream stream ( data, IO_ReadOnly ); 315 QDataStream stream ( data, IO_ReadOnly );
316 316
317 if ( msg == "deviceButton(int,int,int)" ) { 317 if ( msg == "deviceButton(int,int,int)" ) {
318 int keycode, press, autoRepeat; 318 int keycode, press, autoRepeat;
319 stream >> keycode >> press >> autoRepeat; 319 stream >> keycode >> press >> autoRepeat;
320 320
321 const ODeviceButton *db = ODevice::inst ( )-> buttonForKeycode ( keycode ); 321 const ODeviceButton *db = ODevice::inst ( )-> buttonForKeycode ( keycode );
322 322
323 if ( db ) 323 if ( db )
324 checkButtonAction ( db, keycode, press, autoRepeat ); 324 checkButtonAction ( db, keycode, press, autoRepeat );
325 } 325 }
326 else if ( msg == "keyRegister(int,QCString,QCString)" ) { 326 else if ( msg == "keyRegister(int,QCString,QCString)" ) {
327 int k; 327 int k;
328 QCString c, m; 328 QCString c, m;
329 stream >> k >> c >> m; 329 stream >> k >> c >> m;
330 330
331 keyRegisterList.append ( QCopKeyRegister ( k, c, m )); 331 keyRegisterList.append ( QCopKeyRegister ( k, c, m ));
332 } 332 }
333} 333}
334 334
335void DesktopApplication::sendHeldAction ( ) 335void DesktopApplication::sendHeldAction ( )
336{ 336{
337 if ( m_last_button ) { 337 if ( m_last_button ) {
338 m_last_button-> heldAction ( ). send ( ); 338 m_last_button-> heldAction ( ). send ( );
339 m_last_button = 0; 339 m_last_button = 0;
340 } 340 }
341} 341}
342 342
343 343
344 344
345bool DesktopApplication::checkButtonAction ( const ODeviceButton *db, int /*keycode*/, bool press, bool autoRepeat ) 345bool DesktopApplication::checkButtonAction ( const ODeviceButton *db, int /*keycode*/, bool press, bool autoRepeat )
346 { 346 {
347 if ( db ) { 347 if ( db ) {
348 if ( !press && !autoRepeat && m_button_timer-> isActive ( )) { 348 if ( !press && !autoRepeat && m_button_timer-> isActive ( )) {
349 m_button_timer-> stop ( ); 349 m_button_timer-> stop ( );
350 350
351 if (!db-> pressedAction ( ). channel ( ) .isEmpty()) 351 if (!db-> pressedAction ( ). channel ( ) .isEmpty())
352 { 352 {
353 353
354 if ( db-> pressedAction ( ). channel ( )!="ignore") { 354 if ( db-> pressedAction ( ). channel ( )!="ignore") {
355 355
356 db-> pressedAction ( ). send ( ); 356 db-> pressedAction ( ). send ( );
357 } 357 }
358 else 358 else
359 return false; 359 return false;
360 } 360 }
361 } 361 }
362 else if ( press && !autoRepeat ) { 362 else if ( press && !autoRepeat ) {
363 m_button_timer-> stop ( ); 363 m_button_timer-> stop ( );
364 if (!db-> pressedAction ( ). channel ( ) .isEmpty()) 364 if (!db-> pressedAction ( ). channel ( ) .isEmpty())
365 { 365 {
366 366
367 if ( db-> heldAction ( ). channel ( )!="ignore") { 367 if ( db-> heldAction ( ). channel ( )!="ignore") {
368 m_last_button = db; 368 m_last_button = db;
369 m_button_timer-> start ( ODevice::inst ( )-> buttonHoldTime ( ), true ); 369 m_button_timer-> start ( ODevice::inst ( )-> buttonHoldTime ( ), true );
370 } 370 }
371 else return false; 371 else return false;
372 } 372 }
373 } 373 }
374 } 374 }
375 return true; 375 return true;
376} 376}
377 377
378bool DesktopApplication::eventFilter ( QObject *o, QEvent *e ) 378bool DesktopApplication::eventFilter ( QObject *o, QEvent *e )
379{ 379{
380 380
381 if ( e-> type ( ) == QEvent::KeyPress || e-> type ( ) == QEvent::KeyRelease ) { 381 if ( e-> type ( ) == QEvent::KeyPress || e-> type ( ) == QEvent::KeyRelease ) {
382 QKeyEvent *ke = (QKeyEvent *) e; 382 QKeyEvent *ke = (QKeyEvent *) e;
383 383
384 const ODeviceButton *db = ODevice::inst ( )-> buttonForKeycode ( ke-> key ( )); 384 const ODeviceButton *db = ODevice::inst ( )-> buttonForKeycode ( ke-> key ( ));
385 385
386 if ( db ) { 386 if ( db ) {
387 if (checkButtonAction ( db, ke-> key ( ), e-> type ( ) == QEvent::KeyPress, ke-> isAutoRepeat ( ))) 387 if (checkButtonAction ( db, ke-> key ( ), e-> type ( ) == QEvent::KeyPress, ke-> isAutoRepeat ( )))
388 return true; //checkButtonAction retrune false if events should be routed through 388 return true; //checkButtonAction retrune false if events should be routed through
389 } 389 }
390 } 390 }
391 return QPEApplication::eventFilter ( o, e ); 391 return QPEApplication::eventFilter ( o, e );
392} 392}
393 393
394#ifdef Q_WS_QWS 394#ifdef Q_WS_QWS
395 395
396bool DesktopApplication::qwsEventFilter( QWSEvent *e ) 396bool DesktopApplication::qwsEventFilter( QWSEvent *e )
397{ 397{
398 qpedesktop->checkMemory(); 398 qpedesktop->checkMemory();
399 399
400 if ( e->type == QWSEvent::Key ) { 400 if ( e->type == QWSEvent::Key ) {
401 QWSKeyEvent * ke = (QWSKeyEvent *) e; 401 QWSKeyEvent * ke = (QWSKeyEvent *) e;
402 ushort keycode = ke-> simpleData. keycode; 402 ushort keycode = ke-> simpleData. keycode;
403 403
404 if ( !loggedin && keycode != Key_F34 ) 404 if ( !loggedin && keycode != Key_F34 )
405 return true; 405 return true;
406 406
407 bool press = ke-> simpleData. is_press; 407 bool press = ke-> simpleData. is_press;
408 bool autoRepeat = ke-> simpleData. is_auto_repeat; 408 bool autoRepeat = ke-> simpleData. is_auto_repeat;
409 409
410 if ( !keyboardGrabbed ( )) { 410 if ( !keyboardGrabbed ( )) {
411 // app that registers key/message to be sent back to the app, when it doesn't have focus, 411 // app that registers key/message to be sent back to the app, when it doesn't have focus,
412 // when user presses key, unless keyboard has been requested from app. 412 // when user presses key, unless keyboard has been requested from app.
413 // will not send multiple repeats if user holds key 413 // will not send multiple repeats if user holds key
414 // i.e. one shot 414 // i.e. one shot
415 415
416 if ( keycode != 0 && press && !autoRepeat ) { 416 if ( keycode != 0 && press && !autoRepeat ) {
417 for ( KeyRegisterList::Iterator it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it ) { 417 for ( KeyRegisterList::Iterator it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it ) {
418 if (( *it ). getKeyCode ( ) == keycode ) { 418 if (( *it ). getKeyCode ( ) == keycode ) {
419 QCopEnvelope (( *it ). getChannel ( ), ( *it ). getMessage ( )); 419 QCopEnvelope (( *it ). getChannel ( ), ( *it ). getMessage ( ));
420 return true; 420 return true;
421 } 421 }
422 } 422 }
423 } 423 }
424 } 424 }
425 425
426 if ( keycode == HardKey_Suspend ) { 426 if ( keycode == HardKey_Suspend ) {
427 if ( press ) 427 if ( press )
428 emit power ( ); 428 emit power ( );
429 return true; 429 return true;
430 } 430 }
431 else if ( keycode == HardKey_Backlight ) { 431 else if ( keycode == HardKey_Backlight ) {
432 if ( press ) 432 if ( press )
433 emit backlight ( ); 433 emit backlight ( );
434 return true; 434 return true;
435 } 435 }
436 else if ( keycode == Key_F32 ) { 436 else if ( keycode == Key_F32 ) {
437 if ( press ) 437 if ( press )
438 QCopEnvelope e( "QPE/Desktop", "startSync()" ); 438 QCopEnvelope e( "QPE/Desktop", "startSync()" );
439 return true; 439 return true;
440 } 440 }
441 else if ( keycode == Key_F31 && !ke-> simpleData. modifiers ) { // Symbol Key -> show Unicode IM 441 else if ( keycode == Key_F31 && !ke-> simpleData. modifiers ) { // Symbol Key -> show Unicode IM
442 if ( press ) 442 if ( press )
443 emit symbol ( ); 443 emit symbol ( );
444 return true; 444 return true;
445 } 445 }
446 else if ( keycode == Key_NumLock ) { 446 else if ( keycode == Key_NumLock ) {
447 if ( press ) 447 if ( press )
448 emit numLockStateToggle ( ); 448 emit numLockStateToggle ( );
449 } 449 }
450 else if ( keycode == Key_CapsLock ) { 450 else if ( keycode == Key_CapsLock ) {
451 if ( press ) 451 if ( press )
452 emit capsLockStateToggle(); 452 emit capsLockStateToggle();
453 } 453 }
454 if (( press && !autoRepeat ) || ( !press && autoRepeat )) { 454 if (( press && !autoRepeat ) || ( !press && autoRepeat )) {
455 if ( m_keyclick_sound ) 455 if ( m_keyclick_sound )
456 ODevice::inst ( )-> keySound ( ); 456 ODevice::inst ( )-> keySound ( );
457 } 457 }
458 } 458 }
459 else if ( e-> type == QWSEvent::Mouse ) { 459 else if ( e-> type == QWSEvent::Mouse ) {
460 QWSMouseEvent * me = ( QWSMouseEvent * ) e; 460 QWSMouseEvent * me = ( QWSMouseEvent * ) e;
461 static bool up = true; 461 static bool up = true;
462 462
463 if ( me-> simpleData. state & LeftButton ) { 463 if ( me-> simpleData. state & LeftButton ) {
464 if ( up ) { 464 if ( up ) {
465 up = false; 465 up = false;
466 if ( m_screentap_sound ) 466 if ( m_screentap_sound )
467 ODevice::inst ( ) -> touchSound ( ); 467 ODevice::inst ( ) -> touchSound ( );
468 } 468 }
469 } 469 }
470 else { 470 else {
471 up = true; 471 up = true;
472 } 472 }
473 } 473 }
474 474
475 return QPEApplication::qwsEventFilter ( e ); 475 return QPEApplication::qwsEventFilter ( e );
476} 476}
477#endif 477#endif
478 478
479 479
480 480
481#if defined(QPE_HAVE_MEMALERTER) 481#if defined(QPE_HAVE_MEMALERTER)
482QPE_MEMALERTER_IMPL 482QPE_MEMALERTER_IMPL
483#endif 483#endif
484 484
485//=========================================================================== 485//===========================================================================
486 486
487Desktop::Desktop() : 487Desktop::Desktop() :
488 QWidget( 0, 0, WStyle_Tool | WStyle_Customize ), 488 QWidget( 0, 0, WStyle_Tool | WStyle_Customize ),
489 qcopBridge( 0 ), 489 qcopBridge( 0 ),
490 transferServer( 0 ), 490 transferServer( 0 ),
491 packageSlave( 0 ) 491 packageSlave( 0 )
492{ 492{
493 qpedesktop = this; 493 qpedesktop = this;
494 494
495 // bg = new Info( this ); 495 // bg = new Info( this );
496 tb = new TaskBar; 496 tb = new TaskBar;
497 497
498 launcher = new Launcher( 0, 0, WStyle_Customize | QWidget::WGroupLeader ); 498 launcher = new Launcher( 0, 0, WStyle_Customize | QWidget::WGroupLeader );
499 499
500 connect( launcher, SIGNAL( busy() ), tb, SLOT( startWait() ) ); 500 connect( launcher, SIGNAL( busy() ), tb, SLOT( startWait() ) );
501 connect( launcher, SIGNAL( notBusy( const QString& ) ), tb, SLOT( stopWait( const QString& ) ) ); 501 connect( launcher, SIGNAL( notBusy( const QString& ) ), tb, SLOT( stopWait( const QString& ) ) );
502 502
503 int displayw = qApp->desktop() ->width(); 503 int displayw = qApp->desktop() ->width();
504 int displayh = qApp->desktop() ->height(); 504 int displayh = qApp->desktop() ->height();
505 505
506 506
507 QSize sz = tb->sizeHint(); 507 QSize sz = tb->sizeHint();
508 508
509 setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); 509 setGeometry( 0, displayh - sz.height(), displayw, sz.height() );
510 tb->setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); 510 layout();
511 511
512 tb->show(); 512 tb->show();
513 launcher->showMaximized(); 513 launcher->showMaximized();
514 launcher->show(); 514 launcher->show();
515 launcher->raise(); 515 launcher->raise();
516#if defined(QPE_HAVE_MEMALERTER) 516#if defined(QPE_HAVE_MEMALERTER)
517 517
518 initMemalerter(); 518 initMemalerter();
519#endif 519#endif
520 // start services 520 // start services
521 startTransferServer(); 521 startTransferServer();
522 ( void ) new IrServer( this ); 522 ( void ) new IrServer( this );
523 523
524 packageSlave = new PackageSlave( this ); 524 packageSlave = new PackageSlave( this );
525 525
526 qApp->installEventFilter( this ); 526 qApp->installEventFilter( this );
527 qApp->desktop()->installEventFilter( this );
527 528
528 qApp-> setMainWidget ( launcher ); 529 qApp-> setMainWidget ( launcher );
529} 530}
530 531
531void Desktop::show() 532void Desktop::show()
532{ 533{
533 login( TRUE ); 534 login( TRUE );
534 QWidget::show(); 535 QWidget::show();
535} 536}
536 537
537Desktop::~Desktop() 538Desktop::~Desktop()
538{ 539{
539 delete launcher; 540 delete launcher;
540 delete tb; 541 delete tb;
541 delete qcopBridge; 542 delete qcopBridge;
542 delete transferServer; 543 delete transferServer;
543} 544}
544 545
545bool Desktop::recoverMemory() 546bool Desktop::recoverMemory()
546{ 547{
547 return tb->recoverMemory(); 548 return tb->recoverMemory();
548} 549}
549 550
550void Desktop::checkMemory() 551void Desktop::checkMemory()
551{ 552{
552#if defined(QPE_HAVE_MEMALERTER) 553#if defined(QPE_HAVE_MEMALERTER)
553 static bool ignoreNormal = FALSE; 554 static bool ignoreNormal = FALSE;
554 static bool existingMessage = FALSE; 555 static bool existingMessage = FALSE;
555 556
556 if ( existingMessage ) 557 if ( existingMessage )
557 return ; // don't show a second message while still on first 558 return ; // don't show a second message while still on first
558 559
559 existingMessage = TRUE; 560 existingMessage = TRUE;
560 switch ( memstate ) { 561 switch ( memstate ) {
561 case Unknown: 562 case Unknown:
562 break; 563 break;
563 case Low: 564 case Low:
564 memstate = Unknown; 565 memstate = Unknown;
565 if ( recoverMemory() ) 566 if ( recoverMemory() )
566 ignoreNormal = TRUE; 567 ignoreNormal = TRUE;
567 else 568 else
568 QMessageBox::warning( 0 , "Memory Status", 569 QMessageBox::warning( 0 , "Memory Status",
569 "The memory smacks of shortage. \n" 570 "The memory smacks of shortage. \n"
570 "Please save data. " ); 571 "Please save data. " );
571 break; 572 break;
572 case Normal: 573 case Normal:
573 memstate = Unknown; 574 memstate = Unknown;
574 if ( ignoreNormal ) 575 if ( ignoreNormal )
575 ignoreNormal = FALSE; 576 ignoreNormal = FALSE;
576 // else 577 // else
577 // QMessageBox::information ( 0 , "Memory Status", 578 // QMessageBox::information ( 0 , "Memory Status",
578 // "There is enough memory again." ); 579 // "There is enough memory again." );
579 break; 580 break;
580 case VeryLow: 581 case VeryLow:
581 memstate = Unknown; 582 memstate = Unknown;
582 QMessageBox::critical( 0 , "Memory Status", 583 QMessageBox::critical( 0 , "Memory Status",
583 "The memory is very low. \n" 584 "The memory is very low. \n"
584 "Please end this application \n" 585 "Please end this application \n"
585 "immediately." ); 586 "immediately." );
586 recoverMemory(); 587 recoverMemory();
587 } 588 }
588 existingMessage = FALSE; 589 existingMessage = FALSE;
589#endif 590#endif
590} 591}
591 592
592static bool isVisibleWindow( int wid ) 593static bool isVisibleWindow( int wid )
593{ 594{
594#ifdef QWS 595#ifdef QWS
595 const QList<QWSWindow> &list = qwsServer->clientWindows(); 596 const QList<QWSWindow> &list = qwsServer->clientWindows();
596 QWSWindow* w; 597 QWSWindow* w;
597 for ( QListIterator<QWSWindow> it( list ); ( w = it.current() ); ++it ) { 598 for ( QListIterator<QWSWindow> it( list ); ( w = it.current() ); ++it ) {
598 if ( w->winId() == wid ) 599 if ( w->winId() == wid )
599 return !w->isFullyObscured(); 600 return !w->isFullyObscured();
600 } 601 }
601#endif 602#endif
602 return FALSE; 603 return FALSE;
603} 604}
604 605
605static bool hasVisibleWindow( const QString& clientname ) 606static bool hasVisibleWindow( const QString& clientname )
606{ 607{
607#ifdef QWS 608#ifdef QWS
608 const QList<QWSWindow> &list = qwsServer->clientWindows(); 609 const QList<QWSWindow> &list = qwsServer->clientWindows();
609 QWSWindow* w; 610 QWSWindow* w;
610 for ( QListIterator<QWSWindow> it( list ); ( w = it.current() ); ++it ) { 611 for ( QListIterator<QWSWindow> it( list ); ( w = it.current() ); ++it ) {
611 if ( w->client() ->identity() == clientname && !w->isFullyObscured() ) 612 if ( w->client() ->identity() == clientname && !w->isFullyObscured() )
612 return TRUE; 613 return TRUE;
613 } 614 }
614#endif 615#endif
615 return FALSE; 616 return FALSE;
616} 617}
617 618
618 619
619void Desktop::executeOrModify( const QString& appLnkFile ) 620void Desktop::executeOrModify( const QString& appLnkFile )
620{ 621{
621 AppLnk lnk( MimeType::appsFolderName() + "/" + appLnkFile ); 622 AppLnk lnk( MimeType::appsFolderName() + "/" + appLnkFile );
622 if ( lnk.isValid() ) { 623 if ( lnk.isValid() ) {
623 QCString app = lnk.exec().utf8(); 624 QCString app = lnk.exec().utf8();
624 Global::terminateBuiltin( "calibrate" ); 625 Global::terminateBuiltin( "calibrate" );
625 if ( QCopChannel::isRegistered( "QPE/Application/" + app ) ) { 626 if ( QCopChannel::isRegistered( "QPE/Application/" + app ) ) {
626 // MRUList::addTask( &lnk ); 627 // MRUList::addTask( &lnk );
627 if ( hasVisibleWindow( app ) ) 628 if ( hasVisibleWindow( app ) )
628 QCopChannel::send( "QPE/Application/" + app, "nextView()" ); 629 QCopChannel::send( "QPE/Application/" + app, "nextView()" );
629 else 630 else
630 QCopChannel::send( "QPE/Application/" + app, "raise()" ); 631 QCopChannel::send( "QPE/Application/" + app, "raise()" );
631 } 632 }
632 else { 633 else {
633 lnk.execute(); 634 lnk.execute();
634 } 635 }
635 } 636 }
636} 637}
637 638
638// autoStarts apps on resume and start 639// autoStarts apps on resume and start
639void Desktop::execAutoStart() 640void Desktop::execAutoStart()
640{ 641{
641 QString appName; 642 QString appName;
642 int delay; 643 int delay;
643 QDateTime now = QDateTime::currentDateTime(); 644 QDateTime now = QDateTime::currentDateTime();
644 Config cfg( "autostart" ); 645 Config cfg( "autostart" );
645 cfg.setGroup( "AutoStart" ); 646 cfg.setGroup( "AutoStart" );
646 appName = cfg.readEntry( "Apps", "" ); 647 appName = cfg.readEntry( "Apps", "" );
647 delay = ( cfg.readEntry( "Delay", "0" ) ).toInt(); 648 delay = ( cfg.readEntry( "Delay", "0" ) ).toInt();
648 // If the time between suspend and resume was longer then the 649 // If the time between suspend and resume was longer then the
649 // value saved as delay, start the app 650 // value saved as delay, start the app
650 if ( suspendTime.secsTo( now ) >= ( delay * 60 ) && !appName.isEmpty() ) { 651 if ( suspendTime.secsTo( now ) >= ( delay * 60 ) && !appName.isEmpty() ) {
651 QCopEnvelope e( "QPE/System", "execute(QString)" ); 652 QCopEnvelope e( "QPE/System", "execute(QString)" );
652 e << QString( appName ); 653 e << QString( appName );
653 } 654 }
654} 655}
655 656
656#if defined(QPE_HAVE_TOGGLELIGHT) 657#if defined(QPE_HAVE_TOGGLELIGHT)
657#include <qpe/config.h> 658#include <qpe/config.h>
658 659
659#include <sys/ioctl.h> 660#include <sys/ioctl.h>
660#include <sys/types.h> 661#include <sys/types.h>
661#include <fcntl.h> 662#include <fcntl.h>
662#include <unistd.h> 663#include <unistd.h>
663#include <errno.h> 664#include <errno.h>
664#include <linux/ioctl.h> 665#include <linux/ioctl.h>
665#include <time.h> 666#include <time.h>
666#endif 667#endif
667 668
668 669
669void Desktop::togglePower() 670void Desktop::togglePower()
670{ 671{
671 static bool excllock = false; 672 static bool excllock = false;
672 673
673 if ( excllock ) 674 if ( excllock )
674 return ; 675 return ;
675 676
676 excllock = true; 677 excllock = true;
677 678
678 bool wasloggedin = loggedin; 679 bool wasloggedin = loggedin;
679 loggedin = 0; 680 loggedin = 0;
680 suspendTime = QDateTime::currentDateTime(); 681 suspendTime = QDateTime::currentDateTime();
681 682
682#ifdef QWS 683#ifdef QWS
683 684
684 if ( Password::needToAuthenticate ( true ) && qt_screen ) { 685 if ( Password::needToAuthenticate ( true ) && qt_screen ) {
685 // Should use a big black window instead. 686 // Should use a big black window instead.
686 // But this would not show up fast enough 687 // But this would not show up fast enough
687 QGfx *g = qt_screen-> screenGfx ( ); 688 QGfx *g = qt_screen-> screenGfx ( );
688 g-> fillRect ( 0, 0, qt_screen-> width ( ), qt_screen-> height ( )); 689 g-> fillRect ( 0, 0, qt_screen-> width ( ), qt_screen-> height ( ));
689 delete g; 690 delete g;
690 } 691 }
691#endif 692#endif
692 693
693 ODevice::inst ( )-> suspend ( ); 694 ODevice::inst ( )-> suspend ( );
694 695
695 DesktopApplication::switchLCD ( true ); // force LCD on without slow qcop call 696 DesktopApplication::switchLCD ( true ); // force LCD on without slow qcop call
696 QWSServer::screenSaverActivate ( false ); 697 QWSServer::screenSaverActivate ( false );
697 698
698 { 699 {
699 QCopEnvelope( "QPE/Card", "mtabChanged()" ); // might have changed while asleep 700 QCopEnvelope( "QPE/Card", "mtabChanged()" ); // might have changed while asleep
700 } 701 }
701 702
702 if ( wasloggedin ) 703 if ( wasloggedin )
703 login ( true ); 704 login ( true );
704 705
705 execAutoStart(); 706 execAutoStart();
706 //qcopBridge->closeOpenConnections(); 707 //qcopBridge->closeOpenConnections();
707 708
708 excllock = false; 709 excllock = false;
709} 710}
710 711
711void Desktop::toggleLight() 712void Desktop::toggleLight()
712{ 713{
713 QCopEnvelope e( "QPE/System", "setBacklight(int)" ); 714 QCopEnvelope e( "QPE/System", "setBacklight(int)" );
714 e << -2; // toggle 715 e << -2; // toggle
715} 716}
716 717
717void Desktop::toggleSymbolInput() 718void Desktop::toggleSymbolInput()
718{ 719{
719 tb->toggleSymbolInput(); 720 tb->toggleSymbolInput();
720} 721}
721 722
722void Desktop::toggleNumLockState() 723void Desktop::toggleNumLockState()
723{ 724{
724 tb->toggleNumLockState(); 725 tb->toggleNumLockState();
725} 726}
726 727
727void Desktop::toggleCapsLockState() 728void Desktop::toggleCapsLockState()
728{ 729{
729 tb->toggleCapsLockState(); 730 tb->toggleCapsLockState();
730} 731}
731 732
732void Desktop::styleChange( QStyle &s ) 733void Desktop::styleChange( QStyle &s )
733{ 734{
734 QWidget::styleChange( s ); 735 QWidget::styleChange( s );
735 int displayw = qApp->desktop() ->width(); 736 layout();
736 int displayh = qApp->desktop() ->height();
737
738 QSize sz = tb->sizeHint();
739
740 tb->setGeometry( 0, displayh - sz.height(), displayw, sz.height() );
741} 737}
742 738
743void DesktopApplication::shutdown() 739void DesktopApplication::shutdown()
744{ 740{
745 if ( type() != GuiServer ) 741 if ( type() != GuiServer )
746 return ; 742 return ;
747 ShutdownImpl *sd = new ShutdownImpl( 0, 0, WDestructiveClose ); 743 ShutdownImpl *sd = new ShutdownImpl( 0, 0, WDestructiveClose );
748 connect( sd, SIGNAL( shutdown( ShutdownImpl::Type ) ), 744 connect( sd, SIGNAL( shutdown( ShutdownImpl::Type ) ),
749 this, SLOT( shutdown( ShutdownImpl::Type ) ) ); 745 this, SLOT( shutdown( ShutdownImpl::Type ) ) );
750 sd->showMaximized(); 746 sd->showMaximized();
751} 747}
752 748
753void DesktopApplication::shutdown( ShutdownImpl::Type t ) 749void DesktopApplication::shutdown( ShutdownImpl::Type t )
754{ 750{
755 char *opt = 0; 751 char *opt = 0;
756 752
757 switch ( t ) { 753 switch ( t ) {
758 case ShutdownImpl::ShutdownSystem: 754 case ShutdownImpl::ShutdownSystem:
759 opt = "-h"; 755 opt = "-h";
760 // fall through 756 // fall through
761 case ShutdownImpl::RebootSystem: 757 case ShutdownImpl::RebootSystem:
762 if ( opt == 0 ) 758 if ( opt == 0 )
763 opt = "-r"; 759 opt = "-r";
764 760
765 if ( execl( "/sbin/shutdown", "shutdown", opt, "now", ( void* ) 0) < 0 ) 761 if ( execl( "/sbin/shutdown", "shutdown", opt, "now", ( void* ) 0) < 0 )
766 perror("shutdown"); 762 perror("shutdown");
767 // ::syslog ( LOG_ERR, "Erroring execing shutdown\n" ); 763 // ::syslog ( LOG_ERR, "Erroring execing shutdown\n" );
768 764
769 break; 765 break;
770 case ShutdownImpl::RestartDesktop: 766 case ShutdownImpl::RestartDesktop:
771 restart(); 767 restart();
772 break; 768 break;
773 case ShutdownImpl::TerminateDesktop: 769 case ShutdownImpl::TerminateDesktop:
774 prepareForTermination( FALSE ); 770 prepareForTermination( FALSE );
775 771
776 // This is a workaround for a Qt bug 772 // This is a workaround for a Qt bug
777 // clipboard applet has to stop its poll timer, or Qt/E 773 // clipboard applet has to stop its poll timer, or Qt/E
778 // will hang on quit() right before it emits aboutToQuit() 774 // will hang on quit() right before it emits aboutToQuit()
779 emit aboutToQuit ( ); 775 emit aboutToQuit ( );
780 776
781 quit(); 777 quit();
782 break; 778 break;
783 } 779 }
784} 780}
785 781
786void DesktopApplication::restart() 782void DesktopApplication::restart()
787{ 783{
788 prepareForTermination( TRUE ); 784 prepareForTermination( TRUE );
789 785
790#ifdef Q_WS_QWS 786#ifdef Q_WS_QWS
791 787
792 for ( int fd = 3; fd < 100; fd++ ) 788 for ( int fd = 3; fd < 100; fd++ )
793 close( fd ); 789 close( fd );
794#if defined(QT_DEMO_SINGLE_FLOPPY) 790#if defined(QT_DEMO_SINGLE_FLOPPY)
795 791
796 execl( "/sbin/init", "qpe", 0 ); 792 execl( "/sbin/init", "qpe", 0 );
797#elif defined(QT_QWS_CASSIOPEIA) 793#elif defined(QT_QWS_CASSIOPEIA)
798 794
799 execl( "/bin/sh", "sh", 0 ); 795 execl( "/bin/sh", "sh", 0 );
800#else 796#else
801 797
802 execl( ( qpeDir() + "/bin/qpe" ).latin1(), "qpe", 0 ); 798 execl( ( qpeDir() + "/bin/qpe" ).latin1(), "qpe", 0 );
803#endif 799#endif
804 800
805 exit( 1 ); 801 exit( 1 );
806#endif 802#endif
807} 803}
808 804
805void Desktop::layout()
806{
807 int displayw = qApp->desktop() ->width();
808 int displayh = qApp->desktop() ->height();
809
810 QSize sz = tb->sizeHint();
811
812 tb->setGeometry( 0, displayh - sz.height(), displayw, sz.height() );
813 tb->calcMaxWindowRect();
814}
815
809void Desktop::startTransferServer() 816void Desktop::startTransferServer()
810{ 817{
811 // start qcop bridge server 818 // start qcop bridge server
812 qcopBridge = new QCopBridge( 4243 ); 819 qcopBridge = new QCopBridge( 4243 );
813 if ( !qcopBridge->ok() ) { 820 if ( !qcopBridge->ok() ) {
814 delete qcopBridge; 821 delete qcopBridge;
815 qcopBridge = 0; 822 qcopBridge = 0;
816 } 823 }
817 // start transfer server 824 // start transfer server
818 transferServer = new TransferServer( 4242 ); 825 transferServer = new TransferServer( 4242 );
819 if ( !transferServer->ok() ) { 826 if ( !transferServer->ok() ) {
820 delete transferServer; 827 delete transferServer;
821 transferServer = 0; 828 transferServer = 0;
822 } 829 }
823 if ( !transferServer || !qcopBridge ) 830 if ( !transferServer || !qcopBridge )
824 startTimer( 2000 ); 831 startTimer( 2000 );
825} 832}
826 833
827void Desktop::timerEvent( QTimerEvent *e ) 834void Desktop::timerEvent( QTimerEvent *e )
828{ 835{
829 killTimer( e->timerId() ); 836 killTimer( e->timerId() );
830 startTransferServer(); 837 startTransferServer();
831} 838}
832 839
840bool Desktop::eventFilter( QObject *o, QEvent *ev )
841{
842 if ( o != qApp->desktop() || ev->type() != QEvent::Resize )
843 return QWidget::eventFilter( o, ev );
844
845 layout();
846
847 return QWidget::eventFilter( o, ev );
848}
849
833void Desktop::terminateServers() 850void Desktop::terminateServers()
834{ 851{
835 delete transferServer; 852 delete transferServer;
836 delete qcopBridge; 853 delete qcopBridge;
837 transferServer = 0; 854 transferServer = 0;
838 qcopBridge = 0; 855 qcopBridge = 0;
839} 856}
840 857
841void DesktopApplication::rereadVolumes() 858void DesktopApplication::rereadVolumes()
842{ 859{
843 Config cfg( "qpe" ); 860 Config cfg( "qpe" );
844 cfg. setGroup ( "Volume" ); 861 cfg. setGroup ( "Volume" );
845 862
846 m_screentap_sound = cfg. readBoolEntry ( "TouchSound" ); 863 m_screentap_sound = cfg. readBoolEntry ( "TouchSound" );
847 m_keyclick_sound = cfg. readBoolEntry ( "KeySound" ); 864 m_keyclick_sound = cfg. readBoolEntry ( "KeySound" );
848 m_alarm_sound = cfg. readBoolEntry ( "AlarmSound" ); 865 m_alarm_sound = cfg. readBoolEntry ( "AlarmSound" );
849} 866}
850 867
851void DesktopApplication::soundAlarm() 868void DesktopApplication::soundAlarm()
852{ 869{
853 if ( me ( )-> m_alarm_sound ) 870 if ( me ( )-> m_alarm_sound )
854 ODevice::inst ( )-> alarmSound ( ); 871 ODevice::inst ( )-> alarmSound ( );
855} 872}
856 873
857DesktopApplication *DesktopApplication::me ( ) 874DesktopApplication *DesktopApplication::me ( )
858{ 875{
859 return (DesktopApplication *) qApp; 876 return (DesktopApplication *) qApp;
860} 877}
861 878
diff --git a/core/launcher/desktop.h b/core/launcher/desktop.h
index 4024c38..86d8aa8 100644
--- a/core/launcher/desktop.h
+++ b/core/launcher/desktop.h
@@ -1,155 +1,157 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#ifndef __DESKTOP_H__ 21#ifndef __DESKTOP_H__
22#define __DESKTOP_H__ 22#define __DESKTOP_H__
23 23
24 24
25#include "shutdownimpl.h" 25#include "shutdownimpl.h"
26 26
27#include <qpe/qpeapplication.h> 27#include <qpe/qpeapplication.h>
28#include <opie/odevicebutton.h> 28#include <opie/odevicebutton.h>
29 29
30#include <qwidget.h> 30#include <qwidget.h>
31#include <qdatetime.h> 31#include <qdatetime.h>
32 32
33class Background; 33class Background;
34class Launcher; 34class Launcher;
35class TaskBar; 35class TaskBar;
36class PowerStatus; 36class PowerStatus;
37class QCopBridge; 37class QCopBridge;
38class TransferServer; 38class TransferServer;
39class DesktopPowerAlerter; 39class DesktopPowerAlerter;
40class PackageSlave; 40class PackageSlave;
41class OpieScreenSaver; 41class OpieScreenSaver;
42 42
43class DesktopApplication : public QPEApplication 43class DesktopApplication : public QPEApplication
44{ 44{
45 Q_OBJECT 45 Q_OBJECT
46public: 46public:
47 DesktopApplication( int& argc, char **argv, Type t ); 47 DesktopApplication( int& argc, char **argv, Type t );
48 ~DesktopApplication(); 48 ~DesktopApplication();
49 49
50 static void switchLCD ( bool on ); // only for togglePower in Desktop 50 static void switchLCD ( bool on ); // only for togglePower in Desktop
51 51
52 static void soundAlarm(); // only because QCop soundAlarm() is defined in QPE/TaskBar 52 static void soundAlarm(); // only because QCop soundAlarm() is defined in QPE/TaskBar
53 53
54signals: 54signals:
55 void menu(); 55 void menu();
56 void home(); 56 void home();
57 void launch(); 57 void launch();
58 void backlight(); 58 void backlight();
59 void power(); 59 void power();
60 void symbol(); 60 void symbol();
61 void numLockStateToggle(); 61 void numLockStateToggle();
62 void capsLockStateToggle(); 62 void capsLockStateToggle();
63 void prepareForRestart(); 63 void prepareForRestart();
64 64
65protected: 65protected:
66#ifdef Q_WS_QWS 66#ifdef Q_WS_QWS
67 67
68 bool qwsEventFilter( QWSEvent * ); 68 bool qwsEventFilter( QWSEvent * );
69#endif 69#endif
70 70
71 void shutdown(); 71 void shutdown();
72 void restart(); 72 void restart();
73 73
74public slots: 74public slots:
75 virtual void systemMessage ( const QCString &msg, const QByteArray &data ); 75 virtual void systemMessage ( const QCString &msg, const QByteArray &data );
76 virtual void launcherMessage ( const QCString &msg, const QByteArray &data ); 76 virtual void launcherMessage ( const QCString &msg, const QByteArray &data );
77 void rereadVolumes(); 77 void rereadVolumes();
78 78
79protected slots: 79protected slots:
80 void shutdown ( ShutdownImpl::Type ); 80 void shutdown ( ShutdownImpl::Type );
81 void apmTimeout ( ); 81 void apmTimeout ( );
82 void sendHeldAction ( ); 82 void sendHeldAction ( );
83 83
84protected: 84protected:
85 virtual bool eventFilter ( QObject *o, QEvent *e ); 85 virtual bool eventFilter ( QObject *o, QEvent *e );
86 bool checkButtonAction ( const Opie::ODeviceButton *db, int keycode, bool press, bool autoRepeat ); 86 bool checkButtonAction ( const Opie::ODeviceButton *db, int keycode, bool press, bool autoRepeat );
87 87
88private: 88private:
89 static DesktopApplication *me ( ); 89 static DesktopApplication *me ( );
90 90
91private: 91private:
92 void reloadPowerWarnSettings(); 92 void reloadPowerWarnSettings();
93 DesktopPowerAlerter *pa; 93 DesktopPowerAlerter *pa;
94 PowerStatus *m_ps, *m_ps_last; 94 PowerStatus *m_ps, *m_ps_last;
95 QTimer *cardSendTimer; 95 QTimer *cardSendTimer;
96 QCopChannel *channel; 96 QCopChannel *channel;
97 OpieScreenSaver *m_screensaver; 97 OpieScreenSaver *m_screensaver;
98 QTimer * m_apm_timer; 98 QTimer * m_apm_timer;
99 int m_powerVeryLow; 99 int m_powerVeryLow;
100 int m_powerCritical; 100 int m_powerCritical;
101 int m_currentPowerLevel; 101 int m_currentPowerLevel;
102 102
103 const Opie::ODeviceButton *m_last_button; 103 const Opie::ODeviceButton *m_last_button;
104 QTimer *m_button_timer; 104 QTimer *m_button_timer;
105 105
106 bool m_keyclick_sound : 1; 106 bool m_keyclick_sound : 1;
107 bool m_screentap_sound : 1; 107 bool m_screentap_sound : 1;
108 bool m_alarm_sound : 1; 108 bool m_alarm_sound : 1;
109}; 109};
110 110
111 111
112class Desktop : public QWidget 112class Desktop : public QWidget
113{ 113{
114 Q_OBJECT 114 Q_OBJECT
115public: 115public:
116 Desktop(); 116 Desktop();
117 ~Desktop(); 117 ~Desktop();
118 118
119 static bool screenLocked(); 119 static bool screenLocked();
120 120
121 void show(); 121 void show();
122 void checkMemory(); 122 void checkMemory();
123 123
124public slots: 124public slots:
125 void execAutoStart(); 125 void execAutoStart();
126 void togglePower(); 126 void togglePower();
127 void toggleLight(); 127 void toggleLight();
128 void toggleNumLockState(); 128 void toggleNumLockState();
129 void toggleCapsLockState(); 129 void toggleCapsLockState();
130 void toggleSymbolInput(); 130 void toggleSymbolInput();
131 void terminateServers(); 131 void terminateServers();
132 132
133protected: 133protected:
134 void executeOrModify( const QString& appLnkFile ); 134 void executeOrModify( const QString& appLnkFile );
135 void styleChange( QStyle & ); 135 void styleChange( QStyle & );
136 void timerEvent( QTimerEvent *e ); 136 void timerEvent( QTimerEvent *e );
137 virtual bool eventFilter( QObject *o, QEvent *ev );
137 138
138 QWidget *bg; 139 QWidget *bg;
139 Launcher *launcher; 140 Launcher *launcher;
140 TaskBar *tb; 141 TaskBar *tb;
141 142
142private: 143private:
144 void layout();
143 void startTransferServer(); 145 void startTransferServer();
144 bool recoverMemory(); 146 bool recoverMemory();
145 147
146 QCopBridge *qcopBridge; 148 QCopBridge *qcopBridge;
147 TransferServer *transferServer; 149 TransferServer *transferServer;
148 PackageSlave *packageSlave; 150 PackageSlave *packageSlave;
149 151
150 QDateTime suspendTime; 152 QDateTime suspendTime;
151}; 153};
152 154
153 155
154#endif // __DESKTOP_H__ 156#endif // __DESKTOP_H__
155 157
diff --git a/core/launcher/taskbar.h b/core/launcher/taskbar.h
index cd631ef..a0bf395 100644
--- a/core/launcher/taskbar.h
+++ b/core/launcher/taskbar.h
@@ -1,84 +1,85 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#ifndef __TASKBAR_H__ 21#ifndef __TASKBAR_H__
22#define __TASKBAR_H__ 22#define __TASKBAR_H__
23 23
24#include <qhbox.h> 24#include <qhbox.h>
25 25
26class QLabel; 26class QLabel;
27class QTimer; 27class QTimer;
28class InputMethods; 28class InputMethods;
29class Wait; 29class Wait;
30class SysTray; 30class SysTray;
31//class MRUList; 31//class MRUList;
32class RunningAppBar; 32class RunningAppBar;
33class QWidgetStack; 33class QWidgetStack;
34class QTimer; 34class QTimer;
35class QLabel; 35class QLabel;
36class StartMenu; 36class StartMenu;
37class LockKeyState; 37class LockKeyState;
38 38
39class TaskBar : public QHBox { 39class TaskBar : public QHBox {
40 Q_OBJECT 40 Q_OBJECT
41public: 41public:
42 TaskBar(); 42 TaskBar();
43 ~TaskBar(); 43 ~TaskBar();
44 44
45 static QWidget *calibrate( bool ); 45 static QWidget *calibrate( bool );
46 46
47 bool recoverMemory(); 47 bool recoverMemory();
48 48
49 StartMenu *startMenu() const { return sm; } 49 StartMenu *startMenu() const { return sm; }
50public slots: 50public slots:
51 void startWait(); 51 void startWait();
52 void stopWait(const QString&); 52 void stopWait(const QString&);
53 void stopWait(); 53 void stopWait();
54 void clearStatusBar(); 54 void clearStatusBar();
55 void toggleNumLockState(); 55 void toggleNumLockState();
56 void toggleCapsLockState(); 56 void toggleCapsLockState();
57 void toggleSymbolInput(); 57 void toggleSymbolInput();
58 58
59protected: 59protected:
60 void resizeEvent( QResizeEvent * ); 60 void resizeEvent( QResizeEvent * );
61 void styleChange( QStyle & ); 61 void styleChange( QStyle & );
62 void setStatusMessage( const QString &text ); 62 void setStatusMessage( const QString &text );
63 63
64private slots: 64public slots:
65 void calcMaxWindowRect(); 65 void calcMaxWindowRect();
66private slots:
66 void receive( const QCString &msg, const QByteArray &data ); 67 void receive( const QCString &msg, const QByteArray &data );
67 68
68private: 69private:
69 70
70 QTimer *waitTimer; 71 QTimer *waitTimer;
71 Wait *waitIcon; 72 Wait *waitIcon;
72 InputMethods *inputMethods; 73 InputMethods *inputMethods;
73 SysTray *sysTray; 74 SysTray *sysTray;
74 // MRUList *mru; 75 // MRUList *mru;
75 RunningAppBar* runningAppBar; 76 RunningAppBar* runningAppBar;
76 QWidgetStack *stack; 77 QWidgetStack *stack;
77 QTimer *clearer; 78 QTimer *clearer;
78 QLabel *label; 79 QLabel *label;
79 LockKeyState* lockState; 80 LockKeyState* lockState;
80 StartMenu *sm; 81 StartMenu *sm;
81}; 82};
82 83
83 84
84#endif // __TASKBAR_H__ 85#endif // __TASKBAR_H__