summaryrefslogtreecommitdiff
path: root/core
authorharlekin <harlekin>2002-10-22 21:41:42 (UTC)
committer harlekin <harlekin>2002-10-22 21:41:42 (UTC)
commite4297ff151693e07313ea036de91ad3c788c5e26 (patch) (unidiff)
tree564bf451b6e6319944e3e793631f93d879031c74 /core
parent4381aaf653750f4a51a816ff419be70059b2857d (diff)
downloadopie-e4297ff151693e07313ea036de91ad3c788c5e26.zip
opie-e4297ff151693e07313ea036de91ad3c788c5e26.tar.gz
opie-e4297ff151693e07313ea036de91ad3c788c5e26.tar.bz2
launcher side of the support for new light and power settings
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/desktop.cpp101
-rw-r--r--core/launcher/desktop.h5
2 files changed, 94 insertions, 12 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp
index d2bd8ae..4926b97 100644
--- a/core/launcher/desktop.cpp
+++ b/core/launcher/desktop.cpp
@@ -156,70 +156,91 @@ class QPEScreenSaver : public QWSScreenSaver
156{ 156{
157private: 157private:
158 int LcdOn; 158 int LcdOn;
159 159
160public: 160public:
161 QPEScreenSaver() 161 QPEScreenSaver()
162 { 162 {
163 m_disable_suspend = 100; 163 m_disable_suspend = 100;
164 m_enable_dim = false; 164 m_enable_dim = false;
165 m_enable_lightoff = false; 165 m_enable_lightoff = false;
166 m_enable_onlylcdoff = false; 166 m_enable_onlylcdoff = false;
167 167
168 m_disable_suspend_ac = 100;
169 m_enable_dim_ac = false;
170 m_enable_lightoff_ac = false;
171 m_enable_onlylcdoff_ac = false;
172
168 m_lcd_status = true; 173 m_lcd_status = true;
169 174
170 m_backlight_normal = -1; 175 m_backlight_normal = -1;
171 m_backlight_current = -1; 176 m_backlight_current = -1;
172 m_backlight_forcedoff = false; 177 m_backlight_forcedoff = false;
173 178
174 // Make sure the LCD is in fact on, (if opie was killed while the LCD is off it would still be off) 179 // Make sure the LCD is in fact on, (if opie was killed while the LCD is off it would still be off)
175 ODevice::inst ( )-> setDisplayStatus ( true ); 180 ODevice::inst ( )-> setDisplayStatus ( true );
176 setBacklight ( -1 ); 181 setBacklight ( -1 );
177 } 182 }
178 void restore() 183 void restore()
179 { 184 {
180 if ( !m_lcd_status ) { // We must have turned it off 185 if ( !m_lcd_status ) { // We must have turned it off
181 ODevice::inst ( ) -> setDisplayStatus ( true ); 186 ODevice::inst ( ) -> setDisplayStatus ( true );
182 m_lcd_status = true; 187 m_lcd_status = true;
183 } 188 }
184 189
185 setBacklightInternal ( -1 ); 190 setBacklightInternal ( -1 );
186 } 191 }
187 bool save( int level ) 192 bool save( int level )
188 { 193 {
194 bool onAC = ( PowerStatusManager::readStatus().acStatus() == PowerStatus::Online );
195
189 switch ( level ) { 196 switch ( level ) {
190 case 0: 197 case 0:
191 if ( m_disable_suspend > 0 && m_enable_dim ) { 198
199 if ( m_disable_suspend_ac > 0 && m_enable_dim_ac && onAC ) {
200 if ( m_backlight_current > 1 )
201 setBacklight( 1 ); // lowest non-off
202 } else if ( m_disable_suspend > 0 && m_enable_dim ) {
192 if ( m_backlight_current > 1 ) 203 if ( m_backlight_current > 1 )
193 setBacklightInternal ( 1 ); // lowest non-off 204 setBacklightInternal ( 1 ); // lowest non-off
194 } 205 }
195 return true; 206 return true;
196 break; 207 break;
197 case 1: 208 case 1:
198 if ( m_disable_suspend > 1 && m_enable_lightoff ) { 209
210 if ( m_disable_suspend_ac > 1 && m_enable_lightoff_ac && onAC ) {
211 setBacklightInternal( 0 ); // off
212 } else if ( m_disable_suspend > 1 && m_enable_lightoff ) {
199 setBacklightInternal ( 0 ); // off 213 setBacklightInternal ( 0 ); // off
200 } 214 }
201 return true; 215 return true;
202 break; 216 break;
203 case 2: 217 case 2:
204 if ( m_enable_onlylcdoff ) { 218 if ( m_enable_onlylcdoff_ac && onAC ) {
219 ODevice::inst ( ) -> setDisplayStatus ( false );
220 m_lcd_status = false;
221 return true;
222 }
223 else if ( m_enable_onlylcdoff ) {
205 ODevice::inst ( )-> setDisplayStatus ( false ); 224 ODevice::inst ( )-> setDisplayStatus ( false );
206 m_lcd_status = false; 225 m_lcd_status = false;
207 return true; 226 return true;
208 } 227 }
209 else // We're going to suspend the whole machine 228 else // We're going to suspend the whole machine
210 { 229 {
211 if ( ( m_disable_suspend > 2 ) && 230 if ( ( m_disable_suspend_ac > 2 && onAC ) && ( !Network::networkOnline ( ) ) ) {
212 ( PowerStatusManager::readStatus().acStatus() != PowerStatus::Online ) && 231 QWSServer::sendKeyEvent( 0xffff, Qt::Key_F34, FALSE, TRUE, FALSE );
213 ( !Network::networkOnline ( ) ) ) { 232 return true;
233 }
234 if ( ( m_disable_suspend > 2 ) && ( !Network::networkOnline ( ) ) ) {
214 QWSServer::sendKeyEvent( 0xffff, Qt::Key_F34, FALSE, TRUE, FALSE ); 235 QWSServer::sendKeyEvent( 0xffff, Qt::Key_F34, FALSE, TRUE, FALSE );
215 return true; 236 return true;
216 } 237 }
217 } 238 }
218 break; 239 break;
219 } 240 }
220 return false; 241 return false;
221 } 242 }
222 243
223private: 244private:
224 static int ssi( int interval, Config & config, const QString & enable, const QString & value, int def ) 245 static int ssi( int interval, Config & config, const QString & enable, const QString & value, int def )
225 { 246 {
@@ -251,24 +272,50 @@ public:
251 v [ 2 ] = QMAX( 1000 * i3, 100 ); 272 v [ 2 ] = QMAX( 1000 * i3, 100 );
252 v [ 3 ] = 0; 273 v [ 3 ] = 0;
253 m_enable_dim = ( ( i1 != 0 ) ? config. readNumEntry ( "Dim", 1 ) : false ); 274 m_enable_dim = ( ( i1 != 0 ) ? config. readNumEntry ( "Dim", 1 ) : false );
254 m_enable_lightoff = ( ( i2 != 0 ) ? config. readNumEntry ( "LightOff", 1 ) : false ); 275 m_enable_lightoff = ( ( i2 != 0 ) ? config. readNumEntry ( "LightOff", 1 ) : false );
255 m_enable_onlylcdoff = config. readNumEntry ( "LcdOffOnly", 0 ); 276 m_enable_onlylcdoff = config. readNumEntry ( "LcdOffOnly", 0 );
256 277
257 if ( !i1 && !i2 && !i3 ) 278 if ( !i1 && !i2 && !i3 )
258 QWSServer::setScreenSaverInterval( 0 ); 279 QWSServer::setScreenSaverInterval( 0 );
259 else 280 else
260 QWSServer::setScreenSaverIntervals( v ); 281 QWSServer::setScreenSaverIntervals( v );
261 } 282 }
262 283
284 void setIntervalsAC( int i1, int i2, int i3 )
285 {
286 Config config( "qpe" );
287 config.setGroup( "Screensaver" );
288
289 int v[ 4 ];
290 i1 = ssi( i1, config, "DimAC", "Interval_DimAC", 30 );
291 i2 = ssi( i2, config, "LightOffAC", "Interval_LightOffAC", 20 );
292 i3 = ssi( i3, config, "", "IntervalAC", 60 );
293
294 //qDebug("screen saver intervals: %d %d %d", i1, i2, i3);
295
296 v [ 0 ] = QMAX( 1000 * i1, 100 );
297 v [ 1 ] = QMAX( 1000 * i2, 100 );
298 v [ 2 ] = QMAX( 1000 * i3, 100 );
299 v [ 3 ] = 0;
300 m_enable_dim_ac = ( ( i1 != 0 ) ? config.readNumEntry ( "DimAC", 1 ) : false );
301 m_enable_lightoff_ac = ( ( i2 != 0 ) ? config.readNumEntry ( "LightOffAC", 1 ) : false );
302 m_enable_onlylcdoff_ac = config.readNumEntry ( "LcdOffOnlyAC", 0 );
303
304 if ( !i1 && !i2 && !i3 )
305 QWSServer::setScreenSaverInterval( 0 );
306 else
307 QWSServer::setScreenSaverIntervals( v );
308 }
309
263 void setInterval ( int interval ) 310 void setInterval ( int interval )
264 { 311 {
265 setIntervals ( -1, -1, interval ); 312 setIntervals ( -1, -1, interval );
266 } 313 }
267 314
268 void setMode ( int mode ) 315 void setMode ( int mode )
269 { 316 {
270 if ( mode > m_disable_suspend ) 317 if ( mode > m_disable_suspend )
271 setInterval( -1 ); 318 setInterval( -1 );
272 m_disable_suspend = mode; 319 m_disable_suspend = mode;
273 } 320 }
274 321
@@ -312,24 +359,29 @@ public:
312 if ( m_lcd_status != on ) { 359 if ( m_lcd_status != on ) {
313 ODevice::inst ( ) -> setDisplayStatus ( on ); 360 ODevice::inst ( ) -> setDisplayStatus ( on );
314 m_lcd_status = on; 361 m_lcd_status = on;
315 } 362 }
316 } 363 }
317 364
318private: 365private:
319 int m_disable_suspend; 366 int m_disable_suspend;
320 bool m_enable_dim; 367 bool m_enable_dim;
321 bool m_enable_lightoff; 368 bool m_enable_lightoff;
322 bool m_enable_onlylcdoff; 369 bool m_enable_onlylcdoff;
323 370
371 int m_disable_suspend_ac;
372 bool m_enable_dim_ac;
373 bool m_enable_lightoff_ac;
374 bool m_enable_onlylcdoff_ac;
375
324 bool m_lcd_status; 376 bool m_lcd_status;
325 377
326 int m_backlight_normal; 378 int m_backlight_normal;
327 int m_backlight_current; 379 int m_backlight_current;
328 bool m_backlight_forcedoff; 380 bool m_backlight_forcedoff;
329}; 381};
330 382
331void DesktopApplication::switchLCD ( bool on ) 383void DesktopApplication::switchLCD ( bool on )
332{ 384{
333 if ( qApp ) { 385 if ( qApp ) {
334 DesktopApplication *dapp = (DesktopApplication *) qApp; 386 DesktopApplication *dapp = (DesktopApplication *) qApp;
335 387
@@ -341,27 +393,32 @@ void DesktopApplication::switchLCD ( bool on )
341 else { 393 else {
342 dapp-> m_screensaver-> setDisplayState ( false ); 394 dapp-> m_screensaver-> setDisplayState ( false );
343 } 395 }
344 } 396 }
345 } 397 }
346} 398}
347 399
348 400
349DesktopApplication::DesktopApplication( int& argc, char **argv, Type appType ) 401DesktopApplication::DesktopApplication( int& argc, char **argv, Type appType )
350 : QPEApplication( argc, argv, appType ) 402 : QPEApplication( argc, argv, appType )
351{ 403{
352 404
353 QTimer * t = new QTimer( this ); 405 //FIXME, need also a method for setting different timer ( changed runtime )
354 connect( t, SIGNAL( timeout() ), this, SLOT( psTimeout() ) ); 406 m_timer = new QTimer( this );
355 t->start( 10000 ); 407 connect( m_timer, SIGNAL( timeout() ), this, SLOT( psTimeout() ) );
408 Config cfg( "qpe" );
409 cfg.setGroup( "APM" );
410 m_timer->start( cfg.readNumEntry( "check_interval", 10000 ) );
411 m_powerVeryLow = cfg.readNumEntry( "power_verylow", 10 );
412 m_powerCritical = cfg.readNumEntry( "power_critical", 5 );
356 ps = new PowerStatus; 413 ps = new PowerStatus;
357 pa = new DesktopPowerAlerter( 0 ); 414 pa = new DesktopPowerAlerter( 0 );
358 415
359 channel = new QCopChannel( "QPE/Desktop", this ); 416 channel = new QCopChannel( "QPE/Desktop", this );
360 connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ), 417 connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ),
361 this, SLOT( desktopMessage( const QCString&, const QByteArray& ) ) ); 418 this, SLOT( desktopMessage( const QCString&, const QByteArray& ) ) );
362 419
363 channel = new QCopChannel( "QPE/System", this ); 420 channel = new QCopChannel( "QPE/System", this );
364 connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ), 421 connect( channel, SIGNAL( received( const QCString&, const QByteArray& ) ),
365 this, SLOT( systemMessage( const QCString&, const QByteArray& ) ) ); 422 this, SLOT( systemMessage( const QCString&, const QByteArray& ) ) );
366 423
367 m_screensaver = new QPEScreenSaver; 424 m_screensaver = new QPEScreenSaver;
@@ -398,44 +455,62 @@ void DesktopApplication::systemMessage( const QCString & msg, const QByteArray &
398 QDataStream stream ( data, IO_ReadOnly ); 455 QDataStream stream ( data, IO_ReadOnly );
399 456
400 if ( msg == "setScreenSaverInterval(int)" ) { 457 if ( msg == "setScreenSaverInterval(int)" ) {
401 int time; 458 int time;
402 stream >> time; 459 stream >> time;
403 m_screensaver-> setInterval( time ); 460 m_screensaver-> setInterval( time );
404 } 461 }
405 else if ( msg == "setScreenSaverIntervals(int,int,int)" ) { 462 else if ( msg == "setScreenSaverIntervals(int,int,int)" ) {
406 int t1, t2, t3; 463 int t1, t2, t3;
407 stream >> t1 >> t2 >> t3; 464 stream >> t1 >> t2 >> t3;
408 m_screensaver-> setIntervals( t1, t2, t3 ); 465 m_screensaver-> setIntervals( t1, t2, t3 );
409 } 466 }
467 else if ( msg == "setScreenSaverIntervalsAC(int,int,int)" ) {
468 int t1, t2, t3;
469 stream >> t1 >> t2 >> t3;
470 m_screensaver-> setIntervalsAC( t1, t2, t3 );
471 }
410 else if ( msg == "setBacklight(int)" ) { 472 else if ( msg == "setBacklight(int)" ) {
411 int bright; 473 int bright;
412 stream >> bright; 474 stream >> bright;
413 m_screensaver-> setBacklight( bright ); 475 m_screensaver-> setBacklight( bright );
414 } 476 }
415 else if ( msg == "setScreenSaverMode(int)" ) { 477 else if ( msg == "setScreenSaverMode(int)" ) {
416 int mode; 478 int mode;
417 stream >> mode; 479 stream >> mode;
418 m_screensaver-> setMode ( mode ); 480 m_screensaver-> setMode ( mode );
419 } 481 }
482 else if ( msg == "reloadPowerWarnSettings()" ) {
483 reloadPowerWarnSettings();
484 }
420 else if ( msg == "setDisplayState(int)" ) { 485 else if ( msg == "setDisplayState(int)" ) {
421 int state; 486 int state;
422 stream >> state; 487 stream >> state;
423 m_screensaver-> setDisplayState ( state != 0 ); 488 m_screensaver-> setDisplayState ( state != 0 );
424 } 489 }
425 else if ( msg == "suspend()" ) { 490 else if ( msg == "suspend()" ) {
426 emit power(); 491 emit power();
427 } 492 }
428} 493}
429 494
495void DesktopApplication::reloadPowerWarnSettings() {
496 Config cfg( "apm" );
497 cfg.setGroup( "Warnings" );
498
499 m_timer->changeInterval( cfg.readNumEntry( "checkinterval", 10000 ) );
500 m_powerVeryLow = cfg.readNumEntry( "powerverylow", 10 );
501 m_powerCritical = cfg.readNumEntry( "powervcritical", 5 );
502}
503
504
430enum MemState { Unknown, VeryLow, Low, Normal } memstate = Unknown; 505enum MemState { Unknown, VeryLow, Low, Normal } memstate = Unknown;
431 506
432#ifdef Q_WS_QWS 507#ifdef Q_WS_QWS
433bool DesktopApplication::qwsEventFilter( QWSEvent *e ) 508bool DesktopApplication::qwsEventFilter( QWSEvent *e )
434{ 509{
435 qpedesktop->checkMemory(); 510 qpedesktop->checkMemory();
436 511
437 if ( e->type == QWSEvent::Key ) { 512 if ( e->type == QWSEvent::Key ) {
438 QWSKeyEvent * ke = ( QWSKeyEvent * ) e; 513 QWSKeyEvent * ke = ( QWSKeyEvent * ) e;
439 if ( !loggedin && ke->simpleData.keycode != Key_F34 ) 514 if ( !loggedin && ke->simpleData.keycode != Key_F34 )
440 return TRUE; 515 return TRUE;
441 bool press = ke->simpleData.is_press; 516 bool press = ke->simpleData.is_press;
@@ -470,25 +545,25 @@ bool DesktopApplication::qwsEventFilter( QWSEvent *e )
470 if ( ke->simpleData.keycode == Key_F10 ) { 545 if ( ke->simpleData.keycode == Key_F10 ) {
471 if ( !press && cardSendTimer ) { 546 if ( !press && cardSendTimer ) {
472 emit contacts(); 547 emit contacts();
473 delete cardSendTimer; 548 delete cardSendTimer;
474 } 549 }
475 else if ( press ) { 550 else if ( press ) {
476 cardSendTimer = new QTimer(); 551 cardSendTimer = new QTimer();
477 cardSendTimer->start( 2000, TRUE ); 552 cardSendTimer->start( 2000, TRUE );
478 connect( cardSendTimer, SIGNAL( timeout() ), this, SLOT( sendCard() ) ); 553 connect( cardSendTimer, SIGNAL( timeout() ), this, SLOT( sendCard() ) );
479 } 554 }
480 return TRUE; 555 return TRUE;
481 } 556 }
482// menu key now opens application menu/toolbar 557
483// if ( ke->simpleData.keycode == Key_F11 ) { 558// if ( ke->simpleData.keycode == Key_F11 ) {
484// if ( press ) emit menu(); 559// if ( press ) emit menu();
485// return TRUE; 560// return TRUE;
486// } 561// }
487 562
488 if ( ke->simpleData.keycode == Key_F12 ) { 563 if ( ke->simpleData.keycode == Key_F12 ) {
489 while ( activePopupWidget() ) 564 while ( activePopupWidget() )
490 activePopupWidget() ->close(); 565 activePopupWidget() ->close();
491 if ( press ) 566 if ( press )
492 emit launch(); 567 emit launch();
493 return TRUE; 568 return TRUE;
494 } 569 }
@@ -554,29 +629,31 @@ bool DesktopApplication::qwsEventFilter( QWSEvent *e )
554 } 629 }
555 630
556 return QPEApplication::qwsEventFilter( e ); 631 return QPEApplication::qwsEventFilter( e );
557} 632}
558#endif 633#endif
559 634
560void DesktopApplication::psTimeout() 635void DesktopApplication::psTimeout()
561{ 636{
562 qpedesktop->checkMemory(); // in case no events are being generated 637 qpedesktop->checkMemory(); // in case no events are being generated
563 638
564 *ps = PowerStatusManager::readStatus(); 639 *ps = PowerStatusManager::readStatus();
565 640
566 if ( ( ps->batteryStatus() == PowerStatus::VeryLow ) ) { 641 // if ( ( ps->batteryStatus() == PowerStatus::VeryLow ) ) {
642 if ( ( ps->batteryPercentRemaining() == m_powerVeryLow ) ) {
567 pa->alert( tr( "Battery is running very low." ), 6 ); 643 pa->alert( tr( "Battery is running very low." ), 6 );
568 } 644 }
569 645
570 if ( ps->batteryStatus() == PowerStatus::Critical ) { 646 // if ( ps->batteryStatus() == PowerStatus::Critical ) {
647 if ( ps->batteryPercentRemaining() == m_powerCritical ) {
571 pa->alert( tr( "Battery level is critical!\n" 648 pa->alert( tr( "Battery level is critical!\n"
572 "Keep power off until power restored!" ), 1 ); 649 "Keep power off until power restored!" ), 1 );
573 } 650 }
574 651
575 if ( ps->backupBatteryStatus() == PowerStatus::VeryLow ) { 652 if ( ps->backupBatteryStatus() == PowerStatus::VeryLow ) {
576 pa->alert( tr( "The Back-up battery is very low.\nPlease charge the back-up battery." ), 3 ); 653 pa->alert( tr( "The Back-up battery is very low.\nPlease charge the back-up battery." ), 3 );
577 } 654 }
578} 655}
579 656
580 657
581void DesktopApplication::sendCard() 658void DesktopApplication::sendCard()
582{ 659{
diff --git a/core/launcher/desktop.h b/core/launcher/desktop.h
index 04c2f61..15d8ef7 100644
--- a/core/launcher/desktop.h
+++ b/core/launcher/desktop.h
@@ -71,29 +71,34 @@ protected:
71 void shutdown(); 71 void shutdown();
72 void restart(); 72 void restart();
73 73
74public slots: 74public slots:
75 virtual void desktopMessage ( const QCString &msg, const QByteArray &data ); 75 virtual void desktopMessage ( const QCString &msg, const QByteArray &data );
76 virtual void systemMessage ( const QCString &msg, const QByteArray &data ); 76 virtual void systemMessage ( const QCString &msg, const QByteArray &data );
77 77
78protected slots: 78protected slots:
79 void shutdown( ShutdownImpl::Type ); 79 void shutdown( ShutdownImpl::Type );
80 void psTimeout(); 80 void psTimeout();
81 void sendCard(); 81 void sendCard();
82private: 82private:
83 void reloadPowerWarnSettings();
83 DesktopPowerAlerter *pa; 84 DesktopPowerAlerter *pa;
84 PowerStatus *ps; 85 PowerStatus *ps;
85 QTimer *cardSendTimer; 86 QTimer *cardSendTimer;
86 QCopChannel *channel; 87 QCopChannel *channel;
87 QPEScreenSaver *m_screensaver; 88 QPEScreenSaver *m_screensaver;
89 QTimer * m_timer;
90 int m_powerVeryLow;
91 int m_powerCritical;
92
88}; 93};
89 94
90 95
91class Desktop : public QWidget 96class Desktop : public QWidget
92{ 97{
93 Q_OBJECT 98 Q_OBJECT
94public: 99public:
95 Desktop(); 100 Desktop();
96 ~Desktop(); 101 ~Desktop();
97 102
98 static bool screenLocked(); 103 static bool screenLocked();
99 104