author | paule <paule> | 2007-01-31 05:11:56 (UTC) |
---|---|---|
committer | paule <paule> | 2007-01-31 05:11:56 (UTC) |
commit | 3a2db1ba1395a6d33de421ed5f3b04df53ced5bc (patch) (unidiff) | |
tree | 19af403919546824965303db78820a3f2a176bda | |
parent | f4e6ede30d494ad91fdbd0fd72498ef3a44bf7ee (diff) | |
download | opie-3a2db1ba1395a6d33de421ed5f3b04df53ced5bc.zip opie-3a2db1ba1395a6d33de421ed5f3b04df53ced5bc.tar.gz opie-3a2db1ba1395a6d33de421ed5f3b04df53ced5bc.tar.bz2 |
Specify correct parameters to needToAuthenticate() and login() so that appropriate setting is read when determining whether to authenticate or not. Fixes bug #1830.
-rw-r--r-- | core/launcher/serverapp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/serverapp.cpp b/core/launcher/serverapp.cpp index 6fe0479..0e92040 100644 --- a/core/launcher/serverapp.cpp +++ b/core/launcher/serverapp.cpp | |||
@@ -325,532 +325,532 @@ ServerApplication::ServerApplication( int& argc, char **argv, Type t ) | |||
325 | 325 | ||
326 | reloadPowerWarnSettings(); | 326 | reloadPowerWarnSettings(); |
327 | 327 | ||
328 | QCopChannel *channel = new QCopChannel( "QPE/System", this ); | 328 | QCopChannel *channel = new QCopChannel( "QPE/System", this ); |
329 | connect(channel, SIGNAL(received(const QCString&,const QByteArray&) ), | 329 | connect(channel, SIGNAL(received(const QCString&,const QByteArray&) ), |
330 | this, SLOT(systemMessage(const QCString&,const QByteArray&) ) ); | 330 | this, SLOT(systemMessage(const QCString&,const QByteArray&) ) ); |
331 | 331 | ||
332 | channel = new QCopChannel("QPE/Launcher", this ); | 332 | channel = new QCopChannel("QPE/Launcher", this ); |
333 | connect(channel, SIGNAL(received(const QCString&,const QByteArray&) ), | 333 | connect(channel, SIGNAL(received(const QCString&,const QByteArray&) ), |
334 | this, SLOT(launcherMessage(const QCString&,const QByteArray&) ) ); | 334 | this, SLOT(launcherMessage(const QCString&,const QByteArray&) ) ); |
335 | 335 | ||
336 | m_screensaver = new OpieScreenSaver(); | 336 | m_screensaver = new OpieScreenSaver(); |
337 | m_screensaver->setInterval( -1 ); | 337 | m_screensaver->setInterval( -1 ); |
338 | QWSServer::setScreenSaver( m_screensaver ); | 338 | QWSServer::setScreenSaver( m_screensaver ); |
339 | 339 | ||
340 | connect( qApp, SIGNAL( volumeChanged(bool) ), | 340 | connect( qApp, SIGNAL( volumeChanged(bool) ), |
341 | this, SLOT( rereadVolumes() ) ); | 341 | this, SLOT( rereadVolumes() ) ); |
342 | 342 | ||
343 | 343 | ||
344 | /* ### PluginLoader libqtopia SafeMode */ | 344 | /* ### PluginLoader libqtopia SafeMode */ |
345 | #if 0 | 345 | #if 0 |
346 | if ( PluginLoader::inSafeMode() ) | 346 | if ( PluginLoader::inSafeMode() ) |
347 | QTimer::singleShot(500, this, SLOT(showSafeMode()) ); | 347 | QTimer::singleShot(500, this, SLOT(showSafeMode()) ); |
348 | QTimer::singleShot(20*1000, this, SLOT(clearSafeMode()) ); | 348 | QTimer::singleShot(20*1000, this, SLOT(clearSafeMode()) ); |
349 | #endif | 349 | #endif |
350 | 350 | ||
351 | kf = new KeyFilter(this); | 351 | kf = new KeyFilter(this); |
352 | 352 | ||
353 | connect( kf, SIGNAL(launch()), this, SIGNAL(launch()) ); | 353 | connect( kf, SIGNAL(launch()), this, SIGNAL(launch()) ); |
354 | connect( kf, SIGNAL(power()), this, SIGNAL(power()) ); | 354 | connect( kf, SIGNAL(power()), this, SIGNAL(power()) ); |
355 | connect( kf, SIGNAL(backlight()), this, SIGNAL(backlight()) ); | 355 | connect( kf, SIGNAL(backlight()), this, SIGNAL(backlight()) ); |
356 | connect( kf, SIGNAL(symbol()), this, SIGNAL(symbol())); | 356 | connect( kf, SIGNAL(symbol()), this, SIGNAL(symbol())); |
357 | connect( kf, SIGNAL(numLockStateToggle()), this,SIGNAL(numLockStateToggle())); | 357 | connect( kf, SIGNAL(numLockStateToggle()), this,SIGNAL(numLockStateToggle())); |
358 | connect( kf, SIGNAL(capsLockStateToggle()), this,SIGNAL(capsLockStateToggle())); | 358 | connect( kf, SIGNAL(capsLockStateToggle()), this,SIGNAL(capsLockStateToggle())); |
359 | connect( kf, SIGNAL(activate(const Opie::Core::ODeviceButton*,bool)), | 359 | connect( kf, SIGNAL(activate(const Opie::Core::ODeviceButton*,bool)), |
360 | this,SIGNAL(activate(const Opie::Core::ODeviceButton*,bool))); | 360 | this,SIGNAL(activate(const Opie::Core::ODeviceButton*,bool))); |
361 | 361 | ||
362 | 362 | ||
363 | connect( kf, SIGNAL(backlight()), this, SLOT(toggleLight()) ); | 363 | connect( kf, SIGNAL(backlight()), this, SLOT(toggleLight()) ); |
364 | 364 | ||
365 | connect( this, SIGNAL(power() ), | 365 | connect( this, SIGNAL(power() ), |
366 | SLOT(togglePower() ) ); | 366 | SLOT(togglePower() ) ); |
367 | 367 | ||
368 | rereadVolumes(); | 368 | rereadVolumes(); |
369 | 369 | ||
370 | serverApp = this; | 370 | serverApp = this; |
371 | 371 | ||
372 | apmTimeout(); | 372 | apmTimeout(); |
373 | grabKeyboard(); | 373 | grabKeyboard(); |
374 | 374 | ||
375 | /* make sure the event filter is installed */ /* std::limits<short>::max() when you've stdc++ */ | 375 | /* make sure the event filter is installed */ /* std::limits<short>::max() when you've stdc++ */ |
376 | const ODeviceButton* but = ODevice::inst()->buttonForKeycode( SHRT_MAX ); | 376 | const ODeviceButton* but = ODevice::inst()->buttonForKeycode( SHRT_MAX ); |
377 | Q_CONST_UNUSED( but ) | 377 | Q_CONST_UNUSED( but ) |
378 | } | 378 | } |
379 | 379 | ||
380 | 380 | ||
381 | ServerApplication::~ServerApplication() | 381 | ServerApplication::~ServerApplication() |
382 | { | 382 | { |
383 | ungrabKeyboard(); | 383 | ungrabKeyboard(); |
384 | 384 | ||
385 | delete pa; | 385 | delete pa; |
386 | delete m_ps; | 386 | delete m_ps; |
387 | delete m_ps_last; | 387 | delete m_ps_last; |
388 | } | 388 | } |
389 | 389 | ||
390 | void ServerApplication::apmTimeout() | 390 | void ServerApplication::apmTimeout() |
391 | { | 391 | { |
392 | serverApp-> checkMemory( ); // in case no events are generated | 392 | serverApp-> checkMemory( ); // in case no events are generated |
393 | *m_ps_last = *m_ps; | 393 | *m_ps_last = *m_ps; |
394 | *m_ps = PowerStatusManager::readStatus(); | 394 | *m_ps = PowerStatusManager::readStatus(); |
395 | 395 | ||
396 | if ( m_ps->acStatus() != m_ps_last-> acStatus() ) | 396 | if ( m_ps->acStatus() != m_ps_last-> acStatus() ) |
397 | m_screensaver-> powerStatusChanged( *m_ps ); | 397 | m_screensaver-> powerStatusChanged( *m_ps ); |
398 | 398 | ||
399 | if ( m_ps->acStatus() == PowerStatus::Online ) { | 399 | if ( m_ps->acStatus() == PowerStatus::Online ) { |
400 | return; | 400 | return; |
401 | } | 401 | } |
402 | 402 | ||
403 | int bat = m_ps-> batteryPercentRemaining(); | 403 | int bat = m_ps-> batteryPercentRemaining(); |
404 | 404 | ||
405 | if ( bat < m_ps_last-> batteryPercentRemaining() ) { | 405 | if ( bat < m_ps_last-> batteryPercentRemaining() ) { |
406 | if ( bat <= m_powerCritical ) { | 406 | if ( bat <= m_powerCritical ) { |
407 | QMessageBox battlow( | 407 | QMessageBox battlow( |
408 | tr("WARNING"), | 408 | tr("WARNING"), |
409 | tr("<p>The battery level is critical!" | 409 | tr("<p>The battery level is critical!" |
410 | "<p>Keep power off until AC is restored"), | 410 | "<p>Keep power off until AC is restored"), |
411 | QMessageBox::Warning, | 411 | QMessageBox::Warning, |
412 | QMessageBox::Cancel, QMessageBox::NoButton, QMessageBox::NoButton, | 412 | QMessageBox::Cancel, QMessageBox::NoButton, QMessageBox::NoButton, |
413 | 0, QString::null, TRUE, WStyle_StaysOnTop); | 413 | 0, QString::null, TRUE, WStyle_StaysOnTop); |
414 | battlow.setButtonText(QMessageBox::Cancel, tr("Ok")); | 414 | battlow.setButtonText(QMessageBox::Cancel, tr("Ok")); |
415 | battlow.exec(); | 415 | battlow.exec(); |
416 | } else if ( bat <= m_powerVeryLow ) | 416 | } else if ( bat <= m_powerVeryLow ) |
417 | pa->alert( tr( "The battery is running very low. "), 2 ); | 417 | pa->alert( tr( "The battery is running very low. "), 2 ); |
418 | } | 418 | } |
419 | 419 | ||
420 | if ( m_ps-> backupBatteryStatus() == PowerStatus::VeryLow ) { | 420 | if ( m_ps-> backupBatteryStatus() == PowerStatus::VeryLow ) { |
421 | QMessageBox battlow( | 421 | QMessageBox battlow( |
422 | tr("WARNING"), | 422 | tr("WARNING"), |
423 | tr("<p>The Back-up battery is very low" | 423 | tr("<p>The Back-up battery is very low" |
424 | "<p>Please charge the back-up battery"), | 424 | "<p>Please charge the back-up battery"), |
425 | QMessageBox::Warning, | 425 | QMessageBox::Warning, |
426 | QMessageBox::Cancel, QMessageBox::NoButton, QMessageBox::NoButton, | 426 | QMessageBox::Cancel, QMessageBox::NoButton, QMessageBox::NoButton, |
427 | 0, QString::null, TRUE, WStyle_StaysOnTop); | 427 | 0, QString::null, TRUE, WStyle_StaysOnTop); |
428 | battlow.setButtonText(QMessageBox::Cancel, tr("Ok")); | 428 | battlow.setButtonText(QMessageBox::Cancel, tr("Ok")); |
429 | battlow.exec(); | 429 | battlow.exec(); |
430 | } | 430 | } |
431 | } | 431 | } |
432 | 432 | ||
433 | void ServerApplication::systemMessage( const QCString& msg, | 433 | void ServerApplication::systemMessage( const QCString& msg, |
434 | const QByteArray& data ) | 434 | const QByteArray& data ) |
435 | { | 435 | { |
436 | QDataStream stream ( data, IO_ReadOnly ); | 436 | QDataStream stream ( data, IO_ReadOnly ); |
437 | 437 | ||
438 | if ( msg == "setScreenSaverInterval(int)" ) { | 438 | if ( msg == "setScreenSaverInterval(int)" ) { |
439 | int time; | 439 | int time; |
440 | stream >> time; | 440 | stream >> time; |
441 | m_screensaver-> setInterval( time ); | 441 | m_screensaver-> setInterval( time ); |
442 | } | 442 | } |
443 | else if ( msg == "setScreenSaverIntervals(int,int,int)" ) { | 443 | else if ( msg == "setScreenSaverIntervals(int,int,int)" ) { |
444 | int t1, t2, t3; | 444 | int t1, t2, t3; |
445 | stream >> t1 >> t2 >> t3; | 445 | stream >> t1 >> t2 >> t3; |
446 | m_screensaver-> setIntervals( t1, t2, t3 ); | 446 | m_screensaver-> setIntervals( t1, t2, t3 ); |
447 | } | 447 | } |
448 | else if ( msg == "setBacklight(int)" ) { | 448 | else if ( msg == "setBacklight(int)" ) { |
449 | int bright; | 449 | int bright; |
450 | stream >> bright; | 450 | stream >> bright; |
451 | m_screensaver-> setBacklight( bright ); | 451 | m_screensaver-> setBacklight( bright ); |
452 | } | 452 | } |
453 | else if ( msg == "setScreenSaverMode(int)" ) { | 453 | else if ( msg == "setScreenSaverMode(int)" ) { |
454 | int mode; | 454 | int mode; |
455 | stream >> mode; | 455 | stream >> mode; |
456 | m_screensaver-> setMode ( mode ); | 456 | m_screensaver-> setMode ( mode ); |
457 | } | 457 | } |
458 | else if ( msg == "reloadPowerWarnSettings()" ) { | 458 | else if ( msg == "reloadPowerWarnSettings()" ) { |
459 | reloadPowerWarnSettings(); | 459 | reloadPowerWarnSettings(); |
460 | } | 460 | } |
461 | else if ( msg == "setDisplayState(int)" ) { | 461 | else if ( msg == "setDisplayState(int)" ) { |
462 | int state; | 462 | int state; |
463 | stream >> state; | 463 | stream >> state; |
464 | m_screensaver-> setDisplayState ( state != 0 ); | 464 | m_screensaver-> setDisplayState ( state != 0 ); |
465 | } | 465 | } |
466 | else if ( msg == "suspend()" ) { | 466 | else if ( msg == "suspend()" ) { |
467 | emit power(); | 467 | emit power(); |
468 | } | 468 | } |
469 | else if ( msg == "sendBusinessCard()" ) { | 469 | else if ( msg == "sendBusinessCard()" ) { |
470 | QString card = ::getenv ( "HOME" ); | 470 | QString card = ::getenv ( "HOME" ); |
471 | card += "/Applications/addressbook/businesscard.vcf"; | 471 | card += "/Applications/addressbook/businesscard.vcf"; |
472 | 472 | ||
473 | if ( QFile::exists( card ) ) { | 473 | if ( QFile::exists( card ) ) { |
474 | QCopEnvelope e ( "QPE/Obex", "send(QString,QString,QString)" ); | 474 | QCopEnvelope e ( "QPE/Obex", "send(QString,QString,QString)" ); |
475 | QString mimetype = "text/x-vCard"; | 475 | QString mimetype = "text/x-vCard"; |
476 | e << tr( "business card" ) << card << mimetype; | 476 | e << tr( "business card" ) << card << mimetype; |
477 | } | 477 | } |
478 | } | 478 | } |
479 | } | 479 | } |
480 | 480 | ||
481 | void ServerApplication::reloadPowerWarnSettings ( ) | 481 | void ServerApplication::reloadPowerWarnSettings ( ) |
482 | { | 482 | { |
483 | Config cfg ( "apm" ); | 483 | Config cfg ( "apm" ); |
484 | cfg. setGroup ( "Warnings" ); | 484 | cfg. setGroup ( "Warnings" ); |
485 | 485 | ||
486 | int iv = cfg. readNumEntry ( "checkinterval", 10000 ); | 486 | int iv = cfg. readNumEntry ( "checkinterval", 10000 ); |
487 | 487 | ||
488 | m_apm_timer-> stop ( ); | 488 | m_apm_timer-> stop ( ); |
489 | if ( iv ) | 489 | if ( iv ) |
490 | m_apm_timer-> start ( iv ); | 490 | m_apm_timer-> start ( iv ); |
491 | 491 | ||
492 | m_powerVeryLow = cfg. readNumEntry ( "powerverylow", 10 ); | 492 | m_powerVeryLow = cfg. readNumEntry ( "powerverylow", 10 ); |
493 | m_powerCritical = cfg. readNumEntry ( "powervcritical", 5 ); | 493 | m_powerCritical = cfg. readNumEntry ( "powervcritical", 5 ); |
494 | } | 494 | } |
495 | 495 | ||
496 | void ServerApplication::launcherMessage( const QCString & msg, const QByteArray & data ) | 496 | void ServerApplication::launcherMessage( const QCString & msg, const QByteArray & data ) |
497 | { | 497 | { |
498 | QDataStream stream ( data, IO_ReadOnly ); | 498 | QDataStream stream ( data, IO_ReadOnly ); |
499 | 499 | ||
500 | if ( msg == "deviceButton(int,int,int)" ) { | 500 | if ( msg == "deviceButton(int,int,int)" ) { |
501 | int keycode, press, autoRepeat; | 501 | int keycode, press, autoRepeat; |
502 | stream >> keycode >> press >> autoRepeat; | 502 | stream >> keycode >> press >> autoRepeat; |
503 | 503 | ||
504 | kf->checkButtonAction ( true, keycode, press, autoRepeat ); | 504 | kf->checkButtonAction ( true, keycode, press, autoRepeat ); |
505 | } | 505 | } |
506 | else if ( msg == "keyRegister(int,QCString,QCString)" ) { | 506 | else if ( msg == "keyRegister(int,QCString,QCString)" ) { |
507 | int k; | 507 | int k; |
508 | QCString c, m; | 508 | QCString c, m; |
509 | stream >> k >> c >> m; | 509 | stream >> k >> c >> m; |
510 | 510 | ||
511 | kf -> registerKey( QCopKeyRegister(k, c, m) ); | 511 | kf -> registerKey( QCopKeyRegister(k, c, m) ); |
512 | } | 512 | } |
513 | } | 513 | } |
514 | 514 | ||
515 | 515 | ||
516 | bool ServerApplication::screenLocked() | 516 | bool ServerApplication::screenLocked() |
517 | { | 517 | { |
518 | return loggedin == 0; | 518 | return loggedin == 0; |
519 | } | 519 | } |
520 | 520 | ||
521 | void ServerApplication::login(bool at_poweron) | 521 | void ServerApplication::login(bool at_poweron) |
522 | { | 522 | { |
523 | if ( !loggedin ) { | 523 | if ( !loggedin ) { |
524 | Global::terminateBuiltin("calibrate"); // No tr | 524 | Global::terminateBuiltin("calibrate"); // No tr |
525 | int lockMode = at_poweron ? Opie::Security::IfPowerOn : Opie::Security::IfResume; | 525 | int lockMode = at_poweron ? Opie::Security::IfPowerOn : Opie::Security::IfResume; |
526 | Opie::Security::MultiauthPassword::authenticate(lockMode); | 526 | Opie::Security::MultiauthPassword::authenticate(lockMode); |
527 | loggedin=1; | 527 | loggedin=1; |
528 | #ifndef QT_NO_COP | 528 | #ifndef QT_NO_COP |
529 | QCopEnvelope e( "QPE/Desktop", "unlocked()" ); | 529 | QCopEnvelope e( "QPE/Desktop", "unlocked()" ); |
530 | #endif | 530 | #endif |
531 | } | 531 | } |
532 | } | 532 | } |
533 | 533 | ||
534 | #if defined(QPE_HAVE_TOGGLELIGHT) | 534 | #if defined(QPE_HAVE_TOGGLELIGHT) |
535 | #include <qtopia/config.h> | 535 | #include <qtopia/config.h> |
536 | 536 | ||
537 | #include <sys/ioctl.h> | 537 | #include <sys/ioctl.h> |
538 | #include <sys/types.h> | 538 | #include <sys/types.h> |
539 | #include <fcntl.h> | 539 | #include <fcntl.h> |
540 | #include <unistd.h> | 540 | #include <unistd.h> |
541 | #include <errno.h> | 541 | #include <errno.h> |
542 | #include <linux/ioctl.h> | 542 | #include <linux/ioctl.h> |
543 | #include <time.h> | 543 | #include <time.h> |
544 | #endif | 544 | #endif |
545 | 545 | ||
546 | namespace { | 546 | namespace { |
547 | void execAutoStart(const QDateTime& suspendTime ) { | 547 | void execAutoStart(const QDateTime& suspendTime ) { |
548 | QString appName; | 548 | QString appName; |
549 | int delay; | 549 | int delay; |
550 | QDateTime now = QDateTime::currentDateTime(); | 550 | QDateTime now = QDateTime::currentDateTime(); |
551 | 551 | ||
552 | Config cfg( "autostart" ); | 552 | Config cfg( "autostart" ); |
553 | cfg.setGroup( "AutoStart" ); | 553 | cfg.setGroup( "AutoStart" ); |
554 | appName = cfg.readEntry( "Apps", "" ); | 554 | appName = cfg.readEntry( "Apps", "" ); |
555 | delay = cfg.readNumEntry( "Delay", 0 ); | 555 | delay = cfg.readNumEntry( "Delay", 0 ); |
556 | 556 | ||
557 | // If the time between suspend and resume was longer then the | 557 | // If the time between suspend and resume was longer then the |
558 | // value saved as delay, start the app | 558 | // value saved as delay, start the app |
559 | if ( suspendTime.secsTo( now ) >= ( delay * 60 ) && !appName.isEmpty() ) { | 559 | if ( suspendTime.secsTo( now ) >= ( delay * 60 ) && !appName.isEmpty() ) { |
560 | QCopEnvelope e( "QPE/System", "execute(QString)" ); | 560 | QCopEnvelope e( "QPE/System", "execute(QString)" ); |
561 | e << QString( appName ); | 561 | e << QString( appName ); |
562 | } | 562 | } |
563 | } | 563 | } |
564 | } | 564 | } |
565 | 565 | ||
566 | 566 | ||
567 | void ServerApplication::togglePower() | 567 | void ServerApplication::togglePower() |
568 | { | 568 | { |
569 | static bool excllock = false; | 569 | static bool excllock = false; |
570 | 570 | ||
571 | if ( excllock ) | 571 | if ( excllock ) |
572 | return ; | 572 | return ; |
573 | 573 | ||
574 | excllock = true; | 574 | excllock = true; |
575 | 575 | ||
576 | bool wasloggedin = loggedin; | 576 | bool wasloggedin = loggedin; |
577 | loggedin = 0; | 577 | loggedin = 0; |
578 | m_suspendTime = QDateTime::currentDateTime(); | 578 | m_suspendTime = QDateTime::currentDateTime(); |
579 | 579 | ||
580 | #ifdef QWS | 580 | #ifdef QWS |
581 | if ( Opie::Security::MultiauthPassword::needToAuthenticate ( true ) && qt_screen ) { | 581 | if ( Opie::Security::MultiauthPassword::needToAuthenticate ( false ) && qt_screen ) { |
582 | // Should use a big black window instead. | 582 | // Should use a big black window instead. |
583 | // But this would not show up fast enough | 583 | // But this would not show up fast enough |
584 | QGfx *g = qt_screen-> screenGfx ( ); | 584 | QGfx *g = qt_screen-> screenGfx ( ); |
585 | g-> fillRect ( 0, 0, qt_screen-> width ( ), qt_screen-> height ( )); | 585 | g-> fillRect ( 0, 0, qt_screen-> width ( ), qt_screen-> height ( )); |
586 | delete g; | 586 | delete g; |
587 | } | 587 | } |
588 | #endif | 588 | #endif |
589 | 589 | ||
590 | ODevice::inst ( )-> suspend ( ); | 590 | ODevice::inst ( )-> suspend ( ); |
591 | 591 | ||
592 | ServerApplication::switchLCD ( true ); // force LCD on without slow qcop call | 592 | ServerApplication::switchLCD ( true ); // force LCD on without slow qcop call |
593 | QWSServer::screenSaverActivate ( false ); | 593 | QWSServer::screenSaverActivate ( false ); |
594 | 594 | ||
595 | { | 595 | { |
596 | QCopEnvelope( "QPE/Card", "mtabChanged()" ); // might have changed while asleep | 596 | QCopEnvelope( "QPE/Card", "mtabChanged()" ); // might have changed while asleep |
597 | } | 597 | } |
598 | 598 | ||
599 | if ( wasloggedin ) | 599 | if ( wasloggedin ) |
600 | login ( true ); | 600 | login ( false ); |
601 | 601 | ||
602 | execAutoStart(m_suspendTime); | 602 | execAutoStart(m_suspendTime); |
603 | //qcopBridge->closeOpenConnections(); | 603 | //qcopBridge->closeOpenConnections(); |
604 | 604 | ||
605 | excllock = false; | 605 | excllock = false; |
606 | } | 606 | } |
607 | 607 | ||
608 | void ServerApplication::toggleLight() | 608 | void ServerApplication::toggleLight() |
609 | { | 609 | { |
610 | #ifndef QT_NO_COP | 610 | #ifndef QT_NO_COP |
611 | QCopEnvelope e("QPE/System", "setBacklight(int)"); | 611 | QCopEnvelope e("QPE/System", "setBacklight(int)"); |
612 | e << -2; // toggle | 612 | e << -2; // toggle |
613 | #endif | 613 | #endif |
614 | } | 614 | } |
615 | 615 | ||
616 | 616 | ||
617 | /* | 617 | /* |
618 | * We still listen to key events but handle them in | 618 | * We still listen to key events but handle them in |
619 | * a special class | 619 | * a special class |
620 | */ | 620 | */ |
621 | 621 | ||
622 | bool ServerApplication::eventFilter( QObject *o, QEvent *e) { | 622 | bool ServerApplication::eventFilter( QObject *o, QEvent *e) { |
623 | if ( e->type() != QEvent::KeyPress && | 623 | if ( e->type() != QEvent::KeyPress && |
624 | e->type() != QEvent::KeyRelease ) | 624 | e->type() != QEvent::KeyRelease ) |
625 | return QPEApplication::eventFilter( o, e ); | 625 | return QPEApplication::eventFilter( o, e ); |
626 | 626 | ||
627 | QKeyEvent *ke = static_cast<QKeyEvent*>( e ); | 627 | QKeyEvent *ke = static_cast<QKeyEvent*>( e ); |
628 | if ( kf->checkButtonAction( true, ke->key(), | 628 | if ( kf->checkButtonAction( true, ke->key(), |
629 | e->type() == QEvent::KeyPress, | 629 | e->type() == QEvent::KeyPress, |
630 | ke-> isAutoRepeat() )) | 630 | ke-> isAutoRepeat() )) |
631 | return true; | 631 | return true; |
632 | 632 | ||
633 | return QPEApplication::eventFilter( o, e ); | 633 | return QPEApplication::eventFilter( o, e ); |
634 | 634 | ||
635 | } | 635 | } |
636 | 636 | ||
637 | #ifdef Q_WS_QWS | 637 | #ifdef Q_WS_QWS |
638 | bool ServerApplication::qwsEventFilter( QWSEvent *e ) | 638 | bool ServerApplication::qwsEventFilter( QWSEvent *e ) |
639 | { | 639 | { |
640 | checkMemory(); | 640 | checkMemory(); |
641 | 641 | ||
642 | if ( e->type == QWSEvent::Mouse ) { | 642 | if ( e->type == QWSEvent::Mouse ) { |
643 | QWSMouseEvent *me = (QWSMouseEvent *)e; | 643 | QWSMouseEvent *me = (QWSMouseEvent *)e; |
644 | static bool up = TRUE; | 644 | static bool up = TRUE; |
645 | if ( me->simpleData.state&LeftButton ) { | 645 | if ( me->simpleData.state&LeftButton ) { |
646 | if ( up ) { | 646 | if ( up ) { |
647 | up = FALSE; | 647 | up = FALSE; |
648 | screenClick(TRUE); | 648 | screenClick(TRUE); |
649 | } | 649 | } |
650 | } else if ( !up ) { | 650 | } else if ( !up ) { |
651 | up = TRUE; | 651 | up = TRUE; |
652 | screenClick(FALSE); | 652 | screenClick(FALSE); |
653 | } | 653 | } |
654 | } else | 654 | } else |
655 | if ( e->type == QWSEvent::Key ) { | 655 | if ( e->type == QWSEvent::Key ) { |
656 | QWSKeyEvent * ke = static_cast<QWSKeyEvent*>( e ); | 656 | QWSKeyEvent * ke = static_cast<QWSKeyEvent*>( e ); |
657 | if ( kf->checkButtonAction( false, | 657 | if ( kf->checkButtonAction( false, |
658 | ke-> simpleData.keycode, | 658 | ke-> simpleData.keycode, |
659 | ke-> simpleData.is_press, | 659 | ke-> simpleData.is_press, |
660 | ke-> simpleData.is_auto_repeat ) ) | 660 | ke-> simpleData.is_auto_repeat ) ) |
661 | return true; | 661 | return true; |
662 | } | 662 | } |
663 | 663 | ||
664 | return QPEApplication::qwsEventFilter( e ); | 664 | return QPEApplication::qwsEventFilter( e ); |
665 | } | 665 | } |
666 | #endif | 666 | #endif |
667 | 667 | ||
668 | 668 | ||
669 | /* ### FIXME libqtopia Plugin Safe Mode */ | 669 | /* ### FIXME libqtopia Plugin Safe Mode */ |
670 | 670 | ||
671 | void ServerApplication::showSafeMode() | 671 | void ServerApplication::showSafeMode() |
672 | { | 672 | { |
673 | #if 0 | 673 | #if 0 |
674 | if ( QMessageBox::warning(0, tr("Safe Mode"), tr("<P>A system startup error occurred, " | 674 | if ( QMessageBox::warning(0, tr("Safe Mode"), tr("<P>A system startup error occurred, " |
675 | "and the system is now in Safe Mode. " | 675 | "and the system is now in Safe Mode. " |
676 | "Plugins are not loaded in Safe Mode. " | 676 | "Plugins are not loaded in Safe Mode. " |
677 | "You can use the Plugin Manager to " | 677 | "You can use the Plugin Manager to " |
678 | "disable plugins that cause system error."), tr("OK"), tr("Plugin Manager..."), 0) == 1 ) | 678 | "disable plugins that cause system error."), tr("OK"), tr("Plugin Manager..."), 0) == 1 ) |
679 | { | 679 | { |
680 | Global::execute( "pluginmanager" ); | 680 | Global::execute( "pluginmanager" ); |
681 | } | 681 | } |
682 | #endif | 682 | #endif |
683 | } | 683 | } |
684 | 684 | ||
685 | void ServerApplication::clearSafeMode() | 685 | void ServerApplication::clearSafeMode() |
686 | { | 686 | { |
687 | #if 0 | 687 | #if 0 |
688 | // If we've been running OK for a while then we won't bother going into | 688 | // If we've been running OK for a while then we won't bother going into |
689 | // safe mode immediately on the next crash. | 689 | // safe mode immediately on the next crash. |
690 | Config cfg( "PluginLoader" ); | 690 | Config cfg( "PluginLoader" ); |
691 | cfg.setGroup( "Global" ); | 691 | cfg.setGroup( "Global" ); |
692 | QString mode = cfg.readEntry( "Mode", "Normal" ); | 692 | QString mode = cfg.readEntry( "Mode", "Normal" ); |
693 | if ( mode == "MaybeSafe" ) { | 693 | if ( mode == "MaybeSafe" ) { |
694 | cfg.writeEntry( "Mode", "Normal" ); | 694 | cfg.writeEntry( "Mode", "Normal" ); |
695 | } | 695 | } |
696 | #endif | 696 | #endif |
697 | } | 697 | } |
698 | 698 | ||
699 | 699 | ||
700 | void ServerApplication::shutdown() | 700 | void ServerApplication::shutdown() |
701 | { | 701 | { |
702 | if ( type() != GuiServer ) | 702 | if ( type() != GuiServer ) |
703 | return; | 703 | return; |
704 | ShutdownImpl *sd = new ShutdownImpl( 0, 0, WDestructiveClose ); | 704 | ShutdownImpl *sd = new ShutdownImpl( 0, 0, WDestructiveClose ); |
705 | connect( sd, SIGNAL(shutdown(ShutdownImpl::Type)), | 705 | connect( sd, SIGNAL(shutdown(ShutdownImpl::Type)), |
706 | this, SLOT(shutdown(ShutdownImpl::Type)) ); | 706 | this, SLOT(shutdown(ShutdownImpl::Type)) ); |
707 | QPEApplication::showWidget( sd ); | 707 | QPEApplication::showWidget( sd ); |
708 | } | 708 | } |
709 | 709 | ||
710 | void ServerApplication::shutdown( ShutdownImpl::Type t ) | 710 | void ServerApplication::shutdown( ShutdownImpl::Type t ) |
711 | { | 711 | { |
712 | char *opt = 0; | 712 | char *opt = 0; |
713 | 713 | ||
714 | switch ( t ) { | 714 | switch ( t ) { |
715 | case ShutdownImpl::ShutdownSystem: | 715 | case ShutdownImpl::ShutdownSystem: |
716 | opt = "-h"; | 716 | opt = "-h"; |
717 | // fall through | 717 | // fall through |
718 | case ShutdownImpl::RebootSystem: | 718 | case ShutdownImpl::RebootSystem: |
719 | if ( opt == 0 ) | 719 | if ( opt == 0 ) |
720 | opt = "-r"; | 720 | opt = "-r"; |
721 | 721 | ||
722 | if ( execl( "/sbin/shutdown", "shutdown", opt, "now", ( void* ) 0) < 0 ) | 722 | if ( execl( "/sbin/shutdown", "shutdown", opt, "now", ( void* ) 0) < 0 ) |
723 | perror("shutdown"); | 723 | perror("shutdown"); |
724 | // ::syslog ( LOG_ERR, "Erroring execing shutdown\n" ); | 724 | // ::syslog ( LOG_ERR, "Erroring execing shutdown\n" ); |
725 | 725 | ||
726 | break; | 726 | break; |
727 | case ShutdownImpl::RestartDesktop: | 727 | case ShutdownImpl::RestartDesktop: |
728 | restart(); | 728 | restart(); |
729 | break; | 729 | break; |
730 | case ShutdownImpl::TerminateDesktop: | 730 | case ShutdownImpl::TerminateDesktop: |
731 | prepareForTermination( FALSE ); | 731 | prepareForTermination( FALSE ); |
732 | 732 | ||
733 | // This is a workaround for a Qt bug | 733 | // This is a workaround for a Qt bug |
734 | // clipboard applet has to stop its poll timer, or Qt/E | 734 | // clipboard applet has to stop its poll timer, or Qt/E |
735 | // will hang on quit() right before it emits aboutToQuit() | 735 | // will hang on quit() right before it emits aboutToQuit() |
736 | emit aboutToQuit ( ); | 736 | emit aboutToQuit ( ); |
737 | 737 | ||
738 | quit(); | 738 | quit(); |
739 | break; | 739 | break; |
740 | } | 740 | } |
741 | } | 741 | } |
742 | 742 | ||
743 | void ServerApplication::restart() | 743 | void ServerApplication::restart() |
744 | { | 744 | { |
745 | if ( allowRestart ) { | 745 | if ( allowRestart ) { |
746 | 746 | ||
747 | /* | 747 | /* |
748 | * Applets and restart is a problem. Some applets delete | 748 | * Applets and restart is a problem. Some applets delete |
749 | * their widgets even if ownership gets transfered to the | 749 | * their widgets even if ownership gets transfered to the |
750 | * parent (Systray ) but deleting the applet may be unsafe | 750 | * parent (Systray ) but deleting the applet may be unsafe |
751 | * as well ( double deletion ). Some have topLevel widgets | 751 | * as well ( double deletion ). Some have topLevel widgets |
752 | * and when we dlclose and then delete the widget we will | 752 | * and when we dlclose and then delete the widget we will |
753 | * crash and an crash during restart is not nice | 753 | * crash and an crash during restart is not nice |
754 | */ | 754 | */ |
755 | #ifdef ALL_APPLETS_ON_THIS_WORLD_ARE_FIXED | 755 | #ifdef ALL_APPLETS_ON_THIS_WORLD_ARE_FIXED |
756 | /* same as above */ | 756 | /* same as above */ |
757 | emit aboutToQuit(); | 757 | emit aboutToQuit(); |
758 | prepareForTermination(TRUE); | 758 | prepareForTermination(TRUE); |
759 | doRestart = TRUE; | 759 | doRestart = TRUE; |
760 | quit(); | 760 | quit(); |
761 | #else | 761 | #else |
762 | prepareForTermination( true ); | 762 | prepareForTermination( true ); |
763 | for ( int fd = 3; fd < 100; fd++ ) | 763 | for ( int fd = 3; fd < 100; fd++ ) |
764 | close( fd ); | 764 | close( fd ); |
765 | execl( ( qpeDir() + "/bin/qpe" ).local8Bit(), "qpe", NULL ); | 765 | execl( ( qpeDir() + "/bin/qpe" ).local8Bit(), "qpe", NULL ); |
766 | exit( 1 ); | 766 | exit( 1 ); |
767 | #endif | 767 | #endif |
768 | } | 768 | } |
769 | } | 769 | } |
770 | 770 | ||
771 | void ServerApplication::rereadVolumes() | 771 | void ServerApplication::rereadVolumes() |
772 | { | 772 | { |
773 | Config cfg( "qpe" ); | 773 | Config cfg( "qpe" ); |
774 | cfg. setGroup ( "Volume" ); | 774 | cfg. setGroup ( "Volume" ); |
775 | 775 | ||
776 | m_screentap_sound = cfg. readBoolEntry ( "TouchSound" ); | 776 | m_screentap_sound = cfg. readBoolEntry ( "TouchSound" ); |
777 | m_keyclick_sound = cfg. readBoolEntry ( "KeySound" ); | 777 | m_keyclick_sound = cfg. readBoolEntry ( "KeySound" ); |
778 | m_alarm_sound = cfg. readBoolEntry ( "AlarmSound" ); | 778 | m_alarm_sound = cfg. readBoolEntry ( "AlarmSound" ); |
779 | } | 779 | } |
780 | 780 | ||
781 | 781 | ||
782 | void ServerApplication::checkMemory() | 782 | void ServerApplication::checkMemory() |
783 | { | 783 | { |
784 | #if defined(QPE_HAVE_MEMALERTER) | 784 | #if defined(QPE_HAVE_MEMALERTER) |
785 | static bool ignoreNormal=TRUE; | 785 | static bool ignoreNormal=TRUE; |
786 | static bool existingMessage=FALSE; | 786 | static bool existingMessage=FALSE; |
787 | 787 | ||
788 | if(existingMessage) | 788 | if(existingMessage) |
789 | return; // don't show a second message while still on first | 789 | return; // don't show a second message while still on first |
790 | 790 | ||
791 | existingMessage = TRUE; | 791 | existingMessage = TRUE; |
792 | switch ( memstate ) { | 792 | switch ( memstate ) { |
793 | case MemUnknown: | 793 | case MemUnknown: |
794 | break; | 794 | break; |
795 | case MemLow: | 795 | case MemLow: |
796 | memstate = MemUnknown; | 796 | memstate = MemUnknown; |
797 | if ( !recoverMemory() ) { | 797 | if ( !recoverMemory() ) { |
798 | QMessageBox::warning( 0 , tr("Memory Status"), | 798 | QMessageBox::warning( 0 , tr("Memory Status"), |
799 | tr("Memory Low\nPlease save data.") ); | 799 | tr("Memory Low\nPlease save data.") ); |
800 | ignoreNormal = FALSE; | 800 | ignoreNormal = FALSE; |
801 | } | 801 | } |
802 | break; | 802 | break; |
803 | case MemNormal: | 803 | case MemNormal: |
804 | memstate = MemUnknown; | 804 | memstate = MemUnknown; |
805 | if ( !ignoreNormal ) { | 805 | if ( !ignoreNormal ) { |
806 | ignoreNormal = TRUE; | 806 | ignoreNormal = TRUE; |
807 | QMessageBox::information ( 0 , tr("Memory Status"), | 807 | QMessageBox::information ( 0 , tr("Memory Status"), |
808 | "Memory OK" ); | 808 | "Memory OK" ); |
809 | } | 809 | } |
810 | break; | 810 | break; |
811 | case MemVeryLow: | 811 | case MemVeryLow: |
812 | memstate = MemUnknown; | 812 | memstate = MemUnknown; |
813 | QMessageBox::critical( 0 , tr("Memory Status"), | 813 | QMessageBox::critical( 0 , tr("Memory Status"), |
814 | tr("Critical Memory Shortage\n" | 814 | tr("Critical Memory Shortage\n" |
815 | "Please end this application\n" | 815 | "Please end this application\n" |
816 | "immediately.") ); | 816 | "immediately.") ); |
817 | recoverMemory(); | 817 | recoverMemory(); |
818 | } | 818 | } |
819 | existingMessage = FALSE; | 819 | existingMessage = FALSE; |
820 | #endif | 820 | #endif |
821 | } | 821 | } |
822 | 822 | ||
823 | bool ServerApplication::recoverMemory() | 823 | bool ServerApplication::recoverMemory() |
824 | { | 824 | { |
825 | return FALSE; | 825 | return FALSE; |
826 | } | 826 | } |
827 | 827 | ||
828 | void ServerApplication::keyClick(int , bool press, bool ) | 828 | void ServerApplication::keyClick(int , bool press, bool ) |
829 | { | 829 | { |
830 | if ( press && m_keyclick_sound ) | 830 | if ( press && m_keyclick_sound ) |
831 | ODevice::inst() -> playKeySound(); | 831 | ODevice::inst() -> playKeySound(); |
832 | 832 | ||
833 | } | 833 | } |
834 | 834 | ||
835 | void ServerApplication::screenClick(bool press) | 835 | void ServerApplication::screenClick(bool press) |
836 | { | 836 | { |
837 | if ( press && m_screentap_sound ) | 837 | if ( press && m_screentap_sound ) |
838 | ODevice::inst() -> playTouchSound(); | 838 | ODevice::inst() -> playTouchSound(); |
839 | } | 839 | } |
840 | 840 | ||
841 | void ServerApplication::soundAlarm() { | 841 | void ServerApplication::soundAlarm() { |
842 | if ( me ()->m_alarm_sound ) | 842 | if ( me ()->m_alarm_sound ) |
843 | ODevice::inst()->playAlarmSound(); | 843 | ODevice::inst()->playAlarmSound(); |
844 | } | 844 | } |
845 | 845 | ||
846 | ServerApplication *ServerApplication::me ( ) | 846 | ServerApplication *ServerApplication::me ( ) |
847 | { | 847 | { |
848 | return static_cast<ServerApplication*>( qApp ); | 848 | return static_cast<ServerApplication*>( qApp ); |
849 | } | 849 | } |
850 | 850 | ||
851 | bool ServerApplication::isStarting() | 851 | bool ServerApplication::isStarting() |
852 | { | 852 | { |
853 | return ms_is_starting; | 853 | return ms_is_starting; |
854 | } | 854 | } |
855 | 855 | ||
856 | int ServerApplication::exec() | 856 | int ServerApplication::exec() |