summaryrefslogtreecommitdiff
authorsandman <sandman>2002-11-24 18:21:41 (UTC)
committer sandman <sandman>2002-11-24 18:21:41 (UTC)
commit89bf0723eefc1e66a104fe8135f1a5389f021442 (patch) (unidiff)
treea7db1ba8fa34d8226fe9baa9e7c488c86ad95445
parentee62e73ddc29a5015c4a3e569be90dbfce4652c6 (diff)
downloadopie-89bf0723eefc1e66a104fe8135f1a5389f021442.zip
opie-89bf0723eefc1e66a104fe8135f1a5389f021442.tar.gz
opie-89bf0723eefc1e66a104fe8135f1a5389f021442.tar.bz2
- LD_PRELOADing of libpreload.so in case the user selected [x] Force style
settings in appearance - Some code to NOT style some applications, based on the binary name (also selectable in appearance)
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/global.cpp16
-rw-r--r--library/qpeapplication.cpp60
2 files changed, 72 insertions, 4 deletions
diff --git a/library/global.cpp b/library/global.cpp
index 9b3c51e..42c2729 100644
--- a/library/global.cpp
+++ b/library/global.cpp
@@ -511,201 +511,217 @@ void Global::setDocument( QWidget* receiver, const QString& document )
511} 511}
512 512
513/*! 513/*!
514 \internal 514 \internal
515*/ 515*/
516bool Global::terminateBuiltin( const QString& n ) 516bool Global::terminateBuiltin( const QString& n )
517{ 517{
518 if (!builtin) 518 if (!builtin)
519 return FALSE; 519 return FALSE;
520 for (int i = 0; builtin[i].file; i++) { 520 for (int i = 0; builtin[i].file; i++) {
521 if ( builtin[i].file == n ) { 521 if ( builtin[i].file == n ) {
522 delete running[i]; 522 delete running[i];
523 return TRUE; 523 return TRUE;
524 } 524 }
525 } 525 }
526 return FALSE; 526 return FALSE;
527} 527}
528 528
529/*! 529/*!
530 \internal 530 \internal
531*/ 531*/
532void Global::terminate( const AppLnk* app ) 532void Global::terminate( const AppLnk* app )
533{ 533{
534 //if ( terminateBuiltin(app->exec()) ) return; // maybe? haven't tried this 534 //if ( terminateBuiltin(app->exec()) ) return; // maybe? haven't tried this
535 535
536#ifndef QT_NO_COP 536#ifndef QT_NO_COP
537 QCString channel = "QPE/Application/" + app->exec().utf8(); 537 QCString channel = "QPE/Application/" + app->exec().utf8();
538 if ( QCopChannel::isRegistered(channel) ) { 538 if ( QCopChannel::isRegistered(channel) ) {
539 QCopEnvelope e(channel, "quit()"); 539 QCopEnvelope e(channel, "quit()");
540 } 540 }
541#endif 541#endif
542} 542}
543 543
544/*! 544/*!
545 Low-level function to run command \a c. 545 Low-level function to run command \a c.
546 546
547 \warning Do not use this function. Use execute instead. 547 \warning Do not use this function. Use execute instead.
548 548
549 \sa execute() 549 \sa execute()
550*/ 550*/
551void Global::invoke(const QString &c) 551void Global::invoke(const QString &c)
552{ 552{
553 // Convert the command line in to a list of arguments 553 // Convert the command line in to a list of arguments
554 QStringList list = QStringList::split(QRegExp(" *"),c); 554 QStringList list = QStringList::split(QRegExp(" *"),c);
555 555
556#if !defined(QT_NO_COP) 556#if !defined(QT_NO_COP)
557 QString ap=list[0]; 557 QString ap=list[0];
558 // see if the application is already running 558 // see if the application is already running
559 // XXX should lock file /tmp/qcop-msg-ap 559 // XXX should lock file /tmp/qcop-msg-ap
560 if ( QCopChannel::isRegistered( ("QPE/Application/" + ap).latin1() ) ) { 560 if ( QCopChannel::isRegistered( ("QPE/Application/" + ap).latin1() ) ) {
561 // If the channel is already register, the app is already running, so show it. 561 // If the channel is already register, the app is already running, so show it.
562 { QCopEnvelope env( ("QPE/Application/" + ap).latin1(), "raise()" ); } 562 { QCopEnvelope env( ("QPE/Application/" + ap).latin1(), "raise()" ); }
563 563
564 QCopEnvelope e("QPE/System", "notBusy(QString)" ); 564 QCopEnvelope e("QPE/System", "notBusy(QString)" );
565 e << ap; 565 e << ap;
566 return; 566 return;
567 } 567 }
568 // XXX should unlock file /tmp/qcop-msg-ap 568 // XXX should unlock file /tmp/qcop-msg-ap
569 //see if it is being started 569 //see if it is being started
570 if ( StartingAppList::isStarting( ap ) ) { 570 if ( StartingAppList::isStarting( ap ) ) {
571 QCopEnvelope e("QPE/System", "notBusy(QString)" ); 571 QCopEnvelope e("QPE/System", "notBusy(QString)" );
572 e << ap; 572 e << ap;
573 return; 573 return;
574 } 574 }
575 575
576#endif 576#endif
577 577
578#ifdef QT_NO_QWS_MULTIPROCESS 578#ifdef QT_NO_QWS_MULTIPROCESS
579 QMessageBox::warning( 0, "Error", "Could not find the application " + c, "Ok", 0, 0, 0, 1 ); 579 QMessageBox::warning( 0, "Error", "Could not find the application " + c, "Ok", 0, 0, 0, 1 );
580#else 580#else
581 581
582 QStrList slist; 582 QStrList slist;
583 unsigned int j; 583 unsigned int j;
584 for ( j = 0; j < list.count(); j++ ) 584 for ( j = 0; j < list.count(); j++ )
585 slist.append( list[j].utf8() ); 585 slist.append( list[j].utf8() );
586 586
587 const char **args = new (const char *)[slist.count() + 1]; 587 const char **args = new (const char *)[slist.count() + 1];
588 for ( j = 0; j < slist.count(); j++ ) 588 for ( j = 0; j < slist.count(); j++ )
589 args[j] = slist.at(j); 589 args[j] = slist.at(j);
590 args[j] = NULL; 590 args[j] = NULL;
591 591
592#if !defined(QT_NO_COP) 592#if !defined(QT_NO_COP)
593 // an attempt to show a wait... 593 // an attempt to show a wait...
594 // more logic should be used, but this will be fine for the moment... 594 // more logic should be used, but this will be fine for the moment...
595 QCopEnvelope ( "QPE/System", "busy()" ); 595 QCopEnvelope ( "QPE/System", "busy()" );
596#endif 596#endif
597 597
598#ifdef HAVE_QUICKEXEC 598#ifdef HAVE_QUICKEXEC
599 QString libexe = qpeDir()+"/binlib/lib"+args[0] + ".so"; 599 QString libexe = qpeDir()+"/binlib/lib"+args[0] + ".so";
600 qDebug("libfile = %s", libexe.latin1() ); 600 qDebug("libfile = %s", libexe.latin1() );
601 if ( QFile::exists( libexe ) ) { 601 if ( QFile::exists( libexe ) ) {
602 qDebug("calling quickexec %s", libexe.latin1() ); 602 qDebug("calling quickexec %s", libexe.latin1() );
603 quickexecv( libexe.utf8().data(), (const char **)args ); 603 quickexecv( libexe.utf8().data(), (const char **)args );
604 } else 604 } else
605#endif 605#endif
606 { 606 {
607 char *oldpre = ::getenv ( "LD_PRELOAD" );
608
609 extern bool opie_block_style;
610
611 QString newpre = QPEApplication::qpeDir ( ) + "/lib/libpreload.so";
612 if ( opie_block_style && QFile::exists ( newpre )) {
613 if ( oldpre && oldpre [0] )
614 newpre = newpre + ":" + oldpre;
615 ::setenv ( "LD_PRELOAD", newpre. latin1( ), 1 );
616 qDebug ( "\nPRELOADING\n" );
617 }
618
607 if ( !::vfork() ) { 619 if ( !::vfork() ) {
608 for ( int fd = 3; fd < 100; fd++ ) 620 for ( int fd = 3; fd < 100; fd++ )
609 ::close( fd ); 621 ::close( fd );
610 ::setpgid( ::getpid(), ::getppid() ); 622 ::setpgid( ::getpid(), ::getppid() );
611 // Try bindir first, so that foo/bar works too 623 // Try bindir first, so that foo/bar works too
612 ::execv( qpeDir()+"/bin/"+args[0], (char * const *)args ); 624 ::execv( qpeDir()+"/bin/"+args[0], (char * const *)args );
613 ::execvp( args[0], (char * const *)args ); 625 ::execvp( args[0], (char * const *)args );
614 _exit( -1 ); 626 _exit( -1 );
615 } 627 }
628 if ( oldpre )
629 ::setenv ( "LD_PRELOAD", oldpre, 1 );
630 else
631 ::unsetenv ( "LD_PRELOAD" );
616 } 632 }
617 StartingAppList::add( list[0] ); 633 StartingAppList::add( list[0] );
618#endif //QT_NO_QWS_MULTIPROCESS 634#endif //QT_NO_QWS_MULTIPROCESS
619} 635}
620 636
621 637
622/*! 638/*!
623 Executes the application identfied by \a c, passing \a 639 Executes the application identfied by \a c, passing \a
624 document if it isn't null. 640 document if it isn't null.
625 641
626 Note that a better approach might be to send a QCop message to the 642 Note that a better approach might be to send a QCop message to the
627 application's QPE/Application/\e{appname} channel. 643 application's QPE/Application/\e{appname} channel.
628*/ 644*/
629void Global::execute( const QString &c, const QString& document ) 645void Global::execute( const QString &c, const QString& document )
630{ 646{
631 if ( qApp->type() != QApplication::GuiServer ) { 647 if ( qApp->type() != QApplication::GuiServer ) {
632 // ask the server to do the work 648 // ask the server to do the work
633#if !defined(QT_NO_COP) 649#if !defined(QT_NO_COP)
634 if ( document.isNull() ) { 650 if ( document.isNull() ) {
635 QCopEnvelope e( "QPE/System", "execute(QString)" ); 651 QCopEnvelope e( "QPE/System", "execute(QString)" );
636 e << c; 652 e << c;
637 } else { 653 } else {
638 QCopEnvelope e( "QPE/System", "execute(QString,QString)" ); 654 QCopEnvelope e( "QPE/System", "execute(QString,QString)" );
639 e << c << document; 655 e << c << document;
640 } 656 }
641#endif 657#endif
642 return; 658 return;
643 } 659 }
644 660
645 // Attempt to execute the app using a builtin class for the app first 661 // Attempt to execute the app using a builtin class for the app first
646 // else try and find it in the bin directory 662 // else try and find it in the bin directory
647 if (builtin) { 663 if (builtin) {
648 for (int i = 0; builtin[i].file; i++) { 664 for (int i = 0; builtin[i].file; i++) {
649 if ( builtin[i].file == c ) { 665 if ( builtin[i].file == c ) {
650 if ( running[i] ) { 666 if ( running[i] ) {
651 if ( !document.isNull() && builtin[i].documentary ) 667 if ( !document.isNull() && builtin[i].documentary )
652 setDocument(running[i], document); 668 setDocument(running[i], document);
653 running[i]->raise(); 669 running[i]->raise();
654 running[i]->show(); 670 running[i]->show();
655 running[i]->setActiveWindow(); 671 running[i]->setActiveWindow();
656 } else { 672 } else {
657 running[i] = builtin[i].func( builtin[i].maximized ); 673 running[i] = builtin[i].func( builtin[i].maximized );
658 } 674 }
659#ifndef QT_NO_COP 675#ifndef QT_NO_COP
660 QCopEnvelope e("QPE/System", "notBusy(QString)" ); 676 QCopEnvelope e("QPE/System", "notBusy(QString)" );
661 e << c; // that was quick ;-) 677 e << c; // that was quick ;-)
662#endif 678#endif
663 return; 679 return;
664 } 680 }
665 } 681 }
666 } 682 }
667 683
668 //Global::invoke(c, document); 684 //Global::invoke(c, document);
669 685
670 // Convert the command line in to a list of arguments 686 // Convert the command line in to a list of arguments
671 QStringList list = QStringList::split(QRegExp(" *"),c); 687 QStringList list = QStringList::split(QRegExp(" *"),c);
672 688
673#if !defined(QT_NO_COP) 689#if !defined(QT_NO_COP)
674 QString ap=list[0]; 690 QString ap=list[0];
675 691
676 qDebug("executing %s", ap.latin1() ); 692 qDebug("executing %s", ap.latin1() );
677 693
678 /* if need be, sending a qcop message will result in an invoke, see 694 /* if need be, sending a qcop message will result in an invoke, see
679 preceeding function */ 695 preceeding function */
680 invoke( ap ); 696 invoke( ap );
681 //{ QCopEnvelope env( ("QPE/Application/" + ap).latin1(), "raise()" ); } 697 //{ QCopEnvelope env( ("QPE/Application/" + ap).latin1(), "raise()" ); }
682 if ( !document.isEmpty() ) { 698 if ( !document.isEmpty() ) {
683 QCopEnvelope env( ("QPE/Application/" + ap).latin1(), "setDocument(QString)" ); 699 QCopEnvelope env( ("QPE/Application/" + ap).latin1(), "setDocument(QString)" );
684 env << document; 700 env << document;
685 } 701 }
686#endif 702#endif
687} 703}
688 704
689/*! 705/*!
690 Returns the string \a s with the characters '\', '"', and '$' quoted 706 Returns the string \a s with the characters '\', '"', and '$' quoted
691 by a preceeding '\'. 707 by a preceeding '\'.
692 708
693 \sa stringQuote() 709 \sa stringQuote()
694*/ 710*/
695QString Global::shellQuote(const QString& s) 711QString Global::shellQuote(const QString& s)
696{ 712{
697 QString r="\""; 713 QString r="\"";
698 for (int i=0; i<(int)s.length(); i++) { 714 for (int i=0; i<(int)s.length(); i++) {
699 char c = s[i].latin1(); 715 char c = s[i].latin1();
700 switch (c) { 716 switch (c) {
701 case '\\': case '"': case '$': 717 case '\\': case '"': case '$':
702 r+="\\"; 718 r+="\\";
703 } 719 }
704 r += s[i]; 720 r += s[i];
705 } 721 }
706 r += "\""; 722 r += "\"";
707 return r; 723 return r;
708} 724}
709 725
710/*! 726/*!
711 Returns the string \a s with the characters '\' and '"' quoted by a 727 Returns the string \a s with the characters '\' and '"' quoted by a
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index efa65bc..a54fb20 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -805,236 +805,288 @@ bool QPEApplication::qwsEventFilter( QWSEvent * e )
805 if ( m == AlwaysOn ) 805 if ( m == AlwaysOn )
806 Global::showInputMethod(); 806 Global::showInputMethod();
807 } 807 }
808 } 808 }
809 return QApplication::qwsEventFilter( e ); 809 return QApplication::qwsEventFilter( e );
810} 810}
811#endif 811#endif
812 812
813/*! 813/*!
814 Destroys the QPEApplication. 814 Destroys the QPEApplication.
815*/ 815*/
816QPEApplication::~QPEApplication() 816QPEApplication::~QPEApplication()
817{ 817{
818 ungrabKeyboard(); 818 ungrabKeyboard();
819#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 819#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
820 // Need to delete QCopChannels early, since the display will 820 // Need to delete QCopChannels early, since the display will
821 // be gone by the time we get to ~QObject(). 821 // be gone by the time we get to ~QObject().
822 delete sysChannel; 822 delete sysChannel;
823 delete pidChannel; 823 delete pidChannel;
824#endif 824#endif
825 825
826 delete d; 826 delete d;
827} 827}
828 828
829/*! 829/*!
830 Returns <tt>$OPIEDIR/</tt>. 830 Returns <tt>$OPIEDIR/</tt>.
831*/ 831*/
832QString QPEApplication::qpeDir() 832QString QPEApplication::qpeDir()
833{ 833{
834 const char * base = getenv( "OPIEDIR" ); 834 const char * base = getenv( "OPIEDIR" );
835 if ( base ) 835 if ( base )
836 return QString( base ) + "/"; 836 return QString( base ) + "/";
837 837
838 return QString( "../" ); 838 return QString( "../" );
839} 839}
840 840
841/*! 841/*!
842 Returns the user's current Document directory. There is a trailing "/". 842 Returns the user's current Document directory. There is a trailing "/".
843 .. well, it does now,, and there's no trailing '/' 843 .. well, it does now,, and there's no trailing '/'
844*/ 844*/
845QString QPEApplication::documentDir() 845QString QPEApplication::documentDir()
846{ 846{
847 const char* base = getenv( "HOME"); 847 const char* base = getenv( "HOME");
848 if ( base ) 848 if ( base )
849 return QString( base ) + "/Documents"; 849 return QString( base ) + "/Documents";
850 850
851 return QString( "../Documents" ); 851 return QString( "../Documents" );
852} 852}
853 853
854static int deforient = -1; 854static int deforient = -1;
855 855
856/*! 856/*!
857 \internal 857 \internal
858*/ 858*/
859int QPEApplication::defaultRotation() 859int QPEApplication::defaultRotation()
860{ 860{
861 if ( deforient < 0 ) { 861 if ( deforient < 0 ) {
862 QString d = getenv( "QWS_DISPLAY" ); 862 QString d = getenv( "QWS_DISPLAY" );
863 if ( d.contains( "Rot90" ) ) { 863 if ( d.contains( "Rot90" ) ) {
864 deforient = 90; 864 deforient = 90;
865 } 865 }
866 else if ( d.contains( "Rot180" ) ) { 866 else if ( d.contains( "Rot180" ) ) {
867 deforient = 180; 867 deforient = 180;
868 } 868 }
869 else if ( d.contains( "Rot270" ) ) { 869 else if ( d.contains( "Rot270" ) ) {
870 deforient = 270; 870 deforient = 270;
871 } 871 }
872 else { 872 else {
873 deforient = 0; 873 deforient = 0;
874 } 874 }
875 } 875 }
876 return deforient; 876 return deforient;
877} 877}
878 878
879/*! 879/*!
880 \internal 880 \internal
881*/ 881*/
882void QPEApplication::setDefaultRotation( int r ) 882void QPEApplication::setDefaultRotation( int r )
883{ 883{
884 if ( qApp->type() == GuiServer ) { 884 if ( qApp->type() == GuiServer ) {
885 deforient = r; 885 deforient = r;
886 setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 ); 886 setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 );
887 Config config("qpe"); 887 Config config("qpe");
888 config.setGroup( "Rotation" ); 888 config.setGroup( "Rotation" );
889 config.writeEntry( "Screen", getenv("QWS_DISPLAY") ); 889 config.writeEntry( "Screen", getenv("QWS_DISPLAY") );
890 } 890 }
891 else { 891 else {
892#ifndef QT_NO_COP 892#ifndef QT_NO_COP
893 { QCopEnvelope e( "QPE/System", "setDefaultRotation(int)" ); 893 { QCopEnvelope e( "QPE/System", "setDefaultRotation(int)" );
894 e << r; 894 e << r;
895 } 895 }
896#endif 896#endif
897 897
898 } 898 }
899} 899}
900 900
901// exported to libpreload.so
902bool opie_block_style = false;
903
901/*! 904/*!
902 \internal 905 \internal
903*/ 906*/
904void QPEApplication::applyStyle() 907void QPEApplication::applyStyle()
905{ 908{
906 Config config( "qpe" ); 909 Config config( "qpe" );
907
908 config.setGroup( "Appearance" ); 910 config.setGroup( "Appearance" );
909 911
912 // don't block ourselves ...
913 opie_block_style = false;
914
915
916 static QString appname;
917
918 if ( appname. isNull ( )) {
919 char src [32];
920 char dst [PATH_MAX + 1];
921 ::sprintf ( src, "/proc/%d/exe", ::getpid ( ));
922 int l = ::readlink ( src, dst, PATH_MAX );
923 if ( l > 0 ) {
924 dst [l] = 0;
925 const char *b = ::strrchr ( dst, '/' );
926 appname = ( b ? b + 1 : dst );
927 }
928 else
929 appname = "";
930 }
931
932
933 QStringList ex = config. readListEntry ( "NoStyle", ';' );
934 int nostyle = 0;
935 for ( QStringList::Iterator it = ex. begin ( ); it != ex. end ( ); ++it ) {
936 if ( QRegExp (( *it ). mid ( 1 ), false, true ). find ( appname, 0 ) >= 0 ) {
937 nostyle = ( *it ). left ( 1 ). toInt ( 0, 32 );
938 break;
939 }
940 }
941
910 // Widget style 942 // Widget style
911 QString style = config.readEntry( "Style", "Light" ); 943 QString style = config.readEntry( "Style", "Light" );
912 internalSetStyle( style ); 944
945 // don't set a custom style
946 if ( nostyle & 0x01 )
947 style = "Light";
948
949 internalSetStyle ( style );
913 950
914 // Colors 951 // Colors
915 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) ); 952 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) );
916 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) ); 953 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) );
917 QPalette pal( btncolor, bgcolor ); 954 QPalette pal( btncolor, bgcolor );
918 QString color = config.readEntry( "Highlight", "#800000" ); 955 QString color = config.readEntry( "Highlight", "#800000" );
919 pal.setColor( QColorGroup::Highlight, QColor( color ) ); 956 pal.setColor( QColorGroup::Highlight, QColor( color ) );
920 color = config.readEntry( "HighlightedText", "#FFFFFF" ); 957 color = config.readEntry( "HighlightedText", "#FFFFFF" );
921 pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); 958 pal.setColor( QColorGroup::HighlightedText, QColor( color ) );
922 color = config.readEntry( "Text", "#000000" ); 959 color = config.readEntry( "Text", "#000000" );
923 pal.setColor( QColorGroup::Text, QColor( color ) ); 960 pal.setColor( QColorGroup::Text, QColor( color ) );
924 color = config.readEntry( "ButtonText", "#000000" ); 961 color = config.readEntry( "ButtonText", "#000000" );
925 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); 962 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) );
926 color = config.readEntry( "Base", "#FFFFFF" ); 963 color = config.readEntry( "Base", "#FFFFFF" );
927 pal.setColor( QColorGroup::Base, QColor( color ) ); 964 pal.setColor( QColorGroup::Base, QColor( color ) );
928 965
929 pal.setColor( QPalette::Disabled, QColorGroup::Text, 966 pal.setColor( QPalette::Disabled, QColorGroup::Text,
930 pal.color( QPalette::Active, QColorGroup::Background ).dark() ); 967 pal.color( QPalette::Active, QColorGroup::Background ).dark() );
931 968
932 setPalette( pal, TRUE ); 969 setPalette( pal, TRUE );
933 970
934 // Window Decoration 971 // Window Decoration
935 QString dec = config.readEntry( "Decoration", "Qtopia" ); 972 QString dec = config.readEntry( "Decoration", "Qtopia" );
973
974 // don't set a custom deco
975 if ( nostyle & 0x04 )
976 dec = "";
977
936 if ( dec != d->decorationName ) { 978 if ( dec != d->decorationName ) {
937 qwsSetDecoration( new QPEDecoration( dec ) ); 979 qwsSetDecoration( new QPEDecoration( dec ) );
938 d->decorationName = dec; 980 d->decorationName = dec;
939 } 981 }
940 982
941 // Font 983 // Font
942 QString ff = config.readEntry( "FontFamily", font().family() ); 984 QString ff = config.readEntry( "FontFamily", font().family() );
943 int fs = config.readNumEntry( "FontSize", font().pointSize() ); 985 int fs = config.readNumEntry( "FontSize", font().pointSize() );
986
987 // don't set a custom font
988 if ( nostyle & 0x02 ) {
989 ff = "Helvetica";
990 fs = 10;
991 }
992
944 setFont( QFont(ff, fs) ); 993 setFont( QFont(ff, fs) );
994
995 // revert to global blocking policy ...
996 opie_block_style = config. readBoolEntry ( "ForceStyle", false );
945} 997}
946 998
947void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data ) 999void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data )
948{ 1000{
949#ifdef Q_WS_QWS 1001#ifdef Q_WS_QWS
950 QDataStream stream( data, IO_ReadOnly ); 1002 QDataStream stream( data, IO_ReadOnly );
951 if ( msg == "applyStyle()" ) { 1003 if ( msg == "applyStyle()" ) {
952 applyStyle(); 1004 applyStyle();
953 } 1005 }
954 else if ( msg == "setDefaultRotation(int)" ) { 1006 else if ( msg == "setDefaultRotation(int)" ) {
955 if ( type() == GuiServer ) { 1007 if ( type() == GuiServer ) {
956 int r; 1008 int r;
957 stream >> r; 1009 stream >> r;
958 setDefaultRotation( r ); 1010 setDefaultRotation( r );
959 } 1011 }
960 } 1012 }
961 else if ( msg == "shutdown()" ) { 1013 else if ( msg == "shutdown()" ) {
962 if ( type() == GuiServer ) 1014 if ( type() == GuiServer )
963 shutdown(); 1015 shutdown();
964 } 1016 }
965 else if ( msg == "quit()" ) { 1017 else if ( msg == "quit()" ) {
966 if ( type() != GuiServer ) 1018 if ( type() != GuiServer )
967 tryQuit(); 1019 tryQuit();
968 } 1020 }
969 else if ( msg == "forceQuit()" ) { 1021 else if ( msg == "forceQuit()" ) {
970 if ( type() != GuiServer ) 1022 if ( type() != GuiServer )
971 quit(); 1023 quit();
972 } 1024 }
973 else if ( msg == "restart()" ) { 1025 else if ( msg == "restart()" ) {
974 if ( type() == GuiServer ) 1026 if ( type() == GuiServer )
975 restart(); 1027 restart();
976 } 1028 }
977 else if ( msg == "grabKeyboard(QString)" ) { 1029 else if ( msg == "grabKeyboard(QString)" ) {
978 QString who; 1030 QString who;
979 stream >> who; 1031 stream >> who;
980 if ( who.isEmpty() ) 1032 if ( who.isEmpty() )
981 d->kbgrabber = 0; 1033 d->kbgrabber = 0;
982 else if ( who != d->appName ) 1034 else if ( who != d->appName )
983 d->kbgrabber = 1; 1035 d->kbgrabber = 1;
984 else 1036 else
985 d->kbgrabber = 2; 1037 d->kbgrabber = 2;
986 } 1038 }
987 else if ( msg == "language(QString)" ) { 1039 else if ( msg == "language(QString)" ) {
988 if ( type() == GuiServer ) { 1040 if ( type() == GuiServer ) {
989 QString l; 1041 QString l;
990 stream >> l; 1042 stream >> l;
991 QString cl = getenv( "LANG" ); 1043 QString cl = getenv( "LANG" );
992 if ( cl != l ) { 1044 if ( cl != l ) {
993 if ( l.isNull() ) 1045 if ( l.isNull() )
994 unsetenv( "LANG" ); 1046 unsetenv( "LANG" );
995 else 1047 else
996 setenv( "LANG", l.latin1(), 1 ); 1048 setenv( "LANG", l.latin1(), 1 );
997 restart(); 1049 restart();
998 } 1050 }
999 } 1051 }
1000 } 1052 }
1001 else if ( msg == "timeChange(QString)" ) { 1053 else if ( msg == "timeChange(QString)" ) {
1002 QString t; 1054 QString t;
1003 stream >> t; 1055 stream >> t;
1004 if ( t.isNull() ) 1056 if ( t.isNull() )
1005 unsetenv( "TZ" ); 1057 unsetenv( "TZ" );
1006 else 1058 else
1007 setenv( "TZ", t.latin1(), 1 ); 1059 setenv( "TZ", t.latin1(), 1 );
1008 // emit the signal so everyone else knows... 1060 // emit the signal so everyone else knows...
1009 emit timeChanged(); 1061 emit timeChanged();
1010 } 1062 }
1011 else if ( msg == "execute(QString)" ) { 1063 else if ( msg == "execute(QString)" ) {
1012 if ( type() == GuiServer ) { 1064 if ( type() == GuiServer ) {
1013 QString t; 1065 QString t;
1014 stream >> t; 1066 stream >> t;
1015 Global::execute( t ); 1067 Global::execute( t );
1016 } 1068 }
1017 } 1069 }
1018 else if ( msg == "execute(QString,QString)" ) { 1070 else if ( msg == "execute(QString,QString)" ) {
1019 if ( type() == GuiServer ) { 1071 if ( type() == GuiServer ) {
1020 QString t, d; 1072 QString t, d;
1021 stream >> t >> d; 1073 stream >> t >> d;
1022 Global::execute( t, d ); 1074 Global::execute( t, d );
1023 } 1075 }
1024 } 1076 }
1025 else if ( msg == "addAlarm(QDateTime,QCString,QCString,int)" ) { 1077 else if ( msg == "addAlarm(QDateTime,QCString,QCString,int)" ) {
1026 if ( type() == GuiServer ) { 1078 if ( type() == GuiServer ) {
1027 QDateTime when; 1079 QDateTime when;
1028 QCString channel, message; 1080 QCString channel, message;
1029 int data; 1081 int data;
1030 stream >> when >> channel >> message >> data; 1082 stream >> when >> channel >> message >> data;
1031 AlarmServer::addAlarm( when, channel, message, data ); 1083 AlarmServer::addAlarm( when, channel, message, data );
1032 } 1084 }
1033 } 1085 }
1034 else if ( msg == "deleteAlarm(QDateTime,QCString,QCString,int)" ) { 1086 else if ( msg == "deleteAlarm(QDateTime,QCString,QCString,int)" ) {
1035 if ( type() == GuiServer ) { 1087 if ( type() == GuiServer ) {
1036 QDateTime when; 1088 QDateTime when;
1037 QCString channel, message; 1089 QCString channel, message;
1038 int data; 1090 int data;
1039 stream >> when >> channel >> message >> data; 1091 stream >> when >> channel >> message >> data;
1040 AlarmServer::deleteAlarm( when, channel, message, data ); 1092 AlarmServer::deleteAlarm( when, channel, message, data );
@@ -1230,193 +1282,193 @@ void QPEApplication::showMainDocumentWidget( QWidget* mw, bool nomaximize )
1230*/ 1282*/
1231void QPEApplication::setKeepRunning() 1283void QPEApplication::setKeepRunning()
1232{ 1284{
1233 if ( qApp && qApp->inherits( "QPEApplication" ) ) { 1285 if ( qApp && qApp->inherits( "QPEApplication" ) ) {
1234 QPEApplication * qpeApp = ( QPEApplication* ) qApp; 1286 QPEApplication * qpeApp = ( QPEApplication* ) qApp;
1235 qpeApp->d->keep_running = TRUE; 1287 qpeApp->d->keep_running = TRUE;
1236 } 1288 }
1237} 1289}
1238 1290
1239/*! 1291/*!
1240 Returns TRUE if the application will quit after processing the 1292 Returns TRUE if the application will quit after processing the
1241 current list of qcop messages; otherwise returns FALSE. 1293 current list of qcop messages; otherwise returns FALSE.
1242 1294
1243 \sa setKeepRunning() 1295 \sa setKeepRunning()
1244*/ 1296*/
1245bool QPEApplication::keepRunning() const 1297bool QPEApplication::keepRunning() const
1246{ 1298{
1247 return d->keep_running; 1299 return d->keep_running;
1248} 1300}
1249 1301
1250/*! 1302/*!
1251 \internal 1303 \internal
1252*/ 1304*/
1253void QPEApplication::internalSetStyle( const QString &style ) 1305void QPEApplication::internalSetStyle( const QString &style )
1254{ 1306{
1255#if QT_VERSION >= 300 1307#if QT_VERSION >= 300
1256 if ( style == "QPE" ) { 1308 if ( style == "QPE" ) {
1257 setStyle( new QPEStyle ); 1309 setStyle( new QPEStyle );
1258 } 1310 }
1259 else { 1311 else {
1260 QStyle *s = QStyleFactory::create( style ); 1312 QStyle *s = QStyleFactory::create( style );
1261 if ( s ) 1313 if ( s )
1262 setStyle( s ); 1314 setStyle( s );
1263 } 1315 }
1264#else 1316#else
1265 if ( style == "Windows" ) { 1317 if ( style == "Windows" ) {
1266 setStyle( new QWindowsStyle ); 1318 setStyle( new QWindowsStyle );
1267 } 1319 }
1268 else if ( style == "QPE" ) { 1320 else if ( style == "QPE" ) {
1269 setStyle( new QPEStyle ); 1321 setStyle( new QPEStyle );
1270 } 1322 }
1271 else if ( style == "Light" ) { 1323 else if ( style == "Light" ) {
1272 setStyle( new LightStyle ); 1324 setStyle( new LightStyle );
1273 } 1325 }
1274#ifndef QT_NO_STYLE_PLATINUM 1326#ifndef QT_NO_STYLE_PLATINUM
1275 else if ( style == "Platinum" ) { 1327 else if ( style == "Platinum" ) {
1276 setStyle( new QPlatinumStyle ); 1328 setStyle( new QPlatinumStyle );
1277 } 1329 }
1278#endif 1330#endif
1279#ifndef QT_NO_STYLE_MOTIF 1331#ifndef QT_NO_STYLE_MOTIF
1280 else if ( style == "Motif" ) { 1332 else if ( style == "Motif" ) {
1281 setStyle( new QMotifStyle ); 1333 setStyle( new QMotifStyle );
1282 } 1334 }
1283#endif 1335#endif
1284#ifndef QT_NO_STYLE_MOTIFPLUS 1336#ifndef QT_NO_STYLE_MOTIFPLUS
1285 else if ( style == "MotifPlus" ) { 1337 else if ( style == "MotifPlus" ) {
1286 setStyle( new QMotifPlusStyle ); 1338 setStyle( new QMotifPlusStyle );
1287 } 1339 }
1288#endif 1340#endif
1289 1341
1290 else { 1342 else {
1291 QStyle *sty = 0; 1343 QStyle *sty = 0;
1292 QString path = QPEApplication::qpeDir ( ) + "/plugins/styles/"; 1344 QString path = QPEApplication::qpeDir ( ) + "/plugins/styles/";
1293 1345
1294 if ( style. find ( ".so" ) > 0 ) 1346 if ( style. find ( ".so" ) > 0 )
1295 path += style; 1347 path += style;
1296 else 1348 else
1297 path = path + "lib" + style. lower ( ) + ".so"; // compatibility 1349 path = path + "lib" + style. lower ( ) + ".so"; // compatibility
1298 1350
1299 static QLibrary *lastlib = 0; 1351 static QLibrary *lastlib = 0;
1300 static StyleInterface *lastiface = 0; 1352 static StyleInterface *lastiface = 0;
1301 1353
1302 QLibrary *lib = new QLibrary ( path ); 1354 QLibrary *lib = new QLibrary ( path );
1303 StyleInterface *iface = 0; 1355 StyleInterface *iface = 0;
1304 1356
1305 if (( lib-> queryInterface ( IID_Style, ( QUnknownInterface ** ) &iface ) == QS_OK ) && iface ) 1357 if (( lib-> queryInterface ( IID_Style, ( QUnknownInterface ** ) &iface ) == QS_OK ) && iface )
1306 sty = iface-> style ( ); 1358 sty = iface-> style ( );
1307 1359
1308 if ( sty ) { 1360 if ( sty ) {
1309 setStyle ( sty ); 1361 setStyle ( sty );
1310 1362
1311 if ( lastiface ) 1363 if ( lastiface )
1312 lastiface-> release ( ); 1364 lastiface-> release ( );
1313 lastiface = iface; 1365 lastiface = iface;
1314 1366
1315 if ( lastlib ) { 1367 if ( lastlib ) {
1316 lastlib-> unload ( ); 1368 lastlib-> unload ( );
1317 delete lastlib; 1369 delete lastlib;
1318 } 1370 }
1319 lastlib = lib; 1371 lastlib = lib;
1320 } 1372 }
1321 else { 1373 else {
1322 if ( iface ) 1374 if ( iface )
1323 iface-> release ( ); 1375 iface-> release ( );
1324 delete lib; 1376 delete lib;
1325 1377
1326 setStyle ( new QPEStyle ( )); 1378 setStyle ( new LightStyle ( ));
1327 } 1379 }
1328 } 1380 }
1329#endif 1381#endif
1330} 1382}
1331 1383
1332/*! 1384/*!
1333 \internal 1385 \internal
1334*/ 1386*/
1335void QPEApplication::prepareForTermination( bool willrestart ) 1387void QPEApplication::prepareForTermination( bool willrestart )
1336{ 1388{
1337 if ( willrestart ) { 1389 if ( willrestart ) {
1338 // Draw a big wait icon, the image can be altered in later revisions 1390 // Draw a big wait icon, the image can be altered in later revisions
1339 // QWidget *d = QApplication::desktop(); 1391 // QWidget *d = QApplication::desktop();
1340 QImage img = Resource::loadImage( "launcher/new_wait" ); 1392 QImage img = Resource::loadImage( "launcher/new_wait" );
1341 QPixmap pix; 1393 QPixmap pix;
1342 pix.convertFromImage( img.smoothScale( 1 * img.width(), 1 * img.height() ) ); 1394 pix.convertFromImage( img.smoothScale( 1 * img.width(), 1 * img.height() ) );
1343 QLabel *lblWait = new QLabel( 0, "wait hack!", QWidget::WStyle_Customize | 1395 QLabel *lblWait = new QLabel( 0, "wait hack!", QWidget::WStyle_Customize |
1344 QWidget::WStyle_NoBorder | QWidget::WStyle_Tool ); 1396 QWidget::WStyle_NoBorder | QWidget::WStyle_Tool );
1345 lblWait->setPixmap( pix ); 1397 lblWait->setPixmap( pix );
1346 lblWait->setAlignment( QWidget::AlignCenter ); 1398 lblWait->setAlignment( QWidget::AlignCenter );
1347 lblWait->show(); 1399 lblWait->show();
1348 lblWait->showMaximized(); 1400 lblWait->showMaximized();
1349 } 1401 }
1350#ifndef SINGLE_APP 1402#ifndef SINGLE_APP
1351 { QCopEnvelope envelope( "QPE/System", "forceQuit()" ); 1403 { QCopEnvelope envelope( "QPE/System", "forceQuit()" );
1352 } 1404 }
1353 processEvents(); // ensure the message goes out. 1405 processEvents(); // ensure the message goes out.
1354 sleep( 1 ); // You have 1 second to comply. 1406 sleep( 1 ); // You have 1 second to comply.
1355#endif 1407#endif
1356} 1408}
1357 1409
1358/*! 1410/*!
1359 \internal 1411 \internal
1360*/ 1412*/
1361void QPEApplication::shutdown() 1413void QPEApplication::shutdown()
1362{ 1414{
1363 // Implement in server's QPEApplication subclass 1415 // Implement in server's QPEApplication subclass
1364} 1416}
1365 1417
1366/*! 1418/*!
1367 \internal 1419 \internal
1368*/ 1420*/
1369void QPEApplication::restart() 1421void QPEApplication::restart()
1370{ 1422{
1371 // Implement in server's QPEApplication subclass 1423 // Implement in server's QPEApplication subclass
1372} 1424}
1373 1425
1374static QPtrDict<void>* stylusDict = 0; 1426static QPtrDict<void>* stylusDict = 0;
1375static void createDict() 1427static void createDict()
1376{ 1428{
1377 if ( !stylusDict ) 1429 if ( !stylusDict )
1378 stylusDict = new QPtrDict<void>; 1430 stylusDict = new QPtrDict<void>;
1379} 1431}
1380 1432
1381/*! 1433/*!
1382 Returns the current StylusMode for widget \a w. 1434 Returns the current StylusMode for widget \a w.
1383 1435
1384 \sa setStylusOperation() StylusMode 1436 \sa setStylusOperation() StylusMode
1385*/ 1437*/
1386QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w ) 1438QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w )
1387{ 1439{
1388 if ( stylusDict ) 1440 if ( stylusDict )
1389 return ( StylusMode ) ( int ) stylusDict->find( w ); 1441 return ( StylusMode ) ( int ) stylusDict->find( w );
1390 return LeftOnly; 1442 return LeftOnly;
1391} 1443}
1392 1444
1393/*! 1445/*!
1394 \enum QPEApplication::StylusMode 1446 \enum QPEApplication::StylusMode
1395 1447
1396 \value LeftOnly the stylus only generates LeftButton 1448 \value LeftOnly the stylus only generates LeftButton
1397 events (the default). 1449 events (the default).
1398 \value RightOnHold the stylus generates RightButton events 1450 \value RightOnHold the stylus generates RightButton events
1399 if the user uses the press-and-hold gesture. 1451 if the user uses the press-and-hold gesture.
1400 1452
1401 \sa setStylusOperation() stylusOperation() 1453 \sa setStylusOperation() stylusOperation()
1402*/ 1454*/
1403 1455
1404/*! 1456/*!
1405 Causes widget \a w to receive mouse events according to the stylus 1457 Causes widget \a w to receive mouse events according to the stylus
1406 \a mode. 1458 \a mode.
1407 1459
1408 \sa stylusOperation() StylusMode 1460 \sa stylusOperation() StylusMode
1409*/ 1461*/
1410void QPEApplication::setStylusOperation( QWidget * w, StylusMode mode ) 1462void QPEApplication::setStylusOperation( QWidget * w, StylusMode mode )
1411{ 1463{
1412 createDict(); 1464 createDict();
1413 if ( mode == LeftOnly ) { 1465 if ( mode == LeftOnly ) {
1414 stylusDict->remove 1466 stylusDict->remove
1415 ( w ); 1467 ( w );
1416 w->removeEventFilter( qApp ); 1468 w->removeEventFilter( qApp );
1417 } 1469 }
1418 else { 1470 else {
1419 stylusDict->insert( w, ( void* ) mode ); 1471 stylusDict->insert( w, ( void* ) mode );
1420 connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) ); 1472 connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) );
1421 w->installEventFilter( qApp ); 1473 w->installEventFilter( qApp );
1422 } 1474 }