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