-rw-r--r-- | library/qpeapplication.cpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 1c5ced3..2bd7cbe 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -1,227 +1,226 @@ | |||
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 | #define QTOPIA_INTERNAL_LANGLIST | 20 | #define QTOPIA_INTERNAL_LANGLIST |
21 | #include <stdlib.h> | 21 | #include <stdlib.h> |
22 | #include <unistd.h> | 22 | #include <unistd.h> |
23 | #ifndef Q_OS_MACX | 23 | #ifndef Q_OS_MACX |
24 | #include <linux/limits.h> // needed for some toolchains (PATH_MAX) | 24 | #include <linux/limits.h> // needed for some toolchains (PATH_MAX) |
25 | #endif | 25 | #endif |
26 | #include <qfile.h> | 26 | #include <qfile.h> |
27 | #include <qqueue.h> | 27 | #include <qqueue.h> |
28 | #ifdef Q_WS_QWS | 28 | #ifdef Q_WS_QWS |
29 | #ifndef QT_NO_COP | 29 | #ifndef QT_NO_COP |
30 | #if QT_VERSION <= 231 | 30 | #if QT_VERSION <= 231 |
31 | #define private public | 31 | #define private public |
32 | #define sendLocally processEvent | 32 | #define sendLocally processEvent |
33 | #include "qcopenvelope_qws.h" | 33 | #include "qcopenvelope_qws.h" |
34 | #undef private | 34 | #undef private |
35 | #else | 35 | #else |
36 | #include "qcopenvelope_qws.h" | 36 | #include "qcopenvelope_qws.h" |
37 | #endif | 37 | #endif |
38 | #endif | 38 | #endif |
39 | #include <qwindowsystem_qws.h> | 39 | #include <qwindowsystem_qws.h> |
40 | #endif | 40 | #endif |
41 | #include <qtextstream.h> | 41 | #include <qtextstream.h> |
42 | #include <qpalette.h> | 42 | #include <qpalette.h> |
43 | #include <qbuffer.h> | 43 | #include <qbuffer.h> |
44 | #include <qptrdict.h> | 44 | #include <qptrdict.h> |
45 | #include <qregexp.h> | 45 | #include <qregexp.h> |
46 | #include <qdir.h> | 46 | #include <qdir.h> |
47 | #include <qlabel.h> | 47 | #include <qlabel.h> |
48 | #include <qdialog.h> | 48 | #include <qdialog.h> |
49 | #include <qdragobject.h> | 49 | #include <qdragobject.h> |
50 | #include <qtextcodec.h> | 50 | #include <qtextcodec.h> |
51 | #include <qevent.h> | 51 | #include <qevent.h> |
52 | #include <qtooltip.h> | 52 | #include <qtooltip.h> |
53 | #include <qsignal.h> | 53 | #include <qsignal.h> |
54 | #include <qmainwindow.h> | 54 | #include <qmainwindow.h> |
55 | #include <qwidgetlist.h> | 55 | #include <qwidgetlist.h> |
56 | #include <qpixmapcache.h> | 56 | #include <qpixmapcache.h> |
57 | 57 | ||
58 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 58 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
59 | #define QTOPIA_INTERNAL_INITAPP | 59 | #define QTOPIA_INTERNAL_INITAPP |
60 | #include "qpeapplication.h" | 60 | #include "qpeapplication.h" |
61 | #include "qpestyle.h" | 61 | #include "qpestyle.h" |
62 | #include "styleinterface.h" | 62 | #include "styleinterface.h" |
63 | #if QT_VERSION >= 0x030000 | 63 | #if QT_VERSION >= 0x030000 |
64 | #include <qstylefactory.h> | 64 | #include <qstylefactory.h> |
65 | #else | 65 | #else |
66 | #include <qplatinumstyle.h> | 66 | #include <qplatinumstyle.h> |
67 | #include <qwindowsstyle.h> | 67 | #include <qwindowsstyle.h> |
68 | #include <qmotifstyle.h> | 68 | #include <qmotifstyle.h> |
69 | #include <qmotifplusstyle.h> | 69 | #include <qmotifplusstyle.h> |
70 | #include "lightstyle.h" | 70 | #include "lightstyle.h" |
71 | 71 | ||
72 | #include <qpe/qlibrary.h> | 72 | #include <qpe/qlibrary.h> |
73 | #endif | 73 | #endif |
74 | #include "global.h" | 74 | #include "global.h" |
75 | #include "resource.h" | 75 | #include "resource.h" |
76 | #if QT_VERSION <= 230 && defined(QT_NO_CODECS) | 76 | #if QT_VERSION <= 230 && defined(QT_NO_CODECS) |
77 | #include "qutfcodec.h" | 77 | #include "qutfcodec.h" |
78 | #endif | 78 | #endif |
79 | #include "config.h" | 79 | #include "config.h" |
80 | #include "network.h" | 80 | #include "network.h" |
81 | #ifdef QWS | 81 | #ifdef QWS |
82 | #include "fontmanager.h" | 82 | #include "fontmanager.h" |
83 | #include "fontdatabase.h" | 83 | #include "fontdatabase.h" |
84 | #endif | 84 | #endif |
85 | 85 | ||
86 | #include "alarmserver.h" | 86 | #include "alarmserver.h" |
87 | #include "applnk.h" | 87 | #include "applnk.h" |
88 | #include "qpemenubar.h" | 88 | #include "qpemenubar.h" |
89 | #include "textcodecinterface.h" | 89 | #include "textcodecinterface.h" |
90 | #include "imagecodecinterface.h" | 90 | #include "imagecodecinterface.h" |
91 | #include <qtopia/qpeglobal.h> | 91 | #include <qtopia/qpeglobal.h> |
92 | 92 | ||
93 | #include <unistd.h> | 93 | #include <unistd.h> |
94 | #include <sys/file.h> | 94 | #include <sys/file.h> |
95 | #include <sys/ioctl.h> | 95 | #include <sys/ioctl.h> |
96 | #ifndef QT_NO_SOUND | 96 | #ifndef QT_NO_SOUND |
97 | #include <sys/soundcard.h> | 97 | #include <sys/soundcard.h> |
98 | #endif | 98 | #endif |
99 | #include "qt_override_p.h" | ||
100 | 99 | ||
101 | #include <backend/rohfeedback.h> | 100 | #include <backend/rohfeedback.h> |
102 | 101 | ||
103 | 102 | ||
104 | static bool useBigPixmaps = 0; | 103 | static bool useBigPixmaps = 0; |
105 | 104 | ||
106 | class HackWidget : public QWidget | 105 | class HackWidget : public QWidget |
107 | { | 106 | { |
108 | public: | 107 | public: |
109 | bool needsOk() | 108 | bool needsOk() |
110 | { return (getWState() & WState_Reserved1 ); } | 109 | { return (getWState() & WState_Reserved1 ); } |
111 | 110 | ||
112 | QRect normalGeometry() | 111 | QRect normalGeometry() |
113 | { return topData()->normalGeometry; }; | 112 | { return topData()->normalGeometry; }; |
114 | }; | 113 | }; |
115 | 114 | ||
116 | class QPEApplicationData | 115 | class QPEApplicationData |
117 | { | 116 | { |
118 | public: | 117 | public: |
119 | QPEApplicationData ( ) : | 118 | QPEApplicationData ( ) : |
120 | presstimer( 0 ), presswidget( 0 ), rightpressed( false ), kbgrabbed( false ), | 119 | presstimer( 0 ), presswidget( 0 ), rightpressed( false ), kbgrabbed( false ), |
121 | notbusysent( false ), preloaded( false ), forceshow( false ), nomaximize( false ), | 120 | notbusysent( false ), preloaded( false ), forceshow( false ), nomaximize( false ), |
122 | keep_running( true ), qcopQok( false ), | 121 | keep_running( true ), qcopQok( false ), |
123 | fontFamily( "Vera" ), fontSize( 10 ), smallIconSize( 14 ), | 122 | fontFamily( "Vera" ), fontSize( 10 ), smallIconSize( 14 ), |
124 | bigIconSize( 32 ), qpe_main_widget( 0 ) | 123 | bigIconSize( 32 ), qpe_main_widget( 0 ) |
125 | { | 124 | { |
126 | Config cfg( "qpe" ); | 125 | Config cfg( "qpe" ); |
127 | cfg.setGroup( "Appearance" ); | 126 | cfg.setGroup( "Appearance" ); |
128 | useBigPixmaps = cfg.readBoolEntry( "useBigPixmaps", false ); | 127 | useBigPixmaps = cfg.readBoolEntry( "useBigPixmaps", false ); |
129 | fontFamily = cfg.readEntry( "FontFamily", "Vera" ); | 128 | fontFamily = cfg.readEntry( "FontFamily", "Vera" ); |
130 | fontSize = cfg.readNumEntry( "FontSize", 10 ); | 129 | fontSize = cfg.readNumEntry( "FontSize", 10 ); |
131 | smallIconSize = cfg.readNumEntry( "SmallIconSize", 14 ); | 130 | smallIconSize = cfg.readNumEntry( "SmallIconSize", 14 ); |
132 | bigIconSize = cfg.readNumEntry( "BigIconSize", 32 ); | 131 | bigIconSize = cfg.readNumEntry( "BigIconSize", 32 ); |
133 | #ifdef OPIE_WITHROHFEEDBACK | 132 | #ifdef OPIE_WITHROHFEEDBACK |
134 | RoH = 0; | 133 | RoH = 0; |
135 | #endif | 134 | #endif |
136 | } | 135 | } |
137 | 136 | ||
138 | int presstimer; | 137 | int presstimer; |
139 | QWidget* presswidget; | 138 | QWidget* presswidget; |
140 | QPoint presspos; | 139 | QPoint presspos; |
141 | #ifdef OPIE_WITHROHFEEDBACK | 140 | #ifdef OPIE_WITHROHFEEDBACK |
142 | Opie::Internal::RoHFeedback *RoH; | 141 | Opie::Internal::RoHFeedback *RoH; |
143 | #endif | 142 | #endif |
144 | 143 | ||
145 | bool rightpressed : 1; | 144 | bool rightpressed : 1; |
146 | bool kbgrabbed : 1; | 145 | bool kbgrabbed : 1; |
147 | bool notbusysent : 1; | 146 | bool notbusysent : 1; |
148 | bool preloaded : 1; | 147 | bool preloaded : 1; |
149 | bool forceshow : 1; | 148 | bool forceshow : 1; |
150 | bool nomaximize : 1; | 149 | bool nomaximize : 1; |
151 | bool keep_running : 1; | 150 | bool keep_running : 1; |
152 | bool qcopQok : 1; | 151 | bool qcopQok : 1; |
153 | 152 | ||
154 | QCString fontFamily; | 153 | QCString fontFamily; |
155 | int fontSize; | 154 | int fontSize; |
156 | int smallIconSize; | 155 | int smallIconSize; |
157 | int bigIconSize; | 156 | int bigIconSize; |
158 | 157 | ||
159 | QString appName; | 158 | QString appName; |
160 | struct QCopRec | 159 | struct QCopRec |
161 | { | 160 | { |
162 | QCopRec( const QCString &ch, const QCString &msg, | 161 | QCopRec( const QCString &ch, const QCString &msg, |
163 | const QByteArray &d ) : | 162 | const QByteArray &d ) : |
164 | channel( ch ), message( msg ), data( d ) | 163 | channel( ch ), message( msg ), data( d ) |
165 | { } | 164 | { } |
166 | 165 | ||
167 | QCString channel; | 166 | QCString channel; |
168 | QCString message; | 167 | QCString message; |
169 | QByteArray data; | 168 | QByteArray data; |
170 | }; | 169 | }; |
171 | QWidget* qpe_main_widget; | 170 | QWidget* qpe_main_widget; |
172 | QGuardedPtr<QWidget> lastraised; | 171 | QGuardedPtr<QWidget> lastraised; |
173 | QQueue<QCopRec> qcopq; | 172 | QQueue<QCopRec> qcopq; |
174 | QString styleName; | 173 | QString styleName; |
175 | QString decorationName; | 174 | QString decorationName; |
176 | 175 | ||
177 | void enqueueQCop( const QCString &ch, const QCString &msg, | 176 | void enqueueQCop( const QCString &ch, const QCString &msg, |
178 | const QByteArray &data ) | 177 | const QByteArray &data ) |
179 | { | 178 | { |
180 | qcopq.enqueue( new QCopRec( ch, msg, data ) ); | 179 | qcopq.enqueue( new QCopRec( ch, msg, data ) ); |
181 | } | 180 | } |
182 | void sendQCopQ() | 181 | void sendQCopQ() |
183 | { | 182 | { |
184 | if (!qcopQok ) | 183 | if (!qcopQok ) |
185 | return; | 184 | return; |
186 | 185 | ||
187 | QCopRec * r; | 186 | QCopRec * r; |
188 | 187 | ||
189 | while((r=qcopq.dequeue())) { | 188 | while((r=qcopq.dequeue())) { |
190 | // remove from queue before sending... | 189 | // remove from queue before sending... |
191 | // event loop can come around again before getting | 190 | // event loop can come around again before getting |
192 | // back from sendLocally | 191 | // back from sendLocally |
193 | #ifndef QT_NO_COP | 192 | #ifndef QT_NO_COP |
194 | QCopChannel::sendLocally( r->channel, r->message, r->data ); | 193 | QCopChannel::sendLocally( r->channel, r->message, r->data ); |
195 | #endif | 194 | #endif |
196 | 195 | ||
197 | delete r; | 196 | delete r; |
198 | } | 197 | } |
199 | } | 198 | } |
200 | 199 | ||
201 | static void show_mx(QWidget* mw, bool nomaximize, QString &strName) { | 200 | static void show_mx(QWidget* mw, bool nomaximize, QString &strName) { |
202 | if ( mw->inherits("QMainWindow") || mw->isA("QMainWindow") ) | 201 | if ( mw->inherits("QMainWindow") || mw->isA("QMainWindow") ) |
203 | { | 202 | { |
204 | ( ( QMainWindow* ) mw )->setUsesBigPixmaps( useBigPixmaps ); | 203 | ( ( QMainWindow* ) mw )->setUsesBigPixmaps( useBigPixmaps ); |
205 | } | 204 | } |
206 | QPoint p; | 205 | QPoint p; |
207 | QSize s; | 206 | QSize s; |
208 | bool max; | 207 | bool max; |
209 | 208 | ||
210 | if ( mw->isVisible() ) { | 209 | if ( mw->isVisible() ) { |
211 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { | 210 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { |
212 | mw->resize(s); | 211 | mw->resize(s); |
213 | mw->move(p); | 212 | mw->move(p); |
214 | } | 213 | } |
215 | mw->raise(); | 214 | mw->raise(); |
216 | } else { | 215 | } else { |
217 | 216 | ||
218 | if ( mw->layout() && mw->inherits("QDialog") ) { | 217 | if ( mw->layout() && mw->inherits("QDialog") ) { |
219 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { | 218 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { |
220 | mw->resize(s); | 219 | mw->resize(s); |
221 | mw->move(p); | 220 | mw->move(p); |
222 | 221 | ||
223 | if ( max && !nomaximize ) { | 222 | if ( max && !nomaximize ) { |
224 | mw->showMaximized(); | 223 | mw->showMaximized(); |
225 | } else { | 224 | } else { |
226 | mw->show(); | 225 | mw->show(); |
227 | } | 226 | } |
@@ -1227,338 +1226,299 @@ QString QPEApplication::qpeDir() | |||
1227 | #ifdef Q_OS_WIN32 | 1226 | #ifdef Q_OS_WIN32 |
1228 | QString temp(base); | 1227 | QString temp(base); |
1229 | if (temp[(int)temp.length()-1] != QDir::separator()) | 1228 | if (temp[(int)temp.length()-1] != QDir::separator()) |
1230 | temp.append(QDir::separator()); | 1229 | temp.append(QDir::separator()); |
1231 | dir = temp; | 1230 | dir = temp; |
1232 | #else | 1231 | #else |
1233 | dir = QString( base ) + "/"; | 1232 | dir = QString( base ) + "/"; |
1234 | #endif | 1233 | #endif |
1235 | }else{ | 1234 | }else{ |
1236 | dir = QString( ".." ) + QDir::separator(); | 1235 | dir = QString( ".." ) + QDir::separator(); |
1237 | } | 1236 | } |
1238 | 1237 | ||
1239 | return dir; | 1238 | return dir; |
1240 | } | 1239 | } |
1241 | 1240 | ||
1242 | /*! | 1241 | /*! |
1243 | Returns the user's current Document directory. There is a trailing "/". | 1242 | Returns the user's current Document directory. There is a trailing "/". |
1244 | .. well, it does now,, and there's no trailing '/' | 1243 | .. well, it does now,, and there's no trailing '/' |
1245 | */ | 1244 | */ |
1246 | QString QPEApplication::documentDir() | 1245 | QString QPEApplication::documentDir() |
1247 | { | 1246 | { |
1248 | const char* base = getenv( "HOME"); | 1247 | const char* base = getenv( "HOME"); |
1249 | if ( base ) | 1248 | if ( base ) |
1250 | return QString( base ) + "/Documents"; | 1249 | return QString( base ) + "/Documents"; |
1251 | 1250 | ||
1252 | return QString( "../Documents" ); | 1251 | return QString( "../Documents" ); |
1253 | } | 1252 | } |
1254 | 1253 | ||
1255 | static int deforient = -1; | 1254 | static int deforient = -1; |
1256 | 1255 | ||
1257 | /*! | 1256 | /*! |
1258 | \internal | 1257 | \internal |
1259 | */ | 1258 | */ |
1260 | int QPEApplication::defaultRotation() | 1259 | int QPEApplication::defaultRotation() |
1261 | { | 1260 | { |
1262 | if ( deforient < 0 ) { | 1261 | if ( deforient < 0 ) { |
1263 | QString d = getenv( "QWS_DISPLAY" ); | 1262 | QString d = getenv( "QWS_DISPLAY" ); |
1264 | if ( d.contains( "Rot90" ) ) { | 1263 | if ( d.contains( "Rot90" ) ) { |
1265 | deforient = 90; | 1264 | deforient = 90; |
1266 | } | 1265 | } |
1267 | else if ( d.contains( "Rot180" ) ) { | 1266 | else if ( d.contains( "Rot180" ) ) { |
1268 | deforient = 180; | 1267 | deforient = 180; |
1269 | } | 1268 | } |
1270 | else if ( d.contains( "Rot270" ) ) { | 1269 | else if ( d.contains( "Rot270" ) ) { |
1271 | deforient = 270; | 1270 | deforient = 270; |
1272 | } | 1271 | } |
1273 | else { | 1272 | else { |
1274 | deforient = 0; | 1273 | deforient = 0; |
1275 | } | 1274 | } |
1276 | } | 1275 | } |
1277 | return deforient; | 1276 | return deforient; |
1278 | } | 1277 | } |
1279 | 1278 | ||
1280 | /*! | 1279 | /*! |
1281 | \internal | 1280 | \internal |
1282 | */ | 1281 | */ |
1283 | void QPEApplication::setDefaultRotation( int r ) | 1282 | void QPEApplication::setDefaultRotation( int r ) |
1284 | { | 1283 | { |
1285 | if ( qApp->type() == GuiServer ) { | 1284 | if ( qApp->type() == GuiServer ) { |
1286 | deforient = r; | 1285 | deforient = r; |
1287 | setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 ); | 1286 | setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 ); |
1288 | Config config("qpe"); | 1287 | Config config("qpe"); |
1289 | config.setGroup( "Rotation" ); | 1288 | config.setGroup( "Rotation" ); |
1290 | config.writeEntry( "Rot", r ); | 1289 | config.writeEntry( "Rot", r ); |
1291 | } | 1290 | } |
1292 | else { | 1291 | else { |
1293 | #ifndef QT_NO_COP | 1292 | #ifndef QT_NO_COP |
1294 | { QCopEnvelope e( "QPE/System", "setDefaultRotation(int)" ); | 1293 | { QCopEnvelope e( "QPE/System", "setDefaultRotation(int)" ); |
1295 | e << r; | 1294 | e << r; |
1296 | } | 1295 | } |
1297 | #endif | 1296 | #endif |
1298 | 1297 | ||
1299 | } | 1298 | } |
1300 | } | 1299 | } |
1301 | 1300 | ||
1302 | #include <qgfx_qws.h> | 1301 | #include <qgfx_qws.h> |
1303 | #include <qwindowsystem_qws.h> | 1302 | #include <qwindowsystem_qws.h> |
1304 | 1303 | ||
1305 | #if QT_VERSION > 236 | 1304 | #if QT_VERSION > 236 |
1306 | extern void qws_clearLoadedFonts(); | 1305 | extern void qws_clearLoadedFonts(); |
1307 | #endif | 1306 | #endif |
1308 | 1307 | ||
1309 | void QPEApplication::setCurrentMode( int x, int y, int depth ) | 1308 | void QPEApplication::setCurrentMode( int x, int y, int depth ) |
1310 | { | 1309 | { |
1311 | // Reset the caches | 1310 | // Reset the caches |
1312 | #if QT_VERSION > 236 | 1311 | #if QT_VERSION > 236 |
1313 | qws_clearLoadedFonts(); | 1312 | qws_clearLoadedFonts(); |
1314 | #endif | 1313 | #endif |
1315 | QPixmapCache::clear(); | 1314 | QPixmapCache::clear(); |
1316 | 1315 | ||
1317 | // Change the screen mode | 1316 | // Change the screen mode |
1318 | qt_screen->setMode(x, y, depth); | 1317 | qt_screen->setMode(x, y, depth); |
1319 | 1318 | ||
1320 | if ( qApp->type() == GuiServer ) { | 1319 | if ( qApp->type() == GuiServer ) { |
1321 | #if QT_VERSION > 236 | 1320 | #if QT_VERSION > 236 |
1322 | // Reconfigure the GuiServer | 1321 | // Reconfigure the GuiServer |
1323 | qwsServer->beginDisplayReconfigure(); | 1322 | qwsServer->beginDisplayReconfigure(); |
1324 | qwsServer->endDisplayReconfigure(); | 1323 | qwsServer->endDisplayReconfigure(); |
1325 | #endif | 1324 | #endif |
1326 | // Get all the running apps to reset | 1325 | // Get all the running apps to reset |
1327 | QCopEnvelope env( "QPE/System", "reset()" ); | 1326 | QCopEnvelope env( "QPE/System", "reset()" ); |
1328 | } | 1327 | } |
1329 | } | 1328 | } |
1330 | 1329 | ||
1331 | void QPEApplication::reset() { | 1330 | void QPEApplication::reset() { |
1332 | // Reconnect to the screen | 1331 | // Reconnect to the screen |
1333 | qt_screen->disconnect(); | 1332 | qt_screen->disconnect(); |
1334 | qt_screen->connect( QString::null ); | 1333 | qt_screen->connect( QString::null ); |
1335 | 1334 | ||
1336 | // Redraw everything | 1335 | // Redraw everything |
1337 | applyStyle(); | 1336 | applyStyle(); |
1338 | } | 1337 | } |
1339 | 1338 | ||
1340 | #if (QT_VERSION < 238) && defined Q_OS_MACX | 1339 | #if (QT_VERSION < 238) && defined Q_OS_MACX |
1341 | bool qt_left_hand_scrollbars = false; | 1340 | bool qt_left_hand_scrollbars = false; |
1342 | #else | 1341 | #else |
1343 | extern bool qt_left_hand_scrollbars QPE_WEAK_SYMBOL; | 1342 | extern bool qt_left_hand_scrollbars QPE_WEAK_SYMBOL; |
1344 | #endif | 1343 | #endif |
1345 | 1344 | ||
1346 | /*! | 1345 | /*! |
1347 | \internal | 1346 | \internal |
1348 | */ | 1347 | */ |
1349 | void QPEApplication::applyStyle() | 1348 | void QPEApplication::applyStyle() |
1350 | { | 1349 | { |
1351 | Config config( "qpe" ); | 1350 | Config config( "qpe" ); |
1352 | config.setGroup( "Appearance" ); | 1351 | config.setGroup( "Appearance" ); |
1353 | 1352 | ||
1354 | #if QT_VERSION > 233 | 1353 | #if QT_VERSION > 233 |
1355 | #if !defined(OPIE_NO_OVERRIDE_QT) | ||
1356 | // don't block ourselves ... | ||
1357 | Opie::force_appearance = 0; | ||
1358 | |||
1359 | static QString appname = Opie::binaryName ( ); | ||
1360 | |||
1361 | QStringList ex = config. readListEntry ( "NoStyle", ';' ); | ||
1362 | int nostyle = 0; | ||
1363 | for ( QStringList::Iterator it = ex. begin ( ); it != ex. end ( ); ++it ) { | ||
1364 | if ( QRegExp (( *it ). mid ( 1 ), false, true ). find ( appname, 0 ) >= 0 ) { | ||
1365 | nostyle = ( *it ). left ( 1 ). toInt ( 0, 32 ); | ||
1366 | break; | ||
1367 | } | ||
1368 | } | ||
1369 | #else | ||
1370 | int nostyle = 0; | ||
1371 | #endif | ||
1372 | |||
1373 | // Widget style | 1354 | // Widget style |
1374 | QString style = config.readEntry( "Style", "FlatStyle" ); | 1355 | QString style = config.readEntry( "Style", "FlatStyle" ); |
1375 | 1356 | ||
1376 | // don't set a custom style | ||
1377 | if ( nostyle & Opie::Force_Style ) | ||
1378 | style = "FlatStyle"; | ||
1379 | |||
1380 | internalSetStyle ( style ); | 1357 | internalSetStyle ( style ); |
1381 | 1358 | ||
1382 | // Colors - from /etc/colors/Liquid.scheme | 1359 | // Colors - from /etc/colors/Liquid.scheme |
1383 | QColor bgcolor( config.readEntry( "Background", "#E0E0E0" ) ); | 1360 | QColor bgcolor( config.readEntry( "Background", "#E0E0E0" ) ); |
1384 | QColor btncolor( config.readEntry( "Button", "#96c8fa" ) ); | 1361 | QColor btncolor( config.readEntry( "Button", "#96c8fa" ) ); |
1385 | QPalette pal( btncolor, bgcolor ); | 1362 | QPalette pal( btncolor, bgcolor ); |
1386 | QString color = config.readEntry( "Highlight", "#73adef" ); | 1363 | QString color = config.readEntry( "Highlight", "#73adef" ); |
1387 | pal.setColor( QColorGroup::Highlight, QColor( color ) ); | 1364 | pal.setColor( QColorGroup::Highlight, QColor( color ) ); |
1388 | color = config.readEntry( "HighlightedText", "#FFFFFF" ); | 1365 | color = config.readEntry( "HighlightedText", "#FFFFFF" ); |
1389 | pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); | 1366 | pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); |
1390 | color = config.readEntry( "Text", "#000000" ); | 1367 | color = config.readEntry( "Text", "#000000" ); |
1391 | pal.setColor( QColorGroup::Text, QColor( color ) ); | 1368 | pal.setColor( QColorGroup::Text, QColor( color ) ); |
1392 | color = config.readEntry( "ButtonText", "#000000" ); | 1369 | color = config.readEntry( "ButtonText", "#000000" ); |
1393 | pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); | 1370 | pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); |
1394 | color = config.readEntry( "Base", "#FFFFFF" ); | 1371 | color = config.readEntry( "Base", "#FFFFFF" ); |
1395 | pal.setColor( QColorGroup::Base, QColor( color ) ); | 1372 | pal.setColor( QColorGroup::Base, QColor( color ) ); |
1396 | 1373 | ||
1397 | pal.setColor( QPalette::Disabled, QColorGroup::Text, | 1374 | pal.setColor( QPalette::Disabled, QColorGroup::Text, |
1398 | pal.color( QPalette::Active, QColorGroup::Background ).dark() ); | 1375 | pal.color( QPalette::Active, QColorGroup::Background ).dark() ); |
1399 | 1376 | ||
1400 | setPalette( pal, TRUE ); | 1377 | setPalette( pal, TRUE ); |
1401 | 1378 | ||
1402 | 1379 | ||
1403 | // Set the ScrollBar on the 'right' side but only if the weak symbol is present | 1380 | // Set the ScrollBar on the 'right' side but only if the weak symbol is present |
1404 | if (&qt_left_hand_scrollbars ) | 1381 | if (&qt_left_hand_scrollbars ) |
1405 | qt_left_hand_scrollbars = config.readBoolEntry( "LeftHand", false ); | 1382 | qt_left_hand_scrollbars = config.readBoolEntry( "LeftHand", false ); |
1406 | 1383 | ||
1407 | // Window Decoration | 1384 | // Window Decoration |
1408 | QString dec = config.readEntry( "Decoration", "Flat" ); | 1385 | QString dec = config.readEntry( "Decoration", "Flat" ); |
1409 | 1386 | ||
1410 | // don't set a custom deco | ||
1411 | if ( nostyle & Opie::Force_Decoration ) | ||
1412 | dec = ""; | ||
1413 | |||
1414 | |||
1415 | if ( dec != d->decorationName ) { | 1387 | if ( dec != d->decorationName ) { |
1416 | qwsSetDecoration( new QPEDecoration( dec ) ); | 1388 | qwsSetDecoration( new QPEDecoration( dec ) ); |
1417 | d->decorationName = dec; | 1389 | d->decorationName = dec; |
1418 | } | 1390 | } |
1419 | 1391 | ||
1420 | // Font | 1392 | // Font |
1421 | QString ff = config.readEntry( "FontFamily", font().family() ); | 1393 | QString ff = config.readEntry( "FontFamily", font().family() ); |
1422 | int fs = config.readNumEntry( "FontSize", font().pointSize() ); | 1394 | int fs = config.readNumEntry( "FontSize", font().pointSize() ); |
1423 | 1395 | ||
1424 | // don't set a custom font | ||
1425 | if ( nostyle & Opie::Force_Font ) { | ||
1426 | ff = "Vera"; | ||
1427 | fs = 10; | ||
1428 | } | ||
1429 | |||
1430 | setFont ( QFont ( ff, fs ), true ); | 1396 | setFont ( QFont ( ff, fs ), true ); |
1431 | |||
1432 | #if !defined(OPIE_NO_OVERRIDE_QT) | ||
1433 | // revert to global blocking policy ... | ||
1434 | Opie::force_appearance = config. readBoolEntry ( "ForceStyle", false ) ? Opie::Force_All : Opie::Force_None; | ||
1435 | Opie::force_appearance &= ~nostyle; | ||
1436 | #endif | ||
1437 | #endif | 1397 | #endif |
1438 | } | 1398 | } |
1439 | 1399 | ||
1440 | void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data ) | 1400 | void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data ) |
1441 | { | 1401 | { |
1442 | #ifdef Q_WS_QWS | 1402 | #ifdef Q_WS_QWS |
1443 | QDataStream stream( data, IO_ReadOnly ); | 1403 | QDataStream stream( data, IO_ReadOnly ); |
1444 | if ( msg == "applyStyle()" ) { | 1404 | if ( msg == "applyStyle()" ) { |
1445 | applyStyle(); | 1405 | applyStyle(); |
1446 | } | 1406 | } |
1447 | else if ( msg == "toggleApplicationMenu()" ) { | 1407 | else if ( msg == "toggleApplicationMenu()" ) { |
1448 | QWidget *active = activeWindow ( ); | 1408 | QWidget *active = activeWindow ( ); |
1449 | 1409 | ||
1450 | if ( active ) { | 1410 | if ( active ) { |
1451 | QPEMenuToolFocusManager *man = QPEMenuToolFocusManager::manager ( ); | 1411 | QPEMenuToolFocusManager *man = QPEMenuToolFocusManager::manager ( ); |
1452 | bool oldactive = man-> isActive ( ); | 1412 | bool oldactive = man-> isActive ( ); |
1453 | 1413 | ||
1454 | man-> setActive( !man-> isActive() ); | 1414 | man-> setActive( !man-> isActive() ); |
1455 | 1415 | ||
1456 | if ( !oldactive && !man-> isActive ( )) { // no menubar to toggle -> try O-Menu | 1416 | if ( !oldactive && !man-> isActive ( )) { // no menubar to toggle -> try O-Menu |
1457 | QCopEnvelope e ( "QPE/TaskBar", "toggleStartMenu()" ); | 1417 | QCopEnvelope e ( "QPE/TaskBar", "toggleStartMenu()" ); |
1458 | } | 1418 | } |
1459 | } | 1419 | } |
1460 | } | 1420 | } |
1461 | else if ( msg == "setDefaultRotation(int)" ) { | 1421 | else if ( msg == "setDefaultRotation(int)" ) { |
1462 | if ( type() == GuiServer ) { | 1422 | if ( type() == GuiServer ) { |
1463 | int r; | 1423 | int r; |
1464 | stream >> r; | 1424 | stream >> r; |
1465 | setDefaultRotation( r ); | 1425 | setDefaultRotation( r ); |
1466 | } | 1426 | } |
1467 | } | 1427 | } |
1468 | else if ( msg == "setCurrentMode(int,int,int)" ) { // Added: 2003-06-11 by Tim Ansell <mithro@mithis.net> | 1428 | else if ( msg == "setCurrentMode(int,int,int)" ) { // Added: 2003-06-11 by Tim Ansell <mithro@mithis.net> |
1469 | if ( type() == GuiServer ) { | 1429 | if ( type() == GuiServer ) { |
1470 | int x, y, depth; | 1430 | int x, y, depth; |
1471 | stream >> x; | 1431 | stream >> x; |
1472 | stream >> y; | 1432 | stream >> y; |
1473 | stream >> depth; | 1433 | stream >> depth; |
1474 | setCurrentMode( x, y, depth ); | 1434 | setCurrentMode( x, y, depth ); |
1475 | } | 1435 | } |
1476 | } | 1436 | } |
1477 | else if ( msg == "reset()" ) { | 1437 | else if ( msg == "reset()" ) { |
1478 | if ( type() != GuiServer ) | 1438 | if ( type() != GuiServer ) |
1479 | reset(); | 1439 | reset(); |
1480 | } | 1440 | } |
1481 | else if ( msg == "setCurrentRotation(int)" ) { | 1441 | else if ( msg == "setCurrentRotation(int)" ) { |
1482 | int r; | 1442 | int r; |
1483 | stream >> r; | 1443 | stream >> r; |
1484 | setCurrentRotation( r ); | 1444 | setCurrentRotation( r ); |
1485 | } | 1445 | } |
1486 | else if ( msg == "shutdown()" ) { | 1446 | else if ( msg == "shutdown()" ) { |
1487 | if ( type() == GuiServer ) | 1447 | if ( type() == GuiServer ) |
1488 | shutdown(); | 1448 | shutdown(); |
1489 | } | 1449 | } |
1490 | else if ( msg == "quit()" ) { | 1450 | else if ( msg == "quit()" ) { |
1491 | if ( type() != GuiServer ) | 1451 | if ( type() != GuiServer ) |
1492 | tryQuit(); | 1452 | tryQuit(); |
1493 | } | 1453 | } |
1494 | else if ( msg == "forceQuit()" ) { | 1454 | else if ( msg == "forceQuit()" ) { |
1495 | if ( type() != GuiServer ) | 1455 | if ( type() != GuiServer ) |
1496 | quit(); | 1456 | quit(); |
1497 | } | 1457 | } |
1498 | else if ( msg == "restart()" ) { | 1458 | else if ( msg == "restart()" ) { |
1499 | if ( type() == GuiServer ) | 1459 | if ( type() == GuiServer ) |
1500 | restart(); | 1460 | restart(); |
1501 | } | 1461 | } |
1502 | else if ( msg == "language(QString)" ) { | 1462 | else if ( msg == "language(QString)" ) { |
1503 | if ( type() == GuiServer ) { | 1463 | if ( type() == GuiServer ) { |
1504 | QString l; | 1464 | QString l; |
1505 | stream >> l; | 1465 | stream >> l; |
1506 | QString cl = getenv( "LANG" ); | 1466 | QString cl = getenv( "LANG" ); |
1507 | if ( cl != l ) { | 1467 | if ( cl != l ) { |
1508 | if ( l.isNull() ) | 1468 | if ( l.isNull() ) |
1509 | unsetenv( "LANG" ); | 1469 | unsetenv( "LANG" ); |
1510 | else | 1470 | else |
1511 | setenv( "LANG", l.latin1(), 1 ); | 1471 | setenv( "LANG", l.latin1(), 1 ); |
1512 | restart(); | 1472 | restart(); |
1513 | } | 1473 | } |
1514 | } | 1474 | } |
1515 | } | 1475 | } |
1516 | else if ( msg == "timeChange(QString)" ) { | 1476 | else if ( msg == "timeChange(QString)" ) { |
1517 | QString t; | 1477 | QString t; |
1518 | stream >> t; | 1478 | stream >> t; |
1519 | if ( t.isNull() ) | 1479 | if ( t.isNull() ) |
1520 | unsetenv( "TZ" ); | 1480 | unsetenv( "TZ" ); |
1521 | else | 1481 | else |
1522 | setenv( "TZ", t.latin1(), 1 ); | 1482 | setenv( "TZ", t.latin1(), 1 ); |
1523 | // emit the signal so everyone else knows... | 1483 | // emit the signal so everyone else knows... |
1524 | emit timeChanged(); | 1484 | emit timeChanged(); |
1525 | } | 1485 | } |
1526 | else if ( msg == "addAlarm(QDateTime,QCString,QCString,int)" ) { | 1486 | else if ( msg == "addAlarm(QDateTime,QCString,QCString,int)" ) { |
1527 | if ( type() == GuiServer ) { | 1487 | if ( type() == GuiServer ) { |
1528 | QDateTime when; | 1488 | QDateTime when; |
1529 | QCString channel, message; | 1489 | QCString channel, message; |
1530 | int data; | 1490 | int data; |
1531 | stream >> when >> channel >> message >> data; | 1491 | stream >> when >> channel >> message >> data; |
1532 | AlarmServer::addAlarm( when, channel, message, data ); | 1492 | AlarmServer::addAlarm( when, channel, message, data ); |
1533 | } | 1493 | } |
1534 | } | 1494 | } |
1535 | else if ( msg == "deleteAlarm(QDateTime,QCString,QCString,int)" ) { | 1495 | else if ( msg == "deleteAlarm(QDateTime,QCString,QCString,int)" ) { |
1536 | if ( type() == GuiServer ) { | 1496 | if ( type() == GuiServer ) { |
1537 | QDateTime when; | 1497 | QDateTime when; |
1538 | QCString channel, message; | 1498 | QCString channel, message; |
1539 | int data; | 1499 | int data; |
1540 | stream >> when >> channel >> message >> data; | 1500 | stream >> when >> channel >> message >> data; |
1541 | AlarmServer::deleteAlarm( when, channel, message, data ); | 1501 | AlarmServer::deleteAlarm( when, channel, message, data ); |
1542 | } | 1502 | } |
1543 | } | 1503 | } |
1544 | else if ( msg == "clockChange(bool)" ) { | 1504 | else if ( msg == "clockChange(bool)" ) { |
1545 | int tmp; | 1505 | int tmp; |
1546 | stream >> tmp; | 1506 | stream >> tmp; |
1547 | emit clockChanged( tmp ); | 1507 | emit clockChanged( tmp ); |
1548 | } | 1508 | } |
1549 | else if ( msg == "weekChange(bool)" ) { | 1509 | else if ( msg == "weekChange(bool)" ) { |
1550 | int tmp; | 1510 | int tmp; |
1551 | stream >> tmp; | 1511 | stream >> tmp; |
1552 | emit weekChanged( tmp ); | 1512 | emit weekChanged( tmp ); |
1553 | } | 1513 | } |
1554 | else if ( msg == "setDateFormat(DateFormat)" ) { | 1514 | else if ( msg == "setDateFormat(DateFormat)" ) { |
1555 | DateFormat tmp; | 1515 | DateFormat tmp; |
1556 | stream >> tmp; | 1516 | stream >> tmp; |
1557 | emit dateFormatChanged( tmp ); | 1517 | emit dateFormatChanged( tmp ); |
1558 | } | 1518 | } |
1559 | else if ( msg == "setVolume(int,int)" ) { | 1519 | else if ( msg == "setVolume(int,int)" ) { |
1560 | int t, v; | 1520 | int t, v; |
1561 | stream >> t >> v; | 1521 | stream >> t >> v; |
1562 | setVolume( t, v ); | 1522 | setVolume( t, v ); |
1563 | emit volumeChanged( muted ); | 1523 | emit volumeChanged( muted ); |
1564 | } | 1524 | } |