-rw-r--r-- | library/qpeapplication.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index a54fb20..c8e6e74 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -1,1754 +1,1757 @@ | |||
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 | ** $Id$ | 19 | ** $Id$ |
20 | ** | 20 | ** |
21 | **********************************************************************/ | 21 | **********************************************************************/ |
22 | #define QTOPIA_INTERNAL_LANGLIST | 22 | #define QTOPIA_INTERNAL_LANGLIST |
23 | #include <stdlib.h> | 23 | #include <stdlib.h> |
24 | #include <unistd.h> | 24 | #include <unistd.h> |
25 | #include <qfile.h> | 25 | #include <qfile.h> |
26 | #ifdef Q_WS_QWS | 26 | #ifdef Q_WS_QWS |
27 | #ifndef QT_NO_COP | 27 | #ifndef QT_NO_COP |
28 | #if QT_VERSION <= 231 | 28 | #if QT_VERSION <= 231 |
29 | #define private public | 29 | #define private public |
30 | #define sendLocally processEvent | 30 | #define sendLocally processEvent |
31 | #include "qcopenvelope_qws.h" | 31 | #include "qcopenvelope_qws.h" |
32 | #undef private | 32 | #undef private |
33 | #else | 33 | #else |
34 | #include "qcopenvelope_qws.h" | 34 | #include "qcopenvelope_qws.h" |
35 | #endif | 35 | #endif |
36 | #endif | 36 | #endif |
37 | #include <qwindowsystem_qws.h> | 37 | #include <qwindowsystem_qws.h> |
38 | #endif | 38 | #endif |
39 | #include <qtextstream.h> | 39 | #include <qtextstream.h> |
40 | #include <qpalette.h> | 40 | #include <qpalette.h> |
41 | #include <qbuffer.h> | 41 | #include <qbuffer.h> |
42 | #include <qptrdict.h> | 42 | #include <qptrdict.h> |
43 | #include <qregexp.h> | 43 | #include <qregexp.h> |
44 | #include <qdir.h> | 44 | #include <qdir.h> |
45 | #include <qlabel.h> | 45 | #include <qlabel.h> |
46 | #include <qdialog.h> | 46 | #include <qdialog.h> |
47 | #include <qdragobject.h> | 47 | #include <qdragobject.h> |
48 | #include <qtextcodec.h> | 48 | #include <qtextcodec.h> |
49 | #include <qevent.h> | 49 | #include <qevent.h> |
50 | #include <qtooltip.h> | 50 | #include <qtooltip.h> |
51 | #include <qsignal.h> | 51 | #include <qsignal.h> |
52 | #include "qpeapplication.h" | 52 | #include "qpeapplication.h" |
53 | #include "qpestyle.h" | 53 | #include "qpestyle.h" |
54 | #include "styleinterface.h" | 54 | #include "styleinterface.h" |
55 | #if QT_VERSION >= 300 | 55 | #if QT_VERSION >= 300 |
56 | #include <qstylefactory.h> | 56 | #include <qstylefactory.h> |
57 | #else | 57 | #else |
58 | #include <qplatinumstyle.h> | 58 | #include <qplatinumstyle.h> |
59 | #include <qwindowsstyle.h> | 59 | #include <qwindowsstyle.h> |
60 | #include <qmotifstyle.h> | 60 | #include <qmotifstyle.h> |
61 | #include <qmotifplusstyle.h> | 61 | #include <qmotifplusstyle.h> |
62 | #include "lightstyle.h" | 62 | #include "lightstyle.h" |
63 | 63 | ||
64 | #include <qpe/qlibrary.h> | 64 | #include <qpe/qlibrary.h> |
65 | #endif | 65 | #endif |
66 | #include "global.h" | 66 | #include "global.h" |
67 | #include "resource.h" | 67 | #include "resource.h" |
68 | #if QT_VERSION <= 230 && defined(QT_NO_CODECS) | 68 | #if QT_VERSION <= 230 && defined(QT_NO_CODECS) |
69 | #include "qutfcodec.h" | 69 | #include "qutfcodec.h" |
70 | #endif | 70 | #endif |
71 | #include "config.h" | 71 | #include "config.h" |
72 | #include "network.h" | 72 | #include "network.h" |
73 | #ifdef QWS | 73 | #ifdef QWS |
74 | #include "fontmanager.h" | 74 | #include "fontmanager.h" |
75 | #endif | 75 | #endif |
76 | 76 | ||
77 | #include "alarmserver.h" | 77 | #include "alarmserver.h" |
78 | #include "applnk.h" | 78 | #include "applnk.h" |
79 | #include "qpemenubar.h" | 79 | #include "qpemenubar.h" |
80 | #include "textcodecinterface.h" | 80 | #include "textcodecinterface.h" |
81 | #include "imagecodecinterface.h" | 81 | #include "imagecodecinterface.h" |
82 | 82 | ||
83 | #include <unistd.h> | 83 | #include <unistd.h> |
84 | #include <sys/file.h> | 84 | #include <sys/file.h> |
85 | #include <sys/ioctl.h> | 85 | #include <sys/ioctl.h> |
86 | #include <sys/soundcard.h> | 86 | #include <sys/soundcard.h> |
87 | 87 | ||
88 | 88 | ||
89 | class QPEApplicationData | 89 | class QPEApplicationData |
90 | { | 90 | { |
91 | public: | 91 | public: |
92 | QPEApplicationData() : presstimer( 0 ), presswidget( 0 ), rightpressed( FALSE ), | 92 | QPEApplicationData() : presstimer( 0 ), presswidget( 0 ), rightpressed( FALSE ), |
93 | kbgrabber( 0 ), kbregrab( FALSE ), notbusysent( FALSE ), preloaded( FALSE ), | 93 | kbgrabber( 0 ), kbregrab( FALSE ), notbusysent( FALSE ), preloaded( FALSE ), |
94 | forceshow( FALSE ), nomaximize( FALSE ), qpe_main_widget( 0 ), | 94 | forceshow( FALSE ), nomaximize( FALSE ), qpe_main_widget( 0 ), |
95 | keep_running( TRUE ) | 95 | keep_running( TRUE ) |
96 | { | 96 | { |
97 | qcopq.setAutoDelete( TRUE ); | 97 | qcopq.setAutoDelete( TRUE ); |
98 | } | 98 | } |
99 | 99 | ||
100 | int presstimer; | 100 | int presstimer; |
101 | QWidget* presswidget; | 101 | QWidget* presswidget; |
102 | QPoint presspos; | 102 | QPoint presspos; |
103 | bool rightpressed : | 103 | bool rightpressed : |
104 | 1; // AEH why not use uint foobar :1; if it's tt style -zecke | 104 | 1; // AEH why not use uint foobar :1; if it's tt style -zecke |
105 | int kbgrabber; | 105 | int kbgrabber; |
106 | bool kbregrab : | 106 | bool kbregrab : |
107 | 1; | 107 | 1; |
108 | bool notbusysent : | 108 | bool notbusysent : |
109 | 1; | 109 | 1; |
110 | QString appName; | 110 | QString appName; |
111 | struct QCopRec | 111 | struct QCopRec |
112 | { | 112 | { |
113 | QCopRec( const QCString &ch, const QCString &msg, | 113 | QCopRec( const QCString &ch, const QCString &msg, |
114 | const QByteArray &d ) : | 114 | const QByteArray &d ) : |
115 | channel( ch ), message( msg ), data( d ) | 115 | channel( ch ), message( msg ), data( d ) |
116 | { } | 116 | { } |
117 | 117 | ||
118 | QCString channel; | 118 | QCString channel; |
119 | QCString message; | 119 | QCString message; |
120 | QByteArray data; | 120 | QByteArray data; |
121 | }; | 121 | }; |
122 | bool preloaded : | 122 | bool preloaded : |
123 | 1; | 123 | 1; |
124 | bool forceshow : | 124 | bool forceshow : |
125 | 1; | 125 | 1; |
126 | bool nomaximize : | 126 | bool nomaximize : |
127 | 1; | 127 | 1; |
128 | QWidget* qpe_main_widget; | 128 | QWidget* qpe_main_widget; |
129 | bool keep_running : | 129 | bool keep_running : |
130 | 1; | 130 | 1; |
131 | QList<QCopRec> qcopq; | 131 | QList<QCopRec> qcopq; |
132 | 132 | ||
133 | void enqueueQCop( const QCString &ch, const QCString &msg, | 133 | void enqueueQCop( const QCString &ch, const QCString &msg, |
134 | const QByteArray &data ) | 134 | const QByteArray &data ) |
135 | { | 135 | { |
136 | qcopq.append( new QCopRec( ch, msg, data ) ); | 136 | qcopq.append( new QCopRec( ch, msg, data ) ); |
137 | } | 137 | } |
138 | void sendQCopQ() | 138 | void sendQCopQ() |
139 | { | 139 | { |
140 | QCopRec * r; | 140 | QCopRec * r; |
141 | #ifndef QT_NO_COP | 141 | #ifndef QT_NO_COP |
142 | 142 | ||
143 | for ( QListIterator<QCopRec> it( qcopq ); ( r = it.current() ); ++it ) | 143 | for ( QListIterator<QCopRec> it( qcopq ); ( r = it.current() ); ++it ) |
144 | QCopChannel::sendLocally( r->channel, r->message, r->data ); | 144 | QCopChannel::sendLocally( r->channel, r->message, r->data ); |
145 | #endif | 145 | #endif |
146 | 146 | ||
147 | qcopq.clear(); | 147 | qcopq.clear(); |
148 | } | 148 | } |
149 | static void show_mx(QWidget* mw, bool nomaximize) | 149 | static void show_mx(QWidget* mw, bool nomaximize) |
150 | { | 150 | { |
151 | if ( mw->layout() && mw->inherits("QDialog") ) { | 151 | if ( mw->layout() && mw->inherits("QDialog") ) { |
152 | QPEApplication::showDialog((QDialog*)mw, nomaximize); | 152 | QPEApplication::showDialog((QDialog*)mw, nomaximize); |
153 | } | 153 | } |
154 | else { | 154 | else { |
155 | #ifdef Q_WS_QWS | 155 | #ifdef Q_WS_QWS |
156 | if ( !nomaximize ) | 156 | if ( !nomaximize ) |
157 | mw->showMaximized(); | 157 | mw->showMaximized(); |
158 | else | 158 | else |
159 | #endif | 159 | #endif |
160 | 160 | ||
161 | mw->show(); | 161 | mw->show(); |
162 | } | 162 | } |
163 | } | 163 | } |
164 | static bool setWidgetCaptionFromAppName( QWidget* /*mw*/, const QString& /*appName*/, const QString& /*appsPath*/ ) | 164 | static bool setWidgetCaptionFromAppName( QWidget* /*mw*/, const QString& /*appName*/, const QString& /*appsPath*/ ) |
165 | { | 165 | { |
166 | /* | 166 | /* |
167 | // This works but disable it for now until it is safe to apply | 167 | // This works but disable it for now until it is safe to apply |
168 | // What is does is scan the .desktop files of all the apps for | 168 | // What is does is scan the .desktop files of all the apps for |
169 | // the applnk that has the corresponding argv[0] as this program | 169 | // the applnk that has the corresponding argv[0] as this program |
170 | // then it uses the name stored in the .desktop file as the caption | 170 | // then it uses the name stored in the .desktop file as the caption |
171 | // for the main widget. This saves duplicating translations for | 171 | // for the main widget. This saves duplicating translations for |
172 | // the app name in the program and in the .desktop files. | 172 | // the app name in the program and in the .desktop files. |
173 | 173 | ||
174 | AppLnkSet apps( appsPath ); | 174 | AppLnkSet apps( appsPath ); |
175 | 175 | ||
176 | QList<AppLnk> appsList = apps.children(); | 176 | QList<AppLnk> appsList = apps.children(); |
177 | for ( QListIterator<AppLnk> it(appsList); it.current(); ++it ) { | 177 | for ( QListIterator<AppLnk> it(appsList); it.current(); ++it ) { |
178 | if ( (*it)->exec() == appName ) { | 178 | if ( (*it)->exec() == appName ) { |
179 | mw->setCaption( (*it)->name() ); | 179 | mw->setCaption( (*it)->name() ); |
180 | return TRUE; | 180 | return TRUE; |
181 | } | 181 | } |
182 | } | 182 | } |
183 | */ | 183 | */ |
184 | return FALSE; | 184 | return FALSE; |
185 | } | 185 | } |
186 | 186 | ||
187 | 187 | ||
188 | void show(QWidget* mw, bool nomax) | 188 | void show(QWidget* mw, bool nomax) |
189 | { | 189 | { |
190 | setWidgetCaptionFromAppName( mw, appName, QPEApplication::qpeDir() + "apps" ); | 190 | setWidgetCaptionFromAppName( mw, appName, QPEApplication::qpeDir() + "apps" ); |
191 | nomaximize = nomax; | 191 | nomaximize = nomax; |
192 | qpe_main_widget = mw; | 192 | qpe_main_widget = mw; |
193 | #ifndef QT_NO_COP | 193 | #ifndef QT_NO_COP |
194 | 194 | ||
195 | sendQCopQ(); | 195 | sendQCopQ(); |
196 | #endif | 196 | #endif |
197 | 197 | ||
198 | if ( preloaded ) { | 198 | if ( preloaded ) { |
199 | if (forceshow) | 199 | if (forceshow) |
200 | show_mx(mw, nomax); | 200 | show_mx(mw, nomax); |
201 | } | 201 | } |
202 | else if ( keep_running ) { | 202 | else if ( keep_running ) { |
203 | show_mx(mw, nomax); | 203 | show_mx(mw, nomax); |
204 | } | 204 | } |
205 | } | 205 | } |
206 | 206 | ||
207 | void loadTextCodecs() | 207 | void loadTextCodecs() |
208 | { | 208 | { |
209 | QString path = QPEApplication::qpeDir() + "/plugins/textcodecs"; | 209 | QString path = QPEApplication::qpeDir() + "/plugins/textcodecs"; |
210 | QDir dir( path, "lib*.so" ); | 210 | QDir dir( path, "lib*.so" ); |
211 | QStringList list = dir.entryList(); | 211 | QStringList list = dir.entryList(); |
212 | QStringList::Iterator it; | 212 | QStringList::Iterator it; |
213 | for ( it = list.begin(); it != list.end(); ++it ) { | 213 | for ( it = list.begin(); it != list.end(); ++it ) { |
214 | TextCodecInterface *iface = 0; | 214 | TextCodecInterface *iface = 0; |
215 | QLibrary *lib = new QLibrary( path + "/" + *it ); | 215 | QLibrary *lib = new QLibrary( path + "/" + *it ); |
216 | if ( lib->queryInterface( IID_QtopiaTextCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { | 216 | if ( lib->queryInterface( IID_QtopiaTextCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { |
217 | QValueList<int> mibs = iface->mibEnums(); | 217 | QValueList<int> mibs = iface->mibEnums(); |
218 | for (QValueList<int>::ConstIterator i = mibs.begin(); i != mibs.end(); ++i) { | 218 | for (QValueList<int>::ConstIterator i = mibs.begin(); i != mibs.end(); ++i) { |
219 | (void)iface->createForMib(*i); | 219 | (void)iface->createForMib(*i); |
220 | // ### it exists now; need to remember if we can delete it | 220 | // ### it exists now; need to remember if we can delete it |
221 | } | 221 | } |
222 | } | 222 | } |
223 | else { | 223 | else { |
224 | lib->unload(); | 224 | lib->unload(); |
225 | delete lib; | 225 | delete lib; |
226 | } | 226 | } |
227 | } | 227 | } |
228 | } | 228 | } |
229 | 229 | ||
230 | void loadImageCodecs() | 230 | void loadImageCodecs() |
231 | { | 231 | { |
232 | QString path = QPEApplication::qpeDir() + "/plugins/imagecodecs"; | 232 | QString path = QPEApplication::qpeDir() + "/plugins/imagecodecs"; |
233 | QDir dir( path, "lib*.so" ); | 233 | QDir dir( path, "lib*.so" ); |
234 | QStringList list = dir.entryList(); | 234 | QStringList list = dir.entryList(); |
235 | QStringList::Iterator it; | 235 | QStringList::Iterator it; |
236 | for ( it = list.begin(); it != list.end(); ++it ) { | 236 | for ( it = list.begin(); it != list.end(); ++it ) { |
237 | ImageCodecInterface *iface = 0; | 237 | ImageCodecInterface *iface = 0; |
238 | QLibrary *lib = new QLibrary( path + "/" + *it ); | 238 | QLibrary *lib = new QLibrary( path + "/" + *it ); |
239 | if ( lib->queryInterface( IID_QtopiaImageCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { | 239 | if ( lib->queryInterface( IID_QtopiaImageCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { |
240 | QStringList formats = iface->keys(); | 240 | QStringList formats = iface->keys(); |
241 | for (QStringList::ConstIterator i = formats.begin(); i != formats.end(); ++i) { | 241 | for (QStringList::ConstIterator i = formats.begin(); i != formats.end(); ++i) { |
242 | (void)iface->installIOHandler(*i); | 242 | (void)iface->installIOHandler(*i); |
243 | // ### it exists now; need to remember if we can delete it | 243 | // ### it exists now; need to remember if we can delete it |
244 | } | 244 | } |
245 | } | 245 | } |
246 | else { | 246 | else { |
247 | lib->unload(); | 247 | lib->unload(); |
248 | delete lib; | 248 | delete lib; |
249 | } | 249 | } |
250 | } | 250 | } |
251 | } | 251 | } |
252 | QString styleName; | 252 | QString styleName; |
253 | QString decorationName; | 253 | QString decorationName; |
254 | }; | 254 | }; |
255 | 255 | ||
256 | class ResourceMimeFactory : public QMimeSourceFactory | 256 | class ResourceMimeFactory : public QMimeSourceFactory |
257 | { | 257 | { |
258 | public: | 258 | public: |
259 | ResourceMimeFactory() | 259 | ResourceMimeFactory() |
260 | { | 260 | { |
261 | setFilePath( Global::helpPath() ); | 261 | setFilePath( Global::helpPath() ); |
262 | setExtensionType( "html", "text/html;charset=UTF-8" ); | 262 | setExtensionType( "html", "text/html;charset=UTF-8" ); |
263 | } | 263 | } |
264 | 264 | ||
265 | const QMimeSource* data( const QString& abs_name ) const | 265 | const QMimeSource* data( const QString& abs_name ) const |
266 | { | 266 | { |
267 | const QMimeSource * r = QMimeSourceFactory::data( abs_name ); | 267 | const QMimeSource * r = QMimeSourceFactory::data( abs_name ); |
268 | if ( !r ) { | 268 | if ( !r ) { |
269 | int sl = abs_name.length(); | 269 | int sl = abs_name.length(); |
270 | do { | 270 | do { |
271 | sl = abs_name.findRev( '/', sl - 1 ); | 271 | sl = abs_name.findRev( '/', sl - 1 ); |
272 | QString name = sl >= 0 ? abs_name.mid( sl + 1 ) : abs_name; | 272 | QString name = sl >= 0 ? abs_name.mid( sl + 1 ) : abs_name; |
273 | int dot = name.findRev( '.' ); | 273 | int dot = name.findRev( '.' ); |
274 | if ( dot >= 0 ) | 274 | if ( dot >= 0 ) |
275 | name = name.left( dot ); | 275 | name = name.left( dot ); |
276 | QImage img = Resource::loadImage( name ); | 276 | QImage img = Resource::loadImage( name ); |
277 | if ( !img.isNull() ) | 277 | if ( !img.isNull() ) |
278 | r = new QImageDrag( img ); | 278 | r = new QImageDrag( img ); |
279 | } | 279 | } |
280 | while ( !r && sl > 0 ); | 280 | while ( !r && sl > 0 ); |
281 | } | 281 | } |
282 | return r; | 282 | return r; |
283 | } | 283 | } |
284 | }; | 284 | }; |
285 | 285 | ||
286 | static int muted = 0; | 286 | static int muted = 0; |
287 | static int micMuted = 0; | 287 | static int micMuted = 0; |
288 | 288 | ||
289 | static void setVolume( int t = 0, int percent = -1 ) | 289 | static void setVolume( int t = 0, int percent = -1 ) |
290 | { | 290 | { |
291 | switch ( t ) { | 291 | switch ( t ) { |
292 | case 0: { | 292 | case 0: { |
293 | Config cfg( "qpe" ); | 293 | Config cfg( "qpe" ); |
294 | cfg.setGroup( "Volume" ); | 294 | cfg.setGroup( "Volume" ); |
295 | if ( percent < 0 ) | 295 | if ( percent < 0 ) |
296 | percent = cfg.readNumEntry( "VolumePercent", 50 ); | 296 | percent = cfg.readNumEntry( "VolumePercent", 50 ); |
297 | int fd = 0; | 297 | int fd = 0; |
298 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 298 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
299 | int vol = muted ? 0 : percent; | 299 | int vol = muted ? 0 : percent; |
300 | // set both channels to same volume | 300 | // set both channels to same volume |
301 | vol |= vol << 8; | 301 | vol |= vol << 8; |
302 | ioctl( fd, MIXER_WRITE( 0 ), &vol ); | 302 | ioctl( fd, MIXER_WRITE( 0 ), &vol ); |
303 | ::close( fd ); | 303 | ::close( fd ); |
304 | } | 304 | } |
305 | } | 305 | } |
306 | break; | 306 | break; |
307 | } | 307 | } |
308 | } | 308 | } |
309 | 309 | ||
310 | static void setMic( int t = 0, int percent = -1 ) | 310 | static void setMic( int t = 0, int percent = -1 ) |
311 | { | 311 | { |
312 | switch ( t ) { | 312 | switch ( t ) { |
313 | case 0: { | 313 | case 0: { |
314 | Config cfg( "qpe" ); | 314 | Config cfg( "qpe" ); |
315 | cfg.setGroup( "Volume" ); | 315 | cfg.setGroup( "Volume" ); |
316 | if ( percent < 0 ) | 316 | if ( percent < 0 ) |
317 | percent = cfg.readNumEntry( "Mic", 50 ); | 317 | percent = cfg.readNumEntry( "Mic", 50 ); |
318 | 318 | ||
319 | int fd = 0; | 319 | int fd = 0; |
320 | int mic = micMuted ? 0 : percent; | 320 | int mic = micMuted ? 0 : percent; |
321 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 321 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
322 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_MIC ), &mic ); | 322 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_MIC ), &mic ); |
323 | ::close( fd ); | 323 | ::close( fd ); |
324 | } | 324 | } |
325 | } | 325 | } |
326 | break; | 326 | break; |
327 | } | 327 | } |
328 | } | 328 | } |
329 | 329 | ||
330 | 330 | ||
331 | /*! | 331 | /*! |
332 | \class QPEApplication qpeapplication.h | 332 | \class QPEApplication qpeapplication.h |
333 | \brief The QPEApplication class implements various system services | 333 | \brief The QPEApplication class implements various system services |
334 | that are available to all Qtopia applications. | 334 | that are available to all Qtopia applications. |
335 | 335 | ||
336 | Simply by using QPEApplication instead of QApplication, a standard Qt | 336 | Simply by using QPEApplication instead of QApplication, a standard Qt |
337 | application becomes a Qtopia application. It automatically follows | 337 | application becomes a Qtopia application. It automatically follows |
338 | style changes, quits and raises, and in the | 338 | style changes, quits and raises, and in the |
339 | case of \link docwidget.html document-oriented\endlink applications, | 339 | case of \link docwidget.html document-oriented\endlink applications, |
340 | changes the currently displayed document in response to the environment. | 340 | changes the currently displayed document in response to the environment. |
341 | 341 | ||
342 | To create a \link docwidget.html document-oriented\endlink | 342 | To create a \link docwidget.html document-oriented\endlink |
343 | application use showMainDocumentWidget(); to create a | 343 | application use showMainDocumentWidget(); to create a |
344 | non-document-oriented application use showMainWidget(). The | 344 | non-document-oriented application use showMainWidget(). The |
345 | keepRunning() function indicates whether the application will | 345 | keepRunning() function indicates whether the application will |
346 | continue running after it's processed the last \link qcop.html | 346 | continue running after it's processed the last \link qcop.html |
347 | QCop\endlink message. This can be changed using setKeepRunning(). | 347 | QCop\endlink message. This can be changed using setKeepRunning(). |
348 | 348 | ||
349 | A variety of signals are emitted when certain events occur, for | 349 | A variety of signals are emitted when certain events occur, for |
350 | example, timeChanged(), clockChanged(), weekChanged(), | 350 | example, timeChanged(), clockChanged(), weekChanged(), |
351 | dateFormatChanged() and volumeChanged(). If the application receives | 351 | dateFormatChanged() and volumeChanged(). If the application receives |
352 | a \link qcop.html QCop\endlink message on the application's | 352 | a \link qcop.html QCop\endlink message on the application's |
353 | QPE/Application/\e{appname} channel, the appMessage() signal is | 353 | QPE/Application/\e{appname} channel, the appMessage() signal is |
354 | emitted. There are also flush() and reload() signals, which | 354 | emitted. There are also flush() and reload() signals, which |
355 | are emitted when synching begins and ends respectively - upon these | 355 | are emitted when synching begins and ends respectively - upon these |
356 | signals, the application should save and reload any data | 356 | signals, the application should save and reload any data |
357 | files that are involved in synching. Most of these signals will initially | 357 | files that are involved in synching. Most of these signals will initially |
358 | be received and unfiltered through the appMessage() signal. | 358 | be received and unfiltered through the appMessage() signal. |
359 | 359 | ||
360 | This class also provides a set of useful static functions. The | 360 | This class also provides a set of useful static functions. The |
361 | qpeDir() and documentDir() functions return the respective paths. | 361 | qpeDir() and documentDir() functions return the respective paths. |
362 | The grabKeyboard() and ungrabKeyboard() functions are used to | 362 | The grabKeyboard() and ungrabKeyboard() functions are used to |
363 | control whether the application takes control of the device's | 363 | control whether the application takes control of the device's |
364 | physical buttons (e.g. application launch keys). The stylus' mode of | 364 | physical buttons (e.g. application launch keys). The stylus' mode of |
365 | operation is set with setStylusOperation() and retrieved with | 365 | operation is set with setStylusOperation() and retrieved with |
366 | stylusOperation(). There are also setInputMethodHint() and | 366 | stylusOperation(). There are also setInputMethodHint() and |
367 | inputMethodHint() functions. | 367 | inputMethodHint() functions. |
368 | 368 | ||
369 | \ingroup qtopiaemb | 369 | \ingroup qtopiaemb |
370 | */ | 370 | */ |
371 | 371 | ||
372 | /*! | 372 | /*! |
373 | \fn void QPEApplication::clientMoused() | 373 | \fn void QPEApplication::clientMoused() |
374 | 374 | ||
375 | \internal | 375 | \internal |
376 | */ | 376 | */ |
377 | 377 | ||
378 | /*! | 378 | /*! |
379 | \fn void QPEApplication::timeChanged(); | 379 | \fn void QPEApplication::timeChanged(); |
380 | This signal is emitted when the time changes outside the normal | 380 | This signal is emitted when the time changes outside the normal |
381 | passage of time, i.e. if the time is set backwards or forwards. | 381 | passage of time, i.e. if the time is set backwards or forwards. |
382 | */ | 382 | */ |
383 | 383 | ||
384 | /*! | 384 | /*! |
385 | \fn void QPEApplication::clockChanged( bool ampm ); | 385 | \fn void QPEApplication::clockChanged( bool ampm ); |
386 | 386 | ||
387 | This signal is emitted when the user changes the clock's style. If | 387 | This signal is emitted when the user changes the clock's style. If |
388 | \a ampm is TRUE, the user wants a 12-hour AM/PM clock, otherwise, | 388 | \a ampm is TRUE, the user wants a 12-hour AM/PM clock, otherwise, |
389 | they want a 24-hour clock. | 389 | they want a 24-hour clock. |
390 | */ | 390 | */ |
391 | 391 | ||
392 | /*! | 392 | /*! |
393 | \fn void QPEApplication::volumeChanged( bool muted ) | 393 | \fn void QPEApplication::volumeChanged( bool muted ) |
394 | 394 | ||
395 | This signal is emitted whenever the mute state is changed. If \a | 395 | This signal is emitted whenever the mute state is changed. If \a |
396 | muted is TRUE, then sound output has been muted. | 396 | muted is TRUE, then sound output has been muted. |
397 | */ | 397 | */ |
398 | 398 | ||
399 | /*! | 399 | /*! |
400 | \fn void QPEApplication::weekChanged( bool startOnMonday ) | 400 | \fn void QPEApplication::weekChanged( bool startOnMonday ) |
401 | 401 | ||
402 | This signal is emitted if the week start day is changed. If \a | 402 | This signal is emitted if the week start day is changed. If \a |
403 | startOnMonday is TRUE then the first day of the week is Monday; if | 403 | startOnMonday is TRUE then the first day of the week is Monday; if |
404 | \a startOnMonday is FALSE then the first day of the week is | 404 | \a startOnMonday is FALSE then the first day of the week is |
405 | Sunday. | 405 | Sunday. |
406 | */ | 406 | */ |
407 | 407 | ||
408 | /*! | 408 | /*! |
409 | \fn void QPEApplication::dateFormatChanged() | 409 | \fn void QPEApplication::dateFormatChanged() |
410 | 410 | ||
411 | This signal is emitted whenever the date format is changed. | 411 | This signal is emitted whenever the date format is changed. |
412 | */ | 412 | */ |
413 | 413 | ||
414 | /*! | 414 | /*! |
415 | \fn void QPEApplication::flush() | 415 | \fn void QPEApplication::flush() |
416 | 416 | ||
417 | ### | 417 | ### |
418 | */ | 418 | */ |
419 | 419 | ||
420 | /*! | 420 | /*! |
421 | \fn void QPEApplication::reload() | 421 | \fn void QPEApplication::reload() |
422 | 422 | ||
423 | */ | 423 | */ |
424 | 424 | ||
425 | /*! | 425 | /*! |
426 | \fn void QPEApplication::appMessage( const QCString& msg, const QByteArray& data ) | 426 | \fn void QPEApplication::appMessage( const QCString& msg, const QByteArray& data ) |
427 | 427 | ||
428 | This signal is emitted when a message is received on this | 428 | This signal is emitted when a message is received on this |
429 | application's QPE/Application/<i>appname</i> \link qcop.html | 429 | application's QPE/Application/<i>appname</i> \link qcop.html |
430 | QCop\endlink channel. | 430 | QCop\endlink channel. |
431 | 431 | ||
432 | The slot to which you connect this signal uses \a msg and \a data | 432 | The slot to which you connect this signal uses \a msg and \a data |
433 | in the following way: | 433 | in the following way: |
434 | 434 | ||
435 | \code | 435 | \code |
436 | void MyWidget::receive( const QCString& msg, const QByteArray& data ) | 436 | void MyWidget::receive( const QCString& msg, const QByteArray& data ) |
437 | { | 437 | { |
438 | QDataStream stream( data, IO_ReadOnly ); | 438 | QDataStream stream( data, IO_ReadOnly ); |
439 | if ( msg == "someMessage(int,int,int)" ) { | 439 | if ( msg == "someMessage(int,int,int)" ) { |
440 | int a,b,c; | 440 | int a,b,c; |
441 | stream >> a >> b >> c; | 441 | stream >> a >> b >> c; |
442 | ... | 442 | ... |
443 | } else if ( msg == "otherMessage(QString)" ) { | 443 | } else if ( msg == "otherMessage(QString)" ) { |
444 | ... | 444 | ... |
445 | } | 445 | } |
446 | } | 446 | } |
447 | \endcode | 447 | \endcode |
448 | 448 | ||
449 | \sa qcop.html | 449 | \sa qcop.html |
450 | Note that messages received here may be processed by qpe application | 450 | Note that messages received here may be processed by qpe application |
451 | and emitted as signals, such as flush() and reload(). | 451 | and emitted as signals, such as flush() and reload(). |
452 | */ | 452 | */ |
453 | 453 | ||
454 | /*! | 454 | /*! |
455 | Constructs a QPEApplication just as you would construct | 455 | Constructs a QPEApplication just as you would construct |
456 | a QApplication, passing \a argc, \a argv, and \a t. | 456 | a QApplication, passing \a argc, \a argv, and \a t. |
457 | 457 | ||
458 | For applications, \a t should be the default, GuiClient. Only | 458 | For applications, \a t should be the default, GuiClient. Only |
459 | the Qtopia server passes GuiServer. | 459 | the Qtopia server passes GuiServer. |
460 | */ | 460 | */ |
461 | QPEApplication::QPEApplication( int & argc, char **argv, Type t ) | 461 | QPEApplication::QPEApplication( int & argc, char **argv, Type t ) |
462 | : QApplication( argc, argv, t ) | 462 | : QApplication( argc, argv, t ) |
463 | { | 463 | { |
464 | d = new QPEApplicationData; | 464 | d = new QPEApplicationData; |
465 | d->loadTextCodecs(); | 465 | d->loadTextCodecs(); |
466 | d->loadImageCodecs(); | 466 | d->loadImageCodecs(); |
467 | int dw = desktop() ->width(); | 467 | int dw = desktop() ->width(); |
468 | qWarning( "Width %d", dw ); | 468 | qWarning( "Width %d", dw ); |
469 | if ( dw < 200 ) { | 469 | if ( dw < 200 ) { |
470 | setFont( QFont( "helvetica", 8 ) ); | 470 | setFont( QFont( "helvetica", 8 ) ); |
471 | AppLnk::setSmallIconSize( 10 ); | 471 | AppLnk::setSmallIconSize( 10 ); |
472 | AppLnk::setBigIconSize( 28 ); | 472 | AppLnk::setBigIconSize( 28 ); |
473 | } | 473 | } |
474 | else if ( dw > 600 ) { | 474 | else if ( dw > 600 ) { |
475 | setFont( QFont( "helvetica", 12 ) ); | 475 | setFont( QFont( "helvetica", 12 ) ); |
476 | AppLnk::setSmallIconSize( 24 ); | 476 | AppLnk::setSmallIconSize( 24 ); |
477 | AppLnk::setBigIconSize( 48 ); | 477 | AppLnk::setBigIconSize( 48 ); |
478 | } | 478 | } |
479 | else if ( dw > 200 ) { | 479 | else if ( dw > 200 ) { |
480 | setFont( QFont( "helvetica", 10 ) ); | 480 | setFont( QFont( "helvetica", 10 ) ); |
481 | AppLnk::setSmallIconSize( 16 ); | 481 | AppLnk::setSmallIconSize( 16 ); |
482 | AppLnk::setBigIconSize( 32 ); | 482 | AppLnk::setBigIconSize( 32 ); |
483 | } | 483 | } |
484 | 484 | ||
485 | 485 | ||
486 | QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory ); | 486 | QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory ); |
487 | 487 | ||
488 | connect( this, SIGNAL( lastWindowClosed() ), this, SLOT( hideOrQuit() ) ); | 488 | connect( this, SIGNAL( lastWindowClosed() ), this, SLOT( hideOrQuit() ) ); |
489 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 489 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
490 | 490 | ||
491 | QString qcopfn( "/tmp/qcop-msg-" ); | 491 | QString qcopfn( "/tmp/qcop-msg-" ); |
492 | qcopfn += QString( argv[ 0 ] ); // append command name | 492 | qcopfn += QString( argv[ 0 ] ); // append command name |
493 | 493 | ||
494 | QFile f( qcopfn ); | 494 | QFile f( qcopfn ); |
495 | if ( f.open( IO_ReadOnly ) ) { | 495 | if ( f.open( IO_ReadOnly ) ) { |
496 | flock( f.handle(), LOCK_EX ); | 496 | flock( f.handle(), LOCK_EX ); |
497 | } | 497 | } |
498 | 498 | ||
499 | sysChannel = new QCopChannel( "QPE/System", this ); | 499 | sysChannel = new QCopChannel( "QPE/System", this ); |
500 | connect( sysChannel, SIGNAL( received( const QCString &, const QByteArray & ) ), | 500 | connect( sysChannel, SIGNAL( received( const QCString &, const QByteArray & ) ), |
501 | this, SLOT( systemMessage( const QCString &, const QByteArray & ) ) ); | 501 | this, SLOT( systemMessage( const QCString &, const QByteArray & ) ) ); |
502 | 502 | ||
503 | QCString channel = QCString( argv[ 0 ] ); | 503 | QCString channel = QCString( argv[ 0 ] ); |
504 | channel.replace( QRegExp( ".*/" ), "" ); | 504 | channel.replace( QRegExp( ".*/" ), "" ); |
505 | d->appName = channel; | 505 | d->appName = channel; |
506 | channel = "QPE/Application/" + channel; | 506 | channel = "QPE/Application/" + channel; |
507 | pidChannel = new QCopChannel( channel, this ); | 507 | pidChannel = new QCopChannel( channel, this ); |
508 | connect( pidChannel, SIGNAL( received( const QCString &, const QByteArray & ) ), | 508 | connect( pidChannel, SIGNAL( received( const QCString &, const QByteArray & ) ), |
509 | this, SLOT( pidMessage( const QCString &, const QByteArray & ) ) ); | 509 | this, SLOT( pidMessage( const QCString &, const QByteArray & ) ) ); |
510 | 510 | ||
511 | if ( f.isOpen() ) { | 511 | if ( f.isOpen() ) { |
512 | d->keep_running = FALSE; | 512 | d->keep_running = FALSE; |
513 | QDataStream ds( &f ); | 513 | QDataStream ds( &f ); |
514 | QCString channel, message; | 514 | QCString channel, message; |
515 | QByteArray data; | 515 | QByteArray data; |
516 | while ( !ds.atEnd() ) { | 516 | while ( !ds.atEnd() ) { |
517 | ds >> channel >> message >> data; | 517 | ds >> channel >> message >> data; |
518 | d->enqueueQCop( channel, message, data ); | 518 | d->enqueueQCop( channel, message, data ); |
519 | } | 519 | } |
520 | 520 | ||
521 | flock( f.handle(), LOCK_UN ); | 521 | flock( f.handle(), LOCK_UN ); |
522 | f.close(); | 522 | f.close(); |
523 | f.remove(); | 523 | f.remove(); |
524 | } | 524 | } |
525 | 525 | ||
526 | for ( int a = 0; a < argc; a++ ) { | 526 | for ( int a = 0; a < argc; a++ ) { |
527 | if ( qstrcmp( argv[ a ], "-preload" ) == 0 ) { | 527 | if ( qstrcmp( argv[ a ], "-preload" ) == 0 ) { |
528 | argv[ a ] = argv[ a + 1 ]; | 528 | argv[ a ] = argv[ a + 1 ]; |
529 | a++; | 529 | a++; |
530 | d->preloaded = TRUE; | 530 | d->preloaded = TRUE; |
531 | argc -= 1; | 531 | argc -= 1; |
532 | } | 532 | } |
533 | else if ( qstrcmp( argv[ a ], "-preload-show" ) == 0 ) { | 533 | else if ( qstrcmp( argv[ a ], "-preload-show" ) == 0 ) { |
534 | argv[ a ] = argv[ a + 1 ]; | 534 | argv[ a ] = argv[ a + 1 ]; |
535 | a++; | 535 | a++; |
536 | d->preloaded = TRUE; | 536 | d->preloaded = TRUE; |
537 | d->forceshow = TRUE; | 537 | d->forceshow = TRUE; |
538 | argc -= 1; | 538 | argc -= 1; |
539 | } | 539 | } |
540 | } | 540 | } |
541 | 541 | ||
542 | /* overide stored arguments */ | 542 | /* overide stored arguments */ |
543 | setArgs( argc, argv ); | 543 | setArgs( argc, argv ); |
544 | 544 | ||
545 | #endif | 545 | #endif |
546 | 546 | ||
547 | // qwsSetDecoration( new QPEDecoration() ); | 547 | // qwsSetDecoration( new QPEDecoration() ); |
548 | 548 | ||
549 | #ifndef QT_NO_TRANSLATION | 549 | #ifndef QT_NO_TRANSLATION |
550 | 550 | ||
551 | QStringList langs = Global::languageList(); | 551 | QStringList langs = Global::languageList(); |
552 | for ( QStringList::ConstIterator it = langs.begin(); it != langs.end(); ++it ) { | 552 | for ( QStringList::ConstIterator it = langs.begin(); it != langs.end(); ++it ) { |
553 | QString lang = *it; | 553 | QString lang = *it; |
554 | 554 | ||
555 | QTranslator * trans; | 555 | QTranslator * trans; |
556 | QString tfn; | 556 | QString tfn; |
557 | 557 | ||
558 | trans = new QTranslator( this ); | 558 | trans = new QTranslator( this ); |
559 | tfn = qpeDir() + "/i18n/" + lang + "/libqpe.qm"; | 559 | tfn = qpeDir() + "/i18n/" + lang + "/libqpe.qm"; |
560 | if ( trans->load( tfn ) ) | 560 | if ( trans->load( tfn ) ) |
561 | installTranslator( trans ); | 561 | installTranslator( trans ); |
562 | else | 562 | else |
563 | delete trans; | 563 | delete trans; |
564 | 564 | ||
565 | trans = new QTranslator( this ); | 565 | trans = new QTranslator( this ); |
566 | tfn = qpeDir() + "/i18n/" + lang + "/" + d->appName + ".qm"; | 566 | tfn = qpeDir() + "/i18n/" + lang + "/" + d->appName + ".qm"; |
567 | if ( trans->load( tfn ) ) | 567 | if ( trans->load( tfn ) ) |
568 | installTranslator( trans ); | 568 | installTranslator( trans ); |
569 | else | 569 | else |
570 | delete trans; | 570 | delete trans; |
571 | 571 | ||
572 | //###language/font hack; should look it up somewhere | 572 | //###language/font hack; should look it up somewhere |
573 | #ifdef QWS | 573 | #ifdef QWS |
574 | 574 | ||
575 | if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) { | 575 | if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) { |
576 | QFont fn = FontManager::unicodeFont( FontManager::Proportional ); | 576 | QFont fn = FontManager::unicodeFont( FontManager::Proportional ); |
577 | setFont( fn ); | 577 | setFont( fn ); |
578 | } | 578 | } |
579 | #endif | 579 | #endif |
580 | 580 | ||
581 | } | 581 | } |
582 | #endif | 582 | #endif |
583 | 583 | ||
584 | applyStyle(); | 584 | applyStyle(); |
585 | 585 | ||
586 | if ( type() == GuiServer ) { | 586 | if ( type() == GuiServer ) { |
587 | setVolume(); | 587 | setVolume(); |
588 | } | 588 | } |
589 | 589 | ||
590 | installEventFilter( this ); | 590 | installEventFilter( this ); |
591 | 591 | ||
592 | QPEMenuToolFocusManager::initialize(); | 592 | QPEMenuToolFocusManager::initialize(); |
593 | 593 | ||
594 | #ifdef QT_NO_QWS_CURSOR | 594 | #ifdef QT_NO_QWS_CURSOR |
595 | // if we have no cursor, probably don't want tooltips | 595 | // if we have no cursor, probably don't want tooltips |
596 | QToolTip::setEnabled( FALSE ); | 596 | QToolTip::setEnabled( FALSE ); |
597 | #endif | 597 | #endif |
598 | } | 598 | } |
599 | 599 | ||
600 | static QPtrDict<void>* inputMethodDict = 0; | 600 | static QPtrDict<void>* inputMethodDict = 0; |
601 | static void createInputMethodDict() | 601 | static void createInputMethodDict() |
602 | { | 602 | { |
603 | if ( !inputMethodDict ) | 603 | if ( !inputMethodDict ) |
604 | inputMethodDict = new QPtrDict<void>; | 604 | inputMethodDict = new QPtrDict<void>; |
605 | } | 605 | } |
606 | 606 | ||
607 | /*! | 607 | /*! |
608 | Returns the currently set hint to the system as to whether | 608 | Returns the currently set hint to the system as to whether |
609 | widget \a w has any use for text input methods. | 609 | widget \a w has any use for text input methods. |
610 | 610 | ||
611 | 611 | ||
612 | \sa setInputMethodHint() InputMethodHint | 612 | \sa setInputMethodHint() InputMethodHint |
613 | */ | 613 | */ |
614 | QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget * w ) | 614 | QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget * w ) |
615 | { | 615 | { |
616 | if ( inputMethodDict && w ) | 616 | if ( inputMethodDict && w ) |
617 | return ( InputMethodHint ) ( int ) inputMethodDict->find( w ); | 617 | return ( InputMethodHint ) ( int ) inputMethodDict->find( w ); |
618 | return Normal; | 618 | return Normal; |
619 | } | 619 | } |
620 | 620 | ||
621 | /*! | 621 | /*! |
622 | \enum QPEApplication::InputMethodHint | 622 | \enum QPEApplication::InputMethodHint |
623 | 623 | ||
624 | \value Normal the application sometimes needs text input (the default). | 624 | \value Normal the application sometimes needs text input (the default). |
625 | \value AlwaysOff the application never needs text input. | 625 | \value AlwaysOff the application never needs text input. |
626 | \value AlwaysOn the application always needs text input. | 626 | \value AlwaysOn the application always needs text input. |
627 | */ | 627 | */ |
628 | 628 | ||
629 | /*! | 629 | /*! |
630 | Hints to the system that widget \a w has use for text input methods | 630 | Hints to the system that widget \a w has use for text input methods |
631 | as specified by \a mode. | 631 | as specified by \a mode. |
632 | 632 | ||
633 | \sa inputMethodHint() InputMethodHint | 633 | \sa inputMethodHint() InputMethodHint |
634 | */ | 634 | */ |
635 | void QPEApplication::setInputMethodHint( QWidget * w, InputMethodHint mode ) | 635 | void QPEApplication::setInputMethodHint( QWidget * w, InputMethodHint mode ) |
636 | { | 636 | { |
637 | createInputMethodDict(); | 637 | createInputMethodDict(); |
638 | if ( mode == Normal ) { | 638 | if ( mode == Normal ) { |
639 | inputMethodDict->remove | 639 | inputMethodDict->remove |
640 | ( w ); | 640 | ( w ); |
641 | } | 641 | } |
642 | else { | 642 | else { |
643 | inputMethodDict->insert( w, ( void* ) mode ); | 643 | inputMethodDict->insert( w, ( void* ) mode ); |
644 | } | 644 | } |
645 | } | 645 | } |
646 | 646 | ||
647 | class HackDialog : public QDialog | 647 | class HackDialog : public QDialog |
648 | { | 648 | { |
649 | public: | 649 | public: |
650 | void acceptIt() | 650 | void acceptIt() |
651 | { | 651 | { |
652 | accept(); | 652 | accept(); |
653 | } | 653 | } |
654 | void rejectIt() | 654 | void rejectIt() |
655 | { | 655 | { |
656 | reject(); | 656 | reject(); |
657 | } | 657 | } |
658 | }; | 658 | }; |
659 | 659 | ||
660 | 660 | ||
661 | void QPEApplication::mapToDefaultAction( QWSKeyEvent * ke, int key ) | 661 | void QPEApplication::mapToDefaultAction( QWSKeyEvent * ke, int key ) |
662 | { | 662 | { |
663 | // specialised actions for certain widgets. May want to | 663 | // specialised actions for certain widgets. May want to |
664 | // add more stuff here. | 664 | // add more stuff here. |
665 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QListBox" ) | 665 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QListBox" ) |
666 | && activePopupWidget() ->parentWidget() | 666 | && activePopupWidget() ->parentWidget() |
667 | && activePopupWidget() ->parentWidget() ->inherits( "QComboBox" ) ) | 667 | && activePopupWidget() ->parentWidget() ->inherits( "QComboBox" ) ) |
668 | key = Qt::Key_Return; | 668 | key = Qt::Key_Return; |
669 | 669 | ||
670 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QPopupMenu" ) ) | 670 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QPopupMenu" ) ) |
671 | key = Qt::Key_Return; | 671 | key = Qt::Key_Return; |
672 | 672 | ||
673 | #ifdef QWS | 673 | #ifdef QWS |
674 | 674 | ||
675 | ke->simpleData.keycode = key; | 675 | ke->simpleData.keycode = key; |
676 | #endif | 676 | #endif |
677 | } | 677 | } |
678 | 678 | ||
679 | class HackWidget : public QWidget | 679 | class HackWidget : public QWidget |
680 | { | 680 | { |
681 | public: | 681 | public: |
682 | bool needsOk() | 682 | bool needsOk() |
683 | { | 683 | { |
684 | return ( getWState() & WState_Reserved1 ); | 684 | return ( getWState() & WState_Reserved1 ); |
685 | } | 685 | } |
686 | }; | 686 | }; |
687 | 687 | ||
688 | /*! | 688 | /*! |
689 | \internal | 689 | \internal |
690 | */ | 690 | */ |
691 | 691 | ||
692 | #ifdef QWS | 692 | #ifdef QWS |
693 | bool QPEApplication::qwsEventFilter( QWSEvent * e ) | 693 | bool QPEApplication::qwsEventFilter( QWSEvent * e ) |
694 | { | 694 | { |
695 | if ( !d->notbusysent && e->type == QWSEvent::Focus ) { | 695 | if ( !d->notbusysent && e->type == QWSEvent::Focus ) { |
696 | if ( qApp->type() != QApplication::GuiServer ) { | 696 | if ( qApp->type() != QApplication::GuiServer ) { |
697 | QCopEnvelope e( "QPE/System", "notBusy(QString)" ); | 697 | QCopEnvelope e( "QPE/System", "notBusy(QString)" ); |
698 | e << d->appName; | 698 | e << d->appName; |
699 | } | 699 | } |
700 | d->notbusysent = TRUE; | 700 | d->notbusysent = TRUE; |
701 | } | 701 | } |
702 | if ( type() == GuiServer ) { | 702 | if ( type() == GuiServer ) { |
703 | switch ( e->type ) { | 703 | switch ( e->type ) { |
704 | case QWSEvent::Mouse: | 704 | case QWSEvent::Mouse: |
705 | if ( e->asMouse() ->simpleData.state && !QWidget::find( e->window() ) ) | 705 | if ( e->asMouse() ->simpleData.state && !QWidget::find( e->window() ) ) |
706 | emit clientMoused(); | 706 | emit clientMoused(); |
707 | break; | 707 | break; |
708 | default: | 708 | default: |
709 | break; | 709 | break; |
710 | } | 710 | } |
711 | } | 711 | } |
712 | if ( e->type == QWSEvent::Key ) { | 712 | if ( e->type == QWSEvent::Key ) { |
713 | if ( d->kbgrabber == 1 ) | 713 | if ( d->kbgrabber == 1 ) |
714 | return TRUE; | 714 | return TRUE; |
715 | QWSKeyEvent *ke = ( QWSKeyEvent * ) e; | 715 | QWSKeyEvent *ke = ( QWSKeyEvent * ) e; |
716 | if ( ke->simpleData.keycode == Qt::Key_F33 ) { | 716 | if ( ke->simpleData.keycode == Qt::Key_F33 ) { |
717 | // Use special "OK" key to press "OK" on top level widgets | 717 | // Use special "OK" key to press "OK" on top level widgets |
718 | QWidget * active = activeWindow(); | 718 | QWidget * active = activeWindow(); |
719 | QWidget *popup = 0; | 719 | QWidget *popup = 0; |
720 | if ( active && active->isPopup() ) { | 720 | if ( active && active->isPopup() ) { |
721 | popup = active; | 721 | popup = active; |
722 | active = active->parentWidget(); | 722 | active = active->parentWidget(); |
723 | } | 723 | } |
724 | if ( active && ( int ) active->winId() == ke->simpleData.window && | 724 | if ( active && ( int ) active->winId() == ke->simpleData.window && |
725 | !active->testWFlags( WStyle_Customize | WType_Popup | WType_Desktop ) ) { | 725 | !active->testWFlags( WStyle_Customize | WType_Popup | WType_Desktop ) ) { |
726 | if ( ke->simpleData.is_press ) { | 726 | if ( ke->simpleData.is_press ) { |
727 | if ( popup ) | 727 | if ( popup ) |
728 | popup->close(); | 728 | popup->close(); |
729 | if ( active->inherits( "QDialog" ) ) { | 729 | if ( active->inherits( "QDialog" ) ) { |
730 | HackDialog * d = ( HackDialog * ) active; | 730 | HackDialog * d = ( HackDialog * ) active; |
731 | d->acceptIt(); | 731 | d->acceptIt(); |
732 | return TRUE; | 732 | return TRUE; |
733 | } | 733 | } |
734 | else if ( ( ( HackWidget * ) active ) ->needsOk() ) { | 734 | else if ( ( ( HackWidget * ) active ) ->needsOk() ) { |
735 | QSignal s; | 735 | QSignal s; |
736 | s.connect( active, SLOT( accept() ) ); | 736 | s.connect( active, SLOT( accept() ) ); |
737 | s.activate(); | 737 | s.activate(); |
738 | } | 738 | } |
739 | else { | 739 | else { |
740 | // do the same as with the select key: Map to the default action of the widget: | 740 | // do the same as with the select key: Map to the default action of the widget: |
741 | mapToDefaultAction( ke, Qt::Key_Return ); | 741 | mapToDefaultAction( ke, Qt::Key_Return ); |
742 | } | 742 | } |
743 | } | 743 | } |
744 | } | 744 | } |
745 | } | 745 | } |
746 | else if ( ke->simpleData.keycode == Qt::Key_F30 ) { | 746 | else if ( ke->simpleData.keycode == Qt::Key_F30 ) { |
747 | // Use special "select" key to do whatever default action a widget has | 747 | // Use special "select" key to do whatever default action a widget has |
748 | mapToDefaultAction( ke, Qt::Key_Space ); | 748 | mapToDefaultAction( ke, Qt::Key_Space ); |
749 | } | 749 | } |
750 | else if ( ke->simpleData.keycode == Qt::Key_Escape && | 750 | else if ( ke->simpleData.keycode == Qt::Key_Escape && |
751 | ke->simpleData.is_press ) { | 751 | ke->simpleData.is_press ) { |
752 | // Escape key closes app if focus on toplevel | 752 | // Escape key closes app if focus on toplevel |
753 | QWidget * active = activeWindow(); | 753 | QWidget * active = activeWindow(); |
754 | if ( active && active->testWFlags( WType_TopLevel ) && | 754 | if ( active && active->testWFlags( WType_TopLevel ) && |
755 | ( int ) active->winId() == ke->simpleData.window && | 755 | ( int ) active->winId() == ke->simpleData.window && |
756 | !active->testWFlags( WStyle_Dialog | WStyle_Customize | WType_Popup | WType_Desktop ) ) { | 756 | !active->testWFlags( WStyle_Dialog | WStyle_Customize | WType_Popup | WType_Desktop ) ) { |
757 | if ( active->inherits( "QDialog" ) ) { | 757 | if ( active->inherits( "QDialog" ) ) { |
758 | HackDialog * d = ( HackDialog * ) active; | 758 | HackDialog * d = ( HackDialog * ) active; |
759 | d->rejectIt(); | 759 | d->rejectIt(); |
760 | return TRUE; | 760 | return TRUE; |
761 | } | 761 | } |
762 | else if ( strcmp( argv() [ 0 ], "embeddedkonsole" ) != 0 ) { | 762 | else if ( strcmp( argv() [ 0 ], "embeddedkonsole" ) != 0 ) { |
763 | active->close(); | 763 | active->close(); |
764 | } | 764 | } |
765 | } | 765 | } |
766 | } | 766 | } |
767 | 767 | ||
768 | #if QT_VERSION < 231 | 768 | #if QT_VERSION < 231 |
769 | // Filter out the F4/Launcher key from apps | 769 | // Filter out the F4/Launcher key from apps |
770 | // ### The launcher key may not always be F4 on all devices | 770 | // ### The launcher key may not always be F4 on all devices |
771 | if ( ( ( QWSKeyEvent * ) e ) ->simpleData.keycode == Qt::Key_F4 ) | 771 | if ( ( ( QWSKeyEvent * ) e ) ->simpleData.keycode == Qt::Key_F4 ) |
772 | return TRUE; | 772 | return TRUE; |
773 | #endif | 773 | #endif |
774 | 774 | ||
775 | } | 775 | } |
776 | if ( e->type == QWSEvent::Focus ) { | 776 | if ( e->type == QWSEvent::Focus ) { |
777 | QWSFocusEvent * fe = ( QWSFocusEvent* ) e; | 777 | QWSFocusEvent * fe = ( QWSFocusEvent* ) e; |
778 | QWidget* nfw = QWidget::find( e->window() ); | 778 | QWidget* nfw = QWidget::find( e->window() ); |
779 | if ( !fe->simpleData.get_focus ) { | 779 | if ( !fe->simpleData.get_focus ) { |
780 | QWidget * active = activeWindow(); | 780 | QWidget * active = activeWindow(); |
781 | while ( active && active->isPopup() ) { | 781 | while ( active && active->isPopup() ) { |
782 | active->close(); | 782 | active->close(); |
783 | active = activeWindow(); | 783 | active = activeWindow(); |
784 | } | 784 | } |
785 | if ( !nfw && d->kbgrabber == 2 ) { | 785 | if ( !nfw && d->kbgrabber == 2 ) { |
786 | ungrabKeyboard(); | 786 | ungrabKeyboard(); |
787 | d->kbregrab = TRUE; // want kb back when we're active | 787 | d->kbregrab = TRUE; // want kb back when we're active |
788 | } | 788 | } |
789 | } | 789 | } |
790 | else { | 790 | else { |
791 | // make sure our modal widget is ALWAYS on top | 791 | // make sure our modal widget is ALWAYS on top |
792 | QWidget *topm = activeModalWidget(); | 792 | QWidget *topm = activeModalWidget(); |
793 | if ( topm ) { | 793 | if ( topm ) { |
794 | topm->raise(); | 794 | topm->raise(); |
795 | } | 795 | } |
796 | if ( d->kbregrab ) { | 796 | if ( d->kbregrab ) { |
797 | grabKeyboard(); | 797 | grabKeyboard(); |
798 | d->kbregrab = FALSE; | 798 | d->kbregrab = FALSE; |
799 | } | 799 | } |
800 | } | 800 | } |
801 | if ( fe->simpleData.get_focus && inputMethodDict ) { | 801 | if ( fe->simpleData.get_focus && inputMethodDict ) { |
802 | InputMethodHint m = inputMethodHint( QWidget::find( e->window() ) ); | 802 | InputMethodHint m = inputMethodHint( QWidget::find( e->window() ) ); |
803 | if ( m == AlwaysOff ) | 803 | if ( m == AlwaysOff ) |
804 | Global::hideInputMethod(); | 804 | Global::hideInputMethod(); |
805 | if ( m == AlwaysOn ) | 805 | if ( m == AlwaysOn ) |
806 | Global::showInputMethod(); | 806 | Global::showInputMethod(); |
807 | } | 807 | } |
808 | } | 808 | } |
809 | return QApplication::qwsEventFilter( e ); | 809 | return QApplication::qwsEventFilter( e ); |
810 | } | 810 | } |
811 | #endif | 811 | #endif |
812 | 812 | ||
813 | /*! | 813 | /*! |
814 | Destroys the QPEApplication. | 814 | Destroys the QPEApplication. |
815 | */ | 815 | */ |
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 ); |
1093 | } | 1096 | } |
1094 | } | 1097 | } |
1095 | else if ( msg == "clockChange(bool)" ) { | 1098 | else if ( msg == "clockChange(bool)" ) { |
1096 | int tmp; | 1099 | int tmp; |
1097 | stream >> tmp; | 1100 | stream >> tmp; |
1098 | emit clockChanged( tmp ); | 1101 | emit clockChanged( tmp ); |
1099 | } | 1102 | } |
1100 | else if ( msg == "weekChange(bool)" ) { | 1103 | else if ( msg == "weekChange(bool)" ) { |
1101 | int tmp; | 1104 | int tmp; |
1102 | stream >> tmp; | 1105 | stream >> tmp; |
1103 | emit weekChanged( tmp ); | 1106 | emit weekChanged( tmp ); |
1104 | } | 1107 | } |
1105 | else if ( msg == "setDateFormat(DateFormat)" ) { | 1108 | else if ( msg == "setDateFormat(DateFormat)" ) { |
1106 | DateFormat tmp; | 1109 | DateFormat tmp; |
1107 | stream >> tmp; | 1110 | stream >> tmp; |
1108 | emit dateFormatChanged( tmp ); | 1111 | emit dateFormatChanged( tmp ); |
1109 | } | 1112 | } |
1110 | else if ( msg == "setVolume(int,int)" ) { | 1113 | else if ( msg == "setVolume(int,int)" ) { |
1111 | int t, v; | 1114 | int t, v; |
1112 | stream >> t >> v; | 1115 | stream >> t >> v; |
1113 | setVolume( t, v ); | 1116 | setVolume( t, v ); |
1114 | emit volumeChanged( muted ); | 1117 | emit volumeChanged( muted ); |
1115 | } | 1118 | } |
1116 | else if ( msg == "volumeChange(bool)" ) { | 1119 | else if ( msg == "volumeChange(bool)" ) { |
1117 | stream >> muted; | 1120 | stream >> muted; |
1118 | setVolume(); | 1121 | setVolume(); |
1119 | emit volumeChanged( muted ); | 1122 | emit volumeChanged( muted ); |
1120 | } | 1123 | } |
1121 | else if ( msg == "setMic(int,int)" ) { // Added: 2002-02-08 by Jeremy Cowgar <jc@cowgar.com> | 1124 | else if ( msg == "setMic(int,int)" ) { // Added: 2002-02-08 by Jeremy Cowgar <jc@cowgar.com> |
1122 | int t, v; | 1125 | int t, v; |
1123 | stream >> t >> v; | 1126 | stream >> t >> v; |
1124 | setMic( t, v ); | 1127 | setMic( t, v ); |
1125 | emit micChanged( micMuted ); | 1128 | emit micChanged( micMuted ); |
1126 | } | 1129 | } |
1127 | else if ( msg == "micChange(bool)" ) { // Added: 2002-02-08 by Jeremy Cowgar <jc@cowgar.com> | 1130 | else if ( msg == "micChange(bool)" ) { // Added: 2002-02-08 by Jeremy Cowgar <jc@cowgar.com> |
1128 | stream >> micMuted; | 1131 | stream >> micMuted; |
1129 | setMic(); | 1132 | setMic(); |
1130 | emit micChanged( micMuted ); | 1133 | emit micChanged( micMuted ); |
1131 | } | 1134 | } |
1132 | #endif | 1135 | #endif |
1133 | } | 1136 | } |
1134 | 1137 | ||
1135 | /*! | 1138 | /*! |
1136 | \internal | 1139 | \internal |
1137 | */ | 1140 | */ |
1138 | bool QPEApplication::raiseAppropriateWindow() | 1141 | bool QPEApplication::raiseAppropriateWindow() |
1139 | { | 1142 | { |
1140 | bool r = FALSE; | 1143 | bool r = FALSE; |
1141 | // ########## raise()ing main window should raise and set active | 1144 | // ########## raise()ing main window should raise and set active |
1142 | // ########## it and then all childen. This belongs in Qt/Embedded | 1145 | // ########## it and then all childen. This belongs in Qt/Embedded |
1143 | QWidget *top = d->qpe_main_widget; | 1146 | QWidget *top = d->qpe_main_widget; |
1144 | if ( !top ) | 1147 | if ( !top ) |
1145 | top = mainWidget(); | 1148 | top = mainWidget(); |
1146 | if ( top && d->keep_running ) { | 1149 | if ( top && d->keep_running ) { |
1147 | if ( top->isVisible() ) | 1150 | if ( top->isVisible() ) |
1148 | r = TRUE; | 1151 | r = TRUE; |
1149 | else if (d->preloaded) { | 1152 | else if (d->preloaded) { |
1150 | // We are preloaded and not visible.. pretend we just started.. | 1153 | // We are preloaded and not visible.. pretend we just started.. |
1151 | QCopEnvelope e("QPE/System", "fastAppShowing(QString)"); | 1154 | QCopEnvelope e("QPE/System", "fastAppShowing(QString)"); |
1152 | e << d->appName; | 1155 | e << d->appName; |
1153 | } | 1156 | } |
1154 | 1157 | ||
1155 | d->show_mx(top, d->nomaximize); | 1158 | d->show_mx(top, d->nomaximize); |
1156 | top->raise(); | 1159 | top->raise(); |
1157 | top->setActiveWindow(); | 1160 | top->setActiveWindow(); |
1158 | } | 1161 | } |
1159 | QWidget *topm = activeModalWidget(); | 1162 | QWidget *topm = activeModalWidget(); |
1160 | if ( topm && topm != top ) { | 1163 | if ( topm && topm != top ) { |
1161 | topm->show(); | 1164 | topm->show(); |
1162 | topm->raise(); | 1165 | topm->raise(); |
1163 | topm->setActiveWindow(); | 1166 | topm->setActiveWindow(); |
1164 | // If we haven't already handled the fastAppShowing message | 1167 | // If we haven't already handled the fastAppShowing message |
1165 | if (!top && d->preloaded) { | 1168 | if (!top && d->preloaded) { |
1166 | QCopEnvelope e("QPE/System", "fastAppShowing(QString)"); | 1169 | QCopEnvelope e("QPE/System", "fastAppShowing(QString)"); |
1167 | e << d->appName; | 1170 | e << d->appName; |
1168 | } | 1171 | } |
1169 | r = FALSE; | 1172 | r = FALSE; |
1170 | } | 1173 | } |
1171 | return r; | 1174 | return r; |
1172 | } | 1175 | } |
1173 | 1176 | ||
1174 | void QPEApplication::pidMessage( const QCString& msg, const QByteArray& data) | 1177 | void QPEApplication::pidMessage( const QCString& msg, const QByteArray& data) |
1175 | { | 1178 | { |
1176 | #ifdef Q_WS_QWS | 1179 | #ifdef Q_WS_QWS |
1177 | 1180 | ||
1178 | if ( msg == "quit()" ) { | 1181 | if ( msg == "quit()" ) { |
1179 | tryQuit(); | 1182 | tryQuit(); |
1180 | } | 1183 | } |
1181 | else if ( msg == "quitIfInvisible()" ) { | 1184 | else if ( msg == "quitIfInvisible()" ) { |
1182 | if ( d->qpe_main_widget && !d->qpe_main_widget->isVisible() ) | 1185 | if ( d->qpe_main_widget && !d->qpe_main_widget->isVisible() ) |
1183 | quit(); | 1186 | quit(); |
1184 | } | 1187 | } |
1185 | else if ( msg == "close()" ) { | 1188 | else if ( msg == "close()" ) { |
1186 | hideOrQuit(); | 1189 | hideOrQuit(); |
1187 | } | 1190 | } |
1188 | else if ( msg == "disablePreload()" ) { | 1191 | else if ( msg == "disablePreload()" ) { |
1189 | d->preloaded = FALSE; | 1192 | d->preloaded = FALSE; |
1190 | d->keep_running = TRUE; | 1193 | d->keep_running = TRUE; |
1191 | /* so that quit will quit */ | 1194 | /* so that quit will quit */ |
1192 | } | 1195 | } |
1193 | else if ( msg == "enablePreload()" ) { | 1196 | else if ( msg == "enablePreload()" ) { |
1194 | if (d->qpe_main_widget) | 1197 | if (d->qpe_main_widget) |
1195 | d->preloaded = TRUE; | 1198 | d->preloaded = TRUE; |
1196 | d->keep_running = TRUE; | 1199 | d->keep_running = TRUE; |
1197 | /* so next quit won't quit */ | 1200 | /* so next quit won't quit */ |
1198 | } | 1201 | } |
1199 | else if ( msg == "raise()" ) { | 1202 | else if ( msg == "raise()" ) { |
1200 | d->keep_running = TRUE; | 1203 | d->keep_running = TRUE; |
1201 | d->notbusysent = FALSE; | 1204 | d->notbusysent = FALSE; |
1202 | raiseAppropriateWindow(); | 1205 | raiseAppropriateWindow(); |
1203 | // Tell the system we're still chugging along... | 1206 | // Tell the system we're still chugging along... |
1204 | QCopEnvelope e("QPE/System", "appRaised(QString)"); | 1207 | QCopEnvelope e("QPE/System", "appRaised(QString)"); |
1205 | e << d->appName; | 1208 | e << d->appName; |
1206 | } | 1209 | } |
1207 | else if ( msg == "flush()" ) { | 1210 | else if ( msg == "flush()" ) { |
1208 | emit flush(); | 1211 | emit flush(); |
1209 | // we need to tell the desktop | 1212 | // we need to tell the desktop |
1210 | QCopEnvelope e( "QPE/Desktop", "flushDone(QString)" ); | 1213 | QCopEnvelope e( "QPE/Desktop", "flushDone(QString)" ); |
1211 | e << d->appName; | 1214 | e << d->appName; |
1212 | } | 1215 | } |
1213 | else if ( msg == "reload()" ) { | 1216 | else if ( msg == "reload()" ) { |
1214 | emit reload(); | 1217 | emit reload(); |
1215 | } | 1218 | } |
1216 | else if ( msg == "setDocument(QString)" ) { | 1219 | else if ( msg == "setDocument(QString)" ) { |
1217 | d->keep_running = TRUE; | 1220 | d->keep_running = TRUE; |
1218 | QDataStream stream( data, IO_ReadOnly ); | 1221 | QDataStream stream( data, IO_ReadOnly ); |
1219 | QString doc; | 1222 | QString doc; |
1220 | stream >> doc; | 1223 | stream >> doc; |
1221 | QWidget *mw = mainWidget(); | 1224 | QWidget *mw = mainWidget(); |
1222 | if ( !mw ) | 1225 | if ( !mw ) |
1223 | mw = d->qpe_main_widget; | 1226 | mw = d->qpe_main_widget; |
1224 | if ( mw ) | 1227 | if ( mw ) |
1225 | Global::setDocument( mw, doc ); | 1228 | Global::setDocument( mw, doc ); |
1226 | } | 1229 | } |
1227 | else if ( msg == "nextView()" ) { | 1230 | else if ( msg == "nextView()" ) { |
1228 | qDebug("got nextView()"); | 1231 | qDebug("got nextView()"); |
1229 | /* | 1232 | /* |
1230 | if ( raiseAppropriateWindow() ) | 1233 | if ( raiseAppropriateWindow() ) |
1231 | */ | 1234 | */ |
1232 | emit appMessage( msg, data); | 1235 | emit appMessage( msg, data); |
1233 | } | 1236 | } |
1234 | else { | 1237 | else { |
1235 | emit appMessage( msg, data); | 1238 | emit appMessage( msg, data); |
1236 | } | 1239 | } |
1237 | 1240 | ||
1238 | #endif | 1241 | #endif |
1239 | } | 1242 | } |
1240 | 1243 | ||
1241 | 1244 | ||
1242 | /*! | 1245 | /*! |
1243 | Sets widget \a mw as the mainWidget() and shows it. For small windows, | 1246 | Sets widget \a mw as the mainWidget() and shows it. For small windows, |
1244 | consider passing TRUE for \a nomaximize rather than the default FALSE. | 1247 | consider passing TRUE for \a nomaximize rather than the default FALSE. |
1245 | 1248 | ||
1246 | \sa showMainDocumentWidget() | 1249 | \sa showMainDocumentWidget() |
1247 | */ | 1250 | */ |
1248 | void QPEApplication::showMainWidget( QWidget* mw, bool nomaximize ) | 1251 | void QPEApplication::showMainWidget( QWidget* mw, bool nomaximize ) |
1249 | { | 1252 | { |
1250 | d->show(mw, nomaximize ); | 1253 | d->show(mw, nomaximize ); |
1251 | } | 1254 | } |
1252 | 1255 | ||
1253 | /*! | 1256 | /*! |
1254 | Sets widget \a mw as the mainWidget() and shows it. For small windows, | 1257 | Sets widget \a mw as the mainWidget() and shows it. For small windows, |
1255 | consider passing TRUE for \a nomaximize rather than the default FALSE. | 1258 | consider passing TRUE for \a nomaximize rather than the default FALSE. |
1256 | 1259 | ||
1257 | This calls designates the application as | 1260 | This calls designates the application as |
1258 | a \link docwidget.html document-oriented\endlink application. | 1261 | a \link docwidget.html document-oriented\endlink application. |
1259 | 1262 | ||
1260 | The \a mw widget \e must have this slot: setDocument(const QString&). | 1263 | The \a mw widget \e must have this slot: setDocument(const QString&). |
1261 | 1264 | ||
1262 | \sa showMainWidget() | 1265 | \sa showMainWidget() |
1263 | */ | 1266 | */ |
1264 | void QPEApplication::showMainDocumentWidget( QWidget* mw, bool nomaximize ) | 1267 | void QPEApplication::showMainDocumentWidget( QWidget* mw, bool nomaximize ) |
1265 | { | 1268 | { |
1266 | if ( mw && argc() == 2 ) | 1269 | if ( mw && argc() == 2 ) |
1267 | Global::setDocument( mw, QString::fromUtf8(argv()[1]) ); | 1270 | Global::setDocument( mw, QString::fromUtf8(argv()[1]) ); |
1268 | 1271 | ||
1269 | d->show(mw, nomaximize ); | 1272 | d->show(mw, nomaximize ); |
1270 | } | 1273 | } |
1271 | 1274 | ||
1272 | 1275 | ||
1273 | /*! | 1276 | /*! |
1274 | If an application is started via a \link qcop.html QCop\endlink | 1277 | If an application is started via a \link qcop.html QCop\endlink |
1275 | message, the application will process the \link qcop.html | 1278 | message, the application will process the \link qcop.html |
1276 | QCop\endlink message and then quit. If the application calls this | 1279 | QCop\endlink message and then quit. If the application calls this |
1277 | function while processing a \link qcop.html QCop\endlink message, | 1280 | function while processing a \link qcop.html QCop\endlink message, |
1278 | after processing its outstanding \link qcop.html QCop\endlink | 1281 | after processing its outstanding \link qcop.html QCop\endlink |
1279 | messages the application will start 'properly' and show itself. | 1282 | messages the application will start 'properly' and show itself. |
1280 | 1283 | ||
1281 | \sa keepRunning() | 1284 | \sa keepRunning() |
1282 | */ | 1285 | */ |
1283 | void QPEApplication::setKeepRunning() | 1286 | void QPEApplication::setKeepRunning() |
1284 | { | 1287 | { |
1285 | if ( qApp && qApp->inherits( "QPEApplication" ) ) { | 1288 | if ( qApp && qApp->inherits( "QPEApplication" ) ) { |
1286 | QPEApplication * qpeApp = ( QPEApplication* ) qApp; | 1289 | QPEApplication * qpeApp = ( QPEApplication* ) qApp; |
1287 | qpeApp->d->keep_running = TRUE; | 1290 | qpeApp->d->keep_running = TRUE; |
1288 | } | 1291 | } |
1289 | } | 1292 | } |
1290 | 1293 | ||
1291 | /*! | 1294 | /*! |
1292 | Returns TRUE if the application will quit after processing the | 1295 | Returns TRUE if the application will quit after processing the |
1293 | current list of qcop messages; otherwise returns FALSE. | 1296 | current list of qcop messages; otherwise returns FALSE. |
1294 | 1297 | ||
1295 | \sa setKeepRunning() | 1298 | \sa setKeepRunning() |
1296 | */ | 1299 | */ |
1297 | bool QPEApplication::keepRunning() const | 1300 | bool QPEApplication::keepRunning() const |
1298 | { | 1301 | { |
1299 | return d->keep_running; | 1302 | return d->keep_running; |
1300 | } | 1303 | } |
1301 | 1304 | ||
1302 | /*! | 1305 | /*! |
1303 | \internal | 1306 | \internal |
1304 | */ | 1307 | */ |
1305 | void QPEApplication::internalSetStyle( const QString &style ) | 1308 | void QPEApplication::internalSetStyle( const QString &style ) |
1306 | { | 1309 | { |
1307 | #if QT_VERSION >= 300 | 1310 | #if QT_VERSION >= 300 |
1308 | if ( style == "QPE" ) { | 1311 | if ( style == "QPE" ) { |
1309 | setStyle( new QPEStyle ); | 1312 | setStyle( new QPEStyle ); |
1310 | } | 1313 | } |
1311 | else { | 1314 | else { |
1312 | QStyle *s = QStyleFactory::create( style ); | 1315 | QStyle *s = QStyleFactory::create( style ); |
1313 | if ( s ) | 1316 | if ( s ) |
1314 | setStyle( s ); | 1317 | setStyle( s ); |
1315 | } | 1318 | } |
1316 | #else | 1319 | #else |
1317 | if ( style == "Windows" ) { | 1320 | if ( style == "Windows" ) { |
1318 | setStyle( new QWindowsStyle ); | 1321 | setStyle( new QWindowsStyle ); |
1319 | } | 1322 | } |
1320 | else if ( style == "QPE" ) { | 1323 | else if ( style == "QPE" ) { |
1321 | setStyle( new QPEStyle ); | 1324 | setStyle( new QPEStyle ); |
1322 | } | 1325 | } |
1323 | else if ( style == "Light" ) { | 1326 | else if ( style == "Light" ) { |
1324 | setStyle( new LightStyle ); | 1327 | setStyle( new LightStyle ); |
1325 | } | 1328 | } |
1326 | #ifndef QT_NO_STYLE_PLATINUM | 1329 | #ifndef QT_NO_STYLE_PLATINUM |
1327 | else if ( style == "Platinum" ) { | 1330 | else if ( style == "Platinum" ) { |
1328 | setStyle( new QPlatinumStyle ); | 1331 | setStyle( new QPlatinumStyle ); |
1329 | } | 1332 | } |
1330 | #endif | 1333 | #endif |
1331 | #ifndef QT_NO_STYLE_MOTIF | 1334 | #ifndef QT_NO_STYLE_MOTIF |
1332 | else if ( style == "Motif" ) { | 1335 | else if ( style == "Motif" ) { |
1333 | setStyle( new QMotifStyle ); | 1336 | setStyle( new QMotifStyle ); |
1334 | } | 1337 | } |
1335 | #endif | 1338 | #endif |
1336 | #ifndef QT_NO_STYLE_MOTIFPLUS | 1339 | #ifndef QT_NO_STYLE_MOTIFPLUS |
1337 | else if ( style == "MotifPlus" ) { | 1340 | else if ( style == "MotifPlus" ) { |
1338 | setStyle( new QMotifPlusStyle ); | 1341 | setStyle( new QMotifPlusStyle ); |
1339 | } | 1342 | } |
1340 | #endif | 1343 | #endif |
1341 | 1344 | ||
1342 | else { | 1345 | else { |
1343 | QStyle *sty = 0; | 1346 | QStyle *sty = 0; |
1344 | QString path = QPEApplication::qpeDir ( ) + "/plugins/styles/"; | 1347 | QString path = QPEApplication::qpeDir ( ) + "/plugins/styles/"; |
1345 | 1348 | ||
1346 | if ( style. find ( ".so" ) > 0 ) | 1349 | if ( style. find ( ".so" ) > 0 ) |
1347 | path += style; | 1350 | path += style; |
1348 | else | 1351 | else |
1349 | path = path + "lib" + style. lower ( ) + ".so"; // compatibility | 1352 | path = path + "lib" + style. lower ( ) + ".so"; // compatibility |
1350 | 1353 | ||
1351 | static QLibrary *lastlib = 0; | 1354 | static QLibrary *lastlib = 0; |
1352 | static StyleInterface *lastiface = 0; | 1355 | static StyleInterface *lastiface = 0; |
1353 | 1356 | ||
1354 | QLibrary *lib = new QLibrary ( path ); | 1357 | QLibrary *lib = new QLibrary ( path ); |
1355 | StyleInterface *iface = 0; | 1358 | StyleInterface *iface = 0; |
1356 | 1359 | ||
1357 | if (( lib-> queryInterface ( IID_Style, ( QUnknownInterface ** ) &iface ) == QS_OK ) && iface ) | 1360 | if (( lib-> queryInterface ( IID_Style, ( QUnknownInterface ** ) &iface ) == QS_OK ) && iface ) |
1358 | sty = iface-> style ( ); | 1361 | sty = iface-> style ( ); |
1359 | 1362 | ||
1360 | if ( sty ) { | 1363 | if ( sty ) { |
1361 | setStyle ( sty ); | 1364 | setStyle ( sty ); |
1362 | 1365 | ||
1363 | if ( lastiface ) | 1366 | if ( lastiface ) |
1364 | lastiface-> release ( ); | 1367 | lastiface-> release ( ); |
1365 | lastiface = iface; | 1368 | lastiface = iface; |
1366 | 1369 | ||
1367 | if ( lastlib ) { | 1370 | if ( lastlib ) { |
1368 | lastlib-> unload ( ); | 1371 | lastlib-> unload ( ); |
1369 | delete lastlib; | 1372 | delete lastlib; |
1370 | } | 1373 | } |
1371 | lastlib = lib; | 1374 | lastlib = lib; |
1372 | } | 1375 | } |
1373 | else { | 1376 | else { |
1374 | if ( iface ) | 1377 | if ( iface ) |
1375 | iface-> release ( ); | 1378 | iface-> release ( ); |
1376 | delete lib; | 1379 | delete lib; |
1377 | 1380 | ||
1378 | setStyle ( new LightStyle ( )); | 1381 | setStyle ( new LightStyle ( )); |
1379 | } | 1382 | } |
1380 | } | 1383 | } |
1381 | #endif | 1384 | #endif |
1382 | } | 1385 | } |
1383 | 1386 | ||
1384 | /*! | 1387 | /*! |
1385 | \internal | 1388 | \internal |
1386 | */ | 1389 | */ |
1387 | void QPEApplication::prepareForTermination( bool willrestart ) | 1390 | void QPEApplication::prepareForTermination( bool willrestart ) |
1388 | { | 1391 | { |
1389 | if ( willrestart ) { | 1392 | if ( willrestart ) { |
1390 | // Draw a big wait icon, the image can be altered in later revisions | 1393 | // Draw a big wait icon, the image can be altered in later revisions |
1391 | // QWidget *d = QApplication::desktop(); | 1394 | // QWidget *d = QApplication::desktop(); |
1392 | QImage img = Resource::loadImage( "launcher/new_wait" ); | 1395 | QImage img = Resource::loadImage( "launcher/new_wait" ); |
1393 | QPixmap pix; | 1396 | QPixmap pix; |
1394 | pix.convertFromImage( img.smoothScale( 1 * img.width(), 1 * img.height() ) ); | 1397 | pix.convertFromImage( img.smoothScale( 1 * img.width(), 1 * img.height() ) ); |
1395 | QLabel *lblWait = new QLabel( 0, "wait hack!", QWidget::WStyle_Customize | | 1398 | QLabel *lblWait = new QLabel( 0, "wait hack!", QWidget::WStyle_Customize | |
1396 | QWidget::WStyle_NoBorder | QWidget::WStyle_Tool ); | 1399 | QWidget::WStyle_NoBorder | QWidget::WStyle_Tool ); |
1397 | lblWait->setPixmap( pix ); | 1400 | lblWait->setPixmap( pix ); |
1398 | lblWait->setAlignment( QWidget::AlignCenter ); | 1401 | lblWait->setAlignment( QWidget::AlignCenter ); |
1399 | lblWait->show(); | 1402 | lblWait->show(); |
1400 | lblWait->showMaximized(); | 1403 | lblWait->showMaximized(); |
1401 | } | 1404 | } |
1402 | #ifndef SINGLE_APP | 1405 | #ifndef SINGLE_APP |
1403 | { QCopEnvelope envelope( "QPE/System", "forceQuit()" ); | 1406 | { QCopEnvelope envelope( "QPE/System", "forceQuit()" ); |
1404 | } | 1407 | } |
1405 | processEvents(); // ensure the message goes out. | 1408 | processEvents(); // ensure the message goes out. |
1406 | sleep( 1 ); // You have 1 second to comply. | 1409 | sleep( 1 ); // You have 1 second to comply. |
1407 | #endif | 1410 | #endif |
1408 | } | 1411 | } |
1409 | 1412 | ||
1410 | /*! | 1413 | /*! |
1411 | \internal | 1414 | \internal |
1412 | */ | 1415 | */ |
1413 | void QPEApplication::shutdown() | 1416 | void QPEApplication::shutdown() |
1414 | { | 1417 | { |
1415 | // Implement in server's QPEApplication subclass | 1418 | // Implement in server's QPEApplication subclass |
1416 | } | 1419 | } |
1417 | 1420 | ||
1418 | /*! | 1421 | /*! |
1419 | \internal | 1422 | \internal |
1420 | */ | 1423 | */ |
1421 | void QPEApplication::restart() | 1424 | void QPEApplication::restart() |
1422 | { | 1425 | { |
1423 | // Implement in server's QPEApplication subclass | 1426 | // Implement in server's QPEApplication subclass |
1424 | } | 1427 | } |
1425 | 1428 | ||
1426 | static QPtrDict<void>* stylusDict = 0; | 1429 | static QPtrDict<void>* stylusDict = 0; |
1427 | static void createDict() | 1430 | static void createDict() |
1428 | { | 1431 | { |
1429 | if ( !stylusDict ) | 1432 | if ( !stylusDict ) |
1430 | stylusDict = new QPtrDict<void>; | 1433 | stylusDict = new QPtrDict<void>; |
1431 | } | 1434 | } |
1432 | 1435 | ||
1433 | /*! | 1436 | /*! |
1434 | Returns the current StylusMode for widget \a w. | 1437 | Returns the current StylusMode for widget \a w. |
1435 | 1438 | ||
1436 | \sa setStylusOperation() StylusMode | 1439 | \sa setStylusOperation() StylusMode |
1437 | */ | 1440 | */ |
1438 | QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w ) | 1441 | QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w ) |
1439 | { | 1442 | { |
1440 | if ( stylusDict ) | 1443 | if ( stylusDict ) |
1441 | return ( StylusMode ) ( int ) stylusDict->find( w ); | 1444 | return ( StylusMode ) ( int ) stylusDict->find( w ); |
1442 | return LeftOnly; | 1445 | return LeftOnly; |
1443 | } | 1446 | } |
1444 | 1447 | ||
1445 | /*! | 1448 | /*! |
1446 | \enum QPEApplication::StylusMode | 1449 | \enum QPEApplication::StylusMode |
1447 | 1450 | ||
1448 | \value LeftOnly the stylus only generates LeftButton | 1451 | \value LeftOnly the stylus only generates LeftButton |
1449 | events (the default). | 1452 | events (the default). |
1450 | \value RightOnHold the stylus generates RightButton events | 1453 | \value RightOnHold the stylus generates RightButton events |
1451 | if the user uses the press-and-hold gesture. | 1454 | if the user uses the press-and-hold gesture. |
1452 | 1455 | ||
1453 | \sa setStylusOperation() stylusOperation() | 1456 | \sa setStylusOperation() stylusOperation() |
1454 | */ | 1457 | */ |
1455 | 1458 | ||
1456 | /*! | 1459 | /*! |
1457 | Causes widget \a w to receive mouse events according to the stylus | 1460 | Causes widget \a w to receive mouse events according to the stylus |
1458 | \a mode. | 1461 | \a mode. |
1459 | 1462 | ||
1460 | \sa stylusOperation() StylusMode | 1463 | \sa stylusOperation() StylusMode |
1461 | */ | 1464 | */ |
1462 | void QPEApplication::setStylusOperation( QWidget * w, StylusMode mode ) | 1465 | void QPEApplication::setStylusOperation( QWidget * w, StylusMode mode ) |
1463 | { | 1466 | { |
1464 | createDict(); | 1467 | createDict(); |
1465 | if ( mode == LeftOnly ) { | 1468 | if ( mode == LeftOnly ) { |
1466 | stylusDict->remove | 1469 | stylusDict->remove |
1467 | ( w ); | 1470 | ( w ); |
1468 | w->removeEventFilter( qApp ); | 1471 | w->removeEventFilter( qApp ); |
1469 | } | 1472 | } |
1470 | else { | 1473 | else { |
1471 | stylusDict->insert( w, ( void* ) mode ); | 1474 | stylusDict->insert( w, ( void* ) mode ); |
1472 | connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) ); | 1475 | connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) ); |
1473 | w->installEventFilter( qApp ); | 1476 | w->installEventFilter( qApp ); |
1474 | } | 1477 | } |
1475 | } | 1478 | } |
1476 | 1479 | ||
1477 | 1480 | ||
1478 | /*! | 1481 | /*! |
1479 | \reimp | 1482 | \reimp |
1480 | */ | 1483 | */ |
1481 | bool QPEApplication::eventFilter( QObject *o, QEvent *e ) | 1484 | bool QPEApplication::eventFilter( QObject *o, QEvent *e ) |
1482 | { | 1485 | { |
1483 | if ( stylusDict && e->type() >= QEvent::MouseButtonPress && e->type() <= QEvent::MouseMove ) { | 1486 | if ( stylusDict && e->type() >= QEvent::MouseButtonPress && e->type() <= QEvent::MouseMove ) { |
1484 | QMouseEvent * me = ( QMouseEvent* ) e; | 1487 | QMouseEvent * me = ( QMouseEvent* ) e; |
1485 | StylusMode mode = (StylusMode)(int)stylusDict->find(o); | 1488 | StylusMode mode = (StylusMode)(int)stylusDict->find(o); |
1486 | switch (mode) { | 1489 | switch (mode) { |
1487 | case RightOnHold: | 1490 | case RightOnHold: |
1488 | switch ( me->type() ) { | 1491 | switch ( me->type() ) { |
1489 | case QEvent::MouseButtonPress: | 1492 | case QEvent::MouseButtonPress: |
1490 | if ( me->button() == LeftButton ) { | 1493 | if ( me->button() == LeftButton ) { |
1491 | d->presstimer = startTimer(500); // #### pref. | 1494 | d->presstimer = startTimer(500); // #### pref. |
1492 | d->presswidget = (QWidget*)o; | 1495 | d->presswidget = (QWidget*)o; |
1493 | d->presspos = me->pos(); | 1496 | d->presspos = me->pos(); |
1494 | d->rightpressed = FALSE; | 1497 | d->rightpressed = FALSE; |
1495 | } | 1498 | } |
1496 | break; | 1499 | break; |
1497 | case QEvent::MouseMove: | 1500 | case QEvent::MouseMove: |
1498 | if (d->presstimer && (me->pos() - d->presspos).manhattanLength() > 8) { | 1501 | if (d->presstimer && (me->pos() - d->presspos).manhattanLength() > 8) { |
1499 | killTimer(d->presstimer); | 1502 | killTimer(d->presstimer); |
1500 | d->presstimer = 0; | 1503 | d->presstimer = 0; |
1501 | } | 1504 | } |
1502 | break; | 1505 | break; |
1503 | case QEvent::MouseButtonRelease: | 1506 | case QEvent::MouseButtonRelease: |
1504 | if ( me->button() == LeftButton ) { | 1507 | if ( me->button() == LeftButton ) { |
1505 | if ( d->presstimer ) { | 1508 | if ( d->presstimer ) { |
1506 | killTimer(d->presstimer); | 1509 | killTimer(d->presstimer); |
1507 | d->presstimer = 0; | 1510 | d->presstimer = 0; |
1508 | } | 1511 | } |
1509 | if ( d->rightpressed && d->presswidget ) { | 1512 | if ( d->rightpressed && d->presswidget ) { |
1510 | // Right released | 1513 | // Right released |
1511 | postEvent( d->presswidget, | 1514 | postEvent( d->presswidget, |
1512 | new QMouseEvent( QEvent::MouseButtonRelease, me->pos(), | 1515 | new QMouseEvent( QEvent::MouseButtonRelease, me->pos(), |
1513 | RightButton, LeftButton + RightButton ) ); | 1516 | RightButton, LeftButton + RightButton ) ); |
1514 | // Left released, off-widget | 1517 | // Left released, off-widget |
1515 | postEvent( d->presswidget, | 1518 | postEvent( d->presswidget, |
1516 | new QMouseEvent( QEvent::MouseMove, QPoint( -1, -1), | 1519 | new QMouseEvent( QEvent::MouseMove, QPoint( -1, -1), |
1517 | LeftButton, LeftButton ) ); | 1520 | LeftButton, LeftButton ) ); |
1518 | postEvent( d->presswidget, | 1521 | postEvent( d->presswidget, |
1519 | new QMouseEvent( QEvent::MouseButtonRelease, QPoint( -1, -1), | 1522 | new QMouseEvent( QEvent::MouseButtonRelease, QPoint( -1, -1), |
1520 | LeftButton, LeftButton ) ); | 1523 | LeftButton, LeftButton ) ); |
1521 | d->rightpressed = FALSE; | 1524 | d->rightpressed = FALSE; |
1522 | return TRUE; // don't send the real Left release | 1525 | return TRUE; // don't send the real Left release |
1523 | } | 1526 | } |
1524 | } | 1527 | } |
1525 | break; | 1528 | break; |
1526 | default: | 1529 | default: |
1527 | break; | 1530 | break; |
1528 | } | 1531 | } |
1529 | break; | 1532 | break; |
1530 | default: | 1533 | default: |
1531 | ; | 1534 | ; |
1532 | } | 1535 | } |
1533 | } | 1536 | } |
1534 | else if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { | 1537 | else if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { |
1535 | QKeyEvent *ke = (QKeyEvent *)e; | 1538 | QKeyEvent *ke = (QKeyEvent *)e; |
1536 | if ( ke->key() == Key_Enter ) { | 1539 | if ( ke->key() == Key_Enter ) { |
1537 | if ( o->isA( "QRadioButton" ) || o->isA( "QCheckBox" ) ) { | 1540 | if ( o->isA( "QRadioButton" ) || o->isA( "QCheckBox" ) ) { |
1538 | postEvent( o, new QKeyEvent( e->type(), Key_Space, ' ', | 1541 | postEvent( o, new QKeyEvent( e->type(), Key_Space, ' ', |
1539 | ke->state(), " ", ke->isAutoRepeat(), ke->count() ) ); | 1542 | ke->state(), " ", ke->isAutoRepeat(), ke->count() ) ); |
1540 | return TRUE; | 1543 | return TRUE; |
1541 | } | 1544 | } |
1542 | } | 1545 | } |
1543 | } | 1546 | } |
1544 | return FALSE; | 1547 | return FALSE; |
1545 | } | 1548 | } |
1546 | 1549 | ||
1547 | /*! | 1550 | /*! |
1548 | \reimp | 1551 | \reimp |
1549 | */ | 1552 | */ |
1550 | void QPEApplication::timerEvent( QTimerEvent *e ) | 1553 | void QPEApplication::timerEvent( QTimerEvent *e ) |
1551 | { | 1554 | { |
1552 | if ( e->timerId() == d->presstimer && d->presswidget ) { | 1555 | if ( e->timerId() == d->presstimer && d->presswidget ) { |
1553 | // Right pressed | 1556 | // Right pressed |
1554 | postEvent( d->presswidget, | 1557 | postEvent( d->presswidget, |
1555 | new QMouseEvent( QEvent::MouseButtonPress, d->presspos, | 1558 | new QMouseEvent( QEvent::MouseButtonPress, d->presspos, |
1556 | RightButton, LeftButton ) ); | 1559 | RightButton, LeftButton ) ); |
1557 | killTimer( d->presstimer ); | 1560 | killTimer( d->presstimer ); |
1558 | d->presstimer = 0; | 1561 | d->presstimer = 0; |
1559 | d->rightpressed = TRUE; | 1562 | d->rightpressed = TRUE; |
1560 | } | 1563 | } |
1561 | } | 1564 | } |
1562 | 1565 | ||
1563 | void QPEApplication::removeSenderFromStylusDict() | 1566 | void QPEApplication::removeSenderFromStylusDict() |
1564 | { | 1567 | { |
1565 | stylusDict->remove | 1568 | stylusDict->remove |
1566 | ( ( void* ) sender() ); | 1569 | ( ( void* ) sender() ); |
1567 | if ( d->presswidget == sender() ) | 1570 | if ( d->presswidget == sender() ) |
1568 | d->presswidget = 0; | 1571 | d->presswidget = 0; |
1569 | } | 1572 | } |
1570 | 1573 | ||
1571 | /*! | 1574 | /*! |
1572 | \internal | 1575 | \internal |
1573 | */ | 1576 | */ |
1574 | bool QPEApplication::keyboardGrabbed() const | 1577 | bool QPEApplication::keyboardGrabbed() const |
1575 | { | 1578 | { |
1576 | return d->kbgrabber; | 1579 | return d->kbgrabber; |
1577 | } | 1580 | } |
1578 | 1581 | ||
1579 | 1582 | ||
1580 | /*! | 1583 | /*! |
1581 | Reverses the effect of grabKeyboard(). This is called automatically | 1584 | Reverses the effect of grabKeyboard(). This is called automatically |
1582 | on program exit. | 1585 | on program exit. |
1583 | */ | 1586 | */ |
1584 | void QPEApplication::ungrabKeyboard() | 1587 | void QPEApplication::ungrabKeyboard() |
1585 | { | 1588 | { |
1586 | QPEApplicationData * d = ( ( QPEApplication* ) qApp ) ->d; | 1589 | QPEApplicationData * d = ( ( QPEApplication* ) qApp ) ->d; |
1587 | if ( d->kbgrabber == 2 ) { | 1590 | if ( d->kbgrabber == 2 ) { |
1588 | #ifndef QT_NO_COP | 1591 | #ifndef QT_NO_COP |
1589 | QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); | 1592 | QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); |
1590 | e << QString::null; | 1593 | e << QString::null; |
1591 | #endif | 1594 | #endif |
1592 | 1595 | ||
1593 | d->kbregrab = FALSE; | 1596 | d->kbregrab = FALSE; |
1594 | d->kbgrabber = 0; | 1597 | d->kbgrabber = 0; |
1595 | } | 1598 | } |
1596 | } | 1599 | } |
1597 | 1600 | ||
1598 | /*! | 1601 | /*! |
1599 | Grabs the physical keyboard keys, e.g. the application's launching | 1602 | Grabs the physical keyboard keys, e.g. the application's launching |
1600 | keys. Instead of launching applications when these keys are pressed | 1603 | keys. Instead of launching applications when these keys are pressed |
1601 | the signals emitted are sent to this application instead. Some games | 1604 | the signals emitted are sent to this application instead. Some games |
1602 | programs take over the launch keys in this way to make interaction | 1605 | programs take over the launch keys in this way to make interaction |
1603 | easier. | 1606 | easier. |
1604 | 1607 | ||
1605 | \sa ungrabKeyboard() | 1608 | \sa ungrabKeyboard() |
1606 | */ | 1609 | */ |
1607 | void QPEApplication::grabKeyboard() | 1610 | void QPEApplication::grabKeyboard() |
1608 | { | 1611 | { |
1609 | QPEApplicationData * d = ( ( QPEApplication* ) qApp ) ->d; | 1612 | QPEApplicationData * d = ( ( QPEApplication* ) qApp ) ->d; |
1610 | if ( qApp->type() == QApplication::GuiServer ) | 1613 | if ( qApp->type() == QApplication::GuiServer ) |
1611 | d->kbgrabber = 0; | 1614 | d->kbgrabber = 0; |
1612 | else { | 1615 | else { |
1613 | #ifndef QT_NO_COP | 1616 | #ifndef QT_NO_COP |
1614 | QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); | 1617 | QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); |
1615 | e << d->appName; | 1618 | e << d->appName; |
1616 | #endif | 1619 | #endif |
1617 | 1620 | ||
1618 | d->kbgrabber = 2; // me | 1621 | d->kbgrabber = 2; // me |
1619 | } | 1622 | } |
1620 | } | 1623 | } |
1621 | 1624 | ||
1622 | /*! | 1625 | /*! |
1623 | \reimp | 1626 | \reimp |
1624 | */ | 1627 | */ |
1625 | int QPEApplication::exec() | 1628 | int QPEApplication::exec() |
1626 | { | 1629 | { |
1627 | #ifndef QT_NO_COP | 1630 | #ifndef QT_NO_COP |
1628 | d->sendQCopQ(); | 1631 | d->sendQCopQ(); |
1629 | #endif | 1632 | #endif |
1630 | 1633 | ||
1631 | if ( d->keep_running ) | 1634 | if ( d->keep_running ) |
1632 | //|| d->qpe_main_widget && d->qpe_main_widget->isVisible() ) | 1635 | //|| d->qpe_main_widget && d->qpe_main_widget->isVisible() ) |
1633 | return QApplication::exec(); | 1636 | return QApplication::exec(); |
1634 | 1637 | ||
1635 | #ifndef QT_NO_COP | 1638 | #ifndef QT_NO_COP |
1636 | 1639 | ||
1637 | { | 1640 | { |
1638 | QCopEnvelope e( "QPE/System", "closing(QString)" ); | 1641 | QCopEnvelope e( "QPE/System", "closing(QString)" ); |
1639 | e << d->appName; | 1642 | e << d->appName; |
1640 | } | 1643 | } |
1641 | #endif | 1644 | #endif |
1642 | processEvents(); | 1645 | processEvents(); |
1643 | return 0; | 1646 | return 0; |
1644 | } | 1647 | } |
1645 | 1648 | ||
1646 | /*! | 1649 | /*! |
1647 | \internal | 1650 | \internal |
1648 | External request for application to quit. Quits if possible without | 1651 | External request for application to quit. Quits if possible without |
1649 | loosing state. | 1652 | loosing state. |
1650 | */ | 1653 | */ |
1651 | void QPEApplication::tryQuit() | 1654 | void QPEApplication::tryQuit() |
1652 | { | 1655 | { |
1653 | if ( activeModalWidget() || strcmp( argv() [ 0 ], "embeddedkonsole" ) == 0 ) | 1656 | if ( activeModalWidget() || strcmp( argv() [ 0 ], "embeddedkonsole" ) == 0 ) |
1654 | return ; // Inside modal loop or konsole. Too hard to save state. | 1657 | return ; // Inside modal loop or konsole. Too hard to save state. |
1655 | #ifndef QT_NO_COP | 1658 | #ifndef QT_NO_COP |
1656 | 1659 | ||
1657 | { | 1660 | { |
1658 | QCopEnvelope e( "QPE/System", "closing(QString)" ); | 1661 | QCopEnvelope e( "QPE/System", "closing(QString)" ); |
1659 | e << d->appName; | 1662 | e << d->appName; |
1660 | } | 1663 | } |
1661 | #endif | 1664 | #endif |
1662 | processEvents(); | 1665 | processEvents(); |
1663 | 1666 | ||
1664 | quit(); | 1667 | quit(); |
1665 | } | 1668 | } |
1666 | 1669 | ||
1667 | /*! | 1670 | /*! |
1668 | \internal | 1671 | \internal |
1669 | User initiated quit. Makes the window 'Go Away'. If preloaded this means | 1672 | User initiated quit. Makes the window 'Go Away'. If preloaded this means |
1670 | hiding the window. If not it means quitting the application. | 1673 | hiding the window. If not it means quitting the application. |
1671 | As this is user initiated we don't need to check state. | 1674 | As this is user initiated we don't need to check state. |
1672 | */ | 1675 | */ |
1673 | void QPEApplication::hideOrQuit() | 1676 | void QPEApplication::hideOrQuit() |
1674 | { | 1677 | { |
1675 | processEvents(); | 1678 | processEvents(); |
1676 | 1679 | ||
1677 | // If we are a preloaded application we don't actually quit, so emit | 1680 | // If we are a preloaded application we don't actually quit, so emit |
1678 | // a System message indicating we're quasi-closing. | 1681 | // a System message indicating we're quasi-closing. |
1679 | if ( d->preloaded && d->qpe_main_widget ) | 1682 | if ( d->preloaded && d->qpe_main_widget ) |
1680 | #ifndef QT_NO_COP | 1683 | #ifndef QT_NO_COP |
1681 | 1684 | ||
1682 | { | 1685 | { |
1683 | QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); | 1686 | QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); |
1684 | e << d->appName; | 1687 | e << d->appName; |
1685 | d->qpe_main_widget->hide(); | 1688 | d->qpe_main_widget->hide(); |
1686 | } | 1689 | } |
1687 | #endif | 1690 | #endif |
1688 | else | 1691 | else |
1689 | quit(); | 1692 | quit(); |
1690 | } | 1693 | } |
1691 | 1694 | ||
1692 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_SHARP) | 1695 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_SHARP) |
1693 | 1696 | ||
1694 | // The libraries with the skiff package (and possibly others) have | 1697 | // The libraries with the skiff package (and possibly others) have |
1695 | // completely useless implementations of builtin new and delete that | 1698 | // completely useless implementations of builtin new and delete that |
1696 | // use about 50% of your CPU. Here we revert to the simple libc | 1699 | // use about 50% of your CPU. Here we revert to the simple libc |
1697 | // functions. | 1700 | // functions. |
1698 | 1701 | ||
1699 | void* operator new[]( size_t size ) | 1702 | void* operator new[]( size_t size ) |
1700 | { | 1703 | { |
1701 | return malloc( size ); | 1704 | return malloc( size ); |
1702 | } | 1705 | } |
1703 | 1706 | ||
1704 | void* operator new( size_t size ) | 1707 | void* operator new( size_t size ) |
1705 | { | 1708 | { |
1706 | return malloc( size ); | 1709 | return malloc( size ); |
1707 | } | 1710 | } |
1708 | 1711 | ||
1709 | void operator delete[]( void* p ) | 1712 | void operator delete[]( void* p ) |
1710 | { | 1713 | { |
1711 | free( p ); | 1714 | free( p ); |
1712 | } | 1715 | } |
1713 | 1716 | ||
1714 | void operator delete[]( void* p, size_t /*size*/ ) | 1717 | void operator delete[]( void* p, size_t /*size*/ ) |
1715 | { | 1718 | { |
1716 | free( p ); | 1719 | free( p ); |
1717 | } | 1720 | } |
1718 | 1721 | ||
1719 | void operator delete( void* p ) | 1722 | void operator delete( void* p ) |
1720 | { | 1723 | { |
1721 | free( p ); | 1724 | free( p ); |
1722 | } | 1725 | } |
1723 | 1726 | ||
1724 | void operator delete( void* p, size_t /*size*/ ) | 1727 | void operator delete( void* p, size_t /*size*/ ) |
1725 | { | 1728 | { |
1726 | free( p ); | 1729 | free( p ); |
1727 | } | 1730 | } |
1728 | 1731 | ||
1729 | #endif | 1732 | #endif |
1730 | 1733 | ||
1731 | #if ( QT_VERSION <= 230 ) && !defined(SINGLE_APP) | 1734 | #if ( QT_VERSION <= 230 ) && !defined(SINGLE_APP) |
1732 | #include <qwidgetlist.h> | 1735 | #include <qwidgetlist.h> |
1733 | #ifdef QWS | 1736 | #ifdef QWS |
1734 | #include <qgfx_qws.h> | 1737 | #include <qgfx_qws.h> |
1735 | extern QRect qt_maxWindowRect; | 1738 | extern QRect qt_maxWindowRect; |
1736 | void qt_setMaxWindowRect(const QRect& r ) | 1739 | void qt_setMaxWindowRect(const QRect& r ) |
1737 | { | 1740 | { |
1738 | qt_maxWindowRect = qt_screen->mapFromDevice( r, | 1741 | qt_maxWindowRect = qt_screen->mapFromDevice( r, |
1739 | qt_screen->mapToDevice( QSize( qt_screen->width(), qt_screen->height() ) ) ); | 1742 | qt_screen->mapToDevice( QSize( qt_screen->width(), qt_screen->height() ) ) ); |
1740 | // Re-resize any maximized windows | 1743 | // Re-resize any maximized windows |
1741 | QWidgetList* l = QApplication::topLevelWidgets(); | 1744 | QWidgetList* l = QApplication::topLevelWidgets(); |
1742 | if ( l ) { | 1745 | if ( l ) { |
1743 | QWidget * w = l->first(); | 1746 | QWidget * w = l->first(); |
1744 | while ( w ) { | 1747 | while ( w ) { |
1745 | if ( w->isVisible() && w->isMaximized() ) { | 1748 | if ( w->isVisible() && w->isMaximized() ) { |
1746 | w->showMaximized(); | 1749 | w->showMaximized(); |
1747 | } | 1750 | } |
1748 | w = l->next(); | 1751 | w = l->next(); |
1749 | } | 1752 | } |
1750 | delete l; | 1753 | delete l; |
1751 | } | 1754 | } |
1752 | } | 1755 | } |
1753 | #endif | 1756 | #endif |
1754 | #endif | 1757 | #endif |