-rw-r--r-- | library/qpeapplication.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 6f2e43b..c7ef2b7 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -343,193 +343,193 @@ static int& hack(int& i) | |||
343 | static int muted = 0; | 343 | static int muted = 0; |
344 | static int micMuted = 0; | 344 | static int micMuted = 0; |
345 | 345 | ||
346 | static void setVolume( int t = 0, int percent = -1 ) | 346 | static void setVolume( int t = 0, int percent = -1 ) |
347 | { | 347 | { |
348 | switch ( t ) { | 348 | switch ( t ) { |
349 | case 0: { | 349 | case 0: { |
350 | Config cfg( "qpe" ); | 350 | Config cfg( "qpe" ); |
351 | cfg.setGroup( "Volume" ); | 351 | cfg.setGroup( "Volume" ); |
352 | if ( percent < 0 ) | 352 | if ( percent < 0 ) |
353 | percent = cfg.readNumEntry( "VolumePercent", 50 ); | 353 | percent = cfg.readNumEntry( "VolumePercent", 50 ); |
354 | #ifndef QT_NO_SOUND | 354 | #ifndef QT_NO_SOUND |
355 | int fd = 0; | 355 | int fd = 0; |
356 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 356 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
357 | int vol = muted ? 0 : percent; | 357 | int vol = muted ? 0 : percent; |
358 | // set both channels to same volume | 358 | // set both channels to same volume |
359 | vol |= vol << 8; | 359 | vol |= vol << 8; |
360 | ioctl( fd, MIXER_WRITE( 0 ), &vol ); | 360 | ioctl( fd, MIXER_WRITE( 0 ), &vol ); |
361 | ::close( fd ); | 361 | ::close( fd ); |
362 | } | 362 | } |
363 | #endif | 363 | #endif |
364 | } | 364 | } |
365 | break; | 365 | break; |
366 | } | 366 | } |
367 | } | 367 | } |
368 | 368 | ||
369 | static void setMic( int t = 0, int percent = -1 ) | 369 | static void setMic( int t = 0, int percent = -1 ) |
370 | { | 370 | { |
371 | switch ( t ) { | 371 | switch ( t ) { |
372 | case 0: { | 372 | case 0: { |
373 | Config cfg( "qpe" ); | 373 | Config cfg( "qpe" ); |
374 | cfg.setGroup( "Volume" ); | 374 | cfg.setGroup( "Volume" ); |
375 | if ( percent < 0 ) | 375 | if ( percent < 0 ) |
376 | percent = cfg.readNumEntry( "Mic", 50 ); | 376 | percent = cfg.readNumEntry( "Mic", 50 ); |
377 | 377 | ||
378 | #ifndef QT_NO_SOUND | 378 | #ifndef QT_NO_SOUND |
379 | int fd = 0; | 379 | int fd = 0; |
380 | int mic = micMuted ? 0 : percent; | 380 | int mic = micMuted ? 0 : percent; |
381 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 381 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
382 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_MIC ), &mic ); | 382 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_MIC ), &mic ); |
383 | ::close( fd ); | 383 | ::close( fd ); |
384 | } | 384 | } |
385 | #endif | 385 | #endif |
386 | } | 386 | } |
387 | break; | 387 | break; |
388 | } | 388 | } |
389 | } | 389 | } |
390 | 390 | ||
391 | 391 | ||
392 | static void setBass( int t = 0, int percent = -1 ) | 392 | static void setBass( int t = 0, int percent = -1 ) |
393 | { | 393 | { |
394 | switch ( t ) { | 394 | switch ( t ) { |
395 | case 0: { | 395 | case 0: { |
396 | Config cfg( "qpe" ); | 396 | Config cfg( "qpe" ); |
397 | cfg.setGroup( "Volume" ); | 397 | cfg.setGroup( "Volume" ); |
398 | if ( percent < 0 ) | 398 | if ( percent < 0 ) |
399 | percent = cfg.readNumEntry( "BassPercent", 50 ); | 399 | percent = cfg.readNumEntry( "BassPercent", 50 ); |
400 | 400 | ||
401 | #ifndef QT_NO_SOUND | 401 | #ifndef QT_NO_SOUND |
402 | int fd = 0; | 402 | int fd = 0; |
403 | int bass = percent; | 403 | int bass = percent; |
404 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 404 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
405 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_BASS ), &bass ); | 405 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_BASS ), &bass ); |
406 | ::close( fd ); | 406 | ::close( fd ); |
407 | } | 407 | } |
408 | #endif | 408 | #endif |
409 | } | 409 | } |
410 | break; | 410 | break; |
411 | } | 411 | } |
412 | } | 412 | } |
413 | 413 | ||
414 | 414 | ||
415 | static void setTreble( int t = 0, int percent = -1 ) | 415 | static void setTreble( int t = 0, int percent = -1 ) |
416 | { | 416 | { |
417 | switch ( t ) { | 417 | switch ( t ) { |
418 | case 0: { | 418 | case 0: { |
419 | Config cfg( "qpe" ); | 419 | Config cfg( "qpe" ); |
420 | cfg.setGroup( "Volume" ); | 420 | cfg.setGroup( "Volume" ); |
421 | if ( percent < 0 ) | 421 | if ( percent < 0 ) |
422 | percent = cfg.readNumEntry( "TreblePercent", 50 ); | 422 | percent = cfg.readNumEntry( "TreblePercent", 50 ); |
423 | 423 | ||
424 | #ifndef QT_NO_SOUND | 424 | #ifndef QT_NO_SOUND |
425 | int fd = 0; | 425 | int fd = 0; |
426 | int treble = percent; | 426 | int treble = percent; |
427 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 427 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
428 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_TREBLE ), &treble ); | 428 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_TREBLE ), &treble ); |
429 | ::close( fd ); | 429 | ::close( fd ); |
430 | } | 430 | } |
431 | #endif | 431 | #endif |
432 | } | 432 | } |
433 | break; | 433 | break; |
434 | } | 434 | } |
435 | } | 435 | } |
436 | 436 | ||
437 | 437 | ||
438 | /** | 438 | /** |
439 | \class QPEApplication | 439 | \class QPEApplication |
440 | \brief The QPEApplication class implements various system services | 440 | \brief The QPEApplication class implements various system services |
441 | that are available to all Qtopia applications. | 441 | that are available to all Qtopia applications. |
442 | 442 | ||
443 | Simply by using QPEApplication instead of QApplication, a standard Qt | 443 | Simply by using QPEApplication instead of QApplication, a standard Qt |
444 | application becomes a Qtopia application. It automatically follows | 444 | application becomes a Qtopia application. It automatically follows |
445 | style changes, quits and raises, and in the | 445 | style changes, quits and raises, and in the |
446 | case of \link docwidget.html document-oriented\endlink applications, | 446 | case of \link docwidget.html document-oriented\endlink applications, |
447 | changes the currently displayed document in response to the environment. | 447 | changes the currently displayed document in response to the environment. |
448 | 448 | ||
449 | To create a \link docwidget.html document-oriented\endlink | 449 | To create a \link docwidget.html document-oriented\endlink |
450 | application use showMainDocumentWidget(); to create a | 450 | application use showMainDocumentWidget(); to create a |
451 | non-document-oriented application use showMainWidget(). The | 451 | non-document-oriented application use showMainWidget(). The |
452 | keepRunning() function indicates whether the application will | 452 | keepRunning() function indicates whether the application will |
453 | continue running after it's processed the last \link qcop.html | 453 | continue running after it's processed the last \link qcop.html |
454 | QCop\endlink message. This can be changed using setKeepRunning(). | 454 | QCop\endlink message. This can be changed using setKeepRunning(). |
455 | 455 | ||
456 | A variety of signals are emitted when certain events occur, for | 456 | A variety of signals are emitted when certain events occur, for |
457 | example, timeChanged(), clockChanged(), weekChanged(), | 457 | example, timeChanged(), clockChanged(), weekChanged(), |
458 | dateFormatChanged() and volumeChanged(). If the application receives | 458 | dateFormatChanged() and volumeChanged(). If the application receives |
459 | a \link qcop.html QCop\endlink message on the application's | 459 | a \link qcop.html QCop\endlink message on the application's |
460 | QPE/Application/\e{appname} channel, the appMessage() signal is | 460 | QPE/Application/\e{appname} channel, the appMessage() signal is |
461 | emitted. There are also flush() and reload() signals, which | 461 | emitted. There are also flush() and reload() signals, which |
462 | are emitted when synching begins and ends respectively - upon these | 462 | are emitted when synching begins and ends respectively - upon these |
463 | signals, the application should save and reload any data | 463 | signals, the application should save and reload any data |
464 | files that are involved in synching. Most of these signals will initially | 464 | files that are involved in synching. Most of these signals will initially |
465 | be received and unfiltered through the appMessage() signal. | 465 | be received and unfiltered through the appMessage() signal. |
466 | 466 | ||
467 | This class also provides a set of useful static functions. The | 467 | This class also provides a set of useful static functions. The |
468 | qpeDir() and documentDir() functions return the respective paths. | 468 | qpeDir() and documentDir() functions return the respective paths. |
469 | The grabKeyboard() and ungrabKeyboard() functions are used to | 469 | The grabKeyboard() and ungrabKeyboard() functions are used to |
470 | control whether the application takes control of the device's | 470 | control whether the application takes control of the device's |
471 | physical buttons (e.g. application launch keys). The stylus' mode of | 471 | physical buttons (e.g. application launch keys). The stylus' mode of |
472 | operation is set with setStylusOperation() and retrieved with | 472 | operation is set with setStylusOperation() and retrieved with |
473 | stylusOperation(). There are also setInputMethodHint() and | 473 | stylusOperation(). There are also setInputMethodHint() and |
474 | inputMethodHint() functions. | 474 | inputMethodHint() functions. |
475 | 475 | ||
476 | \ingroup qtopiaemb | 476 | \ingroup qtopiaemb |
477 | */ | 477 | */ |
478 | 478 | ||
479 | /*! | 479 | /*! |
480 | \fn void QPEApplication::clientMoused() | 480 | \fn void QPEApplication::clientMoused() |
481 | 481 | ||
482 | \internal | 482 | \internal |
483 | */ | 483 | */ |
484 | 484 | ||
485 | /*! | 485 | /*! |
486 | \fn void QPEApplication::timeChanged(); | 486 | \fn void QPEApplication::timeChanged(); |
487 | This signal is emitted when the time changes outside the normal | 487 | This signal is emitted when the time changes outside the normal |
488 | passage of time, i.e. if the time is set backwards or forwards. | 488 | passage of time, i.e. if the time is set backwards or forwards. |
489 | */ | 489 | */ |
490 | 490 | ||
491 | /*! | 491 | /*! |
492 | \fn void QPEApplication::clockChanged( bool ampm ); | 492 | \fn void QPEApplication::clockChanged( bool ampm ); |
493 | 493 | ||
494 | This signal is emitted when the user changes the clock's style. If | 494 | This signal is emitted when the user changes the clock's style. If |
495 | \a ampm is TRUE, the user wants a 12-hour AM/PM clock, otherwise, | 495 | \a ampm is TRUE, the user wants a 12-hour AM/PM clock, otherwise, |
496 | they want a 24-hour clock. | 496 | they want a 24-hour clock. |
497 | */ | 497 | */ |
498 | 498 | ||
499 | /*! | 499 | /*! |
500 | \fn void QPEApplication::volumeChanged( bool muted ) | 500 | \fn void QPEApplication::volumeChanged( bool muted ) |
501 | 501 | ||
502 | This signal is emitted whenever the mute state is changed. If \a | 502 | This signal is emitted whenever the mute state is changed. If \a |
503 | muted is TRUE, then sound output has been muted. | 503 | muted is TRUE, then sound output has been muted. |
504 | */ | 504 | */ |
505 | 505 | ||
506 | /*! | 506 | /*! |
507 | \fn void QPEApplication::weekChanged( bool startOnMonday ) | 507 | \fn void QPEApplication::weekChanged( bool startOnMonday ) |
508 | 508 | ||
509 | This signal is emitted if the week start day is changed. If \a | 509 | This signal is emitted if the week start day is changed. If \a |
510 | startOnMonday is TRUE then the first day of the week is Monday; if | 510 | startOnMonday is TRUE then the first day of the week is Monday; if |
511 | \a startOnMonday is FALSE then the first day of the week is | 511 | \a startOnMonday is FALSE then the first day of the week is |
512 | Sunday. | 512 | Sunday. |
513 | */ | 513 | */ |
514 | 514 | ||
515 | /*! | 515 | /*! |
516 | \fn void QPEApplication::dateFormatChanged(DateFormat) | 516 | \fn void QPEApplication::dateFormatChanged(DateFormat) |
517 | 517 | ||
518 | This signal is emitted whenever the date format is changed. | 518 | This signal is emitted whenever the date format is changed. |
519 | */ | 519 | */ |
520 | 520 | ||
521 | /*! | 521 | /*! |
522 | \fn void QPEApplication::flush() | 522 | \fn void QPEApplication::flush() |
523 | 523 | ||
524 | ### | 524 | ### |
525 | */ | 525 | */ |
526 | 526 | ||
527 | /*! | 527 | /*! |
528 | \fn void QPEApplication::reload() | 528 | \fn void QPEApplication::reload() |
529 | 529 | ||
530 | */ | 530 | */ |
531 | 531 | ||
532 | 532 | ||
533 | 533 | ||
534 | void QPEApplication::processQCopFile() | 534 | void QPEApplication::processQCopFile() |
535 | { | 535 | { |
@@ -642,216 +642,215 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) | |||
642 | if ( f.open( IO_ReadOnly ) ) { | 642 | if ( f.open( IO_ReadOnly ) ) { |
643 | flock( f.handle(), LOCK_EX ); | 643 | flock( f.handle(), LOCK_EX ); |
644 | } | 644 | } |
645 | 645 | ||
646 | 646 | ||
647 | 647 | ||
648 | QCString channel = QCString( argv[ 0 ] ); | 648 | QCString channel = QCString( argv[ 0 ] ); |
649 | channel.replace( QRegExp( ".*/" ), "" ); | 649 | channel.replace( QRegExp( ".*/" ), "" ); |
650 | d->appName = channel; | 650 | d->appName = channel; |
651 | channel = "QPE/Application/" + channel; | 651 | channel = "QPE/Application/" + channel; |
652 | pidChannel = new QCopChannel( channel, this ); | 652 | pidChannel = new QCopChannel( channel, this ); |
653 | connect( pidChannel, SIGNAL( received( const QCString &, const QByteArray & ) ), | 653 | connect( pidChannel, SIGNAL( received( const QCString &, const QByteArray & ) ), |
654 | this, SLOT( pidMessage( const QCString &, const QByteArray & ) ) ); | 654 | this, SLOT( pidMessage( const QCString &, const QByteArray & ) ) ); |
655 | 655 | ||
656 | if ( f.isOpen() ) { | 656 | if ( f.isOpen() ) { |
657 | d->keep_running = FALSE; | 657 | d->keep_running = FALSE; |
658 | QDataStream ds( &f ); | 658 | QDataStream ds( &f ); |
659 | QCString channel, message; | 659 | QCString channel, message; |
660 | QByteArray data; | 660 | QByteArray data; |
661 | while ( !ds.atEnd() ) { | 661 | while ( !ds.atEnd() ) { |
662 | ds >> channel >> message >> data; | 662 | ds >> channel >> message >> data; |
663 | d->enqueueQCop( channel, message, data ); | 663 | d->enqueueQCop( channel, message, data ); |
664 | } | 664 | } |
665 | 665 | ||
666 | flock( f.handle(), LOCK_UN ); | 666 | flock( f.handle(), LOCK_UN ); |
667 | f.close(); | 667 | f.close(); |
668 | f.remove(); | 668 | f.remove(); |
669 | } | 669 | } |
670 | 670 | ||
671 | for ( int a = 0; a < argc; a++ ) { | 671 | for ( int a = 0; a < argc; a++ ) { |
672 | if ( qstrcmp( argv[ a ], "-preload" ) == 0 ) { | 672 | if ( qstrcmp( argv[ a ], "-preload" ) == 0 ) { |
673 | argv[ a ] = argv[ a + 1 ]; | 673 | argv[ a ] = argv[ a + 1 ]; |
674 | a++; | 674 | a++; |
675 | d->preloaded = TRUE; | 675 | d->preloaded = TRUE; |
676 | argc -= 1; | 676 | argc -= 1; |
677 | } | 677 | } |
678 | else if ( qstrcmp( argv[ a ], "-preload-show" ) == 0 ) { | 678 | else if ( qstrcmp( argv[ a ], "-preload-show" ) == 0 ) { |
679 | argv[ a ] = argv[ a + 1 ]; | 679 | argv[ a ] = argv[ a + 1 ]; |
680 | a++; | 680 | a++; |
681 | d->preloaded = TRUE; | 681 | d->preloaded = TRUE; |
682 | d->forceshow = TRUE; | 682 | d->forceshow = TRUE; |
683 | argc -= 1; | 683 | argc -= 1; |
684 | } | 684 | } |
685 | } | 685 | } |
686 | 686 | ||
687 | /* overide stored arguments */ | 687 | /* overide stored arguments */ |
688 | setArgs( argc, argv ); | 688 | setArgs( argc, argv ); |
689 | 689 | ||
690 | #endif | 690 | #endif |
691 | #else | 691 | #else |
692 | initApp( argc, argv ); | 692 | initApp( argc, argv ); |
693 | #endif | 693 | #endif |
694 | // qwsSetDecoration( new QPEDecoration() ); | 694 | // qwsSetDecoration( new QPEDecoration() ); |
695 | 695 | ||
696 | #ifndef QT_NO_TRANSLATION | 696 | #ifndef QT_NO_TRANSLATION |
697 | 697 | ||
698 | d->langs = Global::languageList(); | 698 | d->langs = Global::languageList(); |
699 | for ( QStringList::ConstIterator it = d->langs.begin(); it != d->langs.end(); ++it ) { | 699 | for ( QStringList::ConstIterator it = d->langs.begin(); it != d->langs.end(); ++it ) { |
700 | QString lang = *it; | 700 | QString lang = *it; |
701 | 701 | ||
702 | installTranslation( lang + "/libopie.qm"); | 702 | installTranslation( lang + "/libopie.qm"); |
703 | installTranslation( lang + "/libqpe.qm" ); | 703 | installTranslation( lang + "/libqpe.qm" ); |
704 | installTranslation( lang + "/" + d->appName + ".qm" ); | 704 | installTranslation( lang + "/" + d->appName + ".qm" ); |
705 | 705 | ||
706 | 706 | ||
707 | //###language/font hack; should look it up somewhere | 707 | //###language/font hack; should look it up somewhere |
708 | #ifdef QWS | 708 | #ifdef QWS |
709 | 709 | ||
710 | if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) { | 710 | if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) { |
711 | QFont fn = FontManager::unicodeFont( FontManager::Proportional ); | 711 | QFont fn = FontManager::unicodeFont( FontManager::Proportional ); |
712 | setFont( fn ); | 712 | setFont( fn ); |
713 | } | 713 | } |
714 | #endif | 714 | #endif |
715 | } | 715 | } |
716 | #endif | 716 | #endif |
717 | 717 | ||
718 | applyStyle(); | 718 | applyStyle(); |
719 | 719 | ||
720 | if ( type() == GuiServer ) { | 720 | if ( type() == GuiServer ) { |
721 | setVolume(); | 721 | setVolume(); |
722 | } | 722 | } |
723 | 723 | ||
724 | installEventFilter( this ); | 724 | installEventFilter( this ); |
725 | 725 | ||
726 | QPEMenuToolFocusManager::initialize(); | 726 | QPEMenuToolFocusManager::initialize(); |
727 | 727 | ||
728 | #ifdef QT_NO_QWS_CURSOR | 728 | #ifdef QT_NO_QWS_CURSOR |
729 | // if we have no cursor, probably don't want tooltips | 729 | // if we have no cursor, probably don't want tooltips |
730 | QToolTip::setEnabled( FALSE ); | 730 | QToolTip::setEnabled( FALSE ); |
731 | #endif | 731 | #endif |
732 | } | 732 | } |
733 | 733 | ||
734 | 734 | ||
735 | #ifdef QTOPIA_INTERNAL_INITAPP | 735 | #ifdef QTOPIA_INTERNAL_INITAPP |
736 | void QPEApplication::initApp( int argc, char **argv ) | 736 | void QPEApplication::initApp( int argc, char **argv ) |
737 | { | 737 | { |
738 | bool initial = pidChannel; // was set to 0 in the initializer | ||
739 | delete pidChannel; | 738 | delete pidChannel; |
740 | d->keep_running = TRUE; | 739 | d->keep_running = TRUE; |
741 | d->preloaded = FALSE; | 740 | d->preloaded = FALSE; |
742 | d->forceshow = FALSE; | 741 | d->forceshow = FALSE; |
743 | 742 | ||
744 | QCString channel = QCString(argv[0]); | 743 | QCString channel = QCString(argv[0]); |
745 | 744 | ||
746 | channel.replace(QRegExp(".*/"),""); | 745 | channel.replace(QRegExp(".*/"),""); |
747 | d->appName = channel; | 746 | d->appName = channel; |
748 | 747 | ||
749 | #if QT_VERSION > 235 | 748 | #if QT_VERSION > 235 |
750 | qt_fbdpy->setIdentity( channel ); // In Qt/E 2.3.6 | 749 | qt_fbdpy->setIdentity( channel ); // In Qt/E 2.3.6 |
751 | #endif | 750 | #endif |
752 | 751 | ||
753 | channel = "QPE/Application/" + channel; | 752 | channel = "QPE/Application/" + channel; |
754 | pidChannel = new QCopChannel( channel, this); | 753 | pidChannel = new QCopChannel( channel, this); |
755 | connect( pidChannel, SIGNAL(received(const QCString &, const QByteArray &)), | 754 | connect( pidChannel, SIGNAL(received(const QCString &, const QByteArray &)), |
756 | this, SLOT(pidMessage(const QCString &, const QByteArray &))); | 755 | this, SLOT(pidMessage(const QCString &, const QByteArray &))); |
757 | 756 | ||
758 | if (!initial) { | 757 | |
759 | processQCopFile(); | 758 | |
760 | d->keep_running = d->qcopq.isEmpty(); | 759 | processQCopFile(); |
761 | } | 760 | d->keep_running = d->qcopq.isEmpty(); |
762 | 761 | ||
763 | for (int a=0; a<argc; a++) { | 762 | for (int a=0; a<argc; a++) { |
764 | if ( qstrcmp(argv[a],"-preload")==0 ) { | 763 | if ( qstrcmp(argv[a],"-preload")==0 ) { |
765 | argv[a] = argv[a+1]; | 764 | argv[a] = argv[a+1]; |
766 | a++; | 765 | a++; |
767 | d->preloaded = TRUE; | 766 | d->preloaded = TRUE; |
768 | argc-=1; | 767 | argc-=1; |
769 | } else if ( qstrcmp(argv[a],"-preload-show")==0 ) { | 768 | } else if ( qstrcmp(argv[a],"-preload-show")==0 ) { |
770 | argv[a] = argv[a+1]; | 769 | argv[a] = argv[a+1]; |
771 | a++; | 770 | a++; |
772 | d->preloaded = TRUE; | 771 | d->preloaded = TRUE; |
773 | d->forceshow = TRUE; | 772 | d->forceshow = TRUE; |
774 | argc-=1; | 773 | argc-=1; |
775 | } | 774 | } |
776 | } | 775 | } |
777 | 776 | ||
778 | /* overide stored arguments */ | 777 | /* overide stored arguments */ |
779 | setArgs(argc, argv); | 778 | setArgs(argc, argv); |
780 | 779 | ||
781 | /* install translation here */ | 780 | /* install translation here */ |
782 | for ( QStringList::ConstIterator it = d->langs.begin(); it != d->langs.end(); ++it ) | 781 | for ( QStringList::ConstIterator it = d->langs.begin(); it != d->langs.end(); ++it ) |
783 | installTranslation( (*it) + "/" + d->appName + ".qm" ); | 782 | installTranslation( (*it) + "/" + d->appName + ".qm" ); |
784 | } | 783 | } |
785 | #endif | 784 | #endif |
786 | 785 | ||
787 | 786 | ||
788 | static QPtrDict<void>* inputMethodDict = 0; | 787 | static QPtrDict<void>* inputMethodDict = 0; |
789 | static void createInputMethodDict() | 788 | static void createInputMethodDict() |
790 | { | 789 | { |
791 | if ( !inputMethodDict ) | 790 | if ( !inputMethodDict ) |
792 | inputMethodDict = new QPtrDict<void>; | 791 | inputMethodDict = new QPtrDict<void>; |
793 | } | 792 | } |
794 | 793 | ||
795 | /*! | 794 | /*! |
796 | Returns the currently set hint to the system as to whether | 795 | Returns the currently set hint to the system as to whether |
797 | widget \a w has any use for text input methods. | 796 | widget \a w has any use for text input methods. |
798 | 797 | ||
799 | 798 | ||
800 | \sa setInputMethodHint() InputMethodHint | 799 | \sa setInputMethodHint() InputMethodHint |
801 | */ | 800 | */ |
802 | QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget * w ) | 801 | QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget * w ) |
803 | { | 802 | { |
804 | if ( inputMethodDict && w ) | 803 | if ( inputMethodDict && w ) |
805 | return ( InputMethodHint ) ( int ) inputMethodDict->find( w ); | 804 | return ( InputMethodHint ) ( int ) inputMethodDict->find( w ); |
806 | return Normal; | 805 | return Normal; |
807 | } | 806 | } |
808 | 807 | ||
809 | /*! | 808 | /*! |
810 | \enum QPEApplication::InputMethodHint | 809 | \enum QPEApplication::InputMethodHint |
811 | 810 | ||
812 | \value Normal the application sometimes needs text input (the default). | 811 | \value Normal the application sometimes needs text input (the default). |
813 | \value AlwaysOff the application never needs text input. | 812 | \value AlwaysOff the application never needs text input. |
814 | \value AlwaysOn the application always needs text input. | 813 | \value AlwaysOn the application always needs text input. |
815 | */ | 814 | */ |
816 | 815 | ||
817 | /*! | 816 | /*! |
818 | Hints to the system that widget \a w has use for text input methods | 817 | Hints to the system that widget \a w has use for text input methods |
819 | as specified by \a mode. | 818 | as specified by \a mode. |
820 | 819 | ||
821 | \sa inputMethodHint() InputMethodHint | 820 | \sa inputMethodHint() InputMethodHint |
822 | */ | 821 | */ |
823 | void QPEApplication::setInputMethodHint( QWidget * w, InputMethodHint mode ) | 822 | void QPEApplication::setInputMethodHint( QWidget * w, InputMethodHint mode ) |
824 | { | 823 | { |
825 | createInputMethodDict(); | 824 | createInputMethodDict(); |
826 | if ( mode == Normal ) { | 825 | if ( mode == Normal ) { |
827 | inputMethodDict->remove | 826 | inputMethodDict->remove |
828 | ( w ); | 827 | ( w ); |
829 | } | 828 | } |
830 | else { | 829 | else { |
831 | inputMethodDict->insert( w, ( void* ) mode ); | 830 | inputMethodDict->insert( w, ( void* ) mode ); |
832 | } | 831 | } |
833 | } | 832 | } |
834 | 833 | ||
835 | class HackDialog : public QDialog | 834 | class HackDialog : public QDialog |
836 | { | 835 | { |
837 | public: | 836 | public: |
838 | void acceptIt() | 837 | void acceptIt() |
839 | { | 838 | { |
840 | accept(); | 839 | accept(); |
841 | } | 840 | } |
842 | void rejectIt() | 841 | void rejectIt() |
843 | { | 842 | { |
844 | reject(); | 843 | reject(); |
845 | } | 844 | } |
846 | }; | 845 | }; |
847 | 846 | ||
848 | 847 | ||
849 | void QPEApplication::mapToDefaultAction( QWSKeyEvent * ke, int key ) | 848 | void QPEApplication::mapToDefaultAction( QWSKeyEvent * ke, int key ) |
850 | { | 849 | { |
851 | // specialised actions for certain widgets. May want to | 850 | // specialised actions for certain widgets. May want to |
852 | // add more stuff here. | 851 | // add more stuff here. |
853 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QListBox" ) | 852 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QListBox" ) |
854 | && activePopupWidget() ->parentWidget() | 853 | && activePopupWidget() ->parentWidget() |
855 | && activePopupWidget() ->parentWidget() ->inherits( "QComboBox" ) ) | 854 | && activePopupWidget() ->parentWidget() ->inherits( "QComboBox" ) ) |
856 | key = Qt::Key_Return; | 855 | key = Qt::Key_Return; |
857 | 856 | ||
@@ -1478,214 +1477,214 @@ bool QPEApplication::raiseAppropriateWindow() | |||
1478 | #endif | 1477 | #endif |
1479 | } | 1478 | } |
1480 | r = FALSE; | 1479 | r = FALSE; |
1481 | } | 1480 | } |
1482 | 1481 | ||
1483 | return r; | 1482 | return r; |
1484 | } | 1483 | } |
1485 | 1484 | ||
1486 | 1485 | ||
1487 | void QPEApplication::pidMessage( const QCString& msg, const QByteArray& data) | 1486 | void QPEApplication::pidMessage( const QCString& msg, const QByteArray& data) |
1488 | { | 1487 | { |
1489 | #ifdef Q_WS_QWS | 1488 | #ifdef Q_WS_QWS |
1490 | 1489 | ||
1491 | if ( msg == "quit()" ) { | 1490 | if ( msg == "quit()" ) { |
1492 | tryQuit(); | 1491 | tryQuit(); |
1493 | } | 1492 | } |
1494 | else if ( msg == "quitIfInvisible()" ) { | 1493 | else if ( msg == "quitIfInvisible()" ) { |
1495 | if ( d->qpe_main_widget && !d->qpe_main_widget->isVisible() ) | 1494 | if ( d->qpe_main_widget && !d->qpe_main_widget->isVisible() ) |
1496 | quit(); | 1495 | quit(); |
1497 | } | 1496 | } |
1498 | else if ( msg == "close()" ) { | 1497 | else if ( msg == "close()" ) { |
1499 | hideOrQuit(); | 1498 | hideOrQuit(); |
1500 | } | 1499 | } |
1501 | else if ( msg == "disablePreload()" ) { | 1500 | else if ( msg == "disablePreload()" ) { |
1502 | d->preloaded = FALSE; | 1501 | d->preloaded = FALSE; |
1503 | d->keep_running = TRUE; | 1502 | d->keep_running = TRUE; |
1504 | /* so that quit will quit */ | 1503 | /* so that quit will quit */ |
1505 | } | 1504 | } |
1506 | else if ( msg == "enablePreload()" ) { | 1505 | else if ( msg == "enablePreload()" ) { |
1507 | if (d->qpe_main_widget) | 1506 | if (d->qpe_main_widget) |
1508 | d->preloaded = TRUE; | 1507 | d->preloaded = TRUE; |
1509 | d->keep_running = TRUE; | 1508 | d->keep_running = TRUE; |
1510 | /* so next quit won't quit */ | 1509 | /* so next quit won't quit */ |
1511 | } | 1510 | } |
1512 | else if ( msg == "raise()" ) { | 1511 | else if ( msg == "raise()" ) { |
1513 | d->keep_running = TRUE; | 1512 | d->keep_running = TRUE; |
1514 | d->notbusysent = FALSE; | 1513 | d->notbusysent = FALSE; |
1515 | raiseAppropriateWindow(); | 1514 | raiseAppropriateWindow(); |
1516 | // Tell the system we're still chugging along... | 1515 | // Tell the system we're still chugging along... |
1517 | QCopEnvelope e("QPE/System", "appRaised(QString)"); | 1516 | QCopEnvelope e("QPE/System", "appRaised(QString)"); |
1518 | e << d->appName; | 1517 | e << d->appName; |
1519 | } | 1518 | } |
1520 | else if ( msg == "flush()" ) { | 1519 | else if ( msg == "flush()" ) { |
1521 | emit flush(); | 1520 | emit flush(); |
1522 | // we need to tell the desktop | 1521 | // we need to tell the desktop |
1523 | QCopEnvelope e( "QPE/Desktop", "flushDone(QString)" ); | 1522 | QCopEnvelope e( "QPE/Desktop", "flushDone(QString)" ); |
1524 | e << d->appName; | 1523 | e << d->appName; |
1525 | } | 1524 | } |
1526 | else if ( msg == "reload()" ) { | 1525 | else if ( msg == "reload()" ) { |
1527 | emit reload(); | 1526 | emit reload(); |
1528 | } | 1527 | } |
1529 | else if ( msg == "setDocument(QString)" ) { | 1528 | else if ( msg == "setDocument(QString)" ) { |
1530 | d->keep_running = TRUE; | 1529 | d->keep_running = TRUE; |
1531 | QDataStream stream( data, IO_ReadOnly ); | 1530 | QDataStream stream( data, IO_ReadOnly ); |
1532 | QString doc; | 1531 | QString doc; |
1533 | stream >> doc; | 1532 | stream >> doc; |
1534 | QWidget *mw = mainWidget(); | 1533 | QWidget *mw = mainWidget(); |
1535 | if ( !mw ) | 1534 | if ( !mw ) |
1536 | mw = d->qpe_main_widget; | 1535 | mw = d->qpe_main_widget; |
1537 | if ( mw ) | 1536 | if ( mw ) |
1538 | Global::setDocument( mw, doc ); | 1537 | Global::setDocument( mw, doc ); |
1539 | 1538 | ||
1540 | } else if ( msg == "QPEProcessQCop()" ) { | 1539 | } else if ( msg == "QPEProcessQCop()" ) { |
1541 | processQCopFile(); | 1540 | processQCopFile(); |
1542 | d->sendQCopQ(); | 1541 | d->sendQCopQ(); |
1543 | }else | 1542 | }else |
1544 | { | 1543 | { |
1545 | bool p = d->keep_running; | 1544 | bool p = d->keep_running; |
1546 | d->keep_running = FALSE; | 1545 | d->keep_running = FALSE; |
1547 | emit appMessage( msg, data); | 1546 | emit appMessage( msg, data); |
1548 | if ( d->keep_running ) { | 1547 | if ( d->keep_running ) { |
1549 | d->notbusysent = FALSE; | 1548 | d->notbusysent = FALSE; |
1550 | raiseAppropriateWindow(); | 1549 | raiseAppropriateWindow(); |
1551 | if ( !p ) { | 1550 | if ( !p ) { |
1552 | // Tell the system we're still chugging along... | 1551 | // Tell the system we're still chugging along... |
1553 | #ifndef QT_NO_COP | 1552 | #ifndef QT_NO_COP |
1554 | QCopEnvelope e("QPE/System", "appRaised(QString)"); | 1553 | QCopEnvelope e("QPE/System", "appRaised(QString)"); |
1555 | e << d->appName; | 1554 | e << d->appName; |
1556 | #endif | 1555 | #endif |
1557 | } | 1556 | } |
1558 | } | 1557 | } |
1559 | if ( p ) | 1558 | if ( p ) |
1560 | d->keep_running = p; | 1559 | d->keep_running = p; |
1561 | } | 1560 | } |
1562 | #endif | 1561 | #endif |
1563 | } | 1562 | } |
1564 | 1563 | ||
1565 | 1564 | ||
1566 | /*! | 1565 | /*! |
1567 | Sets widget \a mw as the mainWidget() and shows it. For small windows, | 1566 | Sets widget \a mw as the mainWidget() and shows it. For small windows, |
1568 | consider passing TRUE for \a nomaximize rather than the default FALSE. | 1567 | consider passing TRUE for \a nomaximize rather than the default FALSE. |
1569 | 1568 | ||
1570 | \sa showMainDocumentWidget() | 1569 | \sa showMainDocumentWidget() |
1571 | */ | 1570 | */ |
1572 | void QPEApplication::showMainWidget( QWidget* mw, bool nomaximize ) | 1571 | void QPEApplication::showMainWidget( QWidget* mw, bool nomaximize ) |
1573 | { | 1572 | { |
1574 | setMainWidget(mw); | 1573 | // setMainWidget(mw); this breaks FastLoading because lastWindowClose() would quit |
1575 | d->show(mw, nomaximize ); | 1574 | d->show(mw, nomaximize ); |
1576 | } | 1575 | } |
1577 | 1576 | ||
1578 | /*! | 1577 | /*! |
1579 | Sets widget \a mw as the mainWidget() and shows it. For small windows, | 1578 | Sets widget \a mw as the mainWidget() and shows it. For small windows, |
1580 | consider passing TRUE for \a nomaximize rather than the default FALSE. | 1579 | consider passing TRUE for \a nomaximize rather than the default FALSE. |
1581 | 1580 | ||
1582 | This calls designates the application as | 1581 | This calls designates the application as |
1583 | a \link docwidget.html document-oriented\endlink application. | 1582 | a \link docwidget.html document-oriented\endlink application. |
1584 | 1583 | ||
1585 | The \a mw widget \e must have this slot: setDocument(const QString&). | 1584 | The \a mw widget \e must have this slot: setDocument(const QString&). |
1586 | 1585 | ||
1587 | \sa showMainWidget() | 1586 | \sa showMainWidget() |
1588 | */ | 1587 | */ |
1589 | void QPEApplication::showMainDocumentWidget( QWidget* mw, bool nomaximize ) | 1588 | void QPEApplication::showMainDocumentWidget( QWidget* mw, bool nomaximize ) |
1590 | { | 1589 | { |
1591 | if ( mw && argc() == 2 ) | 1590 | if ( mw && argc() == 2 ) |
1592 | Global::setDocument( mw, QString::fromUtf8(argv()[1]) ); | 1591 | Global::setDocument( mw, QString::fromUtf8(argv()[1]) ); |
1593 | 1592 | ||
1594 | 1593 | ||
1595 | setMainWidget(mw); | 1594 | //setMainWidget(mw); see above |
1596 | d->show(mw, nomaximize ); | 1595 | d->show(mw, nomaximize ); |
1597 | } | 1596 | } |
1598 | 1597 | ||
1599 | 1598 | ||
1600 | /*! | 1599 | /*! |
1601 | If an application is started via a \link qcop.html QCop\endlink | 1600 | If an application is started via a \link qcop.html QCop\endlink |
1602 | message, the application will process the \link qcop.html | 1601 | message, the application will process the \link qcop.html |
1603 | QCop\endlink message and then quit. If the application calls this | 1602 | QCop\endlink message and then quit. If the application calls this |
1604 | function while processing a \link qcop.html QCop\endlink message, | 1603 | function while processing a \link qcop.html QCop\endlink message, |
1605 | after processing its outstanding \link qcop.html QCop\endlink | 1604 | after processing its outstanding \link qcop.html QCop\endlink |
1606 | messages the application will start 'properly' and show itself. | 1605 | messages the application will start 'properly' and show itself. |
1607 | 1606 | ||
1608 | \sa keepRunning() | 1607 | \sa keepRunning() |
1609 | */ | 1608 | */ |
1610 | void QPEApplication::setKeepRunning() | 1609 | void QPEApplication::setKeepRunning() |
1611 | { | 1610 | { |
1612 | if ( qApp && qApp->inherits( "QPEApplication" ) ) { | 1611 | if ( qApp && qApp->inherits( "QPEApplication" ) ) { |
1613 | QPEApplication * qpeApp = ( QPEApplication* ) qApp; | 1612 | QPEApplication * qpeApp = ( QPEApplication* ) qApp; |
1614 | qpeApp->d->keep_running = TRUE; | 1613 | qpeApp->d->keep_running = TRUE; |
1615 | } | 1614 | } |
1616 | } | 1615 | } |
1617 | 1616 | ||
1618 | /*! | 1617 | /*! |
1619 | Returns TRUE if the application will quit after processing the | 1618 | Returns TRUE if the application will quit after processing the |
1620 | current list of qcop messages; otherwise returns FALSE. | 1619 | current list of qcop messages; otherwise returns FALSE. |
1621 | 1620 | ||
1622 | \sa setKeepRunning() | 1621 | \sa setKeepRunning() |
1623 | */ | 1622 | */ |
1624 | bool QPEApplication::keepRunning() const | 1623 | bool QPEApplication::keepRunning() const |
1625 | { | 1624 | { |
1626 | return d->keep_running; | 1625 | return d->keep_running; |
1627 | } | 1626 | } |
1628 | 1627 | ||
1629 | /*! | 1628 | /*! |
1630 | \internal | 1629 | \internal |
1631 | */ | 1630 | */ |
1632 | void QPEApplication::internalSetStyle( const QString &style ) | 1631 | void QPEApplication::internalSetStyle( const QString &style ) |
1633 | { | 1632 | { |
1634 | #if QT_VERSION >= 300 | 1633 | #if QT_VERSION >= 300 |
1635 | if ( style == "QPE" ) { | 1634 | if ( style == "QPE" ) { |
1636 | setStyle( new QPEStyle ); | 1635 | setStyle( new QPEStyle ); |
1637 | } | 1636 | } |
1638 | else { | 1637 | else { |
1639 | QStyle *s = QStyleFactory::create( style ); | 1638 | QStyle *s = QStyleFactory::create( style ); |
1640 | if ( s ) | 1639 | if ( s ) |
1641 | setStyle( s ); | 1640 | setStyle( s ); |
1642 | } | 1641 | } |
1643 | #else | 1642 | #else |
1644 | if ( style == "Windows" ) { | 1643 | if ( style == "Windows" ) { |
1645 | setStyle( new QWindowsStyle ); | 1644 | setStyle( new QWindowsStyle ); |
1646 | } | 1645 | } |
1647 | else if ( style == "QPE" ) { | 1646 | else if ( style == "QPE" ) { |
1648 | setStyle( new QPEStyle ); | 1647 | setStyle( new QPEStyle ); |
1649 | } | 1648 | } |
1650 | else if ( style == "Light" ) { | 1649 | else if ( style == "Light" ) { |
1651 | setStyle( new LightStyle ); | 1650 | setStyle( new LightStyle ); |
1652 | } | 1651 | } |
1653 | #ifndef QT_NO_STYLE_PLATINUM | 1652 | #ifndef QT_NO_STYLE_PLATINUM |
1654 | else if ( style == "Platinum" ) { | 1653 | else if ( style == "Platinum" ) { |
1655 | setStyle( new QPlatinumStyle ); | 1654 | setStyle( new QPlatinumStyle ); |
1656 | } | 1655 | } |
1657 | #endif | 1656 | #endif |
1658 | #ifndef QT_NO_STYLE_MOTIF | 1657 | #ifndef QT_NO_STYLE_MOTIF |
1659 | else if ( style == "Motif" ) { | 1658 | else if ( style == "Motif" ) { |
1660 | setStyle( new QMotifStyle ); | 1659 | setStyle( new QMotifStyle ); |
1661 | } | 1660 | } |
1662 | #endif | 1661 | #endif |
1663 | #ifndef QT_NO_STYLE_MOTIFPLUS | 1662 | #ifndef QT_NO_STYLE_MOTIFPLUS |
1664 | else if ( style == "MotifPlus" ) { | 1663 | else if ( style == "MotifPlus" ) { |
1665 | setStyle( new QMotifPlusStyle ); | 1664 | setStyle( new QMotifPlusStyle ); |
1666 | } | 1665 | } |
1667 | #endif | 1666 | #endif |
1668 | 1667 | ||
1669 | else { | 1668 | else { |
1670 | QStyle *sty = 0; | 1669 | QStyle *sty = 0; |
1671 | QString path = QPEApplication::qpeDir ( ) + "/plugins/styles/"; | 1670 | QString path = QPEApplication::qpeDir ( ) + "/plugins/styles/"; |
1672 | 1671 | ||
1673 | #ifdef Q_OS_MACX | 1672 | #ifdef Q_OS_MACX |
1674 | if ( style. find ( ".dylib" ) > 0 ) | 1673 | if ( style. find ( ".dylib" ) > 0 ) |
1675 | path += style; | 1674 | path += style; |
1676 | else | 1675 | else |
1677 | path = path + "lib" + style. lower ( ) + ".dylib"; // compatibility | 1676 | path = path + "lib" + style. lower ( ) + ".dylib"; // compatibility |
1678 | #else | 1677 | #else |
1679 | if ( style. find ( ".so" ) > 0 ) | 1678 | if ( style. find ( ".so" ) > 0 ) |
1680 | path += style; | 1679 | path += style; |
1681 | else | 1680 | else |
1682 | path = path + "lib" + style. lower ( ) + ".so"; // compatibility | 1681 | path = path + "lib" + style. lower ( ) + ".so"; // compatibility |
1683 | #endif | 1682 | #endif |
1684 | static QLibrary *lastlib = 0; | 1683 | static QLibrary *lastlib = 0; |
1685 | static StyleInterface *lastiface = 0; | 1684 | static StyleInterface *lastiface = 0; |
1686 | 1685 | ||
1687 | QLibrary *lib = new QLibrary ( path ); | 1686 | QLibrary *lib = new QLibrary ( path ); |
1688 | StyleInterface *iface = 0; | 1687 | StyleInterface *iface = 0; |
1689 | 1688 | ||
1690 | if (( lib-> queryInterface ( IID_Style, ( QUnknownInterface ** ) &iface ) == QS_OK ) && iface ) | 1689 | if (( lib-> queryInterface ( IID_Style, ( QUnknownInterface ** ) &iface ) == QS_OK ) && iface ) |
1691 | sty = iface-> style ( ); | 1690 | sty = iface-> style ( ); |