summaryrefslogtreecommitdiff
path: root/library/qpeapplication.cpp
Unidiff
Diffstat (limited to 'library/qpeapplication.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index 65fac84..efa65bc 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -872,831 +872,831 @@ int QPEApplication::defaultRotation()
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/*! 901/*!
902 \internal 902 \internal
903*/ 903*/
904void QPEApplication::applyStyle() 904void QPEApplication::applyStyle()
905{ 905{
906 Config config( "qpe" ); 906 Config config( "qpe" );
907 907
908 config.setGroup( "Appearance" ); 908 config.setGroup( "Appearance" );
909 909
910 // Widget style 910 // Widget style
911 QString style = config.readEntry( "Style", "Light" ); 911 QString style = config.readEntry( "Style", "Light" );
912 internalSetStyle( style ); 912 internalSetStyle( style );
913 913
914 // Colors 914 // Colors
915 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) ); 915 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) );
916 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) ); 916 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) );
917 QPalette pal( btncolor, bgcolor ); 917 QPalette pal( btncolor, bgcolor );
918 QString color = config.readEntry( "Highlight", "#800000" ); 918 QString color = config.readEntry( "Highlight", "#800000" );
919 pal.setColor( QColorGroup::Highlight, QColor( color ) ); 919 pal.setColor( QColorGroup::Highlight, QColor( color ) );
920 color = config.readEntry( "HighlightedText", "#FFFFFF" ); 920 color = config.readEntry( "HighlightedText", "#FFFFFF" );
921 pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); 921 pal.setColor( QColorGroup::HighlightedText, QColor( color ) );
922 color = config.readEntry( "Text", "#000000" ); 922 color = config.readEntry( "Text", "#000000" );
923 pal.setColor( QColorGroup::Text, QColor( color ) ); 923 pal.setColor( QColorGroup::Text, QColor( color ) );
924 color = config.readEntry( "ButtonText", "#000000" ); 924 color = config.readEntry( "ButtonText", "#000000" );
925 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); 925 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) );
926 color = config.readEntry( "Base", "#FFFFFF" ); 926 color = config.readEntry( "Base", "#FFFFFF" );
927 pal.setColor( QColorGroup::Base, QColor( color ) ); 927 pal.setColor( QColorGroup::Base, QColor( color ) );
928 928
929 pal.setColor( QPalette::Disabled, QColorGroup::Text, 929 pal.setColor( QPalette::Disabled, QColorGroup::Text,
930 pal.color( QPalette::Active, QColorGroup::Background ).dark() ); 930 pal.color( QPalette::Active, QColorGroup::Background ).dark() );
931 931
932 setPalette( pal, TRUE ); 932 setPalette( pal, TRUE );
933 933
934 // Window Decoration 934 // Window Decoration
935 QString dec = config.readEntry( "Decoration", "Qtopia" ); 935 QString dec = config.readEntry( "Decoration", "Qtopia" );
936 if ( dec != d->decorationName ) { 936 if ( dec != d->decorationName ) {
937 qwsSetDecoration( new QPEDecoration( dec ) ); 937 qwsSetDecoration( new QPEDecoration( dec ) );
938 d->decorationName = dec; 938 d->decorationName = dec;
939 } 939 }
940 940
941 // Font 941 // Font
942 QString ff = config.readEntry( "FontFamily", font().family() ); 942 QString ff = config.readEntry( "FontFamily", font().family() );
943 int fs = config.readNumEntry( "FontSize", font().pointSize() ); 943 int fs = config.readNumEntry( "FontSize", font().pointSize() );
944 setFont( QFont(ff, fs) ); 944 setFont( QFont(ff, fs) );
945} 945}
946 946
947void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data ) 947void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data )
948{ 948{
949#ifdef Q_WS_QWS 949#ifdef Q_WS_QWS
950 QDataStream stream( data, IO_ReadOnly ); 950 QDataStream stream( data, IO_ReadOnly );
951 if ( msg == "applyStyle()" ) { 951 if ( msg == "applyStyle()" ) {
952 applyStyle(); 952 applyStyle();
953 } 953 }
954 else if ( msg == "setDefaultRotation(int)" ) { 954 else if ( msg == "setDefaultRotation(int)" ) {
955 if ( type() == GuiServer ) { 955 if ( type() == GuiServer ) {
956 int r; 956 int r;
957 stream >> r; 957 stream >> r;
958 setDefaultRotation( r ); 958 setDefaultRotation( r );
959 } 959 }
960 } 960 }
961 else if ( msg == "shutdown()" ) { 961 else if ( msg == "shutdown()" ) {
962 if ( type() == GuiServer ) 962 if ( type() == GuiServer )
963 shutdown(); 963 shutdown();
964 } 964 }
965 else if ( msg == "quit()" ) { 965 else if ( msg == "quit()" ) {
966 if ( type() != GuiServer ) 966 if ( type() != GuiServer )
967 tryQuit(); 967 tryQuit();
968 } 968 }
969 else if ( msg == "forceQuit()" ) { 969 else if ( msg == "forceQuit()" ) {
970 if ( type() != GuiServer ) 970 if ( type() != GuiServer )
971 quit(); 971 quit();
972 } 972 }
973 else if ( msg == "restart()" ) { 973 else if ( msg == "restart()" ) {
974 if ( type() == GuiServer ) 974 if ( type() == GuiServer )
975 restart(); 975 restart();
976 } 976 }
977 else if ( msg == "grabKeyboard(QString)" ) { 977 else if ( msg == "grabKeyboard(QString)" ) {
978 QString who; 978 QString who;
979 stream >> who; 979 stream >> who;
980 if ( who.isEmpty() ) 980 if ( who.isEmpty() )
981 d->kbgrabber = 0; 981 d->kbgrabber = 0;
982 else if ( who != d->appName ) 982 else if ( who != d->appName )
983 d->kbgrabber = 1; 983 d->kbgrabber = 1;
984 else 984 else
985 d->kbgrabber = 2; 985 d->kbgrabber = 2;
986 } 986 }
987 else if ( msg == "language(QString)" ) { 987 else if ( msg == "language(QString)" ) {
988 if ( type() == GuiServer ) { 988 if ( type() == GuiServer ) {
989 QString l; 989 QString l;
990 stream >> l; 990 stream >> l;
991 QString cl = getenv( "LANG" ); 991 QString cl = getenv( "LANG" );
992 if ( cl != l ) { 992 if ( cl != l ) {
993 if ( l.isNull() ) 993 if ( l.isNull() )
994 unsetenv( "LANG" ); 994 unsetenv( "LANG" );
995 else 995 else
996 setenv( "LANG", l.latin1(), 1 ); 996 setenv( "LANG", l.latin1(), 1 );
997 restart(); 997 restart();
998 } 998 }
999 } 999 }
1000 } 1000 }
1001 else if ( msg == "timeChange(QString)" ) { 1001 else if ( msg == "timeChange(QString)" ) {
1002 QString t; 1002 QString t;
1003 stream >> t; 1003 stream >> t;
1004 if ( t.isNull() ) 1004 if ( t.isNull() )
1005 unsetenv( "TZ" ); 1005 unsetenv( "TZ" );
1006 else 1006 else
1007 setenv( "TZ", t.latin1(), 1 ); 1007 setenv( "TZ", t.latin1(), 1 );
1008 // emit the signal so everyone else knows... 1008 // emit the signal so everyone else knows...
1009 emit timeChanged(); 1009 emit timeChanged();
1010 } 1010 }
1011 else if ( msg == "execute(QString)" ) { 1011 else if ( msg == "execute(QString)" ) {
1012 if ( type() == GuiServer ) { 1012 if ( type() == GuiServer ) {
1013 QString t; 1013 QString t;
1014 stream >> t; 1014 stream >> t;
1015 Global::execute( t ); 1015 Global::execute( t );
1016 } 1016 }
1017 } 1017 }
1018 else if ( msg == "execute(QString,QString)" ) { 1018 else if ( msg == "execute(QString,QString)" ) {
1019 if ( type() == GuiServer ) { 1019 if ( type() == GuiServer ) {
1020 QString t, d; 1020 QString t, d;
1021 stream >> t >> d; 1021 stream >> t >> d;
1022 Global::execute( t, d ); 1022 Global::execute( t, d );
1023 } 1023 }
1024 } 1024 }
1025 else if ( msg == "addAlarm(QDateTime,QCString,QCString,int)" ) { 1025 else if ( msg == "addAlarm(QDateTime,QCString,QCString,int)" ) {
1026 if ( type() == GuiServer ) { 1026 if ( type() == GuiServer ) {
1027 QDateTime when; 1027 QDateTime when;
1028 QCString channel, message; 1028 QCString channel, message;
1029 int data; 1029 int data;
1030 stream >> when >> channel >> message >> data; 1030 stream >> when >> channel >> message >> data;
1031 AlarmServer::addAlarm( when, channel, message, data ); 1031 AlarmServer::addAlarm( when, channel, message, data );
1032 } 1032 }
1033 } 1033 }
1034 else if ( msg == "deleteAlarm(QDateTime,QCString,QCString,int)" ) { 1034 else if ( msg == "deleteAlarm(QDateTime,QCString,QCString,int)" ) {
1035 if ( type() == GuiServer ) { 1035 if ( type() == GuiServer ) {
1036 QDateTime when; 1036 QDateTime when;
1037 QCString channel, message; 1037 QCString channel, message;
1038 int data; 1038 int data;
1039 stream >> when >> channel >> message >> data; 1039 stream >> when >> channel >> message >> data;
1040 AlarmServer::deleteAlarm( when, channel, message, data ); 1040 AlarmServer::deleteAlarm( when, channel, message, data );
1041 } 1041 }
1042 } 1042 }
1043 else if ( msg == "clockChange(bool)" ) { 1043 else if ( msg == "clockChange(bool)" ) {
1044 int tmp; 1044 int tmp;
1045 stream >> tmp; 1045 stream >> tmp;
1046 emit clockChanged( tmp ); 1046 emit clockChanged( tmp );
1047 } 1047 }
1048 else if ( msg == "weekChange(bool)" ) { 1048 else if ( msg == "weekChange(bool)" ) {
1049 int tmp; 1049 int tmp;
1050 stream >> tmp; 1050 stream >> tmp;
1051 emit weekChanged( tmp ); 1051 emit weekChanged( tmp );
1052 } 1052 }
1053 else if ( msg == "setDateFormat(DateFormat)" ) { 1053 else if ( msg == "setDateFormat(DateFormat)" ) {
1054 DateFormat tmp; 1054 DateFormat tmp;
1055 stream >> tmp; 1055 stream >> tmp;
1056 emit dateFormatChanged( tmp ); 1056 emit dateFormatChanged( tmp );
1057 } 1057 }
1058 else if ( msg == "setVolume(int,int)" ) { 1058 else if ( msg == "setVolume(int,int)" ) {
1059 int t, v; 1059 int t, v;
1060 stream >> t >> v; 1060 stream >> t >> v;
1061 setVolume( t, v ); 1061 setVolume( t, v );
1062 emit volumeChanged( muted ); 1062 emit volumeChanged( muted );
1063 } 1063 }
1064 else if ( msg == "volumeChange(bool)" ) { 1064 else if ( msg == "volumeChange(bool)" ) {
1065 stream >> muted; 1065 stream >> muted;
1066 setVolume(); 1066 setVolume();
1067 emit volumeChanged( muted ); 1067 emit volumeChanged( muted );
1068 } 1068 }
1069 else if ( msg == "setMic(int,int)" ) { // Added: 2002-02-08 by Jeremy Cowgar <jc@cowgar.com> 1069 else if ( msg == "setMic(int,int)" ) { // Added: 2002-02-08 by Jeremy Cowgar <jc@cowgar.com>
1070 int t, v; 1070 int t, v;
1071 stream >> t >> v; 1071 stream >> t >> v;
1072 setMic( t, v ); 1072 setMic( t, v );
1073 emit micChanged( micMuted ); 1073 emit micChanged( micMuted );
1074 } 1074 }
1075 else if ( msg == "micChange(bool)" ) { // Added: 2002-02-08 by Jeremy Cowgar <jc@cowgar.com> 1075 else if ( msg == "micChange(bool)" ) { // Added: 2002-02-08 by Jeremy Cowgar <jc@cowgar.com>
1076 stream >> micMuted; 1076 stream >> micMuted;
1077 setMic(); 1077 setMic();
1078 emit micChanged( micMuted ); 1078 emit micChanged( micMuted );
1079 } 1079 }
1080#endif 1080#endif
1081} 1081}
1082 1082
1083/*! 1083/*!
1084 \internal 1084 \internal
1085*/ 1085*/
1086bool QPEApplication::raiseAppropriateWindow() 1086bool QPEApplication::raiseAppropriateWindow()
1087{ 1087{
1088 bool r = FALSE; 1088 bool r = FALSE;
1089 // ########## raise()ing main window should raise and set active 1089 // ########## raise()ing main window should raise and set active
1090 // ########## it and then all childen. This belongs in Qt/Embedded 1090 // ########## it and then all childen. This belongs in Qt/Embedded
1091 QWidget *top = d->qpe_main_widget; 1091 QWidget *top = d->qpe_main_widget;
1092 if ( !top ) 1092 if ( !top )
1093 top = mainWidget(); 1093 top = mainWidget();
1094 if ( top && d->keep_running ) { 1094 if ( top && d->keep_running ) {
1095 if ( top->isVisible() ) 1095 if ( top->isVisible() )
1096 r = TRUE; 1096 r = TRUE;
1097 else if (d->preloaded) { 1097 else if (d->preloaded) {
1098 // We are preloaded and not visible.. pretend we just started.. 1098 // We are preloaded and not visible.. pretend we just started..
1099 QCopEnvelope e("QPE/System", "fastAppShowing(QString)"); 1099 QCopEnvelope e("QPE/System", "fastAppShowing(QString)");
1100 e << d->appName; 1100 e << d->appName;
1101 } 1101 }
1102 1102
1103 d->show_mx(top, d->nomaximize); 1103 d->show_mx(top, d->nomaximize);
1104 top->raise(); 1104 top->raise();
1105 top->setActiveWindow(); 1105 top->setActiveWindow();
1106 } 1106 }
1107 QWidget *topm = activeModalWidget(); 1107 QWidget *topm = activeModalWidget();
1108 if ( topm && topm != top ) { 1108 if ( topm && topm != top ) {
1109 topm->show(); 1109 topm->show();
1110 topm->raise(); 1110 topm->raise();
1111 topm->setActiveWindow(); 1111 topm->setActiveWindow();
1112 // If we haven't already handled the fastAppShowing message 1112 // If we haven't already handled the fastAppShowing message
1113 if (!top && d->preloaded) { 1113 if (!top && d->preloaded) {
1114 QCopEnvelope e("QPE/System", "fastAppShowing(QString)"); 1114 QCopEnvelope e("QPE/System", "fastAppShowing(QString)");
1115 e << d->appName; 1115 e << d->appName;
1116 } 1116 }
1117 r = FALSE; 1117 r = FALSE;
1118 } 1118 }
1119 return r; 1119 return r;
1120} 1120}
1121 1121
1122void QPEApplication::pidMessage( const QCString& msg, const QByteArray& data) 1122void QPEApplication::pidMessage( const QCString& msg, const QByteArray& data)
1123{ 1123{
1124#ifdef Q_WS_QWS 1124#ifdef Q_WS_QWS
1125 1125
1126 if ( msg == "quit()" ) { 1126 if ( msg == "quit()" ) {
1127 tryQuit(); 1127 tryQuit();
1128 } 1128 }
1129 else if ( msg == "quitIfInvisible()" ) { 1129 else if ( msg == "quitIfInvisible()" ) {
1130 if ( d->qpe_main_widget && !d->qpe_main_widget->isVisible() ) 1130 if ( d->qpe_main_widget && !d->qpe_main_widget->isVisible() )
1131 quit(); 1131 quit();
1132 } 1132 }
1133 else if ( msg == "close()" ) { 1133 else if ( msg == "close()" ) {
1134 hideOrQuit(); 1134 hideOrQuit();
1135 } 1135 }
1136 else if ( msg == "disablePreload()" ) { 1136 else if ( msg == "disablePreload()" ) {
1137 d->preloaded = FALSE; 1137 d->preloaded = FALSE;
1138 d->keep_running = TRUE; 1138 d->keep_running = TRUE;
1139 /* so that quit will quit */ 1139 /* so that quit will quit */
1140 } 1140 }
1141 else if ( msg == "enablePreload()" ) { 1141 else if ( msg == "enablePreload()" ) {
1142 if (d->qpe_main_widget) 1142 if (d->qpe_main_widget)
1143 d->preloaded = TRUE; 1143 d->preloaded = TRUE;
1144 d->keep_running = TRUE; 1144 d->keep_running = TRUE;
1145 /* so next quit won't quit */ 1145 /* so next quit won't quit */
1146 } 1146 }
1147 else if ( msg == "raise()" ) { 1147 else if ( msg == "raise()" ) {
1148 d->keep_running = TRUE; 1148 d->keep_running = TRUE;
1149 d->notbusysent = FALSE; 1149 d->notbusysent = FALSE;
1150 raiseAppropriateWindow(); 1150 raiseAppropriateWindow();
1151 // Tell the system we're still chugging along... 1151 // Tell the system we're still chugging along...
1152 QCopEnvelope e("QPE/System", "appRaised(QString)"); 1152 QCopEnvelope e("QPE/System", "appRaised(QString)");
1153 e << d->appName; 1153 e << d->appName;
1154 } 1154 }
1155 else if ( msg == "flush()" ) { 1155 else if ( msg == "flush()" ) {
1156 emit flush(); 1156 emit flush();
1157 // we need to tell the desktop 1157 // we need to tell the desktop
1158 QCopEnvelope e( "QPE/Desktop", "flushDone(QString)" ); 1158 QCopEnvelope e( "QPE/Desktop", "flushDone(QString)" );
1159 e << d->appName; 1159 e << d->appName;
1160 } 1160 }
1161 else if ( msg == "reload()" ) { 1161 else if ( msg == "reload()" ) {
1162 emit reload(); 1162 emit reload();
1163 } 1163 }
1164 else if ( msg == "setDocument(QString)" ) { 1164 else if ( msg == "setDocument(QString)" ) {
1165 d->keep_running = TRUE; 1165 d->keep_running = TRUE;
1166 QDataStream stream( data, IO_ReadOnly ); 1166 QDataStream stream( data, IO_ReadOnly );
1167 QString doc; 1167 QString doc;
1168 stream >> doc; 1168 stream >> doc;
1169 QWidget *mw = mainWidget(); 1169 QWidget *mw = mainWidget();
1170 if ( !mw ) 1170 if ( !mw )
1171 mw = d->qpe_main_widget; 1171 mw = d->qpe_main_widget;
1172 if ( mw ) 1172 if ( mw )
1173 Global::setDocument( mw, doc ); 1173 Global::setDocument( mw, doc );
1174 } 1174 }
1175 else if ( msg == "nextView()" ) { 1175 else if ( msg == "nextView()" ) {
1176 qDebug("got nextView()"); 1176 qDebug("got nextView()");
1177 /* 1177 /*
1178 if ( raiseAppropriateWindow() ) 1178 if ( raiseAppropriateWindow() )
1179 */ 1179 */
1180 emit appMessage( msg, data); 1180 emit appMessage( msg, data);
1181 } 1181 }
1182 else { 1182 else {
1183 emit appMessage( msg, data); 1183 emit appMessage( msg, data);
1184 } 1184 }
1185 1185
1186#endif 1186#endif
1187} 1187}
1188 1188
1189 1189
1190/*! 1190/*!
1191 Sets widget \a mw as the mainWidget() and shows it. For small windows, 1191 Sets widget \a mw as the mainWidget() and shows it. For small windows,
1192 consider passing TRUE for \a nomaximize rather than the default FALSE. 1192 consider passing TRUE for \a nomaximize rather than the default FALSE.
1193 1193
1194 \sa showMainDocumentWidget() 1194 \sa showMainDocumentWidget()
1195*/ 1195*/
1196void QPEApplication::showMainWidget( QWidget* mw, bool nomaximize ) 1196void QPEApplication::showMainWidget( QWidget* mw, bool nomaximize )
1197{ 1197{
1198 d->show(mw, nomaximize ); 1198 d->show(mw, nomaximize );
1199} 1199}
1200 1200
1201/*! 1201/*!
1202 Sets widget \a mw as the mainWidget() and shows it. For small windows, 1202 Sets widget \a mw as the mainWidget() and shows it. For small windows,
1203 consider passing TRUE for \a nomaximize rather than the default FALSE. 1203 consider passing TRUE for \a nomaximize rather than the default FALSE.
1204 1204
1205 This calls designates the application as 1205 This calls designates the application as
1206 a \link docwidget.html document-oriented\endlink application. 1206 a \link docwidget.html document-oriented\endlink application.
1207 1207
1208 The \a mw widget \e must have this slot: setDocument(const QString&). 1208 The \a mw widget \e must have this slot: setDocument(const QString&).
1209 1209
1210 \sa showMainWidget() 1210 \sa showMainWidget()
1211*/ 1211*/
1212void QPEApplication::showMainDocumentWidget( QWidget* mw, bool nomaximize ) 1212void QPEApplication::showMainDocumentWidget( QWidget* mw, bool nomaximize )
1213{ 1213{
1214 if ( mw && argc() == 2 ) 1214 if ( mw && argc() == 2 )
1215 Global::setDocument( mw, QString::fromUtf8(argv()[1]) ); 1215 Global::setDocument( mw, QString::fromUtf8(argv()[1]) );
1216 1216
1217 d->show(mw, nomaximize ); 1217 d->show(mw, nomaximize );
1218} 1218}
1219 1219
1220 1220
1221/*! 1221/*!
1222 If an application is started via a \link qcop.html QCop\endlink 1222 If an application is started via a \link qcop.html QCop\endlink
1223 message, the application will process the \link qcop.html 1223 message, the application will process the \link qcop.html
1224 QCop\endlink message and then quit. If the application calls this 1224 QCop\endlink message and then quit. If the application calls this
1225 function while processing a \link qcop.html QCop\endlink message, 1225 function while processing a \link qcop.html QCop\endlink message,
1226 after processing its outstanding \link qcop.html QCop\endlink 1226 after processing its outstanding \link qcop.html QCop\endlink
1227 messages the application will start 'properly' and show itself. 1227 messages the application will start 'properly' and show itself.
1228 1228
1229 \sa keepRunning() 1229 \sa keepRunning()
1230*/ 1230*/
1231void QPEApplication::setKeepRunning() 1231void QPEApplication::setKeepRunning()
1232{ 1232{
1233 if ( qApp && qApp->inherits( "QPEApplication" ) ) { 1233 if ( qApp && qApp->inherits( "QPEApplication" ) ) {
1234 QPEApplication * qpeApp = ( QPEApplication* ) qApp; 1234 QPEApplication * qpeApp = ( QPEApplication* ) qApp;
1235 qpeApp->d->keep_running = TRUE; 1235 qpeApp->d->keep_running = TRUE;
1236 } 1236 }
1237} 1237}
1238 1238
1239/*! 1239/*!
1240 Returns TRUE if the application will quit after processing the 1240 Returns TRUE if the application will quit after processing the
1241 current list of qcop messages; otherwise returns FALSE. 1241 current list of qcop messages; otherwise returns FALSE.
1242 1242
1243 \sa setKeepRunning() 1243 \sa setKeepRunning()
1244*/ 1244*/
1245bool QPEApplication::keepRunning() const 1245bool QPEApplication::keepRunning() const
1246{ 1246{
1247 return d->keep_running; 1247 return d->keep_running;
1248} 1248}
1249 1249
1250/*! 1250/*!
1251 \internal 1251 \internal
1252*/ 1252*/
1253void QPEApplication::internalSetStyle( const QString &style ) 1253void QPEApplication::internalSetStyle( const QString &style )
1254{ 1254{
1255#if QT_VERSION >= 300 1255#if QT_VERSION >= 300
1256 if ( style == "QPE" ) { 1256 if ( style == "QPE" ) {
1257 setStyle( new QPEStyle ); 1257 setStyle( new QPEStyle );
1258 } 1258 }
1259 else { 1259 else {
1260 QStyle *s = QStyleFactory::create( style ); 1260 QStyle *s = QStyleFactory::create( style );
1261 if ( s ) 1261 if ( s )
1262 setStyle( s ); 1262 setStyle( s );
1263 } 1263 }
1264#else 1264#else
1265 if ( style == "Windows" ) { 1265 if ( style == "Windows" ) {
1266 setStyle( new QWindowsStyle ); 1266 setStyle( new QWindowsStyle );
1267 } 1267 }
1268 else if ( style == "QPE" ) { 1268 else if ( style == "QPE" ) {
1269 setStyle( new QPEStyle ); 1269 setStyle( new QPEStyle );
1270 } 1270 }
1271 else if ( style == "Light" ) { 1271 else if ( style == "Light" ) {
1272 setStyle( new LightStyle ); 1272 setStyle( new LightStyle );
1273 } 1273 }
1274#ifndef QT_NO_STYLE_PLATINUM 1274#ifndef QT_NO_STYLE_PLATINUM
1275 else if ( style == "Platinum" ) { 1275 else if ( style == "Platinum" ) {
1276 setStyle( new QPlatinumStyle ); 1276 setStyle( new QPlatinumStyle );
1277 } 1277 }
1278#endif 1278#endif
1279#ifndef QT_NO_STYLE_MOTIF 1279#ifndef QT_NO_STYLE_MOTIF
1280 else if ( style == "Motif" ) { 1280 else if ( style == "Motif" ) {
1281 setStyle( new QMotifStyle ); 1281 setStyle( new QMotifStyle );
1282 } 1282 }
1283#endif 1283#endif
1284#ifndef QT_NO_STYLE_MOTIFPLUS 1284#ifndef QT_NO_STYLE_MOTIFPLUS
1285 else if ( style == "MotifPlus" ) { 1285 else if ( style == "MotifPlus" ) {
1286 setStyle( new QMotifPlusStyle ); 1286 setStyle( new QMotifPlusStyle );
1287 } 1287 }
1288#endif 1288#endif
1289 1289
1290 else { 1290 else {
1291 QStyle *sty = 0; 1291 QStyle *sty = 0;
1292 QString path = QPEApplication::qpeDir ( ) + "/plugins/styles/"; 1292 QString path = QPEApplication::qpeDir ( ) + "/plugins/styles/";
1293 1293
1294 if ( style. find ( ".so" ) > 0 ) 1294 if ( style. find ( ".so" ) > 0 )
1295 path += style; 1295 path += style;
1296 else 1296 else
1297 path = path + "lib" + style. lower ( ) + ".so"; // compatibility 1297 path = path + "lib" + style. lower ( ) + ".so"; // compatibility
1298 1298
1299 static QLibrary *lastlib = 0; 1299 static QLibrary *lastlib = 0;
1300 static StyleInterface *lastiface = 0; 1300 static StyleInterface *lastiface = 0;
1301 1301
1302 QLibrary *lib = new QLibrary ( path ); 1302 QLibrary *lib = new QLibrary ( path );
1303 StyleInterface *iface = 0; 1303 StyleInterface *iface = 0;
1304 1304
1305 if (( lib-> queryInterface ( IID_Style, ( QUnknownInterface ** ) &iface ) == QS_OK ) && iface ) 1305 if (( lib-> queryInterface ( IID_Style, ( QUnknownInterface ** ) &iface ) == QS_OK ) && iface )
1306 sty = iface-> style ( ); 1306 sty = iface-> style ( );
1307 1307
1308 if ( sty ) { 1308 if ( sty ) {
1309 setStyle ( sty ); 1309 setStyle ( sty );
1310 1310
1311 if ( lastiface ) 1311 if ( lastiface )
1312 lastiface-> release ( ); 1312 lastiface-> release ( );
1313 lastiface = iface; 1313 lastiface = iface;
1314 1314
1315 if ( lastlib ) { 1315 if ( lastlib ) {
1316 lastlib-> unload ( ); 1316 lastlib-> unload ( );
1317 delete lastlib; 1317 delete lastlib;
1318 } 1318 }
1319 lastlib = lib; 1319 lastlib = lib;
1320 } 1320 }
1321 else { 1321 else {
1322 if ( iface ) 1322 if ( iface )
1323 iface-> release ( ); 1323 iface-> release ( );
1324 delete lib; 1324 delete lib;
1325 1325
1326 setStyle ( new QPEStyle ( )); 1326 setStyle ( new QPEStyle ( ));
1327 } 1327 }
1328 } 1328 }
1329#endif 1329#endif
1330} 1330}
1331 1331
1332/*! 1332/*!
1333 \internal 1333 \internal
1334*/ 1334*/
1335void QPEApplication::prepareForTermination( bool willrestart ) 1335void QPEApplication::prepareForTermination( bool willrestart )
1336{ 1336{
1337 if ( willrestart ) { 1337 if ( willrestart ) {
1338 // Draw a big wait icon, the image can be altered in later revisions 1338 // Draw a big wait icon, the image can be altered in later revisions
1339 // QWidget *d = QApplication::desktop(); 1339 // QWidget *d = QApplication::desktop();
1340 QImage img = Resource::loadImage( "launcher/new_wait" ); 1340 QImage img = Resource::loadImage( "launcher/new_wait" );
1341 QPixmap pix; 1341 QPixmap pix;
1342 pix.convertFromImage( img.smoothScale( 1 * img.width(), 1 * img.height() ) ); 1342 pix.convertFromImage( img.smoothScale( 1 * img.width(), 1 * img.height() ) );
1343 QLabel *lblWait = new QLabel( 0, "wait hack!", QWidget::WStyle_Customize | 1343 QLabel *lblWait = new QLabel( 0, "wait hack!", QWidget::WStyle_Customize |
1344 QWidget::WStyle_NoBorder | QWidget::WStyle_Tool ); 1344 QWidget::WStyle_NoBorder | QWidget::WStyle_Tool );
1345 lblWait->setPixmap( pix ); 1345 lblWait->setPixmap( pix );
1346 lblWait->setAlignment( QWidget::AlignCenter ); 1346 lblWait->setAlignment( QWidget::AlignCenter );
1347 lblWait->show(); 1347 lblWait->show();
1348 lblWait->showMaximized(); 1348 lblWait->showMaximized();
1349 } 1349 }
1350#ifndef SINGLE_APP 1350#ifndef SINGLE_APP
1351 { QCopEnvelope envelope( "QPE/System", "forceQuit()" ); 1351 { QCopEnvelope envelope( "QPE/System", "forceQuit()" );
1352 } 1352 }
1353 processEvents(); // ensure the message goes out. 1353 processEvents(); // ensure the message goes out.
1354 sleep( 1 ); // You have 1 second to comply. 1354 sleep( 1 ); // You have 1 second to comply.
1355#endif 1355#endif
1356} 1356}
1357 1357
1358/*! 1358/*!
1359 \internal 1359 \internal
1360*/ 1360*/
1361void QPEApplication::shutdown() 1361void QPEApplication::shutdown()
1362{ 1362{
1363 // Implement in server's QPEApplication subclass 1363 // Implement in server's QPEApplication subclass
1364} 1364}
1365 1365
1366/*! 1366/*!
1367 \internal 1367 \internal
1368*/ 1368*/
1369void QPEApplication::restart() 1369void QPEApplication::restart()
1370{ 1370{
1371 // Implement in server's QPEApplication subclass 1371 // Implement in server's QPEApplication subclass
1372} 1372}
1373 1373
1374static QPtrDict<void>* stylusDict = 0; 1374static QPtrDict<void>* stylusDict = 0;
1375static void createDict() 1375static void createDict()
1376{ 1376{
1377 if ( !stylusDict ) 1377 if ( !stylusDict )
1378 stylusDict = new QPtrDict<void>; 1378 stylusDict = new QPtrDict<void>;
1379} 1379}
1380 1380
1381/*! 1381/*!
1382 Returns the current StylusMode for widget \a w. 1382 Returns the current StylusMode for widget \a w.
1383 1383
1384 \sa setStylusOperation() StylusMode 1384 \sa setStylusOperation() StylusMode
1385*/ 1385*/
1386QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w ) 1386QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w )
1387{ 1387{
1388 if ( stylusDict ) 1388 if ( stylusDict )
1389 return ( StylusMode ) ( int ) stylusDict->find( w ); 1389 return ( StylusMode ) ( int ) stylusDict->find( w );
1390 return LeftOnly; 1390 return LeftOnly;
1391} 1391}
1392 1392
1393/*! 1393/*!
1394 \enum QPEApplication::StylusMode 1394 \enum QPEApplication::StylusMode
1395 1395
1396 \value LeftOnly the stylus only generates LeftButton 1396 \value LeftOnly the stylus only generates LeftButton
1397 events (the default). 1397 events (the default).
1398 \value RightOnHold the stylus generates RightButton events 1398 \value RightOnHold the stylus generates RightButton events
1399 if the user uses the press-and-hold gesture. 1399 if the user uses the press-and-hold gesture.
1400 1400
1401 \sa setStylusOperation() stylusOperation() 1401 \sa setStylusOperation() stylusOperation()
1402*/ 1402*/
1403 1403
1404/*! 1404/*!
1405 Causes widget \a w to receive mouse events according to the stylus 1405 Causes widget \a w to receive mouse events according to the stylus
1406 \a mode. 1406 \a mode.
1407 1407
1408 \sa stylusOperation() StylusMode 1408 \sa stylusOperation() StylusMode
1409*/ 1409*/
1410void QPEApplication::setStylusOperation( QWidget * w, StylusMode mode ) 1410void QPEApplication::setStylusOperation( QWidget * w, StylusMode mode )
1411{ 1411{
1412 createDict(); 1412 createDict();
1413 if ( mode == LeftOnly ) { 1413 if ( mode == LeftOnly ) {
1414 stylusDict->remove 1414 stylusDict->remove
1415 ( w ); 1415 ( w );
1416 w->removeEventFilter( qApp ); 1416 w->removeEventFilter( qApp );
1417 } 1417 }
1418 else { 1418 else {
1419 stylusDict->insert( w, ( void* ) mode ); 1419 stylusDict->insert( w, ( void* ) mode );
1420 connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) ); 1420 connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) );
1421 w->installEventFilter( qApp ); 1421 w->installEventFilter( qApp );
1422 } 1422 }
1423} 1423}
1424 1424
1425 1425
1426/*! 1426/*!
1427 \reimp 1427 \reimp
1428*/ 1428*/
1429bool QPEApplication::eventFilter( QObject *o, QEvent *e ) 1429bool QPEApplication::eventFilter( QObject *o, QEvent *e )
1430{ 1430{
1431 if ( stylusDict && e->type() >= QEvent::MouseButtonPress && e->type() <= QEvent::MouseMove ) { 1431 if ( stylusDict && e->type() >= QEvent::MouseButtonPress && e->type() <= QEvent::MouseMove ) {
1432 QMouseEvent * me = ( QMouseEvent* ) e; 1432 QMouseEvent * me = ( QMouseEvent* ) e;
1433 StylusMode mode = (StylusMode)(int)stylusDict->find(o); 1433 StylusMode mode = (StylusMode)(int)stylusDict->find(o);
1434 switch (mode) { 1434 switch (mode) {
1435 case RightOnHold: 1435 case RightOnHold:
1436 switch ( me->type() ) { 1436 switch ( me->type() ) {
1437 case QEvent::MouseButtonPress: 1437 case QEvent::MouseButtonPress:
1438 if ( me->button() == LeftButton ) { 1438 if ( me->button() == LeftButton ) {
1439 d->presstimer = startTimer(500); // #### pref. 1439 d->presstimer = startTimer(500); // #### pref.
1440 d->presswidget = (QWidget*)o; 1440 d->presswidget = (QWidget*)o;
1441 d->presspos = me->pos(); 1441 d->presspos = me->pos();
1442 d->rightpressed = FALSE; 1442 d->rightpressed = FALSE;
1443 } 1443 }
1444 break; 1444 break;
1445 case QEvent::MouseMove: 1445 case QEvent::MouseMove:
1446 if (d->presstimer && (me->pos() - d->presspos).manhattanLength() > 8) { 1446 if (d->presstimer && (me->pos() - d->presspos).manhattanLength() > 8) {
1447 killTimer(d->presstimer); 1447 killTimer(d->presstimer);
1448 d->presstimer = 0; 1448 d->presstimer = 0;
1449 } 1449 }
1450 break; 1450 break;
1451 case QEvent::MouseButtonRelease: 1451 case QEvent::MouseButtonRelease:
1452 if ( me->button() == LeftButton ) { 1452 if ( me->button() == LeftButton ) {
1453 if ( d->presstimer ) { 1453 if ( d->presstimer ) {
1454 killTimer(d->presstimer); 1454 killTimer(d->presstimer);
1455 d->presstimer = 0; 1455 d->presstimer = 0;
1456 } 1456 }
1457 if ( d->rightpressed && d->presswidget ) { 1457 if ( d->rightpressed && d->presswidget ) {
1458 // Right released 1458 // Right released
1459 postEvent( d->presswidget, 1459 postEvent( d->presswidget,
1460 new QMouseEvent( QEvent::MouseButtonRelease, me->pos(), 1460 new QMouseEvent( QEvent::MouseButtonRelease, me->pos(),
1461 RightButton, LeftButton + RightButton ) ); 1461 RightButton, LeftButton + RightButton ) );
1462 // Left released, off-widget 1462 // Left released, off-widget
1463 postEvent( d->presswidget, 1463 postEvent( d->presswidget,
1464 new QMouseEvent( QEvent::MouseMove, QPoint( -1, -1), 1464 new QMouseEvent( QEvent::MouseMove, QPoint( -1, -1),
1465 LeftButton, LeftButton ) ); 1465 LeftButton, LeftButton ) );
1466 postEvent( d->presswidget, 1466 postEvent( d->presswidget,
1467 new QMouseEvent( QEvent::MouseButtonRelease, QPoint( -1, -1), 1467 new QMouseEvent( QEvent::MouseButtonRelease, QPoint( -1, -1),
1468 LeftButton, LeftButton ) ); 1468 LeftButton, LeftButton ) );
1469 d->rightpressed = FALSE; 1469 d->rightpressed = FALSE;
1470 return TRUE; // don't send the real Left release 1470 return TRUE; // don't send the real Left release
1471 } 1471 }
1472 } 1472 }
1473 break; 1473 break;
1474 default: 1474 default:
1475 break; 1475 break;
1476 } 1476 }
1477 break; 1477 break;
1478 default: 1478 default:
1479 ; 1479 ;
1480 } 1480 }
1481 } 1481 }
1482 else if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { 1482 else if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) {
1483 QKeyEvent *ke = (QKeyEvent *)e; 1483 QKeyEvent *ke = (QKeyEvent *)e;
1484 if ( ke->key() == Key_Enter ) { 1484 if ( ke->key() == Key_Enter ) {
1485 if ( o->isA( "QRadioButton" ) || o->isA( "QCheckBox" ) ) { 1485 if ( o->isA( "QRadioButton" ) || o->isA( "QCheckBox" ) ) {
1486 postEvent( o, new QKeyEvent( e->type(), Key_Space, ' ', 1486 postEvent( o, new QKeyEvent( e->type(), Key_Space, ' ',
1487 ke->state(), " ", ke->isAutoRepeat(), ke->count() ) ); 1487 ke->state(), " ", ke->isAutoRepeat(), ke->count() ) );
1488 return TRUE; 1488 return TRUE;
1489 } 1489 }
1490 } 1490 }
1491 } 1491 }
1492 return FALSE; 1492 return FALSE;
1493} 1493}
1494 1494
1495/*! 1495/*!
1496 \reimp 1496 \reimp
1497*/ 1497*/
1498void QPEApplication::timerEvent( QTimerEvent *e ) 1498void QPEApplication::timerEvent( QTimerEvent *e )
1499{ 1499{
1500 if ( e->timerId() == d->presstimer && d->presswidget ) { 1500 if ( e->timerId() == d->presstimer && d->presswidget ) {
1501 // Right pressed 1501 // Right pressed
1502 postEvent( d->presswidget, 1502 postEvent( d->presswidget,
1503 new QMouseEvent( QEvent::MouseButtonPress, d->presspos, 1503 new QMouseEvent( QEvent::MouseButtonPress, d->presspos,
1504 RightButton, LeftButton ) ); 1504 RightButton, LeftButton ) );
1505 killTimer( d->presstimer ); 1505 killTimer( d->presstimer );
1506 d->presstimer = 0; 1506 d->presstimer = 0;
1507 d->rightpressed = TRUE; 1507 d->rightpressed = TRUE;
1508 } 1508 }
1509} 1509}
1510 1510
1511void QPEApplication::removeSenderFromStylusDict() 1511void QPEApplication::removeSenderFromStylusDict()
1512{ 1512{
1513 stylusDict->remove 1513 stylusDict->remove
1514 ( ( void* ) sender() ); 1514 ( ( void* ) sender() );
1515 if ( d->presswidget == sender() ) 1515 if ( d->presswidget == sender() )
1516 d->presswidget = 0; 1516 d->presswidget = 0;
1517} 1517}
1518 1518
1519/*! 1519/*!
1520 \internal 1520 \internal
1521*/ 1521*/
1522bool QPEApplication::keyboardGrabbed() const 1522bool QPEApplication::keyboardGrabbed() const
1523{ 1523{
1524 return d->kbgrabber; 1524 return d->kbgrabber;
1525} 1525}
1526 1526
1527 1527
1528/*! 1528/*!
1529 Reverses the effect of grabKeyboard(). This is called automatically 1529 Reverses the effect of grabKeyboard(). This is called automatically
1530 on program exit. 1530 on program exit.
1531*/ 1531*/
1532void QPEApplication::ungrabKeyboard() 1532void QPEApplication::ungrabKeyboard()
1533{ 1533{
1534 QPEApplicationData * d = ( ( QPEApplication* ) qApp ) ->d; 1534 QPEApplicationData * d = ( ( QPEApplication* ) qApp ) ->d;
1535 if ( d->kbgrabber == 2 ) { 1535 if ( d->kbgrabber == 2 ) {
1536#ifndef QT_NO_COP 1536#ifndef QT_NO_COP
1537 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); 1537 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" );
1538 e << QString::null; 1538 e << QString::null;
1539#endif 1539#endif
1540 1540
1541 d->kbregrab = FALSE; 1541 d->kbregrab = FALSE;
1542 d->kbgrabber = 0; 1542 d->kbgrabber = 0;
1543 } 1543 }
1544} 1544}
1545 1545
1546/*! 1546/*!
1547 Grabs the physical keyboard keys, e.g. the application's launching 1547 Grabs the physical keyboard keys, e.g. the application's launching
1548 keys. Instead of launching applications when these keys are pressed 1548 keys. Instead of launching applications when these keys are pressed
1549 the signals emitted are sent to this application instead. Some games 1549 the signals emitted are sent to this application instead. Some games
1550 programs take over the launch keys in this way to make interaction 1550 programs take over the launch keys in this way to make interaction
1551 easier. 1551 easier.
1552 1552
1553 \sa ungrabKeyboard() 1553 \sa ungrabKeyboard()
1554*/ 1554*/
1555void QPEApplication::grabKeyboard() 1555void QPEApplication::grabKeyboard()
1556{ 1556{
1557 QPEApplicationData * d = ( ( QPEApplication* ) qApp ) ->d; 1557 QPEApplicationData * d = ( ( QPEApplication* ) qApp ) ->d;
1558 if ( qApp->type() == QApplication::GuiServer ) 1558 if ( qApp->type() == QApplication::GuiServer )
1559 d->kbgrabber = 0; 1559 d->kbgrabber = 0;
1560 else { 1560 else {
1561#ifndef QT_NO_COP 1561#ifndef QT_NO_COP
1562 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); 1562 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" );
1563 e << d->appName; 1563 e << d->appName;
1564#endif 1564#endif
1565 1565
1566 d->kbgrabber = 2; // me 1566 d->kbgrabber = 2; // me
1567 } 1567 }
1568} 1568}
1569 1569
1570/*! 1570/*!
1571 \reimp 1571 \reimp
1572*/ 1572*/
1573int QPEApplication::exec() 1573int QPEApplication::exec()
1574{ 1574{
1575#ifndef QT_NO_COP 1575#ifndef QT_NO_COP
1576 d->sendQCopQ(); 1576 d->sendQCopQ();
1577#endif 1577#endif
1578 1578
1579 if ( d->keep_running ) 1579 if ( d->keep_running )
1580 //|| d->qpe_main_widget && d->qpe_main_widget->isVisible() ) 1580 //|| d->qpe_main_widget && d->qpe_main_widget->isVisible() )
1581 return QApplication::exec(); 1581 return QApplication::exec();
1582 1582
1583#ifndef QT_NO_COP 1583#ifndef QT_NO_COP
1584 1584
1585 { 1585 {
1586 QCopEnvelope e( "QPE/System", "closing(QString)" ); 1586 QCopEnvelope e( "QPE/System", "closing(QString)" );
1587 e << d->appName; 1587 e << d->appName;
1588 } 1588 }
1589#endif 1589#endif
1590 processEvents(); 1590 processEvents();
1591 return 0; 1591 return 0;
1592} 1592}
1593 1593
1594/*! 1594/*!
1595 \internal 1595 \internal
1596 External request for application to quit. Quits if possible without 1596 External request for application to quit. Quits if possible without
1597 loosing state. 1597 loosing state.
1598*/ 1598*/
1599void QPEApplication::tryQuit() 1599void QPEApplication::tryQuit()
1600{ 1600{
1601 if ( activeModalWidget() || strcmp( argv() [ 0 ], "embeddedkonsole" ) == 0 ) 1601 if ( activeModalWidget() || strcmp( argv() [ 0 ], "embeddedkonsole" ) == 0 )
1602 return ; // Inside modal loop or konsole. Too hard to save state. 1602 return ; // Inside modal loop or konsole. Too hard to save state.
1603#ifndef QT_NO_COP 1603#ifndef QT_NO_COP
1604 1604
1605 { 1605 {
1606 QCopEnvelope e( "QPE/System", "closing(QString)" ); 1606 QCopEnvelope e( "QPE/System", "closing(QString)" );
1607 e << d->appName; 1607 e << d->appName;
1608 } 1608 }
1609#endif 1609#endif
1610 processEvents(); 1610 processEvents();
1611 1611
1612 quit(); 1612 quit();
1613} 1613}
1614 1614
1615/*! 1615/*!
1616 \internal 1616 \internal
1617 User initiated quit. Makes the window 'Go Away'. If preloaded this means 1617 User initiated quit. Makes the window 'Go Away'. If preloaded this means
1618 hiding the window. If not it means quitting the application. 1618 hiding the window. If not it means quitting the application.
1619 As this is user initiated we don't need to check state. 1619 As this is user initiated we don't need to check state.
1620*/ 1620*/
1621void QPEApplication::hideOrQuit() 1621void QPEApplication::hideOrQuit()
1622{ 1622{
1623 processEvents(); 1623 processEvents();
1624 1624
1625 // If we are a preloaded application we don't actually quit, so emit 1625 // If we are a preloaded application we don't actually quit, so emit
1626 // a System message indicating we're quasi-closing. 1626 // a System message indicating we're quasi-closing.
1627 if ( d->preloaded && d->qpe_main_widget ) 1627 if ( d->preloaded && d->qpe_main_widget )
1628#ifndef QT_NO_COP 1628#ifndef QT_NO_COP
1629 1629
1630 { 1630 {
1631 QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); 1631 QCopEnvelope e("QPE/System", "fastAppHiding(QString)" );
1632 e << d->appName; 1632 e << d->appName;
1633 d->qpe_main_widget->hide(); 1633 d->qpe_main_widget->hide();
1634 } 1634 }
1635#endif 1635#endif
1636 else 1636 else
1637 quit(); 1637 quit();
1638} 1638}
1639 1639
1640#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) 1640#if defined(QT_QWS_IPAQ) || defined(QT_QWS_SHARP)
1641 1641
1642// The libraries with the skiff package (and possibly others) have 1642// The libraries with the skiff package (and possibly others) have
1643// completely useless implementations of builtin new and delete that 1643// completely useless implementations of builtin new and delete that
1644// use about 50% of your CPU. Here we revert to the simple libc 1644// use about 50% of your CPU. Here we revert to the simple libc
1645// functions. 1645// functions.
1646 1646
1647void* operator new[]( size_t size ) 1647void* operator new[]( size_t size )
1648{ 1648{
1649 return malloc( size ); 1649 return malloc( size );
1650} 1650}
1651 1651
1652void* operator new( size_t size ) 1652void* operator new( size_t size )
1653{ 1653{
1654 return malloc( size ); 1654 return malloc( size );
1655} 1655}
1656 1656
1657void operator delete[]( void* p ) 1657void operator delete[]( void* p )
1658{ 1658{
1659 free( p ); 1659 free( p );
1660} 1660}
1661 1661
1662void operator delete[]( void* p, size_t /*size*/ ) 1662void operator delete[]( void* p, size_t /*size*/ )
1663{ 1663{
1664 free( p ); 1664 free( p );
1665} 1665}
1666 1666
1667void operator delete( void* p ) 1667void operator delete( void* p )
1668{ 1668{
1669 free( p ); 1669 free( p );
1670} 1670}
1671 1671
1672void operator delete( void* p, size_t /*size*/ ) 1672void operator delete( void* p, size_t /*size*/ )
1673{ 1673{
1674 free( p ); 1674 free( p );
1675} 1675}
1676 1676
1677#endif 1677#endif
1678 1678
1679#if ( QT_VERSION <= 230 ) && !defined(SINGLE_APP) 1679#if ( QT_VERSION <= 230 ) && !defined(SINGLE_APP)
1680#include <qwidgetlist.h> 1680#include <qwidgetlist.h>
1681#ifdef QWS 1681#ifdef QWS
1682#include <qgfx_qws.h> 1682#include <qgfx_qws.h>
1683extern QRect qt_maxWindowRect; 1683extern QRect qt_maxWindowRect;
1684void qt_setMaxWindowRect(const QRect& r ) 1684void qt_setMaxWindowRect(const QRect& r )
1685{ 1685{
1686 qt_maxWindowRect = qt_screen->mapFromDevice( r, 1686 qt_maxWindowRect = qt_screen->mapFromDevice( r,
1687 qt_screen->mapToDevice( QSize( qt_screen->width(), qt_screen->height() ) ) ); 1687 qt_screen->mapToDevice( QSize( qt_screen->width(), qt_screen->height() ) ) );
1688 // Re-resize any maximized windows 1688 // Re-resize any maximized windows
1689 QWidgetList* l = QApplication::topLevelWidgets(); 1689 QWidgetList* l = QApplication::topLevelWidgets();
1690 if ( l ) { 1690 if ( l ) {
1691 QWidget * w = l->first(); 1691 QWidget * w = l->first();
1692 while ( w ) { 1692 while ( w ) {
1693 if ( w->isVisible() && w->isMaximized() ) { 1693 if ( w->isVisible() && w->isMaximized() ) {
1694 w->showMaximized(); 1694 w->showMaximized();
1695 } 1695 }
1696 w = l->next(); 1696 w = l->next();
1697 } 1697 }
1698 delete l; 1698 delete l;
1699 } 1699 }
1700} 1700}
1701#endif 1701#endif
1702#endif 1702#endif