-rw-r--r-- | library/qpeapplication.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 19e99f2..286c6ef 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -1,1252 +1,1252 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of the Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | */ | 19 | */ |
20 | #define QTOPIA_INTERNAL_LANGLIST | 20 | #define QTOPIA_INTERNAL_LANGLIST |
21 | #include <stdlib.h> | 21 | #include <stdlib.h> |
22 | #include <unistd.h> | 22 | #include <unistd.h> |
23 | #ifndef Q_OS_MACX | 23 | #ifndef Q_OS_MACX |
24 | #include <linux/limits.h> // needed for some toolchains (PATH_MAX) | 24 | #include <linux/limits.h> // needed for some toolchains (PATH_MAX) |
25 | #endif | 25 | #endif |
26 | #include <qfile.h> | 26 | #include <qfile.h> |
27 | #include <qqueue.h> | 27 | #include <qqueue.h> |
28 | #ifdef Q_WS_QWS | 28 | #ifdef Q_WS_QWS |
29 | #ifndef QT_NO_COP | 29 | #ifndef QT_NO_COP |
30 | #if QT_VERSION <= 231 | 30 | #if QT_VERSION <= 231 |
31 | #define private public | 31 | #define private public |
32 | #define sendLocally processEvent | 32 | #define sendLocally processEvent |
33 | #include "qcopenvelope_qws.h" | 33 | #include "qcopenvelope_qws.h" |
34 | #undef private | 34 | #undef private |
35 | #else | 35 | #else |
36 | #include "qcopenvelope_qws.h" | 36 | #include "qcopenvelope_qws.h" |
37 | #endif | 37 | #endif |
38 | #endif | 38 | #endif |
39 | #include <qwindowsystem_qws.h> | 39 | #include <qwindowsystem_qws.h> |
40 | #endif | 40 | #endif |
41 | #include <qtextstream.h> | 41 | #include <qtextstream.h> |
42 | #include <qpalette.h> | 42 | #include <qpalette.h> |
43 | #include <qbuffer.h> | 43 | #include <qbuffer.h> |
44 | #include <qptrdict.h> | 44 | #include <qptrdict.h> |
45 | #include <qregexp.h> | 45 | #include <qregexp.h> |
46 | #include <qdir.h> | 46 | #include <qdir.h> |
47 | #include <qlabel.h> | 47 | #include <qlabel.h> |
48 | #include <qdialog.h> | 48 | #include <qdialog.h> |
49 | #include <qdragobject.h> | 49 | #include <qdragobject.h> |
50 | #include <qtextcodec.h> | 50 | #include <qtextcodec.h> |
51 | #include <qevent.h> | 51 | #include <qevent.h> |
52 | #include <qtooltip.h> | 52 | #include <qtooltip.h> |
53 | #include <qsignal.h> | 53 | #include <qsignal.h> |
54 | #include <qmainwindow.h> | 54 | #include <qmainwindow.h> |
55 | #include <qwidgetlist.h> | 55 | #include <qwidgetlist.h> |
56 | #include <qpixmapcache.h> | 56 | #include <qpixmapcache.h> |
57 | 57 | ||
58 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 58 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
59 | #define QTOPIA_INTERNAL_INITAPP | 59 | #define QTOPIA_INTERNAL_INITAPP |
60 | #include "qpeapplication.h" | 60 | #include "qpeapplication.h" |
61 | #include "qpestyle.h" | 61 | #include "qpestyle.h" |
62 | #include "styleinterface.h" | 62 | #include "styleinterface.h" |
63 | #if QT_VERSION >= 0x030000 | 63 | #if QT_VERSION >= 0x030000 |
64 | #include <qstylefactory.h> | 64 | #include <qstylefactory.h> |
65 | #else | 65 | #else |
66 | #include <qplatinumstyle.h> | 66 | #include <qplatinumstyle.h> |
67 | #include <qwindowsstyle.h> | 67 | #include <qwindowsstyle.h> |
68 | #include <qmotifstyle.h> | 68 | #include <qmotifstyle.h> |
69 | #include <qmotifplusstyle.h> | 69 | #include <qmotifplusstyle.h> |
70 | #include "lightstyle.h" | 70 | #include "lightstyle.h" |
71 | 71 | ||
72 | #include <qpe/qlibrary.h> | 72 | #include <qpe/qlibrary.h> |
73 | #endif | 73 | #endif |
74 | #include "global.h" | 74 | #include "global.h" |
75 | #include "resource.h" | 75 | #include "resource.h" |
76 | #if QT_VERSION <= 230 && defined(QT_NO_CODECS) | 76 | #if QT_VERSION <= 230 && defined(QT_NO_CODECS) |
77 | #include "qutfcodec.h" | 77 | #include "qutfcodec.h" |
78 | #endif | 78 | #endif |
79 | #include "config.h" | 79 | #include "config.h" |
80 | #include "network.h" | 80 | #include "network.h" |
81 | #ifdef QWS | 81 | #ifdef QWS |
82 | #include "fontmanager.h" | 82 | #include "fontmanager.h" |
83 | #include "fontdatabase.h" | 83 | #include "fontdatabase.h" |
84 | #endif | 84 | #endif |
85 | 85 | ||
86 | #include "alarmserver.h" | 86 | #include "alarmserver.h" |
87 | #include "applnk.h" | 87 | #include "applnk.h" |
88 | #include "qpemenubar.h" | 88 | #include "qpemenubar.h" |
89 | #include "textcodecinterface.h" | 89 | #include "textcodecinterface.h" |
90 | #include "imagecodecinterface.h" | 90 | #include "imagecodecinterface.h" |
91 | #include <qtopia/qpeglobal.h> | 91 | #include <qtopia/qpeglobal.h> |
92 | 92 | ||
93 | #include <unistd.h> | 93 | #include <unistd.h> |
94 | #include <sys/file.h> | 94 | #include <sys/file.h> |
95 | #include <sys/ioctl.h> | 95 | #include <sys/ioctl.h> |
96 | #ifndef QT_NO_SOUND | 96 | #ifndef QT_NO_SOUND |
97 | #include <sys/soundcard.h> | 97 | #include <sys/soundcard.h> |
98 | #endif | 98 | #endif |
99 | 99 | ||
100 | #include <backend/rohfeedback.h> | 100 | #include <backend/rohfeedback.h> |
101 | 101 | ||
102 | 102 | ||
103 | static bool useBigPixmaps = 0; | 103 | static bool useBigPixmaps = 0; |
104 | 104 | ||
105 | class HackWidget : public QWidget | 105 | class HackWidget : public QWidget |
106 | { | 106 | { |
107 | public: | 107 | public: |
108 | bool needsOk() | 108 | bool needsOk() |
109 | { return (getWState() & WState_Reserved1 ); } | 109 | { return (getWState() & WState_Reserved1 ); } |
110 | 110 | ||
111 | QRect normalGeometry() | 111 | QRect normalGeometry() |
112 | { return topData()->normalGeometry; }; | 112 | { return topData()->normalGeometry; }; |
113 | }; | 113 | }; |
114 | 114 | ||
115 | class QPEApplicationData | 115 | class QPEApplicationData |
116 | { | 116 | { |
117 | public: | 117 | public: |
118 | QPEApplicationData ( ) : | 118 | QPEApplicationData ( ) : |
119 | presstimer( 0 ), presswidget( 0 ), rightpressed( false ), kbgrabbed( false ), | 119 | presstimer( 0 ), presswidget( 0 ), rightpressed( false ), kbgrabbed( false ), |
120 | notbusysent( false ), preloaded( false ), forceshow( false ), nomaximize( false ), | 120 | notbusysent( false ), preloaded( false ), forceshow( false ), nomaximize( false ), |
121 | keep_running( true ), qcopQok( false ), | 121 | keep_running( true ), qcopQok( false ), |
122 | fontFamily( "Vera" ), fontSize( 10 ), smallIconSize( 14 ), | 122 | fontFamily( "Vera" ), fontSize( 10 ), smallIconSize( 14 ), |
123 | bigIconSize( 32 ), qpe_main_widget( 0 ) | 123 | bigIconSize( 32 ), qpe_main_widget( 0 ) |
124 | { | 124 | { |
125 | Config cfg( "qpe" ); | 125 | Config cfg( "qpe" ); |
126 | cfg.setGroup( "Appearance" ); | 126 | cfg.setGroup( "Appearance" ); |
127 | useBigPixmaps = cfg.readBoolEntry( "useBigPixmaps", false ); | 127 | useBigPixmaps = cfg.readBoolEntry( "useBigPixmaps", false ); |
128 | fontFamily = cfg.readEntry( "FontFamily", "Vera" ); | 128 | fontFamily = cfg.readEntry( "FontFamily", "Vera" ); |
129 | fontSize = cfg.readNumEntry( "FontSize", 10 ); | 129 | fontSize = cfg.readNumEntry( "FontSize", 10 ); |
130 | smallIconSize = cfg.readNumEntry( "SmallIconSize", 14 ); | 130 | smallIconSize = cfg.readNumEntry( "SmallIconSize", 14 ); |
131 | bigIconSize = cfg.readNumEntry( "BigIconSize", 32 ); | 131 | bigIconSize = cfg.readNumEntry( "BigIconSize", 32 ); |
132 | #ifdef OPIE_WITHROHFEEDBACK | 132 | #ifdef OPIE_WITHROHFEEDBACK |
133 | RoH = 0; | 133 | RoH = 0; |
134 | #endif | 134 | #endif |
135 | } | 135 | } |
136 | 136 | ||
137 | int presstimer; | 137 | int presstimer; |
138 | QWidget* presswidget; | 138 | QWidget* presswidget; |
139 | QPoint presspos; | 139 | QPoint presspos; |
140 | #ifdef OPIE_WITHROHFEEDBACK | 140 | #ifdef OPIE_WITHROHFEEDBACK |
141 | Opie::Internal::RoHFeedback *RoH; | 141 | Opie::Internal::RoHFeedback *RoH; |
142 | #endif | 142 | #endif |
143 | 143 | ||
144 | bool rightpressed : 1; | 144 | bool rightpressed : 1; |
145 | bool kbgrabbed : 1; | 145 | bool kbgrabbed : 1; |
146 | bool notbusysent : 1; | 146 | bool notbusysent : 1; |
147 | bool preloaded : 1; | 147 | bool preloaded : 1; |
148 | bool forceshow : 1; | 148 | bool forceshow : 1; |
149 | bool nomaximize : 1; | 149 | bool nomaximize : 1; |
150 | bool keep_running : 1; | 150 | bool keep_running : 1; |
151 | bool qcopQok : 1; | 151 | bool qcopQok : 1; |
152 | 152 | ||
153 | QCString fontFamily; | 153 | QCString fontFamily; |
154 | int fontSize; | 154 | int fontSize; |
155 | int smallIconSize; | 155 | int smallIconSize; |
156 | int bigIconSize; | 156 | int bigIconSize; |
157 | 157 | ||
158 | QString appName; | 158 | QString appName; |
159 | struct QCopRec | 159 | struct QCopRec |
160 | { | 160 | { |
161 | QCopRec( const QCString &ch, const QCString &msg, | 161 | QCopRec( const QCString &ch, const QCString &msg, |
162 | const QByteArray &d ) : | 162 | const QByteArray &d ) : |
163 | channel( ch ), message( msg ), data( d ) | 163 | channel( ch ), message( msg ), data( d ) |
164 | { } | 164 | { } |
165 | 165 | ||
166 | QCString channel; | 166 | QCString channel; |
167 | QCString message; | 167 | QCString message; |
168 | QByteArray data; | 168 | QByteArray data; |
169 | }; | 169 | }; |
170 | QGuardedPtr<QWidget> qpe_main_widget; | 170 | QGuardedPtr<QWidget> qpe_main_widget; |
171 | QGuardedPtr<QWidget> lastraised; | 171 | QGuardedPtr<QWidget> lastraised; |
172 | QQueue<QCopRec> qcopq; | 172 | QQueue<QCopRec> qcopq; |
173 | QString styleName; | 173 | QString styleName; |
174 | QString decorationName; | 174 | QString decorationName; |
175 | 175 | ||
176 | void enqueueQCop( const QCString &ch, const QCString &msg, | 176 | void enqueueQCop( const QCString &ch, const QCString &msg, |
177 | const QByteArray &data ) | 177 | const QByteArray &data ) |
178 | { | 178 | { |
179 | qcopq.enqueue( new QCopRec( ch, msg, data ) ); | 179 | qcopq.enqueue( new QCopRec( ch, msg, data ) ); |
180 | } | 180 | } |
181 | void sendQCopQ() | 181 | void sendQCopQ() |
182 | { | 182 | { |
183 | if (!qcopQok ) | 183 | if (!qcopQok ) |
184 | return; | 184 | return; |
185 | 185 | ||
186 | QCopRec * r; | 186 | QCopRec * r; |
187 | 187 | ||
188 | while((r=qcopq.dequeue())) { | 188 | while((r=qcopq.dequeue())) { |
189 | // remove from queue before sending... | 189 | // remove from queue before sending... |
190 | // event loop can come around again before getting | 190 | // event loop can come around again before getting |
191 | // back from sendLocally | 191 | // back from sendLocally |
192 | #ifndef QT_NO_COP | 192 | #ifndef QT_NO_COP |
193 | QCopChannel::sendLocally( r->channel, r->message, r->data ); | 193 | QCopChannel::sendLocally( r->channel, r->message, r->data ); |
194 | #endif | 194 | #endif |
195 | 195 | ||
196 | delete r; | 196 | delete r; |
197 | } | 197 | } |
198 | } | 198 | } |
199 | 199 | ||
200 | static void show_mx(QWidget* mw, bool nomaximize, QString &strName) { | 200 | static void show_mx(QWidget* mw, bool nomaximize, QString &strName) { |
201 | if ( mw->inherits("QMainWindow") || mw->isA("QMainWindow") ) | 201 | if ( mw->inherits("QMainWindow") || mw->isA("QMainWindow") ) |
202 | { | 202 | { |
203 | ( ( QMainWindow* ) mw )->setUsesBigPixmaps( useBigPixmaps ); | 203 | ( ( QMainWindow* ) mw )->setUsesBigPixmaps( useBigPixmaps ); |
204 | } | 204 | } |
205 | QPoint p; | 205 | QPoint p; |
206 | QSize s; | 206 | QSize s; |
207 | bool max; | 207 | bool max; |
208 | 208 | ||
209 | if ( mw->isVisible() ) { | 209 | if ( mw->isVisible() ) { |
210 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { | 210 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { |
211 | mw->resize(s); | 211 | mw->resize(s); |
212 | mw->move(p); | 212 | mw->move(p); |
213 | } | 213 | } |
214 | mw->raise(); | 214 | mw->raise(); |
215 | } else { | 215 | } else { |
216 | 216 | ||
217 | if ( mw->layout() && mw->inherits("QDialog") ) { | 217 | if ( mw->layout() && mw->inherits("QDialog") ) { |
218 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { | 218 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { |
219 | mw->resize(s); | 219 | mw->resize(s); |
220 | mw->move(p); | 220 | mw->move(p); |
221 | 221 | ||
222 | if ( max && !nomaximize ) { | 222 | if ( max && !nomaximize ) { |
223 | mw->showMaximized(); | 223 | mw->showMaximized(); |
224 | } else { | 224 | } else { |
225 | mw->show(); | 225 | mw->show(); |
226 | } | 226 | } |
227 | } else { | 227 | } else { |
228 | QPEApplication::showDialog((QDialog*)mw,nomaximize); | 228 | QPEApplication::showDialog((QDialog*)mw, !nomaximize); |
229 | } | 229 | } |
230 | } else { | 230 | } else { |
231 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { | 231 | if ( read_widget_rect(strName, max, p, s) && validate_widget_size(mw, p, s) ) { |
232 | mw->resize(s); | 232 | mw->resize(s); |
233 | mw->move(p); | 233 | mw->move(p); |
234 | } else { //no stored rectangle, make an estimation | 234 | } else { //no stored rectangle, make an estimation |
235 | int x = (qApp->desktop()->width()-mw->frameGeometry().width())/2; | 235 | int x = (qApp->desktop()->width()-mw->frameGeometry().width())/2; |
236 | int y = (qApp->desktop()->height()-mw->frameGeometry().height())/2; | 236 | int y = (qApp->desktop()->height()-mw->frameGeometry().height())/2; |
237 | mw->move( QMAX(x,0), QMAX(y,0) ); | 237 | mw->move( QMAX(x,0), QMAX(y,0) ); |
238 | #ifdef Q_WS_QWS | 238 | #ifdef Q_WS_QWS |
239 | if ( !nomaximize ) | 239 | if ( !nomaximize ) |
240 | mw->showMaximized(); | 240 | mw->showMaximized(); |
241 | #endif | 241 | #endif |
242 | } | 242 | } |
243 | if ( max && !nomaximize ) | 243 | if ( max && !nomaximize ) |
244 | mw->showMaximized(); | 244 | mw->showMaximized(); |
245 | else | 245 | else |
246 | mw->show(); | 246 | mw->show(); |
247 | } | 247 | } |
248 | } | 248 | } |
249 | } | 249 | } |
250 | 250 | ||
251 | static bool read_widget_rect(const QString &app, bool &maximized, QPoint &p, QSize &s) | 251 | static bool read_widget_rect(const QString &app, bool &maximized, QPoint &p, QSize &s) |
252 | { | 252 | { |
253 | #ifndef OPIE_NO_WINDOWED | 253 | #ifndef OPIE_NO_WINDOWED |
254 | maximized = TRUE; | 254 | maximized = TRUE; |
255 | // 350 is the trigger in qwsdefaultdecoration for providing a resize button | 255 | // 350 is the trigger in qwsdefaultdecoration for providing a resize button |
256 | if ( qApp->desktop()->width() <= 350 ) | 256 | if ( qApp->desktop()->width() <= 350 ) |
257 | return FALSE; | 257 | return FALSE; |
258 | 258 | ||
259 | Config cfg( "qpe" ); | 259 | Config cfg( "qpe" ); |
260 | cfg.setGroup("ApplicationPositions"); | 260 | cfg.setGroup("ApplicationPositions"); |
261 | QString str = cfg.readEntry( app, QString::null ); | 261 | QString str = cfg.readEntry( app, QString::null ); |
262 | QStringList l = QStringList::split(",", str); | 262 | QStringList l = QStringList::split(",", str); |
263 | 263 | ||
264 | if ( l.count() == 5) { | 264 | if ( l.count() == 5) { |
265 | p.setX( l[0].toInt() ); | 265 | p.setX( l[0].toInt() ); |
266 | p.setY( l[1].toInt() ); | 266 | p.setY( l[1].toInt() ); |
267 | 267 | ||
268 | s.setWidth( l[2].toInt() ); | 268 | s.setWidth( l[2].toInt() ); |
269 | s.setHeight( l[3].toInt() ); | 269 | s.setHeight( l[3].toInt() ); |
270 | 270 | ||
271 | maximized = l[4].toInt(); | 271 | maximized = l[4].toInt(); |
272 | 272 | ||
273 | return TRUE; | 273 | return TRUE; |
274 | } | 274 | } |
275 | #endif | 275 | #endif |
276 | return FALSE; | 276 | return FALSE; |
277 | } | 277 | } |
278 | 278 | ||
279 | 279 | ||
280 | static bool validate_widget_size(const QWidget *w, QPoint &p, QSize &s) | 280 | static bool validate_widget_size(const QWidget *w, QPoint &p, QSize &s) |
281 | { | 281 | { |
282 | #ifndef Q_WS_QWS | 282 | #ifndef Q_WS_QWS |
283 | QRect qt_maxWindowRect = qApp->desktop()->geometry(); | 283 | QRect qt_maxWindowRect = qApp->desktop()->geometry(); |
284 | #endif | 284 | #endif |
285 | int maxX = qt_maxWindowRect.width(); | 285 | int maxX = qt_maxWindowRect.width(); |
286 | int maxY = qt_maxWindowRect.height(); | 286 | int maxY = qt_maxWindowRect.height(); |
287 | int wWidth = s.width() + ( w->frameGeometry().width() - w->geometry().width() ); | 287 | int wWidth = s.width() + ( w->frameGeometry().width() - w->geometry().width() ); |
288 | int wHeight = s.height() + ( w->frameGeometry().height() - w->geometry().height() ); | 288 | int wHeight = s.height() + ( w->frameGeometry().height() - w->geometry().height() ); |
289 | 289 | ||
290 | // total window size is not allowed to be larger than desktop window size | 290 | // total window size is not allowed to be larger than desktop window size |
291 | if ( ( wWidth >= maxX ) && ( wHeight >= maxY ) ) | 291 | if ( ( wWidth >= maxX ) && ( wHeight >= maxY ) ) |
292 | return FALSE; | 292 | return FALSE; |
293 | 293 | ||
294 | if ( wWidth > maxX ) { | 294 | if ( wWidth > maxX ) { |
295 | s.setWidth( maxX - (w->frameGeometry().width() - w->geometry().width() ) ); | 295 | s.setWidth( maxX - (w->frameGeometry().width() - w->geometry().width() ) ); |
296 | wWidth = maxX; | 296 | wWidth = maxX; |
297 | } | 297 | } |
298 | 298 | ||
299 | if ( wHeight > maxY ) { | 299 | if ( wHeight > maxY ) { |
300 | s.setHeight( maxY - (w->frameGeometry().height() - w->geometry().height() ) ); | 300 | s.setHeight( maxY - (w->frameGeometry().height() - w->geometry().height() ) ); |
301 | wHeight = maxY; | 301 | wHeight = maxY; |
302 | } | 302 | } |
303 | 303 | ||
304 | // any smaller than this and the maximize/close/help buttons will be overlapping | 304 | // any smaller than this and the maximize/close/help buttons will be overlapping |
305 | if ( wWidth < 80 || wHeight < 60 ) | 305 | if ( wWidth < 80 || wHeight < 60 ) |
306 | return FALSE; | 306 | return FALSE; |
307 | 307 | ||
308 | if ( p.x() < 0 ) | 308 | if ( p.x() < 0 ) |
309 | p.setX(0); | 309 | p.setX(0); |
310 | if ( p.y() < 0 ) | 310 | if ( p.y() < 0 ) |
311 | p.setY(0); | 311 | p.setY(0); |
312 | 312 | ||
313 | if ( p.x() + wWidth > maxX ) | 313 | if ( p.x() + wWidth > maxX ) |
314 | p.setX( maxX - wWidth ); | 314 | p.setX( maxX - wWidth ); |
315 | if ( p.y() + wHeight > maxY ) | 315 | if ( p.y() + wHeight > maxY ) |
316 | p.setY( maxY - wHeight ); | 316 | p.setY( maxY - wHeight ); |
317 | 317 | ||
318 | return TRUE; | 318 | return TRUE; |
319 | } | 319 | } |
320 | 320 | ||
321 | static void store_widget_rect(QWidget *w, QString &app) | 321 | static void store_widget_rect(QWidget *w, QString &app) |
322 | { | 322 | { |
323 | if( !w ) | 323 | if( !w ) |
324 | return; | 324 | return; |
325 | #ifndef OPIE_NO_WINDOWED | 325 | #ifndef OPIE_NO_WINDOWED |
326 | // 350 is the trigger in qwsdefaultdecoration for providing a resize button | 326 | // 350 is the trigger in qwsdefaultdecoration for providing a resize button |
327 | if ( qApp->desktop()->width() <= 350 ) | 327 | if ( qApp->desktop()->width() <= 350 ) |
328 | return; | 328 | return; |
329 | // we use these to map the offset of geometry and pos. ( we can only use normalGeometry to | 329 | // we use these to map the offset of geometry and pos. ( we can only use normalGeometry to |
330 | // get the non-maximized version, so we have to do it the hard way ) | 330 | // get the non-maximized version, so we have to do it the hard way ) |
331 | int offsetX = w->x() - w->geometry().left(); | 331 | int offsetX = w->x() - w->geometry().left(); |
332 | int offsetY = w->y() - w->geometry().top(); | 332 | int offsetY = w->y() - w->geometry().top(); |
333 | 333 | ||
334 | QRect r; | 334 | QRect r; |
335 | if ( w->isMaximized() ) | 335 | if ( w->isMaximized() ) |
336 | r = ( (HackWidget *) w)->normalGeometry(); | 336 | r = ( (HackWidget *) w)->normalGeometry(); |
337 | else | 337 | else |
338 | r = w->geometry(); | 338 | r = w->geometry(); |
339 | 339 | ||
340 | // Stores the window placement as pos(), size() (due to the offset mapping) | 340 | // Stores the window placement as pos(), size() (due to the offset mapping) |
341 | Config cfg( "qpe" ); | 341 | Config cfg( "qpe" ); |
342 | cfg.setGroup("ApplicationPositions"); | 342 | cfg.setGroup("ApplicationPositions"); |
343 | QString s; | 343 | QString s; |
344 | s.sprintf("%d,%d,%d,%d,%d", r.left() + offsetX, r.top() + offsetY, r.width(), r.height(), w->isMaximized() ); | 344 | s.sprintf("%d,%d,%d,%d,%d", r.left() + offsetX, r.top() + offsetY, r.width(), r.height(), w->isMaximized() ); |
345 | cfg.writeEntry( app, s ); | 345 | cfg.writeEntry( app, s ); |
346 | #endif | 346 | #endif |
347 | } | 347 | } |
348 | 348 | ||
349 | static bool setWidgetCaptionFromAppName( QWidget* /*mw*/, const QString& /*appName*/, const QString& /*appsPath*/ ) | 349 | static bool setWidgetCaptionFromAppName( QWidget* /*mw*/, const QString& /*appName*/, const QString& /*appsPath*/ ) |
350 | { | 350 | { |
351 | /* | 351 | /* |
352 | // This works but disable it for now until it is safe to apply | 352 | // This works but disable it for now until it is safe to apply |
353 | // What is does is scan the .desktop files of all the apps for | 353 | // What is does is scan the .desktop files of all the apps for |
354 | // the applnk that has the corresponding argv[0] as this program | 354 | // the applnk that has the corresponding argv[0] as this program |
355 | // then it uses the name stored in the .desktop file as the caption | 355 | // then it uses the name stored in the .desktop file as the caption |
356 | // for the main widget. This saves duplicating translations for | 356 | // for the main widget. This saves duplicating translations for |
357 | // the app name in the program and in the .desktop files. | 357 | // the app name in the program and in the .desktop files. |
358 | 358 | ||
359 | AppLnkSet apps( appsPath ); | 359 | AppLnkSet apps( appsPath ); |
360 | 360 | ||
361 | QList<AppLnk> appsList = apps.children(); | 361 | QList<AppLnk> appsList = apps.children(); |
362 | for ( QListIterator<AppLnk> it(appsList); it.current(); ++it ) { | 362 | for ( QListIterator<AppLnk> it(appsList); it.current(); ++it ) { |
363 | if ( (*it)->exec() == appName ) { | 363 | if ( (*it)->exec() == appName ) { |
364 | mw->setCaption( (*it)->name() ); | 364 | mw->setCaption( (*it)->name() ); |
365 | return TRUE; | 365 | return TRUE; |
366 | } | 366 | } |
367 | } | 367 | } |
368 | */ | 368 | */ |
369 | return FALSE; | 369 | return FALSE; |
370 | } | 370 | } |
371 | 371 | ||
372 | 372 | ||
373 | void show(QWidget* mw, bool nomax) | 373 | void show(QWidget* mw, bool nomax) |
374 | { | 374 | { |
375 | setWidgetCaptionFromAppName( mw, appName, QPEApplication::qpeDir() + "apps" ); | 375 | setWidgetCaptionFromAppName( mw, appName, QPEApplication::qpeDir() + "apps" ); |
376 | nomaximize = nomax; | 376 | nomaximize = nomax; |
377 | qpe_main_widget = mw; | 377 | qpe_main_widget = mw; |
378 | qcopQok = TRUE; | 378 | qcopQok = TRUE; |
379 | #ifndef QT_NO_COP | 379 | #ifndef QT_NO_COP |
380 | 380 | ||
381 | sendQCopQ(); | 381 | sendQCopQ(); |
382 | #endif | 382 | #endif |
383 | 383 | ||
384 | if ( preloaded ) { | 384 | if ( preloaded ) { |
385 | if (forceshow) | 385 | if (forceshow) |
386 | show_mx(mw, nomax, appName); | 386 | show_mx(mw, nomax, appName); |
387 | } | 387 | } |
388 | else if ( keep_running ) { | 388 | else if ( keep_running ) { |
389 | show_mx(mw, nomax, appName); | 389 | show_mx(mw, nomax, appName); |
390 | } | 390 | } |
391 | } | 391 | } |
392 | 392 | ||
393 | void loadTextCodecs() | 393 | void loadTextCodecs() |
394 | { | 394 | { |
395 | QString path = QPEApplication::qpeDir() + "plugins/textcodecs"; | 395 | QString path = QPEApplication::qpeDir() + "plugins/textcodecs"; |
396 | #ifdef Q_OS_MACX | 396 | #ifdef Q_OS_MACX |
397 | QDir dir( path, "lib*.dylib" ); | 397 | QDir dir( path, "lib*.dylib" ); |
398 | #else | 398 | #else |
399 | QDir dir( path, "lib*.so" ); | 399 | QDir dir( path, "lib*.so" ); |
400 | #endif | 400 | #endif |
401 | QStringList list; | 401 | QStringList list; |
402 | if ( dir. exists ( )) | 402 | if ( dir. exists ( )) |
403 | list = dir.entryList(); | 403 | list = dir.entryList(); |
404 | QStringList::Iterator it; | 404 | QStringList::Iterator it; |
405 | for ( it = list.begin(); it != list.end(); ++it ) { | 405 | for ( it = list.begin(); it != list.end(); ++it ) { |
406 | TextCodecInterface *iface = 0; | 406 | TextCodecInterface *iface = 0; |
407 | QLibrary *lib = new QLibrary( path + "/" + *it ); | 407 | QLibrary *lib = new QLibrary( path + "/" + *it ); |
408 | if ( lib->queryInterface( IID_QtopiaTextCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { | 408 | if ( lib->queryInterface( IID_QtopiaTextCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { |
409 | QValueList<int> mibs = iface->mibEnums(); | 409 | QValueList<int> mibs = iface->mibEnums(); |
410 | for (QValueList<int>::ConstIterator i = mibs.begin(); i != mibs.end(); ++i) { | 410 | for (QValueList<int>::ConstIterator i = mibs.begin(); i != mibs.end(); ++i) { |
411 | (void)iface->createForMib(*i); | 411 | (void)iface->createForMib(*i); |
412 | // ### it exists now; need to remember if we can delete it | 412 | // ### it exists now; need to remember if we can delete it |
413 | } | 413 | } |
414 | } | 414 | } |
415 | else { | 415 | else { |
416 | lib->unload(); | 416 | lib->unload(); |
417 | delete lib; | 417 | delete lib; |
418 | } | 418 | } |
419 | } | 419 | } |
420 | } | 420 | } |
421 | 421 | ||
422 | void loadImageCodecs() | 422 | void loadImageCodecs() |
423 | { | 423 | { |
424 | QString path = QPEApplication::qpeDir() + "plugins/imagecodecs"; | 424 | QString path = QPEApplication::qpeDir() + "plugins/imagecodecs"; |
425 | #ifdef Q_OS_MACX | 425 | #ifdef Q_OS_MACX |
426 | QDir dir( path, "lib*.dylib" ); | 426 | QDir dir( path, "lib*.dylib" ); |
427 | #else | 427 | #else |
428 | QDir dir( path, "lib*.so" ); | 428 | QDir dir( path, "lib*.so" ); |
429 | #endif | 429 | #endif |
430 | QStringList list; | 430 | QStringList list; |
431 | if ( dir. exists ( )) | 431 | if ( dir. exists ( )) |
432 | list = dir.entryList(); | 432 | list = dir.entryList(); |
433 | QStringList::Iterator it; | 433 | QStringList::Iterator it; |
434 | for ( it = list.begin(); it != list.end(); ++it ) { | 434 | for ( it = list.begin(); it != list.end(); ++it ) { |
435 | ImageCodecInterface *iface = 0; | 435 | ImageCodecInterface *iface = 0; |
436 | QLibrary *lib = new QLibrary( path + "/" + *it ); | 436 | QLibrary *lib = new QLibrary( path + "/" + *it ); |
437 | if ( lib->queryInterface( IID_QtopiaImageCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { | 437 | if ( lib->queryInterface( IID_QtopiaImageCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { |
438 | QStringList formats = iface->keys(); | 438 | QStringList formats = iface->keys(); |
439 | for (QStringList::ConstIterator i = formats.begin(); i != formats.end(); ++i) { | 439 | for (QStringList::ConstIterator i = formats.begin(); i != formats.end(); ++i) { |
440 | (void)iface->installIOHandler(*i); | 440 | (void)iface->installIOHandler(*i); |
441 | // ### it exists now; need to remember if we can delete it | 441 | // ### it exists now; need to remember if we can delete it |
442 | } | 442 | } |
443 | } | 443 | } |
444 | else { | 444 | else { |
445 | lib->unload(); | 445 | lib->unload(); |
446 | delete lib; | 446 | delete lib; |
447 | } | 447 | } |
448 | } | 448 | } |
449 | } | 449 | } |
450 | 450 | ||
451 | }; | 451 | }; |
452 | 452 | ||
453 | class ResourceMimeFactory : public QMimeSourceFactory | 453 | class ResourceMimeFactory : public QMimeSourceFactory |
454 | { | 454 | { |
455 | public: | 455 | public: |
456 | ResourceMimeFactory() : resImage( 0 ) | 456 | ResourceMimeFactory() : resImage( 0 ) |
457 | { | 457 | { |
458 | setFilePath( Global::helpPath() ); | 458 | setFilePath( Global::helpPath() ); |
459 | setExtensionType( "html", "text/html;charset=UTF-8" ); | 459 | setExtensionType( "html", "text/html;charset=UTF-8" ); |
460 | } | 460 | } |
461 | ~ResourceMimeFactory() { | 461 | ~ResourceMimeFactory() { |
462 | delete resImage; | 462 | delete resImage; |
463 | } | 463 | } |
464 | 464 | ||
465 | const QMimeSource* data( const QString& abs_name ) const | 465 | const QMimeSource* data( const QString& abs_name ) const |
466 | { | 466 | { |
467 | const QMimeSource * r = QMimeSourceFactory::data( abs_name ); | 467 | const QMimeSource * r = QMimeSourceFactory::data( abs_name ); |
468 | if ( !r ) { | 468 | if ( !r ) { |
469 | int sl = abs_name.length(); | 469 | int sl = abs_name.length(); |
470 | do { | 470 | do { |
471 | sl = abs_name.findRev( '/', sl - 1 ); | 471 | sl = abs_name.findRev( '/', sl - 1 ); |
472 | QString name = sl >= 0 ? abs_name.mid( sl + 1 ) : abs_name; | 472 | QString name = sl >= 0 ? abs_name.mid( sl + 1 ) : abs_name; |
473 | int dot = name.findRev( '.' ); | 473 | int dot = name.findRev( '.' ); |
474 | if ( dot >= 0 ) | 474 | if ( dot >= 0 ) |
475 | name = name.left( dot ); | 475 | name = name.left( dot ); |
476 | QImage img = Resource::loadImage( name ); | 476 | QImage img = Resource::loadImage( name ); |
477 | if ( !img.isNull() ) { | 477 | if ( !img.isNull() ) { |
478 | delete resImage; | 478 | delete resImage; |
479 | resImage = new QImageDrag( img ); | 479 | resImage = new QImageDrag( img ); |
480 | r = resImage; | 480 | r = resImage; |
481 | } | 481 | } |
482 | } | 482 | } |
483 | while ( !r && sl > 0 ); | 483 | while ( !r && sl > 0 ); |
484 | } | 484 | } |
485 | return r; | 485 | return r; |
486 | } | 486 | } |
487 | private: | 487 | private: |
488 | mutable QImageDrag *resImage; | 488 | mutable QImageDrag *resImage; |
489 | }; | 489 | }; |
490 | 490 | ||
491 | static int& hack(int& i) | 491 | static int& hack(int& i) |
492 | { | 492 | { |
493 | #if QT_VERSION <= 230 && defined(QT_NO_CODECS) | 493 | #if QT_VERSION <= 230 && defined(QT_NO_CODECS) |
494 | // These should be created, but aren't in Qt 2.3.0 | 494 | // These should be created, but aren't in Qt 2.3.0 |
495 | (void)new QUtf8Codec; | 495 | (void)new QUtf8Codec; |
496 | (void)new QUtf16Codec; | 496 | (void)new QUtf16Codec; |
497 | #endif | 497 | #endif |
498 | return i; | 498 | return i; |
499 | } | 499 | } |
500 | 500 | ||
501 | static int muted = 0; | 501 | static int muted = 0; |
502 | static int micMuted = 0; | 502 | static int micMuted = 0; |
503 | 503 | ||
504 | static void setVolume( int t = 0, int percent = -1 ) | 504 | static void setVolume( int t = 0, int percent = -1 ) |
505 | { | 505 | { |
506 | switch ( t ) { | 506 | switch ( t ) { |
507 | case 0: { | 507 | case 0: { |
508 | Config cfg( "qpe" ); | 508 | Config cfg( "qpe" ); |
509 | cfg.setGroup( "Volume" ); | 509 | cfg.setGroup( "Volume" ); |
510 | if ( percent < 0 ) | 510 | if ( percent < 0 ) |
511 | percent = cfg.readNumEntry( "VolumePercent", 50 ); | 511 | percent = cfg.readNumEntry( "VolumePercent", 50 ); |
512 | #ifndef QT_NO_SOUND | 512 | #ifndef QT_NO_SOUND |
513 | int fd = 0; | 513 | int fd = 0; |
514 | #ifdef QT_QWS_DEVFS | 514 | #ifdef QT_QWS_DEVFS |
515 | if ( ( fd = open( "/dev/sound/mixer", O_RDWR ) ) >= 0 ) { | 515 | if ( ( fd = open( "/dev/sound/mixer", O_RDWR ) ) >= 0 ) { |
516 | #else | 516 | #else |
517 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 517 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
518 | #endif | 518 | #endif |
519 | int vol = muted ? 0 : percent; | 519 | int vol = muted ? 0 : percent; |
520 | // set both channels to same volume | 520 | // set both channels to same volume |
521 | vol |= vol << 8; | 521 | vol |= vol << 8; |
522 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_VOLUME ), &vol ); | 522 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_VOLUME ), &vol ); |
523 | ::close( fd ); | 523 | ::close( fd ); |
524 | } | 524 | } |
525 | #endif | 525 | #endif |
526 | } | 526 | } |
527 | break; | 527 | break; |
528 | } | 528 | } |
529 | } | 529 | } |
530 | 530 | ||
531 | static void setMic( int t = 0, int percent = -1 ) | 531 | static void setMic( int t = 0, int percent = -1 ) |
532 | { | 532 | { |
533 | switch ( t ) { | 533 | switch ( t ) { |
534 | case 0: { | 534 | case 0: { |
535 | Config cfg( "qpe" ); | 535 | Config cfg( "qpe" ); |
536 | cfg.setGroup( "Volume" ); | 536 | cfg.setGroup( "Volume" ); |
537 | if ( percent < 0 ) | 537 | if ( percent < 0 ) |
538 | percent = cfg.readNumEntry( "Mic", 50 ); | 538 | percent = cfg.readNumEntry( "Mic", 50 ); |
539 | 539 | ||
540 | #ifndef QT_NO_SOUND | 540 | #ifndef QT_NO_SOUND |
541 | int fd = 0; | 541 | int fd = 0; |
542 | int mic = micMuted ? 0 : percent; | 542 | int mic = micMuted ? 0 : percent; |
543 | #ifdef QT_QWS_DEVFS | 543 | #ifdef QT_QWS_DEVFS |
544 | if ( ( fd = open( "/dev/sound/mixer", O_RDWR ) ) >= 0 ) { | 544 | if ( ( fd = open( "/dev/sound/mixer", O_RDWR ) ) >= 0 ) { |
545 | #else | 545 | #else |
546 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 546 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
547 | #endif | 547 | #endif |
548 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_MIC ), &mic ); | 548 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_MIC ), &mic ); |
549 | ::close( fd ); | 549 | ::close( fd ); |
550 | } | 550 | } |
551 | #endif | 551 | #endif |
552 | } | 552 | } |
553 | break; | 553 | break; |
554 | } | 554 | } |
555 | } | 555 | } |
556 | 556 | ||
557 | 557 | ||
558 | static void setBass( int t = 0, int percent = -1 ) | 558 | static void setBass( int t = 0, int percent = -1 ) |
559 | { | 559 | { |
560 | switch ( t ) { | 560 | switch ( t ) { |
561 | case 0: { | 561 | case 0: { |
562 | Config cfg( "qpe" ); | 562 | Config cfg( "qpe" ); |
563 | cfg.setGroup( "Volume" ); | 563 | cfg.setGroup( "Volume" ); |
564 | if ( percent < 0 ) | 564 | if ( percent < 0 ) |
565 | percent = cfg.readNumEntry( "BassPercent", 50 ); | 565 | percent = cfg.readNumEntry( "BassPercent", 50 ); |
566 | 566 | ||
567 | #ifndef QT_NO_SOUND | 567 | #ifndef QT_NO_SOUND |
568 | int fd = 0; | 568 | int fd = 0; |
569 | int bass = percent; | 569 | int bass = percent; |
570 | #ifdef QT_QWS_DEVFS | 570 | #ifdef QT_QWS_DEVFS |
571 | if ( ( fd = open( "/dev/sound/mixer", O_RDWR ) ) >= 0 ) { | 571 | if ( ( fd = open( "/dev/sound/mixer", O_RDWR ) ) >= 0 ) { |
572 | #else | 572 | #else |
573 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 573 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
574 | #endif | 574 | #endif |
575 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_BASS ), &bass ); | 575 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_BASS ), &bass ); |
576 | ::close( fd ); | 576 | ::close( fd ); |
577 | } | 577 | } |
578 | #endif | 578 | #endif |
579 | } | 579 | } |
580 | break; | 580 | break; |
581 | } | 581 | } |
582 | } | 582 | } |
583 | 583 | ||
584 | 584 | ||
585 | static void setTreble( int t = 0, int percent = -1 ) | 585 | static void setTreble( int t = 0, int percent = -1 ) |
586 | { | 586 | { |
587 | switch ( t ) { | 587 | switch ( t ) { |
588 | case 0: { | 588 | case 0: { |
589 | Config cfg( "qpe" ); | 589 | Config cfg( "qpe" ); |
590 | cfg.setGroup( "Volume" ); | 590 | cfg.setGroup( "Volume" ); |
591 | if ( percent < 0 ) | 591 | if ( percent < 0 ) |
592 | percent = cfg.readNumEntry( "TreblePercent", 50 ); | 592 | percent = cfg.readNumEntry( "TreblePercent", 50 ); |
593 | 593 | ||
594 | #ifndef QT_NO_SOUND | 594 | #ifndef QT_NO_SOUND |
595 | int fd = 0; | 595 | int fd = 0; |
596 | int treble = percent; | 596 | int treble = percent; |
597 | #ifdef QT_QWS_DEVFS | 597 | #ifdef QT_QWS_DEVFS |
598 | if ( ( fd = open( "/dev/sound/mixer", O_RDWR ) ) >= 0 ) { | 598 | if ( ( fd = open( "/dev/sound/mixer", O_RDWR ) ) >= 0 ) { |
599 | #else | 599 | #else |
600 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { | 600 | if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { |
601 | #endif | 601 | #endif |
602 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_TREBLE ), &treble ); | 602 | ioctl( fd, MIXER_WRITE( SOUND_MIXER_TREBLE ), &treble ); |
603 | ::close( fd ); | 603 | ::close( fd ); |
604 | } | 604 | } |
605 | #endif | 605 | #endif |
606 | } | 606 | } |
607 | break; | 607 | break; |
608 | } | 608 | } |
609 | } | 609 | } |
610 | 610 | ||
611 | 611 | ||
612 | /** | 612 | /** |
613 | \class QPEApplication | 613 | \class QPEApplication |
614 | \brief The QPEApplication class implements various system services | 614 | \brief The QPEApplication class implements various system services |
615 | that are available to all Qtopia applications. | 615 | that are available to all Qtopia applications. |
616 | 616 | ||
617 | Simply by using QPEApplication instead of QApplication, a standard Qt | 617 | Simply by using QPEApplication instead of QApplication, a standard Qt |
618 | application becomes a Qtopia application. It automatically follows | 618 | application becomes a Qtopia application. It automatically follows |
619 | style changes, quits and raises, and in the | 619 | style changes, quits and raises, and in the |
620 | case of \link docwidget.html document-oriented\endlink applications, | 620 | case of \link docwidget.html document-oriented\endlink applications, |
621 | changes the currently displayed document in response to the environment. | 621 | changes the currently displayed document in response to the environment. |
622 | 622 | ||
623 | To create a \link docwidget.html document-oriented\endlink | 623 | To create a \link docwidget.html document-oriented\endlink |
624 | application use showMainDocumentWidget(); to create a | 624 | application use showMainDocumentWidget(); to create a |
625 | non-document-oriented application use showMainWidget(). The | 625 | non-document-oriented application use showMainWidget(). The |
626 | keepRunning() function indicates whether the application will | 626 | keepRunning() function indicates whether the application will |
627 | continue running after it's processed the last \link qcop.html | 627 | continue running after it's processed the last \link qcop.html |
628 | QCop\endlink message. This can be changed using setKeepRunning(). | 628 | QCop\endlink message. This can be changed using setKeepRunning(). |
629 | 629 | ||
630 | A variety of signals are emitted when certain events occur, for | 630 | A variety of signals are emitted when certain events occur, for |
631 | example, timeChanged(), clockChanged(), weekChanged(), | 631 | example, timeChanged(), clockChanged(), weekChanged(), |
632 | dateFormatChanged() and volumeChanged(). If the application receives | 632 | dateFormatChanged() and volumeChanged(). If the application receives |
633 | a \link qcop.html QCop\endlink message on the application's | 633 | a \link qcop.html QCop\endlink message on the application's |
634 | QPE/Application/\e{appname} channel, the appMessage() signal is | 634 | QPE/Application/\e{appname} channel, the appMessage() signal is |
635 | emitted. There are also flush() and reload() signals, which | 635 | emitted. There are also flush() and reload() signals, which |
636 | are emitted when synching begins and ends respectively - upon these | 636 | are emitted when synching begins and ends respectively - upon these |
637 | signals, the application should save and reload any data | 637 | signals, the application should save and reload any data |
638 | files that are involved in synching. Most of these signals will initially | 638 | files that are involved in synching. Most of these signals will initially |
639 | be received and unfiltered through the appMessage() signal. | 639 | be received and unfiltered through the appMessage() signal. |
640 | 640 | ||
641 | This class also provides a set of useful static functions. The | 641 | This class also provides a set of useful static functions. The |
642 | qpeDir() and documentDir() functions return the respective paths. | 642 | qpeDir() and documentDir() functions return the respective paths. |
643 | The grabKeyboard() and ungrabKeyboard() functions are used to | 643 | The grabKeyboard() and ungrabKeyboard() functions are used to |
644 | control whether the application takes control of the device's | 644 | control whether the application takes control of the device's |
645 | physical buttons (e.g. application launch keys). The stylus' mode of | 645 | physical buttons (e.g. application launch keys). The stylus' mode of |
646 | operation is set with setStylusOperation() and retrieved with | 646 | operation is set with setStylusOperation() and retrieved with |
647 | stylusOperation(). There are also setInputMethodHint() and | 647 | stylusOperation(). There are also setInputMethodHint() and |
648 | inputMethodHint() functions. | 648 | inputMethodHint() functions. |
649 | 649 | ||
650 | \ingroup qtopiaemb | 650 | \ingroup qtopiaemb |
651 | */ | 651 | */ |
652 | 652 | ||
653 | /*! | 653 | /*! |
654 | \fn void QPEApplication::clientMoused() | 654 | \fn void QPEApplication::clientMoused() |
655 | 655 | ||
656 | \internal | 656 | \internal |
657 | */ | 657 | */ |
658 | 658 | ||
659 | /*! | 659 | /*! |
660 | \fn void QPEApplication::timeChanged(); | 660 | \fn void QPEApplication::timeChanged(); |
661 | This signal is emitted when the time changes outside the normal | 661 | This signal is emitted when the time changes outside the normal |
662 | passage of time, i.e. if the time is set backwards or forwards. | 662 | passage of time, i.e. if the time is set backwards or forwards. |
663 | */ | 663 | */ |
664 | 664 | ||
665 | /*! | 665 | /*! |
666 | \fn void QPEApplication::clockChanged( bool ampm ); | 666 | \fn void QPEApplication::clockChanged( bool ampm ); |
667 | 667 | ||
668 | This signal is emitted when the user changes the clock's style. If | 668 | This signal is emitted when the user changes the clock's style. If |
669 | \a ampm is TRUE, the user wants a 12-hour AM/PM clock, otherwise, | 669 | \a ampm is TRUE, the user wants a 12-hour AM/PM clock, otherwise, |
670 | they want a 24-hour clock. | 670 | they want a 24-hour clock. |
671 | */ | 671 | */ |
672 | 672 | ||
673 | /*! | 673 | /*! |
674 | \fn void QPEApplication::volumeChanged( bool muted ) | 674 | \fn void QPEApplication::volumeChanged( bool muted ) |
675 | 675 | ||
676 | This signal is emitted whenever the mute state is changed. If \a | 676 | This signal is emitted whenever the mute state is changed. If \a |
677 | muted is TRUE, then sound output has been muted. | 677 | muted is TRUE, then sound output has been muted. |
678 | */ | 678 | */ |
679 | 679 | ||
680 | /*! | 680 | /*! |
681 | \fn void QPEApplication::weekChanged( bool startOnMonday ) | 681 | \fn void QPEApplication::weekChanged( bool startOnMonday ) |
682 | 682 | ||
683 | This signal is emitted if the week start day is changed. If \a | 683 | This signal is emitted if the week start day is changed. If \a |
684 | startOnMonday is TRUE then the first day of the week is Monday; if | 684 | startOnMonday is TRUE then the first day of the week is Monday; if |
685 | \a startOnMonday is FALSE then the first day of the week is | 685 | \a startOnMonday is FALSE then the first day of the week is |
686 | Sunday. | 686 | Sunday. |
687 | */ | 687 | */ |
688 | 688 | ||
689 | /*! | 689 | /*! |
690 | \fn void QPEApplication::dateFormatChanged(DateFormat) | 690 | \fn void QPEApplication::dateFormatChanged(DateFormat) |
691 | 691 | ||
692 | This signal is emitted whenever the date format is changed. | 692 | This signal is emitted whenever the date format is changed. |
693 | */ | 693 | */ |
694 | 694 | ||
695 | /*! | 695 | /*! |
696 | \fn void QPEApplication::flush() | 696 | \fn void QPEApplication::flush() |
697 | 697 | ||
698 | ### | 698 | ### |
699 | */ | 699 | */ |
700 | 700 | ||
701 | /*! | 701 | /*! |
702 | \fn void QPEApplication::reload() | 702 | \fn void QPEApplication::reload() |
703 | 703 | ||
704 | */ | 704 | */ |
705 | 705 | ||
706 | 706 | ||
707 | 707 | ||
708 | void QPEApplication::processQCopFile() | 708 | void QPEApplication::processQCopFile() |
709 | { | 709 | { |
710 | QString qcopfn("/tmp/qcop-msg-"); | 710 | QString qcopfn("/tmp/qcop-msg-"); |
711 | qcopfn += d->appName; // append command name | 711 | qcopfn += d->appName; // append command name |
712 | 712 | ||
713 | QFile f(qcopfn); | 713 | QFile f(qcopfn); |
714 | if ( f.open(IO_ReadWrite) ) { | 714 | if ( f.open(IO_ReadWrite) ) { |
715 | #ifndef Q_OS_WIN32 | 715 | #ifndef Q_OS_WIN32 |
716 | flock(f.handle(), LOCK_EX); | 716 | flock(f.handle(), LOCK_EX); |
717 | #endif | 717 | #endif |
718 | QDataStream ds(&f); | 718 | QDataStream ds(&f); |
719 | QCString channel, message; | 719 | QCString channel, message; |
720 | QByteArray data; | 720 | QByteArray data; |
721 | while(!ds.atEnd()) { | 721 | while(!ds.atEnd()) { |
722 | ds >> channel >> message >> data; | 722 | ds >> channel >> message >> data; |
723 | d->enqueueQCop(channel,message,data); | 723 | d->enqueueQCop(channel,message,data); |
724 | } | 724 | } |
725 | ::ftruncate(f.handle(), 0); | 725 | ::ftruncate(f.handle(), 0); |
726 | #ifndef Q_OS_WIN32 | 726 | #ifndef Q_OS_WIN32 |
727 | f.flush(); | 727 | f.flush(); |
728 | flock(f.handle(), LOCK_UN); | 728 | flock(f.handle(), LOCK_UN); |
729 | #endif | 729 | #endif |
730 | } | 730 | } |
731 | #endif | 731 | #endif |
732 | } | 732 | } |
733 | 733 | ||
734 | 734 | ||
735 | /*! | 735 | /*! |
736 | \fn void QPEApplication::appMessage( const QCString& msg, const QByteArray& data ) | 736 | \fn void QPEApplication::appMessage( const QCString& msg, const QByteArray& data ) |
737 | 737 | ||
738 | This signal is emitted when a message is received on this | 738 | This signal is emitted when a message is received on this |
739 | application's QPE/Application/<i>appname</i> \link qcop.html | 739 | application's QPE/Application/<i>appname</i> \link qcop.html |
740 | QCop\endlink channel. | 740 | QCop\endlink channel. |
741 | 741 | ||
742 | The slot to which you connect this signal uses \a msg and \a data | 742 | The slot to which you connect this signal uses \a msg and \a data |
743 | in the following way: | 743 | in the following way: |
744 | 744 | ||
745 | \code | 745 | \code |
746 | void MyWidget::receive( const QCString& msg, const QByteArray& data ) | 746 | void MyWidget::receive( const QCString& msg, const QByteArray& data ) |
747 | { | 747 | { |
748 | QDataStream stream( data, IO_ReadOnly ); | 748 | QDataStream stream( data, IO_ReadOnly ); |
749 | if ( msg == "someMessage(int,int,int)" ) { | 749 | if ( msg == "someMessage(int,int,int)" ) { |
750 | int a,b,c; | 750 | int a,b,c; |
751 | stream >> a >> b >> c; | 751 | stream >> a >> b >> c; |
752 | ... | 752 | ... |
753 | } else if ( msg == "otherMessage(QString)" ) { | 753 | } else if ( msg == "otherMessage(QString)" ) { |
754 | ... | 754 | ... |
755 | } | 755 | } |
756 | } | 756 | } |
757 | \endcode | 757 | \endcode |
758 | 758 | ||
759 | \sa qcop.html | 759 | \sa qcop.html |
760 | Note that messages received here may be processed by qpe application | 760 | Note that messages received here may be processed by qpe application |
761 | and emitted as signals, such as flush() and reload(). | 761 | and emitted as signals, such as flush() and reload(). |
762 | */ | 762 | */ |
763 | 763 | ||
764 | #ifndef QT_NO_TRANSLATION | 764 | #ifndef QT_NO_TRANSLATION |
765 | static void qtopia_loadTranslations( const QStringList& qms ) | 765 | static void qtopia_loadTranslations( const QStringList& qms ) |
766 | { | 766 | { |
767 | QStringList langs = Global::languageList(); | 767 | QStringList langs = Global::languageList(); |
768 | 768 | ||
769 | for (QStringList::ConstIterator it = langs.begin(); it!=langs.end(); ++it) { | 769 | for (QStringList::ConstIterator it = langs.begin(); it!=langs.end(); ++it) { |
770 | QString lang = *it; | 770 | QString lang = *it; |
771 | 771 | ||
772 | QTranslator * trans; | 772 | QTranslator * trans; |
773 | QString tfn; | 773 | QString tfn; |
774 | 774 | ||
775 | for (QStringList::ConstIterator qmit = qms.begin(); qmit!=qms.end(); ++qmit) { | 775 | for (QStringList::ConstIterator qmit = qms.begin(); qmit!=qms.end(); ++qmit) { |
776 | trans = new QTranslator(qApp); | 776 | trans = new QTranslator(qApp); |
777 | tfn = QPEApplication::qpeDir() + "i18n/" + lang + "/" + *qmit + ".qm"; | 777 | tfn = QPEApplication::qpeDir() + "i18n/" + lang + "/" + *qmit + ".qm"; |
778 | if ( trans->load( tfn )) | 778 | if ( trans->load( tfn )) |
779 | qApp->installTranslator( trans ); | 779 | qApp->installTranslator( trans ); |
780 | else | 780 | else |
781 | delete trans; | 781 | delete trans; |
782 | } | 782 | } |
783 | } | 783 | } |
784 | } | 784 | } |
785 | #endif | 785 | #endif |
786 | 786 | ||
787 | /* | 787 | /* |
788 | Turn off qDebug in release mode | 788 | Turn off qDebug in release mode |
789 | */ | 789 | */ |
790 | static void qtopiaMsgHandler(QtMsgType type, const char* msg) | 790 | static void qtopiaMsgHandler(QtMsgType type, const char* msg) |
791 | { | 791 | { |
792 | switch ( type ) { | 792 | switch ( type ) { |
793 | case QtDebugMsg: | 793 | case QtDebugMsg: |
794 | #ifdef QT_DEBUG | 794 | #ifdef QT_DEBUG |
795 | fprintf( stderr, "Debug: %s\n", msg ); | 795 | fprintf( stderr, "Debug: %s\n", msg ); |
796 | #endif | 796 | #endif |
797 | break; | 797 | break; |
798 | case QtWarningMsg: | 798 | case QtWarningMsg: |
799 | #ifdef QT_DEBUG | 799 | #ifdef QT_DEBUG |
800 | fprintf( stderr, "Warning: %s\n", msg ); | 800 | fprintf( stderr, "Warning: %s\n", msg ); |
801 | #endif | 801 | #endif |
802 | break; | 802 | break; |
803 | case QtFatalMsg: | 803 | case QtFatalMsg: |
804 | fprintf( stderr, "Fatal: %s\n", msg ); | 804 | fprintf( stderr, "Fatal: %s\n", msg ); |
805 | abort(); | 805 | abort(); |
806 | } | 806 | } |
807 | } | 807 | } |
808 | 808 | ||
809 | /*! | 809 | /*! |
810 | Constructs a QPEApplication just as you would construct | 810 | Constructs a QPEApplication just as you would construct |
811 | a QApplication, passing \a argc, \a argv, and \a t. | 811 | a QApplication, passing \a argc, \a argv, and \a t. |
812 | 812 | ||
813 | For applications, \a t should be the default, GuiClient. Only | 813 | For applications, \a t should be the default, GuiClient. Only |
814 | the Qtopia server passes GuiServer. | 814 | the Qtopia server passes GuiServer. |
815 | */ | 815 | */ |
816 | QPEApplication::QPEApplication( int & argc, char **argv, Type t ) | 816 | QPEApplication::QPEApplication( int & argc, char **argv, Type t ) |
817 | : QApplication( hack(argc), argv, t ), pidChannel( 0 ) | 817 | : QApplication( hack(argc), argv, t ), pidChannel( 0 ) |
818 | { | 818 | { |
819 | QPixmapCache::setCacheLimit(256); // sensible default for smaller devices. | 819 | QPixmapCache::setCacheLimit(256); // sensible default for smaller devices. |
820 | qInstallMsgHandler(qtopiaMsgHandler); | 820 | qInstallMsgHandler(qtopiaMsgHandler); |
821 | 821 | ||
822 | d = new QPEApplicationData; | 822 | d = new QPEApplicationData; |
823 | d->loadTextCodecs(); | 823 | d->loadTextCodecs(); |
824 | d->loadImageCodecs(); | 824 | d->loadImageCodecs(); |
825 | 825 | ||
826 | setFont( QFont( d->fontFamily, d->fontSize ) ); | 826 | setFont( QFont( d->fontFamily, d->fontSize ) ); |
827 | AppLnk::setSmallIconSize( d->smallIconSize ); | 827 | AppLnk::setSmallIconSize( d->smallIconSize ); |
828 | AppLnk::setBigIconSize( d->bigIconSize ); | 828 | AppLnk::setBigIconSize( d->bigIconSize ); |
829 | 829 | ||
830 | QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory ); | 830 | QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory ); |
831 | 831 | ||
832 | connect( this, SIGNAL( lastWindowClosed() ), this, SLOT( hideOrQuit() ) ); | 832 | connect( this, SIGNAL( lastWindowClosed() ), this, SLOT( hideOrQuit() ) ); |
833 | 833 | ||
834 | 834 | ||
835 | sysChannel = new QCopChannel( "QPE/System", this ); | 835 | sysChannel = new QCopChannel( "QPE/System", this ); |
836 | connect( sysChannel, SIGNAL( received(const QCString&,const QByteArray&) ), | 836 | connect( sysChannel, SIGNAL( received(const QCString&,const QByteArray&) ), |
837 | this, SLOT( systemMessage(const QCString&,const QByteArray&) ) ); | 837 | this, SLOT( systemMessage(const QCString&,const QByteArray&) ) ); |
838 | 838 | ||
839 | /* COde now in initapp */ | 839 | /* COde now in initapp */ |
840 | #if 0 | 840 | #if 0 |
841 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 841 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
842 | 842 | ||
843 | QString qcopfn( "/tmp/qcop-msg-" ); | 843 | QString qcopfn( "/tmp/qcop-msg-" ); |
844 | qcopfn += QString( argv[ 0 ] ); // append command name | 844 | qcopfn += QString( argv[ 0 ] ); // append command name |
845 | 845 | ||
846 | QFile f( qcopfn ); | 846 | QFile f( qcopfn ); |
847 | if ( f.open( IO_ReadOnly ) ) { | 847 | if ( f.open( IO_ReadOnly ) ) { |
848 | flock( f.handle(), LOCK_EX ); | 848 | flock( f.handle(), LOCK_EX ); |
849 | } | 849 | } |
850 | 850 | ||
851 | 851 | ||
852 | 852 | ||
853 | QCString channel = QCString( argv[ 0 ] ); | 853 | QCString channel = QCString( argv[ 0 ] ); |
854 | channel.replace( QRegExp( ".*/" ), "" ); | 854 | channel.replace( QRegExp( ".*/" ), "" ); |
855 | d->appName = channel; | 855 | d->appName = channel; |
856 | channel = "QPE/Application/" + channel; | 856 | channel = "QPE/Application/" + channel; |
857 | pidChannel = new QCopChannel( channel, this ); | 857 | pidChannel = new QCopChannel( channel, this ); |
858 | connect( pidChannel, SIGNAL( received(const QCString&,const QByteArray&) ), | 858 | connect( pidChannel, SIGNAL( received(const QCString&,const QByteArray&) ), |
859 | this, SLOT( pidMessage(const QCString&,const QByteArray&) ) ); | 859 | this, SLOT( pidMessage(const QCString&,const QByteArray&) ) ); |
860 | 860 | ||
861 | if ( f.isOpen() ) { | 861 | if ( f.isOpen() ) { |
862 | d->keep_running = FALSE; | 862 | d->keep_running = FALSE; |
863 | QDataStream ds( &f ); | 863 | QDataStream ds( &f ); |
864 | QCString channel, message; | 864 | QCString channel, message; |
865 | QByteArray data; | 865 | QByteArray data; |
866 | while ( !ds.atEnd() ) { | 866 | while ( !ds.atEnd() ) { |
867 | ds >> channel >> message >> data; | 867 | ds >> channel >> message >> data; |
868 | d->enqueueQCop( channel, message, data ); | 868 | d->enqueueQCop( channel, message, data ); |
869 | } | 869 | } |
870 | 870 | ||
871 | flock( f.handle(), LOCK_UN ); | 871 | flock( f.handle(), LOCK_UN ); |
872 | f.close(); | 872 | f.close(); |
873 | f.remove(); | 873 | f.remove(); |
874 | } | 874 | } |
875 | 875 | ||
876 | for ( int a = 0; a < argc; a++ ) { | 876 | for ( int a = 0; a < argc; a++ ) { |
877 | if ( qstrcmp( argv[ a ], "-preload" ) == 0 ) { | 877 | if ( qstrcmp( argv[ a ], "-preload" ) == 0 ) { |
878 | argv[ a ] = argv[ a + 1 ]; | 878 | argv[ a ] = argv[ a + 1 ]; |
879 | a++; | 879 | a++; |
880 | d->preloaded = TRUE; | 880 | d->preloaded = TRUE; |
881 | argc -= 1; | 881 | argc -= 1; |
882 | } | 882 | } |
883 | else if ( qstrcmp( argv[ a ], "-preload-show" ) == 0 ) { | 883 | else if ( qstrcmp( argv[ a ], "-preload-show" ) == 0 ) { |
884 | argv[ a ] = argv[ a + 1 ]; | 884 | argv[ a ] = argv[ a + 1 ]; |
885 | a++; | 885 | a++; |
886 | d->preloaded = TRUE; | 886 | d->preloaded = TRUE; |
887 | d->forceshow = TRUE; | 887 | d->forceshow = TRUE; |
888 | argc -= 1; | 888 | argc -= 1; |
889 | } | 889 | } |
890 | } | 890 | } |
891 | 891 | ||
892 | /* overide stored arguments */ | 892 | /* overide stored arguments */ |
893 | setArgs( argc, argv ); | 893 | setArgs( argc, argv ); |
894 | 894 | ||
895 | #endif | 895 | #endif |
896 | #else | 896 | #else |
897 | initApp( argc, argv ); | 897 | initApp( argc, argv ); |
898 | #endif | 898 | #endif |
899 | #ifdef Q_WS_QWS | 899 | #ifdef Q_WS_QWS |
900 | /* load the font renderer factories */ | 900 | /* load the font renderer factories */ |
901 | FontDatabase::loadRenderers(); | 901 | FontDatabase::loadRenderers(); |
902 | #endif | 902 | #endif |
903 | #ifndef QT_NO_TRANSLATION | 903 | #ifndef QT_NO_TRANSLATION |
904 | QStringList qms; | 904 | QStringList qms; |
905 | qms << "libqpe"; | 905 | qms << "libqpe"; |
906 | qms << "libopie"; | 906 | qms << "libopie"; |
907 | qms << d->appName; | 907 | qms << d->appName; |
908 | 908 | ||
909 | qtopia_loadTranslations(qms); | 909 | qtopia_loadTranslations(qms); |
910 | #endif | 910 | #endif |
911 | 911 | ||
912 | applyStyle(); | 912 | applyStyle(); |
913 | 913 | ||
914 | if ( type() == GuiServer ) { | 914 | if ( type() == GuiServer ) { |
915 | setVolume(); | 915 | setVolume(); |
916 | } | 916 | } |
917 | 917 | ||
918 | installEventFilter( this ); | 918 | installEventFilter( this ); |
919 | 919 | ||
920 | QPEMenuToolFocusManager::initialize(); | 920 | QPEMenuToolFocusManager::initialize(); |
921 | 921 | ||
922 | #ifdef QT_NO_QWS_CURSOR | 922 | #ifdef QT_NO_QWS_CURSOR |
923 | // if we have no cursor, probably don't want tooltips | 923 | // if we have no cursor, probably don't want tooltips |
924 | QToolTip::setEnabled( FALSE ); | 924 | QToolTip::setEnabled( FALSE ); |
925 | #endif | 925 | #endif |
926 | } | 926 | } |
927 | 927 | ||
928 | 928 | ||
929 | #ifdef QTOPIA_INTERNAL_INITAPP | 929 | #ifdef QTOPIA_INTERNAL_INITAPP |
930 | void QPEApplication::initApp( int argc, char **argv ) | 930 | void QPEApplication::initApp( int argc, char **argv ) |
931 | { | 931 | { |
932 | delete pidChannel; | 932 | delete pidChannel; |
933 | d->keep_running = TRUE; | 933 | d->keep_running = TRUE; |
934 | d->preloaded = FALSE; | 934 | d->preloaded = FALSE; |
935 | d->forceshow = FALSE; | 935 | d->forceshow = FALSE; |
936 | 936 | ||
937 | QCString channel = QCString(argv[0]); | 937 | QCString channel = QCString(argv[0]); |
938 | 938 | ||
939 | channel.replace(QRegExp(".*/"),""); | 939 | channel.replace(QRegExp(".*/"),""); |
940 | d->appName = channel; | 940 | d->appName = channel; |
941 | 941 | ||
942 | #ifndef QT_NO_TRANSLATION | 942 | #ifndef QT_NO_TRANSLATION |
943 | qtopia_loadTranslations( QStringList()<<channel ); | 943 | qtopia_loadTranslations( QStringList()<<channel ); |
944 | #endif | 944 | #endif |
945 | 945 | ||
946 | #if QT_VERSION > 235 | 946 | #if QT_VERSION > 235 |
947 | qt_fbdpy->setIdentity( channel ); // In Qt/E 2.3.6 | 947 | qt_fbdpy->setIdentity( channel ); // In Qt/E 2.3.6 |
948 | #endif | 948 | #endif |
949 | 949 | ||
950 | channel = "QPE/Application/" + channel; | 950 | channel = "QPE/Application/" + channel; |
951 | pidChannel = new QCopChannel( channel, this); | 951 | pidChannel = new QCopChannel( channel, this); |
952 | connect( pidChannel, SIGNAL(received(const QCString&,const QByteArray&)), | 952 | connect( pidChannel, SIGNAL(received(const QCString&,const QByteArray&)), |
953 | this, SLOT(pidMessage(const QCString&,const QByteArray&))); | 953 | this, SLOT(pidMessage(const QCString&,const QByteArray&))); |
954 | 954 | ||
955 | 955 | ||
956 | 956 | ||
957 | processQCopFile(); | 957 | processQCopFile(); |
958 | d->keep_running = d->qcopq.isEmpty(); | 958 | d->keep_running = d->qcopq.isEmpty(); |
959 | 959 | ||
960 | for (int a=0; a<argc; a++) { | 960 | for (int a=0; a<argc; a++) { |
961 | if ( qstrcmp(argv[a],"-preload")==0 ) { | 961 | if ( qstrcmp(argv[a],"-preload")==0 ) { |
962 | argv[a] = argv[a+1]; | 962 | argv[a] = argv[a+1]; |
963 | a++; | 963 | a++; |
964 | d->preloaded = TRUE; | 964 | d->preloaded = TRUE; |
965 | argc-=1; | 965 | argc-=1; |
966 | } else if ( qstrcmp(argv[a],"-preload-show")==0 ) { | 966 | } else if ( qstrcmp(argv[a],"-preload-show")==0 ) { |
967 | argv[a] = argv[a+1]; | 967 | argv[a] = argv[a+1]; |
968 | a++; | 968 | a++; |
969 | d->preloaded = TRUE; | 969 | d->preloaded = TRUE; |
970 | d->forceshow = TRUE; | 970 | d->forceshow = TRUE; |
971 | argc-=1; | 971 | argc-=1; |
972 | } | 972 | } |
973 | } | 973 | } |
974 | 974 | ||
975 | /* overide stored arguments */ | 975 | /* overide stored arguments */ |
976 | setArgs(argc, argv); | 976 | setArgs(argc, argv); |
977 | } | 977 | } |
978 | #endif | 978 | #endif |
979 | 979 | ||
980 | 980 | ||
981 | static QPtrDict<void>* inputMethodDict = 0; | 981 | static QPtrDict<void>* inputMethodDict = 0; |
982 | static void createInputMethodDict() | 982 | static void createInputMethodDict() |
983 | { | 983 | { |
984 | if ( !inputMethodDict ) | 984 | if ( !inputMethodDict ) |
985 | inputMethodDict = new QPtrDict<void>; | 985 | inputMethodDict = new QPtrDict<void>; |
986 | } | 986 | } |
987 | 987 | ||
988 | /*! | 988 | /*! |
989 | Returns the currently set hint to the system as to whether | 989 | Returns the currently set hint to the system as to whether |
990 | widget \a w has any use for text input methods. | 990 | widget \a w has any use for text input methods. |
991 | 991 | ||
992 | 992 | ||
993 | \sa setInputMethodHint() InputMethodHint | 993 | \sa setInputMethodHint() InputMethodHint |
994 | */ | 994 | */ |
995 | QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget * w ) | 995 | QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget * w ) |
996 | { | 996 | { |
997 | if ( inputMethodDict && w ) | 997 | if ( inputMethodDict && w ) |
998 | return ( InputMethodHint ) ( int ) inputMethodDict->find( w ); | 998 | return ( InputMethodHint ) ( int ) inputMethodDict->find( w ); |
999 | return Normal; | 999 | return Normal; |
1000 | } | 1000 | } |
1001 | 1001 | ||
1002 | /*! | 1002 | /*! |
1003 | \enum QPEApplication::InputMethodHint | 1003 | \enum QPEApplication::InputMethodHint |
1004 | 1004 | ||
1005 | \value Normal the application sometimes needs text input (the default). | 1005 | \value Normal the application sometimes needs text input (the default). |
1006 | \value AlwaysOff the application never needs text input. | 1006 | \value AlwaysOff the application never needs text input. |
1007 | \value AlwaysOn the application always needs text input. | 1007 | \value AlwaysOn the application always needs text input. |
1008 | */ | 1008 | */ |
1009 | 1009 | ||
1010 | /*! | 1010 | /*! |
1011 | Hints to the system that widget \a w has use for text input methods | 1011 | Hints to the system that widget \a w has use for text input methods |
1012 | as specified by \a mode. | 1012 | as specified by \a mode. |
1013 | 1013 | ||
1014 | \sa inputMethodHint() InputMethodHint | 1014 | \sa inputMethodHint() InputMethodHint |
1015 | */ | 1015 | */ |
1016 | void QPEApplication::setInputMethodHint( QWidget * w, InputMethodHint mode ) | 1016 | void QPEApplication::setInputMethodHint( QWidget * w, InputMethodHint mode ) |
1017 | { | 1017 | { |
1018 | createInputMethodDict(); | 1018 | createInputMethodDict(); |
1019 | if ( mode == Normal ) { | 1019 | if ( mode == Normal ) { |
1020 | inputMethodDict->remove | 1020 | inputMethodDict->remove |
1021 | ( w ); | 1021 | ( w ); |
1022 | } | 1022 | } |
1023 | else { | 1023 | else { |
1024 | inputMethodDict->insert( w, ( void* ) mode ); | 1024 | inputMethodDict->insert( w, ( void* ) mode ); |
1025 | } | 1025 | } |
1026 | } | 1026 | } |
1027 | 1027 | ||
1028 | class HackDialog : public QDialog | 1028 | class HackDialog : public QDialog |
1029 | { | 1029 | { |
1030 | public: | 1030 | public: |
1031 | void acceptIt() | 1031 | void acceptIt() |
1032 | { | 1032 | { |
1033 | accept(); | 1033 | accept(); |
1034 | } | 1034 | } |
1035 | void rejectIt() | 1035 | void rejectIt() |
1036 | { | 1036 | { |
1037 | reject(); | 1037 | reject(); |
1038 | } | 1038 | } |
1039 | }; | 1039 | }; |
1040 | 1040 | ||
1041 | 1041 | ||
1042 | void QPEApplication::mapToDefaultAction( QWSKeyEvent * ke, int key ) | 1042 | void QPEApplication::mapToDefaultAction( QWSKeyEvent * ke, int key ) |
1043 | { | 1043 | { |
1044 | // specialised actions for certain widgets. May want to | 1044 | // specialised actions for certain widgets. May want to |
1045 | // add more stuff here. | 1045 | // add more stuff here. |
1046 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QListBox" ) | 1046 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QListBox" ) |
1047 | && activePopupWidget() ->parentWidget() | 1047 | && activePopupWidget() ->parentWidget() |
1048 | && activePopupWidget() ->parentWidget() ->inherits( "QComboBox" ) ) | 1048 | && activePopupWidget() ->parentWidget() ->inherits( "QComboBox" ) ) |
1049 | key = Qt::Key_Return; | 1049 | key = Qt::Key_Return; |
1050 | 1050 | ||
1051 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QPopupMenu" ) ) | 1051 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QPopupMenu" ) ) |
1052 | key = Qt::Key_Return; | 1052 | key = Qt::Key_Return; |
1053 | 1053 | ||
1054 | #ifdef QWS | 1054 | #ifdef QWS |
1055 | 1055 | ||
1056 | ke->simpleData.keycode = key; | 1056 | ke->simpleData.keycode = key; |
1057 | #endif | 1057 | #endif |
1058 | } | 1058 | } |
1059 | 1059 | ||
1060 | 1060 | ||
1061 | /*! | 1061 | /*! |
1062 | \internal | 1062 | \internal |
1063 | */ | 1063 | */ |
1064 | 1064 | ||
1065 | #ifdef QWS | 1065 | #ifdef QWS |
1066 | bool QPEApplication::qwsEventFilter( QWSEvent * e ) | 1066 | bool QPEApplication::qwsEventFilter( QWSEvent * e ) |
1067 | { | 1067 | { |
1068 | if ( !d->notbusysent && e->type == QWSEvent::Focus ) { | 1068 | if ( !d->notbusysent && e->type == QWSEvent::Focus ) { |
1069 | if ( qApp->type() != QApplication::GuiServer ) { | 1069 | if ( qApp->type() != QApplication::GuiServer ) { |
1070 | QCopEnvelope e( "QPE/System", "notBusy(QString)" ); | 1070 | QCopEnvelope e( "QPE/System", "notBusy(QString)" ); |
1071 | e << d->appName; | 1071 | e << d->appName; |
1072 | } | 1072 | } |
1073 | d->notbusysent = TRUE; | 1073 | d->notbusysent = TRUE; |
1074 | } | 1074 | } |
1075 | if ( type() == GuiServer ) { | 1075 | if ( type() == GuiServer ) { |
1076 | switch ( e->type ) { | 1076 | switch ( e->type ) { |
1077 | case QWSEvent::Mouse: | 1077 | case QWSEvent::Mouse: |
1078 | if ( e->asMouse() ->simpleData.state && !QWidget::find( e->window() ) ) | 1078 | if ( e->asMouse() ->simpleData.state && !QWidget::find( e->window() ) ) |
1079 | emit clientMoused(); | 1079 | emit clientMoused(); |
1080 | break; | 1080 | break; |
1081 | default: | 1081 | default: |
1082 | break; | 1082 | break; |
1083 | } | 1083 | } |
1084 | } | 1084 | } |
1085 | if ( e->type == QWSEvent::Key ) { | 1085 | if ( e->type == QWSEvent::Key ) { |
1086 | QWSKeyEvent *ke = ( QWSKeyEvent * ) e; | 1086 | QWSKeyEvent *ke = ( QWSKeyEvent * ) e; |
1087 | if ( ke->simpleData.keycode == Qt::Key_F33 ) { | 1087 | if ( ke->simpleData.keycode == Qt::Key_F33 ) { |
1088 | // Use special "OK" key to press "OK" on top level widgets | 1088 | // Use special "OK" key to press "OK" on top level widgets |
1089 | QWidget * active = activeWindow(); | 1089 | QWidget * active = activeWindow(); |
1090 | QWidget *popup = 0; | 1090 | QWidget *popup = 0; |
1091 | if ( active && active->isPopup() ) { | 1091 | if ( active && active->isPopup() ) { |
1092 | popup = active; | 1092 | popup = active; |
1093 | active = active->parentWidget(); | 1093 | active = active->parentWidget(); |
1094 | } | 1094 | } |
1095 | if ( active && ( int ) active->winId() == ke->simpleData.window && | 1095 | if ( active && ( int ) active->winId() == ke->simpleData.window && |
1096 | !active->testWFlags( WStyle_Customize | WType_Popup | WType_Desktop ) ) { | 1096 | !active->testWFlags( WStyle_Customize | WType_Popup | WType_Desktop ) ) { |
1097 | if ( ke->simpleData.is_press ) { | 1097 | if ( ke->simpleData.is_press ) { |
1098 | if ( popup ) | 1098 | if ( popup ) |
1099 | popup->close(); | 1099 | popup->close(); |
1100 | if ( active->inherits( "QDialog" ) ) { | 1100 | if ( active->inherits( "QDialog" ) ) { |
1101 | HackDialog * d = ( HackDialog * ) active; | 1101 | HackDialog * d = ( HackDialog * ) active; |
1102 | d->acceptIt(); | 1102 | d->acceptIt(); |
1103 | return TRUE; | 1103 | return TRUE; |
1104 | } | 1104 | } |
1105 | else if ( ( ( HackWidget * ) active ) ->needsOk() ) { | 1105 | else if ( ( ( HackWidget * ) active ) ->needsOk() ) { |
1106 | QSignal s; | 1106 | QSignal s; |
1107 | s.connect( active, SLOT( accept() ) ); | 1107 | s.connect( active, SLOT( accept() ) ); |
1108 | s.activate(); | 1108 | s.activate(); |
1109 | } | 1109 | } |
1110 | else { | 1110 | else { |
1111 | // do the same as with the select key: Map to the default action of the widget: | 1111 | // do the same as with the select key: Map to the default action of the widget: |
1112 | mapToDefaultAction( ke, Qt::Key_Return ); | 1112 | mapToDefaultAction( ke, Qt::Key_Return ); |
1113 | } | 1113 | } |
1114 | } | 1114 | } |
1115 | } | 1115 | } |
1116 | } | 1116 | } |
1117 | else if ( ke->simpleData.keycode == Qt::Key_F30 ) { | 1117 | else if ( ke->simpleData.keycode == Qt::Key_F30 ) { |
1118 | // Use special "select" key to do whatever default action a widget has | 1118 | // Use special "select" key to do whatever default action a widget has |
1119 | mapToDefaultAction( ke, Qt::Key_Space ); | 1119 | mapToDefaultAction( ke, Qt::Key_Space ); |
1120 | } | 1120 | } |
1121 | else if ( ke->simpleData.keycode == Qt::Key_Escape && | 1121 | else if ( ke->simpleData.keycode == Qt::Key_Escape && |
1122 | ke->simpleData.is_press ) { | 1122 | ke->simpleData.is_press ) { |
1123 | // Escape key closes app if focus on toplevel | 1123 | // Escape key closes app if focus on toplevel |
1124 | QWidget * active = activeWindow(); | 1124 | QWidget * active = activeWindow(); |
1125 | if ( active && active->testWFlags( WType_TopLevel ) && | 1125 | if ( active && active->testWFlags( WType_TopLevel ) && |
1126 | ( int ) active->winId() == ke->simpleData.window && | 1126 | ( int ) active->winId() == ke->simpleData.window && |
1127 | !active->testWFlags( WStyle_Dialog | WStyle_Customize | WType_Popup | WType_Desktop ) ) { | 1127 | !active->testWFlags( WStyle_Dialog | WStyle_Customize | WType_Popup | WType_Desktop ) ) { |
1128 | if ( active->inherits( "QDialog" ) ) { | 1128 | if ( active->inherits( "QDialog" ) ) { |
1129 | HackDialog * d = ( HackDialog * ) active; | 1129 | HackDialog * d = ( HackDialog * ) active; |
1130 | d->rejectIt(); | 1130 | d->rejectIt(); |
1131 | return TRUE; | 1131 | return TRUE; |
1132 | } else /*if ( strcmp( argv() [ 0 ], "embeddedkonsole" ) != 0 )*/ { | 1132 | } else /*if ( strcmp( argv() [ 0 ], "embeddedkonsole" ) != 0 )*/ { |
1133 | active->close(); | 1133 | active->close(); |
1134 | } | 1134 | } |
1135 | } | 1135 | } |
1136 | 1136 | ||
1137 | } | 1137 | } |
1138 | else if ( ke->simpleData.keycode >= Qt::Key_F1 && ke->simpleData.keycode <= Qt::Key_F29 ) { | 1138 | else if ( ke->simpleData.keycode >= Qt::Key_F1 && ke->simpleData.keycode <= Qt::Key_F29 ) { |
1139 | // this should be if ( ODevice::inst ( )-> buttonForKeycode ( ... )) | 1139 | // this should be if ( ODevice::inst ( )-> buttonForKeycode ( ... )) |
1140 | // but we cannot access libopie function within libqpe :( | 1140 | // but we cannot access libopie function within libqpe :( |
1141 | 1141 | ||
1142 | QWidget * active = activeWindow ( ); | 1142 | QWidget * active = activeWindow ( ); |
1143 | if ( active && ((int) active-> winId ( ) == ke-> simpleData.window )) { | 1143 | if ( active && ((int) active-> winId ( ) == ke-> simpleData.window )) { |
1144 | if ( d-> kbgrabbed ) { // we grabbed the keyboard | 1144 | if ( d-> kbgrabbed ) { // we grabbed the keyboard |
1145 | QChar ch ( ke-> simpleData.unicode ); | 1145 | QChar ch ( ke-> simpleData.unicode ); |
1146 | QKeyEvent qke ( ke-> simpleData. is_press ? QEvent::KeyPress : QEvent::KeyRelease, | 1146 | QKeyEvent qke ( ke-> simpleData. is_press ? QEvent::KeyPress : QEvent::KeyRelease, |
1147 | ke-> simpleData.keycode, | 1147 | ke-> simpleData.keycode, |
1148 | ch. latin1 ( ), | 1148 | ch. latin1 ( ), |
1149 | ke-> simpleData.modifiers, | 1149 | ke-> simpleData.modifiers, |
1150 | QString ( ch ), | 1150 | QString ( ch ), |
1151 | ke-> simpleData.is_auto_repeat, 1 ); | 1151 | ke-> simpleData.is_auto_repeat, 1 ); |
1152 | 1152 | ||
1153 | QObject *which = QWidget::keyboardGrabber ( ); | 1153 | QObject *which = QWidget::keyboardGrabber ( ); |
1154 | if ( !which ) | 1154 | if ( !which ) |
1155 | which = QApplication::focusWidget ( ); | 1155 | which = QApplication::focusWidget ( ); |
1156 | if ( !which ) | 1156 | if ( !which ) |
1157 | which = QApplication::activeWindow ( ); | 1157 | which = QApplication::activeWindow ( ); |
1158 | if ( !which ) | 1158 | if ( !which ) |
1159 | which = qApp; | 1159 | which = qApp; |
1160 | 1160 | ||
1161 | QApplication::sendEvent ( which, &qke ); | 1161 | QApplication::sendEvent ( which, &qke ); |
1162 | } | 1162 | } |
1163 | else { // we didn't grab the keyboard, so send the event to the launcher | 1163 | else { // we didn't grab the keyboard, so send the event to the launcher |
1164 | QCopEnvelope e ( "QPE/Launcher", "deviceButton(int,int,int)" ); | 1164 | QCopEnvelope e ( "QPE/Launcher", "deviceButton(int,int,int)" ); |
1165 | e << int( ke-> simpleData.keycode ) << int( ke-> simpleData. is_press ) << int( ke-> simpleData.is_auto_repeat ); | 1165 | e << int( ke-> simpleData.keycode ) << int( ke-> simpleData. is_press ) << int( ke-> simpleData.is_auto_repeat ); |
1166 | } | 1166 | } |
1167 | } | 1167 | } |
1168 | return true; | 1168 | return true; |
1169 | } | 1169 | } |
1170 | } | 1170 | } |
1171 | if ( e->type == QWSEvent::Focus ) { | 1171 | if ( e->type == QWSEvent::Focus ) { |
1172 | QWSFocusEvent * fe = ( QWSFocusEvent* ) e; | 1172 | QWSFocusEvent * fe = ( QWSFocusEvent* ) e; |
1173 | if ( !fe->simpleData.get_focus ) { | 1173 | if ( !fe->simpleData.get_focus ) { |
1174 | QWidget * active = activeWindow(); | 1174 | QWidget * active = activeWindow(); |
1175 | while ( active && active->isPopup() ) { | 1175 | while ( active && active->isPopup() ) { |
1176 | active->close(); | 1176 | active->close(); |
1177 | active = activeWindow(); | 1177 | active = activeWindow(); |
1178 | } | 1178 | } |
1179 | } | 1179 | } |
1180 | else { | 1180 | else { |
1181 | // make sure our modal widget is ALWAYS on top | 1181 | // make sure our modal widget is ALWAYS on top |
1182 | QWidget *topm = activeModalWidget(); | 1182 | QWidget *topm = activeModalWidget(); |
1183 | if ( topm && static_cast<int>( topm->winId() ) != fe->simpleData.window) { | 1183 | if ( topm && static_cast<int>( topm->winId() ) != fe->simpleData.window) { |
1184 | topm->raise(); | 1184 | topm->raise(); |
1185 | } | 1185 | } |
1186 | } | 1186 | } |
1187 | if ( fe->simpleData.get_focus && inputMethodDict ) { | 1187 | if ( fe->simpleData.get_focus && inputMethodDict ) { |
1188 | InputMethodHint m = inputMethodHint( QWidget::find( e->window() ) ); | 1188 | InputMethodHint m = inputMethodHint( QWidget::find( e->window() ) ); |
1189 | if ( m == AlwaysOff ) | 1189 | if ( m == AlwaysOff ) |
1190 | Global::hideInputMethod(); | 1190 | Global::hideInputMethod(); |
1191 | if ( m == AlwaysOn ) | 1191 | if ( m == AlwaysOn ) |
1192 | Global::showInputMethod(); | 1192 | Global::showInputMethod(); |
1193 | } | 1193 | } |
1194 | } | 1194 | } |
1195 | 1195 | ||
1196 | 1196 | ||
1197 | return QApplication::qwsEventFilter( e ); | 1197 | return QApplication::qwsEventFilter( e ); |
1198 | } | 1198 | } |
1199 | #endif | 1199 | #endif |
1200 | 1200 | ||
1201 | /*! | 1201 | /*! |
1202 | Destroys the QPEApplication. | 1202 | Destroys the QPEApplication. |
1203 | */ | 1203 | */ |
1204 | QPEApplication::~QPEApplication() | 1204 | QPEApplication::~QPEApplication() |
1205 | { | 1205 | { |
1206 | ungrabKeyboard(); | 1206 | ungrabKeyboard(); |
1207 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 1207 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
1208 | // Need to delete QCopChannels early, since the display will | 1208 | // Need to delete QCopChannels early, since the display will |
1209 | // be gone by the time we get to ~QObject(). | 1209 | // be gone by the time we get to ~QObject(). |
1210 | delete sysChannel; | 1210 | delete sysChannel; |
1211 | delete pidChannel; | 1211 | delete pidChannel; |
1212 | #endif | 1212 | #endif |
1213 | 1213 | ||
1214 | #ifdef OPIE_WITHROHFEEDBACK | 1214 | #ifdef OPIE_WITHROHFEEDBACK |
1215 | if( d->RoH ) | 1215 | if( d->RoH ) |
1216 | delete d->RoH; | 1216 | delete d->RoH; |
1217 | #endif | 1217 | #endif |
1218 | delete d; | 1218 | delete d; |
1219 | } | 1219 | } |
1220 | 1220 | ||
1221 | /*! | 1221 | /*! |
1222 | Returns <tt>$OPIEDIR/</tt>. | 1222 | Returns <tt>$OPIEDIR/</tt>. |
1223 | */ | 1223 | */ |
1224 | QString QPEApplication::qpeDir() | 1224 | QString QPEApplication::qpeDir() |
1225 | { | 1225 | { |
1226 | QString base, dir; | 1226 | QString base, dir; |
1227 | 1227 | ||
1228 | if (getenv( "OPIEDIR" )) | 1228 | if (getenv( "OPIEDIR" )) |
1229 | base = QString(getenv("OPIEDIR")).stripWhiteSpace(); | 1229 | base = QString(getenv("OPIEDIR")).stripWhiteSpace(); |
1230 | if ( !base.isNull() && (base.length() > 0 )){ | 1230 | if ( !base.isNull() && (base.length() > 0 )){ |
1231 | #ifdef Q_OS_WIN32 | 1231 | #ifdef Q_OS_WIN32 |
1232 | QString temp(base); | 1232 | QString temp(base); |
1233 | if (temp[(int)temp.length()-1] != QDir::separator()) | 1233 | if (temp[(int)temp.length()-1] != QDir::separator()) |
1234 | temp.append(QDir::separator()); | 1234 | temp.append(QDir::separator()); |
1235 | dir = temp; | 1235 | dir = temp; |
1236 | #else | 1236 | #else |
1237 | dir = QString( base ) + "/"; | 1237 | dir = QString( base ) + "/"; |
1238 | #endif | 1238 | #endif |
1239 | }else{ | 1239 | }else{ |
1240 | dir = QString( ".." ) + QDir::separator(); | 1240 | dir = QString( ".." ) + QDir::separator(); |
1241 | } | 1241 | } |
1242 | 1242 | ||
1243 | return dir; | 1243 | return dir; |
1244 | } | 1244 | } |
1245 | 1245 | ||
1246 | /*! | 1246 | /*! |
1247 | Returns the user's current Document directory. There is a trailing "/". | 1247 | Returns the user's current Document directory. There is a trailing "/". |
1248 | .. well, it does now,, and there's no trailing '/' | 1248 | .. well, it does now,, and there's no trailing '/' |
1249 | */ | 1249 | */ |
1250 | QString QPEApplication::documentDir() | 1250 | QString QPEApplication::documentDir() |
1251 | { | 1251 | { |
1252 | const char* base = getenv( "HOME"); | 1252 | const char* base = getenv( "HOME"); |