summaryrefslogtreecommitdiff
path: root/x11/libqpe-x11
authorzecke <zecke>2003-02-10 21:36:08 (UTC)
committer zecke <zecke>2003-02-10 21:36:08 (UTC)
commiteb9be7ada3de060d8c5ce52590bd91120ed5e1bd (patch) (unidiff)
tree58a5566691737f6f3ee12fa7005b8bdf2d12332b /x11/libqpe-x11
parentbbb3cdf8f91d567f6c2e786bd144b64bd679ff9a (diff)
downloadopie-eb9be7ada3de060d8c5ce52590bd91120ed5e1bd.zip
opie-eb9be7ada3de060d8c5ce52590bd91120ed5e1bd.tar.gz
opie-eb9be7ada3de060d8c5ce52590bd91120ed5e1bd.tar.bz2
better commit that...
Diffstat (limited to 'x11/libqpe-x11') (more/less context) (ignore whitespace changes)
-rw-r--r--x11/libqpe-x11/qpe/qpeapplication.cpp4
-rw-r--r--x11/libqpe-x11/qt/qcopchannel_qws.cpp11
2 files changed, 11 insertions, 4 deletions
diff --git a/x11/libqpe-x11/qpe/qpeapplication.cpp b/x11/libqpe-x11/qpe/qpeapplication.cpp
index 49115d8..c4f8f38 100644
--- a/x11/libqpe-x11/qpe/qpeapplication.cpp
+++ b/x11/libqpe-x11/qpe/qpeapplication.cpp
@@ -1,788 +1,788 @@
1#define QTOPIA_INTERNAL_LANGLIST 1#define QTOPIA_INTERNAL_LANGLIST
2 2
3#include <stdio.h> 3#include <stdio.h>
4#include <stdlib.h> 4#include <stdlib.h>
5#include <unistd.h> 5#include <unistd.h>
6#include <sys/file.h> 6#include <sys/file.h>
7 7
8 8
9#include <qdir.h> 9#include <qdir.h>
10#include <qdialog.h> 10#include <qdialog.h>
11#include <qdragobject.h> 11#include <qdragobject.h>
12#include <qevent.h> 12#include <qevent.h>
13#include <qlabel.h> 13#include <qlabel.h>
14#include <qlist.h> 14#include <qlist.h>
15#include <qtextstream.h> 15#include <qtextstream.h>
16#include <qtextcodec.h> 16#include <qtextcodec.h>
17#include <qpalette.h> 17#include <qpalette.h>
18#include <qptrdict.h> 18#include <qptrdict.h>
19#include <qregexp.h> 19#include <qregexp.h>
20#include <qtimer.h> 20#include <qtimer.h>
21 21
22#include <qpe/alarmserver.h> 22#include <qpe/alarmserver.h>
23#include <qpe/applnk.h> 23#include <qpe/applnk.h>
24#include <qpe/qpemenubar.h> 24#include <qpe/qpemenubar.h>
25#include <qpe/textcodecinterface.h> 25#include <qpe/textcodecinterface.h>
26#include <qpe/imagecodecinterface.h> 26#include <qpe/imagecodecinterface.h>
27#include <qpe/qlibrary.h> 27#include <qpe/qlibrary.h>
28#include <qpe/qpestyle.h> 28#include <qpe/qpestyle.h>
29#include <qpe/styleinterface.h> 29#include <qpe/styleinterface.h>
30#include <qpe/global.h> 30#include <qpe/global.h>
31#include <qpe/resource.h> 31#include <qpe/resource.h>
32#include <qpe/config.h> 32#include <qpe/config.h>
33#include <qpe/network.h> 33#include <qpe/network.h>
34 34
35#include <qpe/qpeapplication.h> 35#include <qpe/qpeapplication.h>
36#include <qpe/timestring.h> 36#include <qpe/timestring.h>
37#include <qpe/qcopenvelope_qws.h> 37#include <qpe/qcopenvelope_qws.h>
38 38
39 39
40#include <X11/Xlib.h> 40#include <X11/Xlib.h>
41#include <X11/Xutil.h> 41#include <X11/Xutil.h>
42 42
43const int XKeyPress = KeyPress; 43const int XKeyPress = KeyPress;
44const int XKeyRelease = KeyRelease; 44const int XKeyRelease = KeyRelease;
45#undef KeyPress 45#undef KeyPress
46#undef KeyRelease 46#undef KeyRelease
47 47
48namespace { 48namespace {
49 struct QCopRec{ 49 struct QCopRec{
50 QCopRec( const QCString& ch, const QCString& msg, const QByteArray& ar ) 50 QCopRec( const QCString& ch, const QCString& msg, const QByteArray& ar )
51 : channel(ch), message(msg), data(ar) { 51 : channel(ch), message(msg), data(ar) {
52 52
53 } 53 }
54 QCString channel; 54 QCString channel;
55 QCString message; 55 QCString message;
56 QByteArray data; 56 QByteArray data;
57 }; 57 };
58}; 58};
59 59
60 60
61class QPEApplication::Private { 61class QPEApplication::Private {
62public: 62public:
63 Private(); 63 Private();
64 ~Private(); 64 ~Private();
65 void enqueueQCop( const QCString& ch, const QCString& msg, 65 void enqueueQCop( const QCString& ch, const QCString& msg,
66 const QByteArray& ); 66 const QByteArray& );
67 void sendQCopQ(); 67 void sendQCopQ();
68 static void show_mx(QWidget* mw, bool nomaximize ); 68 static void show_mx(QWidget* mw, bool nomaximize );
69 void show( QWidget* mw, bool nomax ); 69 void show( QWidget* mw, bool nomax );
70 void loadTextCodecs(); 70 void loadTextCodecs();
71 void loadImageCodecs(); 71 void loadImageCodecs();
72 72
73 int kbgrabber; 73 int kbgrabber;
74 int presstimer; 74 int presstimer;
75 75
76 bool rightpressed : 1; 76 bool rightpressed : 1;
77 bool kbregrab : 1; 77 bool kbregrab : 1;
78 bool notbusysent : 1; 78 bool notbusysent : 1;
79 bool preloaded : 1; 79 bool preloaded : 1;
80 bool forceshow : 1; 80 bool forceshow : 1;
81 bool nomaximize : 1; 81 bool nomaximize : 1;
82 bool keep_running : 1; 82 bool keep_running : 1;
83 83
84 QWidget* presswidget; 84 QWidget* presswidget;
85 QPoint presspos; 85 QPoint presspos;
86 QWidget* qpe_main_widget; 86 QWidget* qpe_main_widget;
87 QString appName; 87 QString appName;
88 QString styleName; 88 QString styleName;
89 QString decorationName; 89 QString decorationName;
90 Atom wm_delete_window; 90 Atom wm_delete_window;
91 Atom wm_take_focus; 91 Atom wm_take_focus;
92 Atom wm_context_help; 92 Atom wm_context_help;
93 Atom wm_context_accept; 93 Atom wm_context_accept;
94 Atom wm_protocols; 94 Atom wm_protocols;
95 95
96private: 96private:
97 QList<QCopRec> qcopq; 97 QList<QCopRec> qcopq;
98}; 98};
99QPEApplication::Private::~Private() { 99QPEApplication::Private::~Private() {
100} 100}
101QPEApplication::Private::Private() 101QPEApplication::Private::Private()
102 : kbgrabber(0 ), presstimer(0 ), rightpressed( FALSE ), kbregrab( FALSE ), notbusysent( FALSE ), 102 : kbgrabber(0 ), presstimer(0 ), rightpressed( FALSE ), kbregrab( FALSE ), notbusysent( FALSE ),
103 preloaded( FALSE ), forceshow( FALSE ), nomaximize( FALSE ), keep_running( TRUE ), 103 preloaded( FALSE ), forceshow( FALSE ), nomaximize( FALSE ), keep_running( TRUE ),
104 presswidget( 0 ), qpe_main_widget(0 ) { 104 presswidget( 0 ), qpe_main_widget(0 ) {
105 105
106 qcopq.setAutoDelete( TRUE ); 106 qcopq.setAutoDelete( TRUE );
107} 107}
108void QPEApplication::Private::enqueueQCop( const QCString& chan, const QCString& msg, 108void QPEApplication::Private::enqueueQCop( const QCString& chan, const QCString& msg,
109 const QByteArray& ar ) { 109 const QByteArray& ar ) {
110 qcopq.append( new QCopRec(chan, msg, ar ) ); 110 qcopq.append( new QCopRec(chan, msg, ar ) );
111} 111}
112void QPEApplication::Private::sendQCopQ() { 112void QPEApplication::Private::sendQCopQ() {
113 QCopRec* r; 113 QCopRec* r;
114 for ( r = qcopq.first(); r; r = qcopq.next() ) { 114 for ( r = qcopq.first(); r; r = qcopq.next() ) {
115 QCopChannel::sendLocally( r->channel, r->message, r->data ); 115 QCopChannel::sendLocally( r->channel, r->message, r->data );
116 } 116 }
117 qcopq.clear(); 117 qcopq.clear();
118} 118}
119void QPEApplication::Private::show_mx(QWidget* mw, bool nomaximize ) { 119void QPEApplication::Private::show_mx(QWidget* mw, bool nomaximize ) {
120 if (mw->layout() && mw->inherits("QDialog") ) { 120 if (mw->layout() && mw->inherits("QDialog") ) {
121 QPEApplication::showDialog( (QDialog*)mw, nomaximize ); 121 QPEApplication::showDialog( (QDialog*)mw, nomaximize );
122 }else { 122 }else {
123 if (!nomaximize ) 123 if (!nomaximize )
124 mw->showMaximized(); 124 mw->showMaximized();
125 else 125 else
126 mw->show(); 126 mw->show();
127 } 127 }
128} 128}
129void QPEApplication::Private::show( QWidget* mw, bool nomax ) { 129void QPEApplication::Private::show( QWidget* mw, bool nomax ) {
130 nomaximize = nomax; 130 nomaximize = nomax;
131 qpe_main_widget = mw; 131 qpe_main_widget = mw;
132 132
133 sendQCopQ(); 133 sendQCopQ();
134 134
135 if ( preloaded ) { 135 if ( preloaded ) {
136 if (forceshow ) 136 if (forceshow )
137 show_mx(mw, nomax ); 137 show_mx(mw, nomax );
138 }else if ( keep_running ) 138 }else if ( keep_running )
139 show_mx( mw, nomax ); 139 show_mx( mw, nomax );
140} 140}
141void QPEApplication::Private::loadTextCodecs() { 141void QPEApplication::Private::loadTextCodecs() {
142 QString path = QPEApplication::qpeDir() + "/plugins/textcodecs"; 142 QString path = QPEApplication::qpeDir() + "/plugins/textcodecs";
143 QDir dir( path, "lib*.so" ); 143 QDir dir( path, "lib*.so" );
144 QStringList list = dir.entryList(); 144 QStringList list = dir.entryList();
145 QStringList::Iterator it; 145 QStringList::Iterator it;
146 for ( it = list.begin(); it != list.end(); ++it ) { 146 for ( it = list.begin(); it != list.end(); ++it ) {
147 TextCodecInterface *iface = 0; 147 TextCodecInterface *iface = 0;
148 QLibrary *lib = new QLibrary( path + "/" + *it ); 148 QLibrary *lib = new QLibrary( path + "/" + *it );
149 if ( lib->queryInterface( IID_QtopiaTextCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { 149 if ( lib->queryInterface( IID_QtopiaTextCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) {
150 QValueList<int> mibs = iface->mibEnums(); 150 QValueList<int> mibs = iface->mibEnums();
151 for (QValueList<int>::ConstIterator i = mibs.begin(); i != mibs.end(); ++i) { 151 for (QValueList<int>::ConstIterator i = mibs.begin(); i != mibs.end(); ++i) {
152 (void)iface->createForMib(*i); 152 (void)iface->createForMib(*i);
153 // ### it exists now; need to remember if we can delete it 153 // ### it exists now; need to remember if we can delete it
154 } 154 }
155 } 155 }
156 else { 156 else {
157 lib->unload(); 157 lib->unload();
158 delete lib; 158 delete lib;
159 } 159 }
160 } 160 }
161} 161}
162void QPEApplication::Private::loadImageCodecs() { 162void QPEApplication::Private::loadImageCodecs() {
163 QString path = QPEApplication::qpeDir() + "/plugins/imagecodecs"; 163 QString path = QPEApplication::qpeDir() + "/plugins/imagecodecs";
164 QDir dir( path, "lib*.so" ); 164 QDir dir( path, "lib*.so" );
165 QStringList list = dir.entryList(); 165 QStringList list = dir.entryList();
166 QStringList::Iterator it; 166 QStringList::Iterator it;
167 for ( it = list.begin(); it != list.end(); ++it ) { 167 for ( it = list.begin(); it != list.end(); ++it ) {
168 ImageCodecInterface *iface = 0; 168 ImageCodecInterface *iface = 0;
169 QLibrary *lib = new QLibrary( path + "/" + *it ); 169 QLibrary *lib = new QLibrary( path + "/" + *it );
170 if ( lib->queryInterface( IID_QtopiaImageCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { 170 if ( lib->queryInterface( IID_QtopiaImageCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) {
171 QStringList formats = iface->keys(); 171 QStringList formats = iface->keys();
172 for (QStringList::ConstIterator i = formats.begin(); i != formats.end(); ++i) { 172 for (QStringList::ConstIterator i = formats.begin(); i != formats.end(); ++i) {
173 (void)iface->installIOHandler(*i); 173 (void)iface->installIOHandler(*i);
174 // ### it exists now; need to remember if we can delete it 174 // ### it exists now; need to remember if we can delete it
175 } 175 }
176 } 176 }
177 else { 177 else {
178 lib->unload(); 178 lib->unload();
179 delete lib; 179 delete lib;
180 } 180 }
181 } 181 }
182} 182}
183 183
184// The Help System hook 184// The Help System hook
185namespace { 185namespace {
186 class ResourceMimeFactory : public QMimeSourceFactory 186 class ResourceMimeFactory : public QMimeSourceFactory
187 { 187 {
188 public: 188 public:
189 ResourceMimeFactory(); 189 ResourceMimeFactory();
190 ~ResourceMimeFactory(); 190 ~ResourceMimeFactory();
191 const QMimeSource* data( const QString& abs_name )const; 191 const QMimeSource* data( const QString& abs_name )const;
192 }; 192 };
193 ResourceMimeFactory::ResourceMimeFactory() 193 ResourceMimeFactory::ResourceMimeFactory()
194 { 194 {
195 setFilePath( Global::helpPath() ); 195 setFilePath( Global::helpPath() );
196 setExtensionType( "html", "text/html;charset=UTF-8" ); 196 setExtensionType( "html", "text/html;charset=UTF-8" );
197 } 197 }
198 ResourceMimeFactory::~ResourceMimeFactory() { 198 ResourceMimeFactory::~ResourceMimeFactory() {
199 } 199 }
200 200
201 const QMimeSource* ResourceMimeFactory::data( const QString& abs_name ) const 201 const QMimeSource* ResourceMimeFactory::data( const QString& abs_name ) const
202 { 202 {
203 const QMimeSource * r = QMimeSourceFactory::data( abs_name ); 203 const QMimeSource * r = QMimeSourceFactory::data( abs_name );
204 if ( !r ) { 204 if ( !r ) {
205 int sl = abs_name.length(); 205 int sl = abs_name.length();
206 do { 206 do {
207 sl = abs_name.findRev( '/', sl - 1 ); 207 sl = abs_name.findRev( '/', sl - 1 );
208 QString name = sl >= 0 ? abs_name.mid( sl + 1 ) : abs_name; 208 QString name = sl >= 0 ? abs_name.mid( sl + 1 ) : abs_name;
209 int dot = name.findRev( '.' ); 209 int dot = name.findRev( '.' );
210 if ( dot >= 0 ) 210 if ( dot >= 0 )
211 name = name.left( dot ); 211 name = name.left( dot );
212 QImage img = Resource::loadImage( name ); 212 QImage img = Resource::loadImage( name );
213 if ( !img.isNull() ) 213 if ( !img.isNull() )
214 r = new QImageDrag( img ); 214 r = new QImageDrag( img );
215 } 215 }
216 while ( !r && sl > 0 ); 216 while ( !r && sl > 0 );
217 } 217 }
218 return r; 218 return r;
219 }; 219 };
220}; 220};
221// QPEApplication 221// QPEApplication
222QPEApplication::~QPEApplication() { 222QPEApplication::~QPEApplication() {
223 qWarning("~QPEApplication"); 223 qWarning("~QPEApplication");
224 ungrabKeyboard(); 224 ungrabKeyboard();
225 qWarning("UngrabKeyboard"); 225 qWarning("UngrabKeyboard");
226 226
227// delete m_sys; 227// delete m_sys;
228// delete m_pid; 228// delete m_pid;
229 229
230 delete d; 230 delete d;
231} 231}
232QPEApplication::QPEApplication(int &arg, char** argv, Type t) 232QPEApplication::QPEApplication(int &arg, char** argv, Type t)
233 : QApplication( arg, argv, t ) { 233 : QApplication( arg, argv, t ) {
234 d = new Private; 234 d = new Private;
235 d->loadTextCodecs(); 235 d->loadTextCodecs();
236 d->loadImageCodecs(); 236 d->loadImageCodecs();
237 237
238 // Init X-Atom 238 // Init X-Atom
239 Atom *atoms[5]; 239 Atom *atoms[5];
240 Atom atoms_re[5]; 240 Atom atoms_re[5];
241 char* names[5]; 241 char* names[5];
242 int n = 0; 242 int n = 0;
243 atoms[n] = &d->wm_delete_window; 243 atoms[n] = &d->wm_delete_window;
244 names[n++] = "WM_DELETE_WINDOW"; 244 names[n++] = "WM_DELETE_WINDOW";
245 245
246 atoms[n] = &d->wm_take_focus; 246 atoms[n] = &d->wm_take_focus;
247 names[n++] = "WM_TAKE_FOCUS"; 247 names[n++] = "WM_TAKE_FOCUS";
248 248
249 atoms[n] = &d->wm_context_help; 249 atoms[n] = &d->wm_context_help;
250 names[n++] = "_NET_WM_CONTEXT_HELP"; 250 names[n++] = "_NET_WM_CONTEXT_HELP";
251 251
252 atoms[n] = &d->wm_context_accept; 252 atoms[n] = &d->wm_context_accept;
253 names[n++] = "_NET_WM_CONTEXT_ACCEPT"; 253 names[n++] = "_NET_WM_CONTEXT_ACCEPT";
254 254
255 atoms[n] = &d->wm_protocols; 255 atoms[n] = &d->wm_protocols;
256 names[n++] = "WM_PROTOCOLS"; 256 names[n++] = "WM_PROTOCOLS";
257 257
258 XInternAtoms( qt_xdisplay(), names, n, FALSE, atoms_re); 258 XInternAtoms( qt_xdisplay(), names, n, FALSE, atoms_re);
259 // now copy the values over to the properties 259 // now copy the values over to the properties
260 for (int i = 0; i < n; i++ ) 260 for (int i = 0; i < n; i++ )
261 *atoms[i] = atoms_re[i]; 261 *atoms[i] = atoms_re[i];
262 // done with X11 Stuff 262 // done with X11 Stuff
263 263
264 int dw = desktop()->width(); 264 int dw = desktop()->width();
265 if ( dw < 200 ) { 265 if ( dw < 200 ) {
266 setFont( QFont( "helvetica", 8 ) ); 266 setFont( QFont( "helvetica", 8 ) );
267 AppLnk::setSmallIconSize( 10 ); 267 AppLnk::setSmallIconSize( 10 );
268 AppLnk::setBigIconSize( 28 ); 268 AppLnk::setBigIconSize( 28 );
269 }else if ( dw > 600 ) { 269 }else if ( dw > 600 ) {
270 setFont( QFont( "helvetica", 12 ) ); 270 setFont( QFont( "helvetica", 12 ) );
271 AppLnk::setSmallIconSize( 24 ); 271 AppLnk::setSmallIconSize( 24 );
272 AppLnk::setBigIconSize( 48 ); 272 AppLnk::setBigIconSize( 48 );
273 }else if ( dw > 200 ) { 273 }else if ( dw > 200 ) {
274 setFont( QFont( "helvetica", 10 ) ); 274 setFont( QFont( "helvetica", 10 ) );
275 AppLnk::setSmallIconSize( 16 ); 275 AppLnk::setSmallIconSize( 16 );
276 AppLnk::setBigIconSize( 32 ); 276 AppLnk::setBigIconSize( 32 );
277 } 277 }
278 QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory ); 278 QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory );
279 279
280 connect( this, SIGNAL( lastWindowClosed() ), this, SLOT(hideOrQuit() ) ); 280 connect( this, SIGNAL( lastWindowClosed() ), this, SLOT(hideOrQuit() ) );
281 281
282 QString qcopfn( "/tmp/qcop-msg-" ); 282 QString qcopfn( "/tmp/qcop-msg-" );
283 qcopfn += QString( argv[0] ); // append command name to the QCOP name 283 qcopfn += QString( argv[0] ); // append command name to the QCOP name
284 QFile file( qcopfn ); 284 QFile file( qcopfn );
285 if (file.open(IO_ReadOnly ) ) { 285 if (file.open(IO_ReadOnly ) ) {
286 flock( file.handle(), LOCK_EX ); 286 flock( file.handle(), LOCK_EX );
287 } 287 }
288 288
289 /* Hmmm damn we need to make the parent 0l otherwise it get's deleted 289 /* Hmmm damn we need to make the parent 0l otherwise it get's deleted
290 * past the QApplication 290 * past the QApplication
291 */ 291 */
292 m_sys = new QCopChannel( "QPE/System", 0l); 292 m_sys = new QCopChannel( "QPE/System", 0l);
293 connect(m_sys, SIGNAL( received( const QCString&, const QByteArray& ) ), 293 connect(m_sys, SIGNAL( received( const QCString&, const QByteArray& ) ),
294 this, SLOT(systemMessage( const QCString&, const QByteArray& ) ) ); 294 this, SLOT(systemMessage( const QCString&, const QByteArray& ) ) );
295 295
296 // private channel QPE/Application/appname 296 // private channel QPE/Application/appname
297 QCString channel = QCString( argv[0] ); 297 QCString channel = QCString( argv[0] );
298 channel.replace( QRegExp( ".*/"), "" ); 298 channel.replace( QRegExp( ".*/"), "" );
299 d->appName = channel; 299 d->appName = channel;
300 channel = "QPE/Application/"+ channel; 300 channel = "QPE/Application/"+ channel;
301 m_pid = new QCopChannel( channel, 0l ); 301 m_pid = new QCopChannel( channel, 0l );
302 connect(m_pid, SIGNAL( received( const QCString&, const QByteArray& ) ), 302 connect(m_pid, SIGNAL( received( const QCString&, const QByteArray& ) ),
303 this, SLOT( pidMessage( const QCString&, const QByteArray& ) ) ); 303 this, SLOT( pidMessage( const QCString&, const QByteArray& ) ) );
304 304
305 // read the Pre QCOP Stuff from the file 305 // read the Pre QCOP Stuff from the file
306 if ( file.isOpen() ) { 306 if ( file.isOpen() ) {
307 d->keep_running = FALSE; 307 d->keep_running = FALSE;
308 QDataStream ds( &file ); 308 QDataStream ds( &file );
309 QCString chanel, message; 309 QCString chanel, message;
310 QByteArray data; 310 QByteArray data;
311 while (!ds.atEnd() ) { 311 while (!ds.atEnd() ) {
312 ds >> chanel >> message >> data; 312 ds >> chanel >> message >> data;
313 d->enqueueQCop( chanel, message, data ); 313 d->enqueueQCop( chanel, message, data );
314 } 314 }
315 flock( file.handle(), LOCK_UN ); 315 flock( file.handle(), LOCK_UN );
316 file.close(); 316 file.close();
317 file.remove(); 317 file.remove();
318 } 318 }
319 319
320 // read in some stuff from the command line 320 // read in some stuff from the command line
321 // we do not have setArgs so we need to take 321 // we do not have setArgs so we need to take
322 // care of that 322 // care of that
323 for ( int a = 0; a < arg; a++ ) { 323 for ( int a = 0; a < arg; a++ ) {
324 if ( qstrcmp( argv[a], "-preload" ) == 0 ) { 324 if ( qstrcmp( argv[a], "-preload" ) == 0 ) {
325 d->preloaded = TRUE; 325 d->preloaded = TRUE;
326 }else if ( qstrcmp( argv[a ] , "-preload-show" ) == 0 ) { 326 }else if ( qstrcmp( argv[a ] , "-preload-show" ) == 0 ) {
327 d->preloaded = TRUE; 327 d->preloaded = TRUE;
328 d->forceshow = TRUE; 328 d->forceshow = TRUE;
329 } 329 }
330 } 330 }
331 initTranslations(); 331 initTranslations();
332 applyStyle(); 332 applyStyle();
333 333
334 if ( type() == GuiServer ) 334 if ( type() == GuiServer )
335 ; 335 ;
336 336
337 installEventFilter( this ); 337 installEventFilter( this );
338 QPEMenuToolFocusManager::initialize(); 338 QPEMenuToolFocusManager::initialize();
339} 339}
340void QPEApplication::initTranslations() { 340void QPEApplication::initTranslations() {
341 // Translations add it 341 // Translations add it
342 QStringList langs = Global::languageList(); 342 QStringList langs = Global::languageList();
343 for ( QStringList::ConstIterator it = langs.begin(); it != langs.end(); ++it ) { 343 for ( QStringList::ConstIterator it = langs.begin(); it != langs.end(); ++it ) {
344 QString lang = *it; 344 QString lang = *it;
345 345
346 QTranslator * trans; 346 QTranslator * trans;
347 QString tfn; 347 QString tfn;
348 348
349 trans = new QTranslator( this ); 349 trans = new QTranslator( this );
350 tfn = qpeDir() + "/i18n/" + lang + "/libqpe.qm"; 350 tfn = qpeDir() + "/i18n/" + lang + "/libqpe.qm";
351 if ( trans->load( tfn ) ) 351 if ( trans->load( tfn ) )
352 installTranslator( trans ); 352 installTranslator( trans );
353 else 353 else
354 delete trans; 354 delete trans;
355 355
356 trans = new QTranslator( this ); 356 trans = new QTranslator( this );
357 tfn = qpeDir() + "/i18n/" + lang + "/" + d->appName + ".qm"; 357 tfn = qpeDir() + "/i18n/" + lang + "/" + d->appName + ".qm";
358 if ( trans->load( tfn ) ) 358 if ( trans->load( tfn ) )
359 installTranslator( trans ); 359 installTranslator( trans );
360 else 360 else
361 delete trans; 361 delete trans;
362 } 362 }
363} 363}
364QString QPEApplication::qpeDir() { 364QString QPEApplication::qpeDir() {
365 const char * base = getenv( "OPIEDIR" ); 365 const char * base = getenv( "OPIEDIR" );
366 if ( base ) 366 if ( base )
367 return QString( base ) + "/"; 367 return QString( base ) + "/";
368 368
369 return QString( "../" ); 369 return QString( "../" );
370} 370}
371QString QPEApplication::documentDir() { 371QString QPEApplication::documentDir() {
372 const char* base = getenv( "HOME"); 372 const char* base = getenv( "HOME");
373 if ( base ) 373 if ( base )
374 return QString( base ) + "/Documents"; 374 return QString( base ) + "/Documents";
375 375
376 return QString( "../Documents" ); 376 return QString( "../Documents" );
377} 377}
378void QPEApplication::applyStyle() { 378void QPEApplication::applyStyle() {
379 Config config( "qpe" ); 379 Config config( "qpe" );
380 380
381 config.setGroup( "Appearance" ); 381 config.setGroup( "Appearance" );
382 382
383 // Widget style 383 // Widget style
384 QString style = config.readEntry( "Style", "Light" ); 384 QString style = config.readEntry( "Style", "Light" );
385 internalSetStyle( style ); 385 internalSetStyle( style );
386 386
387 // Colors 387 // Colors
388 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) ); 388 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) );
389 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) ); 389 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) );
390 QPalette pal( btncolor, bgcolor ); 390 QPalette pal( btncolor, bgcolor );
391 QString color = config.readEntry( "Highlight", "#800000" ); 391 QString color = config.readEntry( "Highlight", "#800000" );
392 pal.setColor( QColorGroup::Highlight, QColor( color ) ); 392 pal.setColor( QColorGroup::Highlight, QColor( color ) );
393 color = config.readEntry( "HighlightedText", "#FFFFFF" ); 393 color = config.readEntry( "HighlightedText", "#FFFFFF" );
394 pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); 394 pal.setColor( QColorGroup::HighlightedText, QColor( color ) );
395 color = config.readEntry( "Text", "#000000" ); 395 color = config.readEntry( "Text", "#000000" );
396 pal.setColor( QColorGroup::Text, QColor( color ) ); 396 pal.setColor( QColorGroup::Text, QColor( color ) );
397 color = config.readEntry( "ButtonText", "#000000" ); 397 color = config.readEntry( "ButtonText", "#000000" );
398 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); 398 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) );
399 color = config.readEntry( "Base", "#FFFFFF" ); 399 color = config.readEntry( "Base", "#FFFFFF" );
400 pal.setColor( QColorGroup::Base, QColor( color ) ); 400 pal.setColor( QColorGroup::Base, QColor( color ) );
401 401
402 pal.setColor( QPalette::Disabled, QColorGroup::Text, 402 pal.setColor( QPalette::Disabled, QColorGroup::Text,
403 pal.color( QPalette::Active, QColorGroup::Background ).dark() ); 403 pal.color( QPalette::Active, QColorGroup::Background ).dark() );
404 404
405 setPalette( pal, TRUE ); 405 setPalette( pal, TRUE );
406 406
407 407
408 408
409 // Font 409 // Font
410 QString ff = config.readEntry( "FontFamily", font().family() ); 410 QString ff = config.readEntry( "FontFamily", font().family() );
411 int fs = config.readNumEntry( "FontSize", font().pointSize() ); 411 int fs = config.readNumEntry( "FontSize", font().pointSize() );
412 setFont( QFont(ff, fs) ); 412 setFont( QFont(ff, fs) );
413} 413}
414int QPEApplication::defaultRotation() { 414int QPEApplication::defaultRotation() {
415 return 0; 415 return 0;
416} 416}
417void QPEApplication::setDefaultRotation(int r ) { 417void QPEApplication::setDefaultRotation(int r ) {
418 418
419} 419}
420void QPEApplication::grabKeyboard() { 420void QPEApplication::grabKeyboard() {
421 QPEApplication::Private * d = ( ( QPEApplication* ) qApp ) ->d; 421 QPEApplication::Private * d = ( ( QPEApplication* ) qApp ) ->d;
422 if ( qApp->type() == QApplication::GuiServer ) 422 if ( qApp->type() == QApplication::GuiServer )
423 d->kbgrabber = 0; 423 d->kbgrabber = 0;
424 else { 424 else {
425 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); 425 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" );
426 e << d->appName; 426 e << d->appName;
427 427
428 d->kbgrabber = 2; // me 428 d->kbgrabber = 2; // me
429 } 429 }
430} 430}
431void QPEApplication::ungrabKeyboard() { 431void QPEApplication::ungrabKeyboard() {
432 QPEApplication::Private * d = ( ( QPEApplication* ) qApp ) ->d; 432 QPEApplication::Private * d = ( ( QPEApplication* ) qApp ) ->d;
433 if ( d->kbgrabber == 2 ) { 433 if ( d->kbgrabber == 2 ) {
434 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); 434 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" );
435 e << QString::null; 435 e << QString::null;
436 436
437 d->kbregrab = FALSE; 437 d->kbregrab = FALSE;
438 d->kbgrabber = 0; 438 d->kbgrabber = 0;
439 } 439 }
440} 440}
441void QPEApplication::showMainWidget( QWidget* wid, bool b) { 441void QPEApplication::showMainWidget( QWidget* wid, bool b) {
442 d->show(wid, b ); 442 d->show(wid, b );
443} 443}
444void QPEApplication::showMainDocumentWidget( QWidget* mw, bool m) { 444void QPEApplication::showMainDocumentWidget( QWidget* mw, bool m) {
445 if ( mw && argc() == 2 ) 445 if ( mw && argc() == 2 )
446 Global::setDocument( mw, QString::fromUtf8(argv()[1] ) ); 446 Global::setDocument( mw, QString::fromUtf8(argv()[1] ) );
447 447
448 d->show(mw, m ); 448 d->show(mw, m );
449} 449}
450void QPEApplication::showDialog( QDialog* d, bool nomax ) { 450void QPEApplication::showDialog( QDialog* d, bool nomax ) {
451 QSize sh = d->sizeHint(); 451 QSize sh = d->sizeHint();
452 int w = QMAX(sh.width(),d->width()); 452 int w = QMAX(sh.width(),d->width());
453 int h = QMAX(sh.height(),d->height()); 453 int h = QMAX(sh.height(),d->height());
454 if ( !nomax 454 if ( !nomax
455 && ( w > qApp->desktop()->width()*3/4 455 && ( w > qApp->desktop()->width()*3/4
456 || h > qApp->desktop()->height()*3/4 ) ) 456 || h > qApp->desktop()->height()*3/4 ) )
457 { 457 {
458 d->showMaximized(); 458 d->showMaximized();
459 } else { 459 } else {
460 d->resize(w,h); 460 d->resize(w,h);
461 d->show(); 461 d->show();
462 } 462 }
463} 463}
464int QPEApplication::execDialog( QDialog* d, bool nomax) { 464int QPEApplication::execDialog( QDialog* d, bool nomax) {
465 showDialog(d,nomax); 465 showDialog(d,nomax);
466 return d->exec(); 466 return d->exec();
467} 467}
468void QPEApplication::setKeepRunning() { 468void QPEApplication::setKeepRunning() {
469 if ( qApp && qApp->inherits( "QPEApplication" ) ) { 469 if ( qApp && qApp->inherits( "QPEApplication" ) ) {
470 QPEApplication * qpeApp = ( QPEApplication* ) qApp; 470 QPEApplication * qpeApp = ( QPEApplication* ) qApp;
471 qpeApp->d->keep_running = TRUE; 471 qpeApp->d->keep_running = TRUE;
472 } 472 }
473} 473}
474bool QPEApplication::keepRunning()const { 474bool QPEApplication::keepRunning()const {
475 return d->keep_running; 475 return d->keep_running;
476} 476}
477bool QPEApplication::keyboardGrabbed()const { 477bool QPEApplication::keyboardGrabbed()const {
478 return d->kbgrabber; 478 return d->kbgrabber;
479} 479}
480int QPEApplication::exec() { 480int QPEApplication::exec() {
481 /* now send the QCOP stuff gotten from the file */ 481 /* now send the QCOP stuff gotten from the file */
482 d->sendQCopQ(); 482 d->sendQCopQ();
483 483
484 if ( d->keep_running ) { 484 if ( d->keep_running ) {
485 qWarning("going to exec"); 485 qWarning("going to exec");
486 int a = QApplication::exec(); 486 int a = QApplication::exec();
487 qWarning("left"); 487 qWarning("left");
488 return a; 488 return a;
489 } 489 }
490 490
491 { 491 {
492 QCopEnvelope e( "QPE/System", "closing(QString)" ); 492 QCopEnvelope e( "QPE/System", "closing(QString)" );
493 e << d->appName; 493 e << d->appName;
494 } 494 }
495 qWarning("processing events!"); 495 qWarning("processing events!");
496 processEvents(); 496 processEvents();
497 return 0; 497 return 0;
498} 498}
499void QPEApplication::internalSetStyle( const QString& ) { 499void QPEApplication::internalSetStyle( const QString& ) {
500 500
501} 501}
502void QPEApplication::systemMessage( const QCString&, const QByteArray& ) { 502void QPEApplication::systemMessage( const QCString& chan, const QByteArray& ) {
503 503 qWarning("QPEApplication::systemMessage( %s )", chan.data() );
504} 504}
505void QPEApplication::pidMessage( const QCString&, const QByteArray& ) { 505void QPEApplication::pidMessage( const QCString&, const QByteArray& ) {
506 506
507} 507}
508void QPEApplication::timerEvent( QTimerEvent* e ) { 508void QPEApplication::timerEvent( QTimerEvent* e ) {
509 if ( e->timerId() == d->presstimer && d->presswidget ) { 509 if ( e->timerId() == d->presstimer && d->presswidget ) {
510 // Right pressed 510 // Right pressed
511 postEvent( d->presswidget, 511 postEvent( d->presswidget,
512 new QMouseEvent( QEvent::MouseButtonPress, d->presspos, 512 new QMouseEvent( QEvent::MouseButtonPress, d->presspos,
513 RightButton, LeftButton ) ); 513 RightButton, LeftButton ) );
514 killTimer( d->presstimer ); 514 killTimer( d->presstimer );
515 d->presstimer = 0; 515 d->presstimer = 0;
516 } 516 }
517} 517}
518 518
519// InputMethods Hints 519// InputMethods Hints
520namespace { 520namespace {
521 static QPtrDict<void>* inputMethodDict = 0; 521 static QPtrDict<void>* inputMethodDict = 0;
522 static void createInputMethodDict(){ 522 static void createInputMethodDict(){
523 if ( !inputMethodDict ) 523 if ( !inputMethodDict )
524 inputMethodDict = new QPtrDict<void>; 524 inputMethodDict = new QPtrDict<void>;
525 } 525 }
526 526
527 static QPtrDict<void>* stylusDict = 0; 527 static QPtrDict<void>* stylusDict = 0;
528 static void createDict() { 528 static void createDict() {
529 if ( !stylusDict ) 529 if ( !stylusDict )
530 stylusDict = new QPtrDict<void>; 530 stylusDict = new QPtrDict<void>;
531 } 531 }
532}; 532};
533 533
534void QPEApplication::setInputMethodHint( QWidget* w, InputMethodHint mode ) { 534void QPEApplication::setInputMethodHint( QWidget* w, InputMethodHint mode ) {
535 createInputMethodDict(); 535 createInputMethodDict();
536 if ( mode == Normal ) { 536 if ( mode == Normal ) {
537 inputMethodDict->remove 537 inputMethodDict->remove
538 ( w ); 538 ( w );
539 }else { 539 }else {
540 inputMethodDict->insert( w, ( void* ) mode ); 540 inputMethodDict->insert( w, ( void* ) mode );
541 } 541 }
542} 542}
543QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget* w) { 543QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget* w) {
544 if ( inputMethodDict && w ) 544 if ( inputMethodDict && w )
545 return ( InputMethodHint ) ( int ) inputMethodDict->find( w ); 545 return ( InputMethodHint ) ( int ) inputMethodDict->find( w );
546 return Normal; 546 return Normal;
547} 547}
548 548
549 549
550void QPEApplication::removeSenderFromStylusDict() { 550void QPEApplication::removeSenderFromStylusDict() {
551 stylusDict->remove( ( void* ) sender() ); 551 stylusDict->remove( ( void* ) sender() );
552 if ( d->presswidget == sender() ) 552 if ( d->presswidget == sender() )
553 d->presswidget = 0; 553 d->presswidget = 0;
554} 554}
555void QPEApplication::setStylusOperation( QWidget* w, StylusMode mode) { 555void QPEApplication::setStylusOperation( QWidget* w, StylusMode mode) {
556 createDict(); 556 createDict();
557 if ( mode == LeftOnly ) { 557 if ( mode == LeftOnly ) {
558 stylusDict->remove 558 stylusDict->remove
559 ( w ); 559 ( w );
560 w->removeEventFilter( qApp ); 560 w->removeEventFilter( qApp );
561 }else { 561 }else {
562 stylusDict->insert( w, ( void* ) mode ); 562 stylusDict->insert( w, ( void* ) mode );
563 connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) ); 563 connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) );
564 w->installEventFilter( qApp ); 564 w->installEventFilter( qApp );
565 } 565 }
566} 566}
567QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w) { 567QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w) {
568 if ( stylusDict ) 568 if ( stylusDict )
569 return ( StylusMode ) ( int ) stylusDict->find( w ); 569 return ( StylusMode ) ( int ) stylusDict->find( w );
570 return LeftOnly; 570 return LeftOnly;
571} 571}
572 572
573// eventFilter...... 573// eventFilter......
574bool QPEApplication::eventFilter( QObject* o, QEvent* e ) { 574bool QPEApplication::eventFilter( QObject* o, QEvent* e ) {
575 /* 575 /*
576 * We want our WM to show Ok and a X button 576 * We want our WM to show Ok and a X button
577 * on dialogs 577 * on dialogs
578 * our part is to set the _NET_WM_CONTEXT_ACCEPT 578 * our part is to set the _NET_WM_CONTEXT_ACCEPT
579 * propery 579 * propery
580 * and then wait for a client message -zecke 580 * and then wait for a client message -zecke
581 * on show we will add the prop 581 * on show we will add the prop
582 */ 582 */
583 if (o->inherits("QDialog") && e->type() == QEvent::Show ) { 583 if (o->inherits("QDialog") && e->type() == QEvent::Show ) {
584 QDialog* dialog = (QDialog*)o; 584 QDialog* dialog = (QDialog*)o;
585 Atom wm_prot[45]; 585 Atom wm_prot[45];
586 int n = 0; 586 int n = 0;
587 wm_prot[n++] = d->wm_delete_window; 587 wm_prot[n++] = d->wm_delete_window;
588 wm_prot[n++] = d->wm_take_focus; 588 wm_prot[n++] = d->wm_take_focus;
589 wm_prot[n++] = d->wm_context_accept; 589 wm_prot[n++] = d->wm_context_accept;
590 if ( dialog->testWFlags( WStyle_ContextHelp ) ) 590 if ( dialog->testWFlags( WStyle_ContextHelp ) )
591 wm_prot[n++] = d->wm_context_help; 591 wm_prot[n++] = d->wm_context_help;
592 XSetWMProtocols( qt_xdisplay(), dialog->winId(), wm_prot, n ); 592 XSetWMProtocols( qt_xdisplay(), dialog->winId(), wm_prot, n );
593 return TRUE; // should be save 593 return TRUE; // should be save
594 } 594 }
595 if ( stylusDict && e->type() >= QEvent::MouseButtonPress && e->type() <= QEvent::MouseMove ) { 595 if ( stylusDict && e->type() >= QEvent::MouseButtonPress && e->type() <= QEvent::MouseMove ) {
596 QMouseEvent * me = ( QMouseEvent* ) e; 596 QMouseEvent * me = ( QMouseEvent* ) e;
597 StylusMode mode = (StylusMode)(int)stylusDict->find(o); 597 StylusMode mode = (StylusMode)(int)stylusDict->find(o);
598 switch (mode) { 598 switch (mode) {
599 case RightOnHold: 599 case RightOnHold:
600 switch ( me->type() ) { 600 switch ( me->type() ) {
601 case QEvent::MouseButtonPress: 601 case QEvent::MouseButtonPress:
602 if ( me->button() == LeftButton ) { 602 if ( me->button() == LeftButton ) {
603 d->presstimer = startTimer(500); // #### pref. 603 d->presstimer = startTimer(500); // #### pref.
604 d->presswidget = (QWidget*)o; 604 d->presswidget = (QWidget*)o;
605 d->presspos = me->pos(); 605 d->presspos = me->pos();
606 d->rightpressed = FALSE; 606 d->rightpressed = FALSE;
607 } 607 }
608 break; 608 break;
609 case QEvent::MouseMove: 609 case QEvent::MouseMove:
610 if (d->presstimer && (me->pos() - d->presspos).manhattanLength() > 8) { 610 if (d->presstimer && (me->pos() - d->presspos).manhattanLength() > 8) {
611 killTimer(d->presstimer); 611 killTimer(d->presstimer);
612 d->presstimer = 0; 612 d->presstimer = 0;
613 } 613 }
614 break; 614 break;
615 case QEvent::MouseButtonRelease: 615 case QEvent::MouseButtonRelease:
616 if ( me->button() == LeftButton ) { 616 if ( me->button() == LeftButton ) {
617 if ( d->presstimer ) { 617 if ( d->presstimer ) {
618 killTimer(d->presstimer); 618 killTimer(d->presstimer);
619 d->presstimer = 0; 619 d->presstimer = 0;
620 } 620 }
621 if ( d->rightpressed && d->presswidget ) { 621 if ( d->rightpressed && d->presswidget ) {
622 // Right released 622 // Right released
623 postEvent( d->presswidget, 623 postEvent( d->presswidget,
624 new QMouseEvent( QEvent::MouseButtonRelease, me->pos(), 624 new QMouseEvent( QEvent::MouseButtonRelease, me->pos(),
625 RightButton, LeftButton + RightButton ) ); 625 RightButton, LeftButton + RightButton ) );
626 // Left released, off-widget 626 // Left released, off-widget
627 postEvent( d->presswidget, 627 postEvent( d->presswidget,
628 new QMouseEvent( QEvent::MouseMove, QPoint( -1, -1), 628 new QMouseEvent( QEvent::MouseMove, QPoint( -1, -1),
629 LeftButton, LeftButton ) ); 629 LeftButton, LeftButton ) );
630 postEvent( d->presswidget, 630 postEvent( d->presswidget,
631 new QMouseEvent( QEvent::MouseButtonRelease, QPoint( -1, -1), 631 new QMouseEvent( QEvent::MouseButtonRelease, QPoint( -1, -1),
632 LeftButton, LeftButton ) ); 632 LeftButton, LeftButton ) );
633 d->rightpressed = FALSE; 633 d->rightpressed = FALSE;
634 return TRUE; // don't send the real Left release 634 return TRUE; // don't send the real Left release
635 } 635 }
636 } 636 }
637 break; 637 break;
638 default: 638 default:
639 break; 639 break;
640 } 640 }
641 break; 641 break;
642 default: 642 default:
643 ; 643 ;
644 } 644 }
645 } 645 }
646 else if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { 646 else if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) {
647 QKeyEvent *ke = (QKeyEvent *)e; 647 QKeyEvent *ke = (QKeyEvent *)e;
648 if ( ke->key() == Key_Enter ) { 648 if ( ke->key() == Key_Enter ) {
649 if ( o->isA( "QRadioButton" ) || o->isA( "QCheckBox" ) ) { 649 if ( o->isA( "QRadioButton" ) || o->isA( "QCheckBox" ) ) {
650 postEvent( o, new QKeyEvent( e->type(), Key_Space, ' ', 650 postEvent( o, new QKeyEvent( e->type(), Key_Space, ' ',
651 ke->state(), " ", ke->isAutoRepeat(), ke->count() ) ); 651 ke->state(), " ", ke->isAutoRepeat(), ke->count() ) );
652 return TRUE; 652 return TRUE;
653 } 653 }
654 } 654 }
655 } 655 }
656 return FALSE; 656 return FALSE;
657} 657}
658 658
659// Quit stuff 659// Quit stuff
660void QPEApplication::restart() { 660void QPEApplication::restart() {
661 661
662} 662}
663void QPEApplication::shutdown() { 663void QPEApplication::shutdown() {
664 664
665} 665}
666void QPEApplication::tryQuit() { 666void QPEApplication::tryQuit() {
667 qWarning("TryQuit!!"); 667 qWarning("TryQuit!!");
668 if ( activeModalWidget() || strcmp( argv() [ 0 ], "embeddedkonsole" ) == 0 ) 668 if ( activeModalWidget() || strcmp( argv() [ 0 ], "embeddedkonsole" ) == 0 )
669 return ; // Inside modal loop or konsole. Too hard to save state. 669 return ; // Inside modal loop or konsole. Too hard to save state.
670 { 670 {
671 QCopEnvelope e( "QPE/System", "closing(QString)" ); 671 QCopEnvelope e( "QPE/System", "closing(QString)" );
672 e << d->appName; 672 e << d->appName;
673 } 673 }
674 processEvents(); 674 processEvents();
675 675
676 quit(); 676 quit();
677} 677}
678void QPEApplication::hideOrQuit() { 678void QPEApplication::hideOrQuit() {
679 qWarning("hide or close"); 679 qWarning("hide or close");
680 processEvents(); 680 processEvents();
681 qWarning("past processing"); 681 qWarning("past processing");
682 682
683 // If we are a preloaded application we don't actually quit, so emit 683 // If we are a preloaded application we don't actually quit, so emit
684 // a System message indicating we're quasi-closing. 684 // a System message indicating we're quasi-closing.
685 if ( d->preloaded && d->qpe_main_widget ) 685 if ( d->preloaded && d->qpe_main_widget )
686 686
687 { 687 {
688 qWarning("hiding"); 688 qWarning("hiding");
689 QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); 689 QCopEnvelope e("QPE/System", "fastAppHiding(QString)" );
690 e << d->appName; 690 e << d->appName;
691 d->qpe_main_widget->hide(); 691 d->qpe_main_widget->hide();
692 } 692 }
693 else 693 else
694 quit(); 694 quit();
695} 695}
696 696
697/*! 697/*!
698 \internal 698 \internal
699*/ 699*/
700void QPEApplication::prepareForTermination( bool willrestart ) 700void QPEApplication::prepareForTermination( bool willrestart )
701{ 701{
702 if ( willrestart ) { 702 if ( willrestart ) {
703 // Draw a big wait icon, the image can be altered in later revisions 703 // Draw a big wait icon, the image can be altered in later revisions
704 // QWidget *d = QApplication::desktop(); 704 // QWidget *d = QApplication::desktop();
705 QImage img = Resource::loadImage( "launcher/new_wait" ); 705 QImage img = Resource::loadImage( "launcher/new_wait" );
706 QPixmap pix; 706 QPixmap pix;
707 pix.convertFromImage( img.smoothScale( 1 * img.width(), 1 * img.height() ) ); 707 pix.convertFromImage( img.smoothScale( 1 * img.width(), 1 * img.height() ) );
708 QLabel *lblWait = new QLabel( 0, "wait hack!", QWidget::WStyle_Customize | 708 QLabel *lblWait = new QLabel( 0, "wait hack!", QWidget::WStyle_Customize |
709 QWidget::WStyle_NoBorder | QWidget::WStyle_Tool ); 709 QWidget::WStyle_NoBorder | QWidget::WStyle_Tool );
710 lblWait->setPixmap( pix ); 710 lblWait->setPixmap( pix );
711 lblWait->setAlignment( QWidget::AlignCenter ); 711 lblWait->setAlignment( QWidget::AlignCenter );
712 lblWait->show(); 712 lblWait->show();
713 lblWait->showMaximized(); 713 lblWait->showMaximized();
714 } 714 }
715#ifndef SINGLE_APP 715#ifndef SINGLE_APP
716 { QCopEnvelope envelope( "QPE/System", "forceQuit()" ); 716 { QCopEnvelope envelope( "QPE/System", "forceQuit()" );
717 } 717 }
718 processEvents(); // ensure the message goes out. 718 processEvents(); // ensure the message goes out.
719 sleep( 1 ); // You have 1 second to comply. 719 sleep( 1 ); // You have 1 second to comply.
720#endif 720#endif
721} 721}
722int QPEApplication::x11ClientMessage(QWidget* w, XEvent* event, bool b ) { 722int QPEApplication::x11ClientMessage(QWidget* w, XEvent* event, bool b ) {
723 qWarning("X11 ClientMessage %d %d", event->type, ClientMessage); 723 qWarning("X11 ClientMessage %d %d", event->type, ClientMessage);
724 if ( event->type == ClientMessage ) { 724 if ( event->type == ClientMessage ) {
725 if ( (event->xclient.message_type == d->wm_protocols) && 725 if ( (event->xclient.message_type == d->wm_protocols) &&
726 (event->xclient.data.l[0] == d->wm_context_accept ) ) { 726 (event->xclient.data.l[0] == d->wm_context_accept ) ) {
727 qWarning("accepted!!!"); 727 qWarning("accepted!!!");
728 /* 728 /*
729 * I'm not sure if we should use activeWidget 729 * I'm not sure if we should use activeWidget
730 * or activeModalWidget 730 * or activeModalWidget
731 * a QDialog could be not modal too 731 * a QDialog could be not modal too
732 */ 732 */
733 if ( w->inherits("QDialog" ) ) { 733 if ( w->inherits("QDialog" ) ) {
734 qWarning("inherits QDialog!!!"); 734 qWarning("inherits QDialog!!!");
735 QDialog* dia = (QDialog*)w; 735 QDialog* dia = (QDialog*)w;
736 /* 736 /*
737 * call it directly or via QTimer::singleShot? 737 * call it directly or via QTimer::singleShot?
738 */ 738 */
739 QTimer::singleShot(0, dia, SLOT(accept() ) ); 739 QTimer::singleShot(0, dia, SLOT(accept() ) );
740 return 0; 740 return 0;
741 } 741 }
742 742
743 } 743 }
744 } 744 }
745 return QApplication::x11ClientMessage(w, event, b ); 745 return QApplication::x11ClientMessage(w, event, b );
746} 746}
747 747
748#define KeyPress XKeyPress 748#define KeyPress XKeyPress
749#define KeyRelease XKeyRelease 749#define KeyRelease XKeyRelease
750 750
751#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) 751#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX)
752 752
753// The libraries with the skiff package (and possibly others) have 753// The libraries with the skiff package (and possibly others) have
754// completely useless implementations of builtin new and delete that 754// completely useless implementations of builtin new and delete that
755// use about 50% of your CPU. Here we revert to the simple libc 755// use about 50% of your CPU. Here we revert to the simple libc
756// functions. 756// functions.
757 757
758void* operator new[]( size_t size ) 758void* operator new[]( size_t size )
759{ 759{
760 return malloc( size ); 760 return malloc( size );
761} 761}
762 762
763void* operator new( size_t size ) 763void* operator new( size_t size )
764{ 764{
765 return malloc( size ); 765 return malloc( size );
766} 766}
767 767
768void operator delete[]( void* p ) 768void operator delete[]( void* p )
769{ 769{
770 free( p ); 770 free( p );
771} 771}
772 772
773void operator delete[]( void* p, size_t /*size*/ ) 773void operator delete[]( void* p, size_t /*size*/ )
774{ 774{
775 free( p ); 775 free( p );
776} 776}
777 777
778void operator delete( void* p ) 778void operator delete( void* p )
779{ 779{
780 free( p ); 780 free( p );
781} 781}
782 782
783void operator delete( void* p, size_t /*size*/ ) 783void operator delete( void* p, size_t /*size*/ )
784{ 784{
785 free( p ); 785 free( p );
786} 786}
787 787
788#endif 788#endif
diff --git a/x11/libqpe-x11/qt/qcopchannel_qws.cpp b/x11/libqpe-x11/qt/qcopchannel_qws.cpp
index 1cea80c..706756e 100644
--- a/x11/libqpe-x11/qt/qcopchannel_qws.cpp
+++ b/x11/libqpe-x11/qt/qcopchannel_qws.cpp
@@ -1,76 +1,83 @@
1 1
2#include "../../ipc/client/ocopclient.h" 2#include "../../ipc/client/ocopclient.h"
3 3
4#include <qcopchannel_qws.h> 4#include <qcopchannel_qws.h>
5 5
6QList<QCopChannel>* QCopChannel::m_list = 0; 6QList<QCopChannel>* QCopChannel::m_list = 0;
7QMap<QCString, int> QCopChannel::m_refCount; 7QMap<QCString, int> QCopChannel::m_refCount;
8 8
9QCopChannel::QCopChannel( const QCString& channel, QObject* parent, 9QCopChannel::QCopChannel( const QCString& channel, QObject* parent,
10 const char* name ) 10 const char* name )
11 : QObject( parent, name ),m_chan(channel) { 11 : QObject( parent, name ),m_chan(channel) {
12 if (!m_list ) { 12 if (!m_list ) {
13 m_list = new QList<QCopChannel>; 13 m_list = new QList<QCopChannel>;
14 /* only connect once */ 14 /* only connect once */
15 connect(OCOPClient::self(), SIGNAL(called(const QCString&, const QCString&, const QByteArray& ) ), 15 connect(OCOPClient::self(), SIGNAL(called(const QCString&, const QCString&, const QByteArray& ) ),
16 this, SLOT(rev(const QCString&, const QCString&, const QByteArray&) ) ); 16 this, SLOT(rev(const QCString&, const QCString&, const QByteArray&) ) );
17 } 17 }
18 /* first registration or ref count is 0 for m_chan*/ 18 /* first registration or ref count is 0 for m_chan*/
19 if (!m_refCount.contains( m_chan ) || !m_refCount[m_chan] ) { 19 if (!m_refCount.contains( m_chan ) || !m_refCount[m_chan] ) {
20 qWarning("adding channel %s", m_chan.data() );
20 m_refCount[m_chan] = 1; 21 m_refCount[m_chan] = 1;
21 OCOPClient::self()->addChannel( m_chan ); 22 OCOPClient::self()->addChannel( m_chan );
22 }else 23 }else{
24 qWarning("reffing up for %s %d", m_chan.data(), m_refCount[m_chan] );
23 m_refCount[m_chan]++; 25 m_refCount[m_chan]++;
26 }
24 27
25 m_list->append(this); 28 m_list->append(this);
26} 29}
27void QCopChannel::receive( const QCString& msg, const QByteArray& ar ) { 30void QCopChannel::receive( const QCString& msg, const QByteArray& ar ) {
28 emit received( msg, ar ); 31 emit received( msg, ar );
29} 32}
30QCopChannel::~QCopChannel() { 33QCopChannel::~QCopChannel() {
31 if (m_refCount[m_chan] == 1 ) { 34 if (m_refCount[m_chan] == 1 ) {
32 OCOPClient::self()->delChannel( m_chan ); 35 OCOPClient::self()->delChannel( m_chan );
33 m_refCount[m_chan] = 0; 36 m_refCount[m_chan] = 0;
34 }else 37 }else
35 m_refCount[m_chan]--; 38 m_refCount[m_chan]--;
36 39
37 40
38 m_list->remove(this); 41 m_list->remove(this);
39 if (m_list->count() == 0 ) { 42 if (m_list->count() == 0 ) {
40 delete m_list; 43 delete m_list;
41 m_list = 0; 44 m_list = 0;
42 } 45 }
43 46
44} 47}
45QCString QCopChannel::channel()const { 48QCString QCopChannel::channel()const {
46 return m_chan; 49 return m_chan;
47} 50}
48bool QCopChannel::isRegistered( const QCString& chan) {; 51bool QCopChannel::isRegistered( const QCString& chan) {
52 if (m_refCount.contains(chan) ) {
53 qDebug("Client:locally contains");
54 return true;
55 }
49 return OCOPClient::self()->isRegistered( chan ); 56 return OCOPClient::self()->isRegistered( chan );
50} 57}
51bool QCopChannel::send( const QCString& chan, const QCString& msg ) { 58bool QCopChannel::send( const QCString& chan, const QCString& msg ) {
52 QByteArray ar; 59 QByteArray ar;
53 return send(chan, msg, ar ); 60 return send(chan, msg, ar );
54} 61}
55bool QCopChannel::send( const QCString& chan, const QCString& msg, 62bool QCopChannel::send( const QCString& chan, const QCString& msg,
56 const QByteArray& ar ) { 63 const QByteArray& ar ) {
57 OCOPClient::self()->send( chan, msg, ar ); 64 OCOPClient::self()->send( chan, msg, ar );
58 return true; 65 return true;
59} 66}
60bool QCopChannel::sendLocally( const QCString& chann, const QCString& msg, 67bool QCopChannel::sendLocally( const QCString& chann, const QCString& msg,
61 const QByteArray& ar ) { 68 const QByteArray& ar ) {
62 qWarning("Client:sendLocally %s %s", chann.data(), msg.data() ); 69 qWarning("Client:sendLocally %s %s", chann.data(), msg.data() );
63 if (!m_list ) 70 if (!m_list )
64 return true; 71 return true;
65 QCopChannel* chan; 72 QCopChannel* chan;
66 73
67 for ( chan = m_list->first(); chan; chan = m_list->next() ) { 74 for ( chan = m_list->first(); chan; chan = m_list->next() ) {
68 if ( chan->channel() == chann ) 75 if ( chan->channel() == chann )
69 chan->receive( msg, ar ); 76 chan->receive( msg, ar );
70 } 77 }
71 78
72 return true; 79 return true;
73} 80}
74void QCopChannel::rev( const QCString& chan, const QCString& msg, const QByteArray& ar ) { 81void QCopChannel::rev( const QCString& chan, const QCString& msg, const QByteArray& ar ) {
75 sendLocally( chan, msg, ar ); 82 sendLocally( chan, msg, ar );
76} 83}