author | sandman <sandman> | 2002-11-25 22:12:18 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-11-25 22:12:18 (UTC) |
commit | 4e6b2585987290f874697cbec7c289b4df29f82b (patch) (unidiff) | |
tree | e19415ef5374ffa3730380813298111e24711590 /library | |
parent | 7bd8ef9197506897d3a5287a013934f89658d60a (diff) | |
download | opie-4e6b2585987290f874697cbec7c289b4df29f82b.zip opie-4e6b2585987290f874697cbec7c289b4df29f82b.tar.gz opie-4e6b2585987290f874697cbec7c289b4df29f82b.tar.bz2 |
Some changes to the QPEDecoration c'tor internals:
Since the current deco plugin is unloaded, when a new Deco is created
via new (even if this new deco is never used or deleted immediatly afer-
wards), we have to remember the plugin name, in case someone calls the
default c'tor (without supplying a plugin name)
-rw-r--r-- | library/qpeapplication.cpp | 9 | ||||
-rw-r--r-- | library/qpedecoration_qws.cpp | 41 | ||||
-rw-r--r-- | library/qpedecoration_qws.h | 2 |
3 files changed, 25 insertions, 27 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index a54fb20..c8e6e74 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -806,287 +806,290 @@ bool QPEApplication::qwsEventFilter( QWSEvent * e ) | |||
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 | */ |
816 | QPEApplication::~QPEApplication() | 816 | QPEApplication::~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 | */ |
832 | QString QPEApplication::qpeDir() | 832 | QString 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 | */ |
845 | QString QPEApplication::documentDir() | 845 | QString 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 | ||
854 | static int deforient = -1; | 854 | static int deforient = -1; |
855 | 855 | ||
856 | /*! | 856 | /*! |
857 | \internal | 857 | \internal |
858 | */ | 858 | */ |
859 | int QPEApplication::defaultRotation() | 859 | int 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 | */ |
882 | void QPEApplication::setDefaultRotation( int r ) | 882 | void 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 | 901 | // exported to libpreload.so |
902 | bool opie_block_style = false; | 902 | int opie_block_style = 0; |
903 | 903 | ||
904 | /*! | 904 | /*! |
905 | \internal | 905 | \internal |
906 | */ | 906 | */ |
907 | void QPEApplication::applyStyle() | 907 | void QPEApplication::applyStyle() |
908 | { | 908 | { |
909 | Config config( "qpe" ); | 909 | Config config( "qpe" ); |
910 | config.setGroup( "Appearance" ); | 910 | config.setGroup( "Appearance" ); |
911 | 911 | ||
912 | // don't block ourselves ... | 912 | // don't block ourselves ... |
913 | opie_block_style = false; | 913 | opie_block_style = 0; |
914 | 914 | ||
915 | 915 | ||
916 | static QString appname; | 916 | static QString appname; |
917 | 917 | ||
918 | if ( appname. isNull ( )) { | 918 | if ( appname. isNull ( )) { |
919 | char src [32]; | 919 | char src [32]; |
920 | char dst [PATH_MAX + 1]; | 920 | char dst [PATH_MAX + 1]; |
921 | ::sprintf ( src, "/proc/%d/exe", ::getpid ( )); | 921 | ::sprintf ( src, "/proc/%d/exe", ::getpid ( )); |
922 | int l = ::readlink ( src, dst, PATH_MAX ); | 922 | int l = ::readlink ( src, dst, PATH_MAX ); |
923 | if ( l > 0 ) { | 923 | if ( l > 0 ) { |
924 | dst [l] = 0; | 924 | dst [l] = 0; |
925 | const char *b = ::strrchr ( dst, '/' ); | 925 | const char *b = ::strrchr ( dst, '/' ); |
926 | appname = ( b ? b + 1 : dst ); | 926 | appname = ( b ? b + 1 : dst ); |
927 | } | 927 | } |
928 | else | 928 | else |
929 | appname = ""; | 929 | appname = ""; |
930 | } | 930 | } |
931 | 931 | ||
932 | 932 | ||
933 | QStringList ex = config. readListEntry ( "NoStyle", ';' ); | 933 | QStringList ex = config. readListEntry ( "NoStyle", ';' ); |
934 | int nostyle = 0; | 934 | int nostyle = 0; |
935 | for ( QStringList::Iterator it = ex. begin ( ); it != ex. end ( ); ++it ) { | 935 | for ( QStringList::Iterator it = ex. begin ( ); it != ex. end ( ); ++it ) { |
936 | if ( QRegExp (( *it ). mid ( 1 ), false, true ). find ( appname, 0 ) >= 0 ) { | 936 | if ( QRegExp (( *it ). mid ( 1 ), false, true ). find ( appname, 0 ) >= 0 ) { |
937 | nostyle = ( *it ). left ( 1 ). toInt ( 0, 32 ); | 937 | nostyle = ( *it ). left ( 1 ). toInt ( 0, 32 ); |
938 | break; | 938 | break; |
939 | } | 939 | } |
940 | } | 940 | } |
941 | 941 | ||
942 | // Widget style | 942 | // Widget style |
943 | QString style = config.readEntry( "Style", "Light" ); | 943 | QString style = config.readEntry( "Style", "Light" ); |
944 | 944 | ||
945 | // don't set a custom style | 945 | // don't set a custom style |
946 | if ( nostyle & 0x01 ) | 946 | if ( nostyle & 0x01 ) |
947 | style = "Light"; | 947 | style = "Light"; |
948 | 948 | ||
949 | internalSetStyle ( style ); | 949 | internalSetStyle ( style ); |
950 | 950 | ||
951 | // Colors | 951 | // Colors |
952 | QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) ); | 952 | QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) ); |
953 | QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) ); | 953 | QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) ); |
954 | QPalette pal( btncolor, bgcolor ); | 954 | QPalette pal( btncolor, bgcolor ); |
955 | QString color = config.readEntry( "Highlight", "#800000" ); | 955 | QString color = config.readEntry( "Highlight", "#800000" ); |
956 | pal.setColor( QColorGroup::Highlight, QColor( color ) ); | 956 | pal.setColor( QColorGroup::Highlight, QColor( color ) ); |
957 | color = config.readEntry( "HighlightedText", "#FFFFFF" ); | 957 | color = config.readEntry( "HighlightedText", "#FFFFFF" ); |
958 | pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); | 958 | pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); |
959 | color = config.readEntry( "Text", "#000000" ); | 959 | color = config.readEntry( "Text", "#000000" ); |
960 | pal.setColor( QColorGroup::Text, QColor( color ) ); | 960 | pal.setColor( QColorGroup::Text, QColor( color ) ); |
961 | color = config.readEntry( "ButtonText", "#000000" ); | 961 | color = config.readEntry( "ButtonText", "#000000" ); |
962 | pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); | 962 | pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); |
963 | color = config.readEntry( "Base", "#FFFFFF" ); | 963 | color = config.readEntry( "Base", "#FFFFFF" ); |
964 | pal.setColor( QColorGroup::Base, QColor( color ) ); | 964 | pal.setColor( QColorGroup::Base, QColor( color ) ); |
965 | 965 | ||
966 | pal.setColor( QPalette::Disabled, QColorGroup::Text, | 966 | pal.setColor( QPalette::Disabled, QColorGroup::Text, |
967 | pal.color( QPalette::Active, QColorGroup::Background ).dark() ); | 967 | pal.color( QPalette::Active, QColorGroup::Background ).dark() ); |
968 | 968 | ||
969 | setPalette( pal, TRUE ); | 969 | setPalette( pal, TRUE ); |
970 | 970 | ||
971 | // Window Decoration | 971 | // Window Decoration |
972 | QString dec = config.readEntry( "Decoration", "Qtopia" ); | 972 | QString dec = config.readEntry( "Decoration", "Qtopia" ); |
973 | 973 | ||
974 | // don't set a custom deco | 974 | // don't set a custom deco |
975 | if ( nostyle & 0x04 ) | 975 | if ( nostyle & 0x04 ) |
976 | dec = ""; | 976 | dec = ""; |
977 | 977 | ||
978 | //qDebug ( "Setting Deco: %s -- old %s (%d)", dec.latin1(), d-> decorationName.latin1(), nostyle); | ||
979 | |||
978 | if ( dec != d->decorationName ) { | 980 | if ( dec != d->decorationName ) { |
979 | qwsSetDecoration( new QPEDecoration( dec ) ); | 981 | qwsSetDecoration( new QPEDecoration( dec ) ); |
980 | d->decorationName = dec; | 982 | d->decorationName = dec; |
981 | } | 983 | } |
982 | 984 | ||
983 | // Font | 985 | // Font |
984 | QString ff = config.readEntry( "FontFamily", font().family() ); | 986 | QString ff = config.readEntry( "FontFamily", font().family() ); |
985 | int fs = config.readNumEntry( "FontSize", font().pointSize() ); | 987 | int fs = config.readNumEntry( "FontSize", font().pointSize() ); |
986 | 988 | ||
987 | // don't set a custom font | 989 | // don't set a custom font |
988 | if ( nostyle & 0x02 ) { | 990 | if ( nostyle & 0x02 ) { |
989 | ff = "Helvetica"; | 991 | ff = "Helvetica"; |
990 | fs = 10; | 992 | fs = 10; |
991 | } | 993 | } |
992 | 994 | ||
993 | setFont( QFont(ff, fs) ); | 995 | setFont( QFont(ff, fs) ); |
994 | 996 | ||
995 | // revert to global blocking policy ... | 997 | // revert to global blocking policy ... |
996 | opie_block_style = config. readBoolEntry ( "ForceStyle", false ); | 998 | opie_block_style = config. readBoolEntry ( "ForceStyle", false ) ? 0xff : 0x00; |
999 | opie_block_style -= nostyle; | ||
997 | } | 1000 | } |
998 | 1001 | ||
999 | void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data ) | 1002 | void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data ) |
1000 | { | 1003 | { |
1001 | #ifdef Q_WS_QWS | 1004 | #ifdef Q_WS_QWS |
1002 | QDataStream stream( data, IO_ReadOnly ); | 1005 | QDataStream stream( data, IO_ReadOnly ); |
1003 | if ( msg == "applyStyle()" ) { | 1006 | if ( msg == "applyStyle()" ) { |
1004 | applyStyle(); | 1007 | applyStyle(); |
1005 | } | 1008 | } |
1006 | else if ( msg == "setDefaultRotation(int)" ) { | 1009 | else if ( msg == "setDefaultRotation(int)" ) { |
1007 | if ( type() == GuiServer ) { | 1010 | if ( type() == GuiServer ) { |
1008 | int r; | 1011 | int r; |
1009 | stream >> r; | 1012 | stream >> r; |
1010 | setDefaultRotation( r ); | 1013 | setDefaultRotation( r ); |
1011 | } | 1014 | } |
1012 | } | 1015 | } |
1013 | else if ( msg == "shutdown()" ) { | 1016 | else if ( msg == "shutdown()" ) { |
1014 | if ( type() == GuiServer ) | 1017 | if ( type() == GuiServer ) |
1015 | shutdown(); | 1018 | shutdown(); |
1016 | } | 1019 | } |
1017 | else if ( msg == "quit()" ) { | 1020 | else if ( msg == "quit()" ) { |
1018 | if ( type() != GuiServer ) | 1021 | if ( type() != GuiServer ) |
1019 | tryQuit(); | 1022 | tryQuit(); |
1020 | } | 1023 | } |
1021 | else if ( msg == "forceQuit()" ) { | 1024 | else if ( msg == "forceQuit()" ) { |
1022 | if ( type() != GuiServer ) | 1025 | if ( type() != GuiServer ) |
1023 | quit(); | 1026 | quit(); |
1024 | } | 1027 | } |
1025 | else if ( msg == "restart()" ) { | 1028 | else if ( msg == "restart()" ) { |
1026 | if ( type() == GuiServer ) | 1029 | if ( type() == GuiServer ) |
1027 | restart(); | 1030 | restart(); |
1028 | } | 1031 | } |
1029 | else if ( msg == "grabKeyboard(QString)" ) { | 1032 | else if ( msg == "grabKeyboard(QString)" ) { |
1030 | QString who; | 1033 | QString who; |
1031 | stream >> who; | 1034 | stream >> who; |
1032 | if ( who.isEmpty() ) | 1035 | if ( who.isEmpty() ) |
1033 | d->kbgrabber = 0; | 1036 | d->kbgrabber = 0; |
1034 | else if ( who != d->appName ) | 1037 | else if ( who != d->appName ) |
1035 | d->kbgrabber = 1; | 1038 | d->kbgrabber = 1; |
1036 | else | 1039 | else |
1037 | d->kbgrabber = 2; | 1040 | d->kbgrabber = 2; |
1038 | } | 1041 | } |
1039 | else if ( msg == "language(QString)" ) { | 1042 | else if ( msg == "language(QString)" ) { |
1040 | if ( type() == GuiServer ) { | 1043 | if ( type() == GuiServer ) { |
1041 | QString l; | 1044 | QString l; |
1042 | stream >> l; | 1045 | stream >> l; |
1043 | QString cl = getenv( "LANG" ); | 1046 | QString cl = getenv( "LANG" ); |
1044 | if ( cl != l ) { | 1047 | if ( cl != l ) { |
1045 | if ( l.isNull() ) | 1048 | if ( l.isNull() ) |
1046 | unsetenv( "LANG" ); | 1049 | unsetenv( "LANG" ); |
1047 | else | 1050 | else |
1048 | setenv( "LANG", l.latin1(), 1 ); | 1051 | setenv( "LANG", l.latin1(), 1 ); |
1049 | restart(); | 1052 | restart(); |
1050 | } | 1053 | } |
1051 | } | 1054 | } |
1052 | } | 1055 | } |
1053 | else if ( msg == "timeChange(QString)" ) { | 1056 | else if ( msg == "timeChange(QString)" ) { |
1054 | QString t; | 1057 | QString t; |
1055 | stream >> t; | 1058 | stream >> t; |
1056 | if ( t.isNull() ) | 1059 | if ( t.isNull() ) |
1057 | unsetenv( "TZ" ); | 1060 | unsetenv( "TZ" ); |
1058 | else | 1061 | else |
1059 | setenv( "TZ", t.latin1(), 1 ); | 1062 | setenv( "TZ", t.latin1(), 1 ); |
1060 | // emit the signal so everyone else knows... | 1063 | // emit the signal so everyone else knows... |
1061 | emit timeChanged(); | 1064 | emit timeChanged(); |
1062 | } | 1065 | } |
1063 | else if ( msg == "execute(QString)" ) { | 1066 | else if ( msg == "execute(QString)" ) { |
1064 | if ( type() == GuiServer ) { | 1067 | if ( type() == GuiServer ) { |
1065 | QString t; | 1068 | QString t; |
1066 | stream >> t; | 1069 | stream >> t; |
1067 | Global::execute( t ); | 1070 | Global::execute( t ); |
1068 | } | 1071 | } |
1069 | } | 1072 | } |
1070 | else if ( msg == "execute(QString,QString)" ) { | 1073 | else if ( msg == "execute(QString,QString)" ) { |
1071 | if ( type() == GuiServer ) { | 1074 | if ( type() == GuiServer ) { |
1072 | QString t, d; | 1075 | QString t, d; |
1073 | stream >> t >> d; | 1076 | stream >> t >> d; |
1074 | Global::execute( t, d ); | 1077 | Global::execute( t, d ); |
1075 | } | 1078 | } |
1076 | } | 1079 | } |
1077 | else if ( msg == "addAlarm(QDateTime,QCString,QCString,int)" ) { | 1080 | else if ( msg == "addAlarm(QDateTime,QCString,QCString,int)" ) { |
1078 | if ( type() == GuiServer ) { | 1081 | if ( type() == GuiServer ) { |
1079 | QDateTime when; | 1082 | QDateTime when; |
1080 | QCString channel, message; | 1083 | QCString channel, message; |
1081 | int data; | 1084 | int data; |
1082 | stream >> when >> channel >> message >> data; | 1085 | stream >> when >> channel >> message >> data; |
1083 | AlarmServer::addAlarm( when, channel, message, data ); | 1086 | AlarmServer::addAlarm( when, channel, message, data ); |
1084 | } | 1087 | } |
1085 | } | 1088 | } |
1086 | else if ( msg == "deleteAlarm(QDateTime,QCString,QCString,int)" ) { | 1089 | else if ( msg == "deleteAlarm(QDateTime,QCString,QCString,int)" ) { |
1087 | if ( type() == GuiServer ) { | 1090 | if ( type() == GuiServer ) { |
1088 | QDateTime when; | 1091 | QDateTime when; |
1089 | QCString channel, message; | 1092 | QCString channel, message; |
1090 | int data; | 1093 | int data; |
1091 | stream >> when >> channel >> message >> data; | 1094 | stream >> when >> channel >> message >> data; |
1092 | AlarmServer::deleteAlarm( when, channel, message, data ); | 1095 | AlarmServer::deleteAlarm( when, channel, message, data ); |
diff --git a/library/qpedecoration_qws.cpp b/library/qpedecoration_qws.cpp index 6221f5b..5e0c32a 100644 --- a/library/qpedecoration_qws.cpp +++ b/library/qpedecoration_qws.cpp | |||
@@ -387,252 +387,245 @@ void WindowDecorationInterface::drawArea( Area a, QPainter *p, const WindowData | |||
387 | break; | 387 | break; |
388 | case Title: | 388 | case Title: |
389 | { | 389 | { |
390 | const QColorGroup &cg = wd->palette.active(); | 390 | const QColorGroup &cg = wd->palette.active(); |
391 | QBrush titleBrush; | 391 | QBrush titleBrush; |
392 | QPen titleLines; | 392 | QPen titleLines; |
393 | 393 | ||
394 | if ( wd->flags & WindowData::Active ) { | 394 | if ( wd->flags & WindowData::Active ) { |
395 | titleBrush = cg.brush(QColorGroup::Highlight); | 395 | titleBrush = cg.brush(QColorGroup::Highlight); |
396 | titleLines = titleBrush.color().dark(); | 396 | titleLines = titleBrush.color().dark(); |
397 | } else { | 397 | } else { |
398 | titleBrush = cg.brush(QColorGroup::Background); | 398 | titleBrush = cg.brush(QColorGroup::Background); |
399 | titleLines = titleBrush.color(); | 399 | titleLines = titleBrush.color(); |
400 | } | 400 | } |
401 | 401 | ||
402 | p->fillRect( r.x(), r.y()-th, r.width(), th, titleBrush); | 402 | p->fillRect( r.x(), r.y()-th, r.width(), th, titleBrush); |
403 | 403 | ||
404 | p->setPen( titleLines ); | 404 | p->setPen( titleLines ); |
405 | for ( int i = r.y()-th; i < r.y(); i += 2 ) | 405 | for ( int i = r.y()-th; i < r.y(); i += 2 ) |
406 | p->drawLine( r.left(), i, r.right(), i ); | 406 | p->drawLine( r.left(), i, r.right(), i ); |
407 | } | 407 | } |
408 | break; | 408 | break; |
409 | case TitleText: | 409 | case TitleText: |
410 | p->drawText( r.x()+3+metric(HelpWidth,wd), r.top()-th, | 410 | p->drawText( r.x()+3+metric(HelpWidth,wd), r.top()-th, |
411 | r.width()-metric(OKWidth,wd)-metric(CloseWidth,wd), | 411 | r.width()-metric(OKWidth,wd)-metric(CloseWidth,wd), |
412 | th, QPainter::AlignVCenter, wd->caption); | 412 | th, QPainter::AlignVCenter, wd->caption); |
413 | break; | 413 | break; |
414 | } | 414 | } |
415 | } | 415 | } |
416 | 416 | ||
417 | void WindowDecorationInterface::drawButton( Button b, QPainter *p, const WindowData *wd, int x, int y, int, int, QWSButton::State state ) const | 417 | void WindowDecorationInterface::drawButton( Button b, QPainter *p, const WindowData *wd, int x, int y, int, int, QWSButton::State state ) const |
418 | { | 418 | { |
419 | QImage *img = 0; | 419 | QImage *img = 0; |
420 | switch ( b ) { | 420 | switch ( b ) { |
421 | case OK: | 421 | case OK: |
422 | img = okImage(metric(TitleHeight,wd)); | 422 | img = okImage(metric(TitleHeight,wd)); |
423 | break; | 423 | break; |
424 | case Close: | 424 | case Close: |
425 | img = closeImage(metric(TitleHeight,wd)); | 425 | img = closeImage(metric(TitleHeight,wd)); |
426 | break; | 426 | break; |
427 | case Help: | 427 | case Help: |
428 | img = helpImage(metric(TitleHeight,wd)); | 428 | img = helpImage(metric(TitleHeight,wd)); |
429 | break; | 429 | break; |
430 | case Maximize: | 430 | case Maximize: |
431 | img = maximizeImage(metric(TitleHeight,wd)); | 431 | img = maximizeImage(metric(TitleHeight,wd)); |
432 | break; | 432 | break; |
433 | } | 433 | } |
434 | 434 | ||
435 | if ( img ) { | 435 | if ( img ) { |
436 | if ((state & QWSButton::MouseOver) && (state & QWSButton::Clicked)) | 436 | if ((state & QWSButton::MouseOver) && (state & QWSButton::Clicked)) |
437 | p->drawImage(x+2, y+2, *img); | 437 | p->drawImage(x+2, y+2, *img); |
438 | else | 438 | else |
439 | p->drawImage(x+1, y+1, *img); | 439 | p->drawImage(x+1, y+1, *img); |
440 | } | 440 | } |
441 | } | 441 | } |
442 | 442 | ||
443 | QRegion WindowDecorationInterface::mask( const WindowData *wd ) const | 443 | QRegion WindowDecorationInterface::mask( const WindowData *wd ) const |
444 | { | 444 | { |
445 | int th = metric(TitleHeight,wd); | 445 | int th = metric(TitleHeight,wd); |
446 | QRect rect( wd->rect ); | 446 | QRect rect( wd->rect ); |
447 | QRect r(rect.left() - metric(LeftBorder,wd), | 447 | QRect r(rect.left() - metric(LeftBorder,wd), |
448 | rect.top() - th - metric(TopBorder,wd), | 448 | rect.top() - th - metric(TopBorder,wd), |
449 | rect.width() + metric(LeftBorder,wd) + metric(RightBorder,wd), | 449 | rect.width() + metric(LeftBorder,wd) + metric(RightBorder,wd), |
450 | rect.height() + th + metric(TopBorder,wd) + metric(BottomBorder,wd)); | 450 | rect.height() + th + metric(TopBorder,wd) + metric(BottomBorder,wd)); |
451 | return QRegion(r) - rect; | 451 | return QRegion(r) - rect; |
452 | } | 452 | } |
453 | 453 | ||
454 | class DefaultWindowDecoration : public WindowDecorationInterface | 454 | class DefaultWindowDecoration : public WindowDecorationInterface |
455 | { | 455 | { |
456 | public: | 456 | public: |
457 | DefaultWindowDecoration() : ref(0) {} | 457 | DefaultWindowDecoration() : ref(0) {} |
458 | QString name() const { | 458 | QString name() const { |
459 | return "Default"; | 459 | return "Default"; |
460 | } | 460 | } |
461 | QPixmap icon() const { | 461 | QPixmap icon() const { |
462 | return QPixmap(); | 462 | return QPixmap(); |
463 | } | 463 | } |
464 | QRESULT queryInterface( const QUuid &uuid, QUnknownInterface **iface ) { | 464 | QRESULT queryInterface( const QUuid &uuid, QUnknownInterface **iface ) { |
465 | *iface = 0; | 465 | *iface = 0; |
466 | if ( uuid == IID_QUnknown ) | 466 | if ( uuid == IID_QUnknown ) |
467 | *iface = this; | 467 | *iface = this; |
468 | else if ( uuid == IID_WindowDecoration ) | 468 | else if ( uuid == IID_WindowDecoration ) |
469 | *iface = this; | 469 | *iface = this; |
470 | 470 | ||
471 | if ( *iface ) | 471 | if ( *iface ) |
472 | (*iface)->addRef(); | 472 | (*iface)->addRef(); |
473 | return QS_OK; | 473 | return QS_OK; |
474 | } | 474 | } |
475 | Q_REFCOUNT | 475 | Q_REFCOUNT |
476 | 476 | ||
477 | private: | 477 | private: |
478 | ulong ref; | 478 | ulong ref; |
479 | }; | 479 | }; |
480 | 480 | ||
481 | static WindowDecorationInterface *wdiface = 0; | 481 | static WindowDecorationInterface *wdiface = 0; |
482 | static QLibrary *wdlib = 0; | 482 | static QLibrary *wdlib = 0; |
483 | static QString libname; | ||
483 | 484 | ||
484 | //=========================================================================== | 485 | //=========================================================================== |
485 | 486 | ||
486 | QPEDecoration::QPEDecoration() | 487 | QPEDecoration::QPEDecoration() |
487 | : QWSDefaultDecoration() | 488 | : QWSDefaultDecoration() |
488 | { | 489 | { |
489 | if ( wdlib ) { | 490 | init ( libname ); |
490 | wdiface->release(); | ||
491 | wdlib->unload(); | ||
492 | delete wdlib; | ||
493 | wdlib = 0; | ||
494 | } else { | ||
495 | delete wdiface; | ||
496 | } | ||
497 | wdiface = new DefaultWindowDecoration; | ||
498 | |||
499 | helpFile = QString(qApp->argv()[0]) + ".html"; | ||
500 | QStringList helpPath = Global::helpPath(); | ||
501 | helpExists = FALSE; | ||
502 | for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) { | ||
503 | helpExists = QFile::exists( *it + "/" + helpFile ); | ||
504 | qDebug ( "Checking %s/%s for help: %d", (*it).latin1(), helpFile.latin1(),helpExists); | ||
505 | } | ||
506 | qpeManager = new QPEManager( this ); | ||
507 | |||
508 | // for backward compatibility: | ||
509 | imageOk = *okImage ( 15 ); | ||
510 | imageClose = *closeImage ( 15 ); | ||
511 | imageHelp = *helpImage ( 15 ); | ||
512 | } | 491 | } |
513 | 492 | ||
514 | QPEDecoration::QPEDecoration( const QString &plugin ) | 493 | QPEDecoration::QPEDecoration( const QString &plugin ) |
515 | : QWSDefaultDecoration() | 494 | : QWSDefaultDecoration() |
516 | { | 495 | { |
496 | init ( plugin ); | ||
497 | } | ||
498 | |||
499 | void QPEDecoration::init ( const QString &plugin ) | ||
500 | { | ||
501 | libname = plugin; | ||
502 | |||
517 | if ( wdlib ) { | 503 | if ( wdlib ) { |
518 | wdiface->release(); | 504 | wdiface->release(); |
519 | wdlib->unload(); | 505 | wdlib->unload(); |
520 | delete wdlib; | 506 | delete wdlib; |
521 | wdlib = 0; | 507 | wdlib = 0; |
522 | } else { | 508 | } else { |
523 | delete wdiface; | 509 | delete wdiface; |
524 | } | 510 | } |
511 | |||
525 | WindowDecorationInterface *iface = 0; | 512 | WindowDecorationInterface *iface = 0; |
526 | QString path = QPEApplication::qpeDir() + "/plugins/decorations"; | 513 | QString path = QPEApplication::qpeDir() + "/plugins/decorations"; |
527 | QLibrary *lib = new QLibrary( path + "/" + plugin ); | 514 | QLibrary *lib = new QLibrary( path + "/" + plugin ); |
528 | if ( lib->queryInterface( IID_WindowDecoration, (QUnknownInterface**)&iface ) == QS_OK && iface ) { | 515 | if ( lib->queryInterface( IID_WindowDecoration, (QUnknownInterface**)&iface ) == QS_OK && iface ) { |
529 | wdiface = iface; | 516 | wdiface = iface; |
530 | wdlib = lib; | 517 | wdlib = lib; |
531 | } else { | 518 | } else { |
532 | delete lib; | 519 | delete lib; |
533 | wdiface = new DefaultWindowDecoration; | 520 | wdiface = new DefaultWindowDecoration; |
534 | } | 521 | } |
535 | 522 | ||
536 | helpFile = QString(qApp->argv()[0]) + ".html"; | 523 | helpFile = QString(qApp->argv()[0]) + ".html"; |
537 | QStringList helpPath = Global::helpPath(); | 524 | QStringList helpPath = Global::helpPath(); |
538 | helpExists = FALSE; | 525 | helpExists = FALSE; |
539 | for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) { | 526 | for (QStringList::ConstIterator it=helpPath.begin(); it!=helpPath.end() && !helpExists; ++it) { |
540 | helpExists = QFile::exists( *it + "/" + helpFile ); | 527 | helpExists = QFile::exists( *it + "/" + helpFile ); |
541 | qDebug ( "Checking %s/%s for help: %d", (*it).latin1(), helpFile.latin1(),helpExists); } | 528 | //qDebug ( "Checking %s/%s for help: %d", (*it).latin1(), helpFile.latin1(),helpExists); |
529 | } | ||
542 | qpeManager = new QPEManager( this ); | 530 | qpeManager = new QPEManager( this ); |
531 | |||
532 | // Qtopia 1.5 compatibility | ||
533 | imageOk = *okImage ( 15 ); | ||
534 | imageClose = *closeImage ( 15 ); | ||
535 | imageHelp = *helpImage ( 15 ); | ||
543 | } | 536 | } |
544 | 537 | ||
545 | QPEDecoration::~QPEDecoration() | 538 | QPEDecoration::~QPEDecoration() |
546 | { | 539 | { |
547 | delete qpeManager; | 540 | delete qpeManager; |
548 | } | 541 | } |
549 | 542 | ||
550 | const char **QPEDecoration::menuPixmap() | 543 | const char **QPEDecoration::menuPixmap() |
551 | { | 544 | { |
552 | return (const char **)0; | 545 | return (const char **)0; |
553 | } | 546 | } |
554 | 547 | ||
555 | const char **QPEDecoration::closePixmap() | 548 | const char **QPEDecoration::closePixmap() |
556 | { | 549 | { |
557 | return (const char **)qpe_close_xpm; | 550 | return (const char **)qpe_close_xpm; |
558 | } | 551 | } |
559 | 552 | ||
560 | const char **QPEDecoration::minimizePixmap() | 553 | const char **QPEDecoration::minimizePixmap() |
561 | { | 554 | { |
562 | return (const char **)qpe_accept_xpm; | 555 | return (const char **)qpe_accept_xpm; |
563 | } | 556 | } |
564 | 557 | ||
565 | const char **QPEDecoration::maximizePixmap() | 558 | const char **QPEDecoration::maximizePixmap() |
566 | { | 559 | { |
567 | return (const char **)0; | 560 | return (const char **)0; |
568 | } | 561 | } |
569 | 562 | ||
570 | const char **QPEDecoration::normalizePixmap() | 563 | const char **QPEDecoration::normalizePixmap() |
571 | { | 564 | { |
572 | return (const char **)0; | 565 | return (const char **)0; |
573 | } | 566 | } |
574 | 567 | ||
575 | int QPEDecoration::getTitleHeight( const QWidget *w ) | 568 | int QPEDecoration::getTitleHeight( const QWidget *w ) |
576 | { | 569 | { |
577 | WindowDecorationInterface::WindowData wd; | 570 | WindowDecorationInterface::WindowData wd; |
578 | windowData( w, wd ); | 571 | windowData( w, wd ); |
579 | return wdiface->metric(WindowDecorationInterface::TitleHeight,&wd); | 572 | return wdiface->metric(WindowDecorationInterface::TitleHeight,&wd); |
580 | } | 573 | } |
581 | 574 | ||
582 | /* | 575 | /* |
583 | If rect is empty, no frame is added. (a hack, really) | 576 | If rect is empty, no frame is added. (a hack, really) |
584 | */ | 577 | */ |
585 | QRegion QPEDecoration::region(const QWidget *widget, const QRect &rect, QWSDecoration::Region type) | 578 | QRegion QPEDecoration::region(const QWidget *widget, const QRect &rect, QWSDecoration::Region type) |
586 | { | 579 | { |
587 | qpeManager->updateActive(); | 580 | qpeManager->updateActive(); |
588 | 581 | ||
589 | WindowDecorationInterface::WindowData wd; | 582 | WindowDecorationInterface::WindowData wd; |
590 | windowData( widget, wd ); | 583 | windowData( widget, wd ); |
591 | wd.rect = rect; | 584 | wd.rect = rect; |
592 | 585 | ||
593 | int titleHeight = wdiface->metric(WindowDecorationInterface::TitleHeight,&wd); | 586 | int titleHeight = wdiface->metric(WindowDecorationInterface::TitleHeight,&wd); |
594 | int okWidth = wdiface->metric(WindowDecorationInterface::OKWidth,&wd); | 587 | int okWidth = wdiface->metric(WindowDecorationInterface::OKWidth,&wd); |
595 | int closeWidth = wdiface->metric(WindowDecorationInterface::CloseWidth,&wd); | 588 | int closeWidth = wdiface->metric(WindowDecorationInterface::CloseWidth,&wd); |
596 | int helpWidth = wdiface->metric(WindowDecorationInterface::HelpWidth,&wd); | 589 | int helpWidth = wdiface->metric(WindowDecorationInterface::HelpWidth,&wd); |
597 | int grab = wdiface->metric(WindowDecorationInterface::CornerGrabSize,&wd); | 590 | int grab = wdiface->metric(WindowDecorationInterface::CornerGrabSize,&wd); |
598 | 591 | ||
599 | QRegion region; | 592 | QRegion region; |
600 | 593 | ||
601 | switch ((int)type) { | 594 | switch ((int)type) { |
602 | case Menu: | 595 | case Menu: |
603 | break; | 596 | break; |
604 | case Maximize: | 597 | case Maximize: |
605 | if ( !widget->inherits( "QDialog" ) && qApp->desktop()->width() > 350 ) { | 598 | if ( !widget->inherits( "QDialog" ) && qApp->desktop()->width() > 350 ) { |
606 | int maximizeWidth = wdiface->metric(WindowDecorationInterface::MaximizeWidth,&wd); | 599 | int maximizeWidth = wdiface->metric(WindowDecorationInterface::MaximizeWidth,&wd); |
607 | int left = rect.right() - maximizeWidth - closeWidth; | 600 | int left = rect.right() - maximizeWidth - closeWidth; |
608 | if ( ((HackWidget *)widget)->needsOk() ) | 601 | if ( ((HackWidget *)widget)->needsOk() ) |
609 | left -= okWidth; | 602 | left -= okWidth; |
610 | QRect r(left, rect.top() - titleHeight, closeWidth, titleHeight); | 603 | QRect r(left, rect.top() - titleHeight, closeWidth, titleHeight); |
611 | region = r; | 604 | region = r; |
612 | } | 605 | } |
613 | break; | 606 | break; |
614 | case Minimize: | 607 | case Minimize: |
615 | if ( ((HackWidget *)widget)->needsOk() ) { | 608 | if ( ((HackWidget *)widget)->needsOk() ) { |
616 | QRect r(rect.right() - okWidth, | 609 | QRect r(rect.right() - okWidth, |
617 | rect.top() - titleHeight, okWidth, titleHeight); | 610 | rect.top() - titleHeight, okWidth, titleHeight); |
618 | if (r.left() > rect.left() + titleHeight) | 611 | if (r.left() > rect.left() + titleHeight) |
619 | region = r; | 612 | region = r; |
620 | } | 613 | } |
621 | break; | 614 | break; |
622 | case Close: | 615 | case Close: |
623 | { | 616 | { |
624 | int left = rect.right() - closeWidth; | 617 | int left = rect.right() - closeWidth; |
625 | if ( ((HackWidget *)widget)->needsOk() ) | 618 | if ( ((HackWidget *)widget)->needsOk() ) |
626 | left -= okWidth; | 619 | left -= okWidth; |
627 | QRect r(left, rect.top() - titleHeight, closeWidth, titleHeight); | 620 | QRect r(left, rect.top() - titleHeight, closeWidth, titleHeight); |
628 | region = r; | 621 | region = r; |
629 | } | 622 | } |
630 | break; | 623 | break; |
631 | case Title: | 624 | case Title: |
632 | if ( !widget->isMaximized() ) { | 625 | if ( !widget->isMaximized() ) { |
633 | int width = rect.width() - helpWidth - closeWidth; | 626 | int width = rect.width() - helpWidth - closeWidth; |
634 | if ( ((HackWidget *)widget)->needsOk() ) | 627 | if ( ((HackWidget *)widget)->needsOk() ) |
635 | width -= okWidth; | 628 | width -= okWidth; |
636 | QRect r(rect.left()+helpWidth, rect.top() - titleHeight, | 629 | QRect r(rect.left()+helpWidth, rect.top() - titleHeight, |
637 | width, titleHeight); | 630 | width, titleHeight); |
638 | if (r.width() > 0) | 631 | if (r.width() > 0) |
diff --git a/library/qpedecoration_qws.h b/library/qpedecoration_qws.h index 691c6f6..6628ba2 100644 --- a/library/qpedecoration_qws.h +++ b/library/qpedecoration_qws.h | |||
@@ -1,111 +1,113 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of the Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #ifndef QPE_DECORATION_QWS_H__ | 20 | #ifndef QPE_DECORATION_QWS_H__ |
21 | #define QPE_DECORATION_QWS_H__ | 21 | #define QPE_DECORATION_QWS_H__ |
22 | 22 | ||
23 | 23 | ||
24 | #ifdef QWS | 24 | #ifdef QWS |
25 | #include <qwsdefaultdecoration_qws.h> | 25 | #include <qwsdefaultdecoration_qws.h> |
26 | #include <qimage.h> | 26 | #include <qimage.h> |
27 | #include <qdatetime.h> | 27 | #include <qdatetime.h> |
28 | #include <qguardedptr.h> | 28 | #include <qguardedptr.h> |
29 | #include "windowdecorationinterface.h" | 29 | #include "windowdecorationinterface.h" |
30 | 30 | ||
31 | 31 | ||
32 | #ifndef QT_NO_QWS_QPE_WM_STYLE | 32 | #ifndef QT_NO_QWS_QPE_WM_STYLE |
33 | 33 | ||
34 | class QPEManager; | 34 | class QPEManager; |
35 | class QTimer; | 35 | class QTimer; |
36 | 36 | ||
37 | class QPEDecoration : public QWSDefaultDecoration | 37 | class QPEDecoration : public QWSDefaultDecoration |
38 | { | 38 | { |
39 | public: | 39 | public: |
40 | QPEDecoration(); | 40 | QPEDecoration(); |
41 | QPEDecoration( const QString &plugin ); | 41 | QPEDecoration( const QString &plugin ); |
42 | virtual ~QPEDecoration(); | 42 | virtual ~QPEDecoration(); |
43 | 43 | ||
44 | virtual QRegion region(const QWidget *, const QRect &rect, Region); | 44 | virtual QRegion region(const QWidget *, const QRect &rect, Region); |
45 | virtual void paint(QPainter *, const QWidget *); | 45 | virtual void paint(QPainter *, const QWidget *); |
46 | virtual void paintButton(QPainter *, const QWidget *, Region, int state); | 46 | virtual void paintButton(QPainter *, const QWidget *, Region, int state); |
47 | 47 | ||
48 | void maximize( QWidget * ); | 48 | void maximize( QWidget * ); |
49 | void minimize( QWidget * ); | 49 | void minimize( QWidget * ); |
50 | virtual void help( QWidget * ); | 50 | virtual void help( QWidget * ); |
51 | 51 | ||
52 | enum QPERegion { Help=LastRegion+1 }; | 52 | enum QPERegion { Help=LastRegion+1 }; |
53 | void buttonClicked( QPERegion r ); | 53 | void buttonClicked( QPERegion r ); |
54 | 54 | ||
55 | protected: | 55 | protected: |
56 | virtual int getTitleHeight(const QWidget *); | 56 | virtual int getTitleHeight(const QWidget *); |
57 | virtual const char **menuPixmap(); | 57 | virtual const char **menuPixmap(); |
58 | virtual const char **closePixmap(); | 58 | virtual const char **closePixmap(); |
59 | virtual const char **minimizePixmap(); | 59 | virtual const char **minimizePixmap(); |
60 | virtual const char **maximizePixmap(); | 60 | virtual const char **maximizePixmap(); |
61 | virtual const char **normalizePixmap(); | 61 | virtual const char **normalizePixmap(); |
62 | 62 | ||
63 | private: | 63 | private: |
64 | void windowData( const QWidget *w, WindowDecorationInterface::WindowData &wd ) const; | 64 | void windowData( const QWidget *w, WindowDecorationInterface::WindowData &wd ) const; |
65 | 65 | ||
66 | void init ( const QString & ); | ||
67 | |||
66 | protected: | 68 | protected: |
67 | QImage imageOk; | 69 | QImage imageOk; |
68 | QImage imageClose; | 70 | QImage imageClose; |
69 | QImage imageHelp; | 71 | QImage imageHelp; |
70 | QString helpFile; | 72 | QString helpFile; |
71 | bool helpExists; | 73 | bool helpExists; |
72 | QPEManager *qpeManager; | 74 | QPEManager *qpeManager; |
73 | }; | 75 | }; |
74 | 76 | ||
75 | 77 | ||
76 | class QPEManager : public QObject | 78 | class QPEManager : public QObject |
77 | { | 79 | { |
78 | Q_OBJECT | 80 | Q_OBJECT |
79 | friend class QPEDecoration; | 81 | friend class QPEDecoration; |
80 | public: | 82 | public: |
81 | QPEManager( QPEDecoration *d, QObject *parent=0 ); | 83 | QPEManager( QPEDecoration *d, QObject *parent=0 ); |
82 | 84 | ||
83 | void updateActive(); | 85 | void updateActive(); |
84 | const QWidget *activeWidget() const { return (const QWidget *)active; } | 86 | const QWidget *activeWidget() const { return (const QWidget *)active; } |
85 | const QWidget *whatsThisWidget() const { return (const QWidget *)whatsThis; } | 87 | const QWidget *whatsThisWidget() const { return (const QWidget *)whatsThis; } |
86 | 88 | ||
87 | protected: | 89 | protected: |
88 | int pointInQpeRegion( QWidget *w, const QPoint &p ); | 90 | int pointInQpeRegion( QWidget *w, const QPoint &p ); |
89 | virtual bool eventFilter( QObject *, QEvent * ); | 91 | virtual bool eventFilter( QObject *, QEvent * ); |
90 | void drawButton( QWidget *w, QPEDecoration::QPERegion r, int state ); | 92 | void drawButton( QWidget *w, QPEDecoration::QPERegion r, int state ); |
91 | void drawTitle( QWidget *w ); | 93 | void drawTitle( QWidget *w ); |
92 | 94 | ||
93 | protected slots: | 95 | protected slots: |
94 | void whatsThisTimeout(); | 96 | void whatsThisTimeout(); |
95 | 97 | ||
96 | protected: | 98 | protected: |
97 | QPEDecoration *decoration; | 99 | QPEDecoration *decoration; |
98 | QGuardedPtr<QWidget> active; | 100 | QGuardedPtr<QWidget> active; |
99 | int helpState; | 101 | int helpState; |
100 | QTime pressTime; | 102 | QTime pressTime; |
101 | QTimer *wtTimer; | 103 | QTimer *wtTimer; |
102 | bool inWhatsThis; | 104 | bool inWhatsThis; |
103 | QGuardedPtr<QWidget> whatsThis; | 105 | QGuardedPtr<QWidget> whatsThis; |
104 | }; | 106 | }; |
105 | 107 | ||
106 | 108 | ||
107 | #endif // QT_NO_QWS_QPE_WM_STYLE | 109 | #endif // QT_NO_QWS_QPE_WM_STYLE |
108 | 110 | ||
109 | 111 | ||
110 | #endif // QPE_DECORATION_QWS_H__ | 112 | #endif // QPE_DECORATION_QWS_H__ |
111 | #endif // QWS | 113 | #endif // QWS |