summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp20
1 files changed, 18 insertions, 2 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index cf437da..f84bc0e 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -1,168 +1,170 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19** $Id$ 19** $Id$
20** 20**
21**********************************************************************/ 21**********************************************************************/
22#define QTOPIA_INTERNAL_LANGLIST 22#define QTOPIA_INTERNAL_LANGLIST
23#include <stdlib.h> 23#include <stdlib.h>
24#include <unistd.h> 24#include <unistd.h>
25#include <qfile.h> 25#include <qfile.h>
26#ifdef Q_WS_QWS 26#ifdef Q_WS_QWS
27#ifndef QT_NO_COP 27#ifndef QT_NO_COP
28#if QT_VERSION <= 231 28#if QT_VERSION <= 231
29#define private public 29#define private public
30#define sendLocally processEvent 30#define sendLocally processEvent
31#include "qcopenvelope_qws.h" 31#include "qcopenvelope_qws.h"
32#undef private 32#undef private
33#else 33#else
34#include "qcopenvelope_qws.h" 34#include "qcopenvelope_qws.h"
35#endif 35#endif
36#endif 36#endif
37#include <qwindowsystem_qws.h> 37#include <qwindowsystem_qws.h>
38#endif 38#endif
39#include <qtextstream.h> 39#include <qtextstream.h>
40#include <qpalette.h> 40#include <qpalette.h>
41#include <qbuffer.h> 41#include <qbuffer.h>
42#include <qptrdict.h> 42#include <qptrdict.h>
43#include <qregexp.h> 43#include <qregexp.h>
44#include <qdir.h> 44#include <qdir.h>
45#include <qlabel.h> 45#include <qlabel.h>
46#include <qdialog.h> 46#include <qdialog.h>
47#include <qdragobject.h> 47#include <qdragobject.h>
48#include <qevent.h> 48#include <qevent.h>
49#include <qtooltip.h> 49#include <qtooltip.h>
50#include <qsignal.h> 50#include <qsignal.h>
51#include <linux/fb.h> 51#include <linux/fb.h>
52 52
53#include <qsignal.h> 53#include <qsignal.h>
54#include "qpeapplication.h" 54#include "qpeapplication.h"
55#include "qpestyle.h" 55#include "qpestyle.h"
56#if QT_VERSION >= 300 56#if QT_VERSION >= 300
57#include <qstylefactory.h> 57#include <qstylefactory.h>
58#else 58#else
59#include <qplatinumstyle.h> 59#include <qplatinumstyle.h>
60#include <qwindowsstyle.h> 60#include <qwindowsstyle.h>
61#include <qmotifstyle.h> 61#include <qmotifstyle.h>
62#include <qmotifplusstyle.h> 62#include <qmotifplusstyle.h>
63#include "lightstyle.h" 63#include "lightstyle.h"
64#endif 64#endif
65#include "global.h" 65#include "global.h"
66#include "resource.h" 66#include "resource.h"
67#if QT_VERSION <= 230 && defined(QT_NO_CODECS) 67#if QT_VERSION <= 230 && defined(QT_NO_CODECS)
68#include "qutfcodec.h" 68#include "qutfcodec.h"
69#endif 69#endif
70#include "config.h" 70#include "config.h"
71#include "network.h" 71#include "network.h"
72#include "fontmanager.h" 72#include "fontmanager.h"
73#include "fontdatabase.h"
74
73#include "power.h" 75#include "power.h"
74#include "alarmserver.h" 76#include "alarmserver.h"
75#include "applnk.h" 77#include "applnk.h"
76#include "qpemenubar.h" 78#include "qpemenubar.h"
77 79
78#include <unistd.h> 80#include <unistd.h>
79#include <sys/file.h> 81#include <sys/file.h>
80#include <sys/ioctl.h> 82#include <sys/ioctl.h>
81#include <sys/soundcard.h> 83#include <sys/soundcard.h>
82 84
83// for setBacklight() 85// for setBacklight()
84#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) 86#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX)
85#include <linux/fb.h> 87#include <linux/fb.h>
86#include <sys/types.h> 88#include <sys/types.h>
87#include <sys/stat.h> 89#include <sys/stat.h>
88#endif 90#endif
89#include <stdlib.h> 91#include <stdlib.h>
90 92
91 93
92class QPEApplicationData { 94class QPEApplicationData {
93public: 95public:
94 QPEApplicationData() : presstimer(0), presswidget(0), rightpressed(FALSE), 96 QPEApplicationData() : presstimer(0), presswidget(0), rightpressed(FALSE),
95 kbgrabber(0), kbregrab(FALSE), notbusysent(FALSE), preloaded(FALSE), 97 kbgrabber(0), kbregrab(FALSE), notbusysent(FALSE), preloaded(FALSE),
96 forceshow(FALSE), nomaximize(FALSE), qpe_main_widget(0), 98 forceshow(FALSE), nomaximize(FALSE), qpe_main_widget(0),
97 keep_running(TRUE) 99 keep_running(TRUE)
98 { 100 {
99 qcopq.setAutoDelete(TRUE); 101 qcopq.setAutoDelete(TRUE);
100 } 102 }
101 103
102 int presstimer; 104 int presstimer;
103 QWidget* presswidget; 105 QWidget* presswidget;
104 QPoint presspos; 106 QPoint presspos;
105 bool rightpressed; 107 bool rightpressed;
106 int kbgrabber; 108 int kbgrabber;
107 bool kbregrab; 109 bool kbregrab;
108 bool notbusysent; 110 bool notbusysent;
109 QString appName; 111 QString appName;
110 struct QCopRec { 112 struct QCopRec {
111 QCopRec(const QCString &ch, const QCString &msg, 113 QCopRec(const QCString &ch, const QCString &msg,
112 const QByteArray &d) : 114 const QByteArray &d) :
113 channel(ch), message(msg), data(d) { } 115 channel(ch), message(msg), data(d) { }
114 116
115 QCString channel; 117 QCString channel;
116 QCString message; 118 QCString message;
117 QByteArray data; 119 QByteArray data;
118 }; 120 };
119 bool preloaded; 121 bool preloaded;
120 bool forceshow; 122 bool forceshow;
121 bool nomaximize; 123 bool nomaximize;
122 QWidget* qpe_main_widget; 124 QWidget* qpe_main_widget;
123 bool keep_running; 125 bool keep_running;
124 QList<QCopRec> qcopq; 126 QList<QCopRec> qcopq;
125 127
126 void enqueueQCop(const QCString &ch, const QCString &msg, 128 void enqueueQCop(const QCString &ch, const QCString &msg,
127 const QByteArray &data) 129 const QByteArray &data)
128 { 130 {
129 qcopq.append(new QCopRec(ch,msg,data)); 131 qcopq.append(new QCopRec(ch,msg,data));
130 } 132 }
131 void sendQCopQ() 133 void sendQCopQ()
132 { 134 {
133 QCopRec* r; 135 QCopRec* r;
134 for (QListIterator<QCopRec> it(qcopq); (r=it.current()); ++it) 136 for (QListIterator<QCopRec> it(qcopq); (r=it.current()); ++it)
135 QCopChannel::sendLocally(r->channel,r->message,r->data); 137 QCopChannel::sendLocally(r->channel,r->message,r->data);
136 qcopq.clear(); 138 qcopq.clear();
137 } 139 }
138}; 140};
139 141
140class ResourceMimeFactory : public QMimeSourceFactory { 142class ResourceMimeFactory : public QMimeSourceFactory {
141public: 143public:
142 ResourceMimeFactory() 144 ResourceMimeFactory()
143 { 145 {
144 setFilePath( Global::helpPath() ); 146 setFilePath( Global::helpPath() );
145 setExtensionType("html","text/html;charset=UTF-8"); 147 setExtensionType("html","text/html;charset=UTF-8");
146 } 148 }
147 149
148 const QMimeSource* data(const QString& abs_name) const 150 const QMimeSource* data(const QString& abs_name) const
149 { 151 {
150 const QMimeSource* r = QMimeSourceFactory::data(abs_name); 152 const QMimeSource* r = QMimeSourceFactory::data(abs_name);
151 if ( !r ) { 153 if ( !r ) {
152 int sl = abs_name.length(); 154 int sl = abs_name.length();
153 do { 155 do {
154 sl = abs_name.findRev('/',sl-1); 156 sl = abs_name.findRev('/',sl-1);
155 QString name = sl>=0 ? abs_name.mid(sl+1) : abs_name; 157 QString name = sl>=0 ? abs_name.mid(sl+1) : abs_name;
156 int dot = name.findRev('.'); 158 int dot = name.findRev('.');
157 if ( dot >= 0 ) 159 if ( dot >= 0 )
158 name = name.left(dot); 160 name = name.left(dot);
159 QImage img = Resource::loadImage(name); 161 QImage img = Resource::loadImage(name);
160 if ( !img.isNull() ) 162 if ( !img.isNull() )
161 r = new QImageDrag(img); 163 r = new QImageDrag(img);
162 } while (!r && sl>0); 164 } while (!r && sl>0);
163 } 165 }
164 return r; 166 return r;
165 } 167 }
166}; 168};
167 169
168static int muted=0; 170static int muted=0;
@@ -292,407 +294,421 @@ static void setBacklight(int bright)
292# ifndef _LINUX_IOCTL_H 294# ifndef _LINUX_IOCTL_H
293# include <linux/ioctl.h> 295# include <linux/ioctl.h>
294# endif 296# endif
295# define FLITE_ON _IOW('f', 7, FLITE_IN) 297# define FLITE_ON _IOW('f', 7, FLITE_IN)
296# endif 298# endif
297 int fd; 299 int fd;
298 if ( QFile::exists("/dev/ts") ) 300 if ( QFile::exists("/dev/ts") )
299 fd = open("/dev/ts", O_WRONLY); 301 fd = open("/dev/ts", O_WRONLY);
300 else 302 else
301 fd = open("/dev/h3600_ts", O_WRONLY); 303 fd = open("/dev/h3600_ts", O_WRONLY);
302 if (fd >= 0 ) { 304 if (fd >= 0 ) {
303 FLITE_IN bl; 305 FLITE_IN bl;
304 bl.mode = 1; 306 bl.mode = 1;
305 bl.pwr = bright ? 1 : 0; 307 bl.pwr = bright ? 1 : 0;
306 bl.brightness = bright; 308 bl.brightness = bright;
307 ioctl(fd, FLITE_ON, &bl); 309 ioctl(fd, FLITE_ON, &bl);
308 close(fd); 310 close(fd);
309 } 311 }
310 } 312 }
311#endif 313#endif
312#endif 314#endif
313 curbl = bright; 315 curbl = bright;
314} 316}
315 317
316void qpe_setBacklight(int bright) { setBacklight(bright); } 318void qpe_setBacklight(int bright) { setBacklight(bright); }
317 319
318static bool dim_on = FALSE; 320static bool dim_on = FALSE;
319static bool lightoff_on = FALSE; 321static bool lightoff_on = FALSE;
320static int disable_suspend = 100; 322static int disable_suspend = 100;
321 323
322static bool powerOnline() 324static bool powerOnline()
323{ 325{
324 return PowerStatusManager::readStatus().acStatus() == PowerStatus::Online; 326 return PowerStatusManager::readStatus().acStatus() == PowerStatus::Online;
325} 327}
326 328
327static bool networkOnline() 329static bool networkOnline()
328{ 330{
329 return Network::networkOnline(); 331 return Network::networkOnline();
330} 332}
331 333
332class QPEScreenSaver : public QWSScreenSaver 334class QPEScreenSaver : public QWSScreenSaver
333{ 335{
334private: 336private:
335 int LcdOn; 337 int LcdOn;
336 338
337public: 339public:
338 QPEScreenSaver() 340 QPEScreenSaver()
339 { 341 {
340 int fd; 342 int fd;
341 343
342 LcdOn = TRUE; 344 LcdOn = TRUE;
343 // Make sure the LCD is in fact on, (if opie was killed while the LCD is off it would still be off) 345 // Make sure the LCD is in fact on, (if opie was killed while the LCD is off it would still be off)
344 fd=open("/dev/fb0",O_RDWR); 346 fd=open("/dev/fb0",O_RDWR);
345 if (fd != -1) { ioctl(fd,FBIOBLANK,VESA_NO_BLANKING); close(fd); } 347 if (fd != -1) { ioctl(fd,FBIOBLANK,VESA_NO_BLANKING); close(fd); }
346 } 348 }
347 void restore() 349 void restore()
348 { 350 {
349 if (!LcdOn) // We must have turned it off 351 if (!LcdOn) // We must have turned it off
350 { 352 {
351 int fd; 353 int fd;
352 fd=open("/dev/fb0",O_RDWR); 354 fd=open("/dev/fb0",O_RDWR);
353 if (fd != -1) { ioctl(fd,FBIOBLANK,VESA_NO_BLANKING); close(fd); } 355 if (fd != -1) { ioctl(fd,FBIOBLANK,VESA_NO_BLANKING); close(fd); }
354 } 356 }
355 setBacklight(-1); 357 setBacklight(-1);
356 } 358 }
357 bool save(int level) 359 bool save(int level)
358 { 360 {
359 int fd; 361 int fd;
360 362
361 switch ( level ) { 363 switch ( level ) {
362 case 0: 364 case 0:
363 if ( disable_suspend > 0 && dim_on ) { 365 if ( disable_suspend > 0 && dim_on ) {
364 if (backlight() > 1) 366 if (backlight() > 1)
365 setBacklight(1); // lowest non-off 367 setBacklight(1); // lowest non-off
366 } 368 }
367 return TRUE; 369 return TRUE;
368 break; 370 break;
369 case 1: 371 case 1:
370 if ( disable_suspend > 1 && lightoff_on ) { 372 if ( disable_suspend > 1 && lightoff_on ) {
371 setBacklight(0); // off 373 setBacklight(0); // off
372 } 374 }
373 return TRUE; 375 return TRUE;
374 break; 376 break;
375 case 2: 377 case 2:
376 Config config( "qpe" ); 378 Config config( "qpe" );
377 config.setGroup( "Screensaver" ); 379 config.setGroup( "Screensaver" );
378 if (config.readNumEntry("LcdOffOnly",0) != 0) // We're only turning off the LCD 380 if (config.readNumEntry("LcdOffOnly",0) != 0) // We're only turning off the LCD
379 { 381 {
380 fd=open("/dev/fb0",O_RDWR); 382 fd=open("/dev/fb0",O_RDWR);
381 if (fd != -1) { ioctl(fd,FBIOBLANK,VESA_POWERDOWN); close(fd); } 383 if (fd != -1) { ioctl(fd,FBIOBLANK,VESA_POWERDOWN); close(fd); }
382 LcdOn = FALSE; 384 LcdOn = FALSE;
383 } 385 }
384 else // We're going to suspend the whole machine 386 else // We're going to suspend the whole machine
385 { 387 {
386 if ( disable_suspend > 2 && !powerOnline() && !networkOnline() ) { 388 if ( disable_suspend > 2 && !powerOnline() && !networkOnline() ) {
387 QWSServer::sendKeyEvent( 0xffff, Qt::Key_F34, FALSE, TRUE, FALSE ); 389 QWSServer::sendKeyEvent( 0xffff, Qt::Key_F34, FALSE, TRUE, FALSE );
388 return TRUE; 390 return TRUE;
389 } 391 }
390 } 392 }
391 break; 393 break;
392 } 394 }
393 return FALSE; 395 return FALSE;
394 } 396 }
395}; 397};
396 398
397static int ssi(int interval, Config &config, const QString &enable, const QString& value, int def) 399static int ssi(int interval, Config &config, const QString &enable, const QString& value, int def)
398{ 400{
399 if ( !enable.isEmpty() && config.readNumEntry(enable,0) == 0 ) 401 if ( !enable.isEmpty() && config.readNumEntry(enable,0) == 0 )
400 return 0; 402 return 0;
401 403
402 if ( interval < 0 ) { 404 if ( interval < 0 ) {
403 // Restore screen blanking and power saving state 405 // Restore screen blanking and power saving state
404 interval = config.readNumEntry( value, def ); 406 interval = config.readNumEntry( value, def );
405 } 407 }
406 return interval; 408 return interval;
407} 409}
408 410
409static void setScreenSaverIntervals(int i1, int i2, int i3) 411static void setScreenSaverIntervals(int i1, int i2, int i3)
410{ 412{
411 Config config( "qpe" ); 413 Config config( "qpe" );
412 config.setGroup( "Screensaver" ); 414 config.setGroup( "Screensaver" );
413 415
414 int v[4]; 416 int v[4];
415 i1 = ssi(i1, config, "Dim","Interval_Dim", 30); 417 i1 = ssi(i1, config, "Dim","Interval_Dim", 30);
416 i2 = ssi(i2, config, "LightOff","Interval_LightOff", 20); 418 i2 = ssi(i2, config, "LightOff","Interval_LightOff", 20);
417 i3 = ssi(i3, config, "","Interval", 60); 419 i3 = ssi(i3, config, "","Interval", 60);
418 420
419 //qDebug("screen saver intervals: %d %d %d", i1, i2, i3); 421 //qDebug("screen saver intervals: %d %d %d", i1, i2, i3);
420 422
421 v[0] = QMAX( 1000*i1, 100); 423 v[0] = QMAX( 1000*i1, 100);
422 v[1] = QMAX( 1000*i2, 100); 424 v[1] = QMAX( 1000*i2, 100);
423 v[2] = QMAX( 1000*i3, 100); 425 v[2] = QMAX( 1000*i3, 100);
424 v[3] = 0; 426 v[3] = 0;
425 dim_on = ( (i1 != 0) ? config.readNumEntry("Dim",1) : FALSE ); 427 dim_on = ( (i1 != 0) ? config.readNumEntry("Dim",1) : FALSE );
426 lightoff_on = ( (i2 != 0 ) ? config.readNumEntry("LightOff",1) : FALSE ); 428 lightoff_on = ( (i2 != 0 ) ? config.readNumEntry("LightOff",1) : FALSE );
427 if ( !i1 && !i2 && !i3 ) 429 if ( !i1 && !i2 && !i3 )
428 QWSServer::setScreenSaverInterval(0); 430 QWSServer::setScreenSaverInterval(0);
429 else 431 else
430 QWSServer::setScreenSaverIntervals(v); 432 QWSServer::setScreenSaverIntervals(v);
431} 433}
432 434
433static void setScreenSaverInterval(int interval) 435static void setScreenSaverInterval(int interval)
434{ 436{
435 setScreenSaverIntervals(-1,-1,interval); 437 setScreenSaverIntervals(-1,-1,interval);
436} 438}
437 439
438 440
439/*! 441/*!
440 \class QPEApplication qpeapplication.h 442 \class QPEApplication qpeapplication.h
441 \brief The QPEApplication class implements various system services 443 \brief The QPEApplication class implements various system services
442 that are available to all Qtopia applications. 444 that are available to all Qtopia applications.
443 445
444 Simply by using QPEApplication instead of QApplication, a plain Qt 446 Simply by using QPEApplication instead of QApplication, a plain Qt
445 application becomes a Qtopia application. It automatically follows 447 application becomes a Qtopia application. It automatically follows
446 style changes, quits and raises, and in the 448 style changes, quits and raises, and in the
447 case of \link docwidget.html document-oriented\endlink applications, 449 case of \link docwidget.html document-oriented\endlink applications,
448 changes the current displayed document in response to the environment. 450 changes the current displayed document in response to the environment.
449*/ 451*/
450 452
451/*! 453/*!
452 \fn void QPEApplication::clientMoused() 454 \fn void QPEApplication::clientMoused()
453 455
454 \internal 456 \internal
455*/ 457*/
456 458
457/*! 459/*!
458 \fn void QPEApplication::timeChanged(); 460 \fn void QPEApplication::timeChanged();
459 461
460 This signal is emitted when the time jumps forward or backwards 462 This signal is emitted when the time jumps forward or backwards
461 by more than the normal passage of time. 463 by more than the normal passage of time.
462*/ 464*/
463 465
464/*! 466/*!
465 \fn void QPEApplication::clockChanged( bool ampm ); 467 \fn void QPEApplication::clockChanged( bool ampm );
466 468
467 This signal is emitted when the user changes the style 469 This signal is emitted when the user changes the style
468 of clock. If \a ampm is TRUE, the user wants a 12-hour 470 of clock. If \a ampm is TRUE, the user wants a 12-hour
469 AM/PM close, otherwise, they want a 24-hour clock. 471 AM/PM close, otherwise, they want a 24-hour clock.
470*/ 472*/
471 473
472/*! 474/*!
473 \fn void QPEApplication::appMessage( const QCString& msg, const QByteArray& data ) 475 \fn void QPEApplication::appMessage( const QCString& msg, const QByteArray& data )
474 476
475 This signal is emitted when a message is received on the 477 This signal is emitted when a message is received on the
476 QPE/Application/<i>appname</i> QCop channel for this application. 478 QPE/Application/<i>appname</i> QCop channel for this application.
477 479
478 The slot to which you connect this signal uses \a msg and \a data 480 The slot to which you connect this signal uses \a msg and \a data
479 in the following way: 481 in the following way:
480 482
481\code 483\code
482 void MyWidget::receive( const QCString& msg, const QByteArray& data ) 484 void MyWidget::receive( const QCString& msg, const QByteArray& data )
483 { 485 {
484 QDataStream stream( data, IO_ReadOnly ); 486 QDataStream stream( data, IO_ReadOnly );
485 if ( msg == "someMessage(int,int,int)" ) { 487 if ( msg == "someMessage(int,int,int)" ) {
486 int a,b,c; 488 int a,b,c;
487 stream >> a >> b >> c; 489 stream >> a >> b >> c;
488 ... 490 ...
489 } else if ( msg == "otherMessage(QString)" ) { 491 } else if ( msg == "otherMessage(QString)" ) {
490 ... 492 ...
491 } 493 }
492 } 494 }
493\endcode 495\endcode
494 496
495 \sa qcop.html 497 \sa qcop.html
496*/ 498*/
497 499
498/*! 500/*!
499 Constructs a QPEApplication just as you would construct 501 Constructs a QPEApplication just as you would construct
500 a QApplication, passing \a argc, \a argv, and \a t. 502 a QApplication, passing \a argc, \a argv, and \a t.
501*/ 503*/
502QPEApplication::QPEApplication( int& argc, char **argv, Type t ) 504QPEApplication::QPEApplication( int& argc, char **argv, Type t )
503 : QApplication( hack(argc), argv, t ) 505 : QApplication( hack(argc), argv, t )
504{ 506{
505 int dw = desktop()->width(); 507 int dw = desktop()->width();
506 if ( dw < 200 ) { 508 if ( dw < 200 ) {
507 setFont( QFont( "helvetica", 8 ) ); 509// setFont( QFont( "helvetica", 8 ) );
508 AppLnk::setSmallIconSize(10); 510 AppLnk::setSmallIconSize(10);
509 AppLnk::setBigIconSize(28); 511 AppLnk::setBigIconSize(28);
510 } 512 }
511 513
512 d = new QPEApplicationData; 514 d = new QPEApplicationData;
513 QMimeSourceFactory::setDefaultFactory(new ResourceMimeFactory); 515 QMimeSourceFactory::setDefaultFactory(new ResourceMimeFactory);
514 516
515 connect(this, SIGNAL(lastWindowClosed()), this, SLOT(hideOrQuit())); 517 connect(this, SIGNAL(lastWindowClosed()), this, SLOT(hideOrQuit()));
516#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 518#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
517 519
518 QString qcopfn("/tmp/qcop-msg-"); 520 QString qcopfn("/tmp/qcop-msg-");
519 qcopfn += QString(argv[0]); // append command name 521 qcopfn += QString(argv[0]); // append command name
520 522
521 QFile f(qcopfn); 523 QFile f(qcopfn);
522 if ( f.open(IO_ReadOnly) ) { 524 if ( f.open(IO_ReadOnly) ) {
523 flock(f.handle(), LOCK_EX); 525 flock(f.handle(), LOCK_EX);
524 } 526 }
525 527
526 sysChannel = new QCopChannel( "QPE/System", this ); 528 sysChannel = new QCopChannel( "QPE/System", this );
527 connect( sysChannel, SIGNAL(received(const QCString &, const QByteArray &)), 529 connect( sysChannel, SIGNAL(received(const QCString &, const QByteArray &)),
528 this, SLOT(systemMessage( const QCString &, const QByteArray &)) ); 530 this, SLOT(systemMessage( const QCString &, const QByteArray &)) );
529 531
530 QCString channel = QCString(argv[0]); 532 QCString channel = QCString(argv[0]);
531 channel.replace(QRegExp(".*/"),""); 533 channel.replace(QRegExp(".*/"),"");
532 d->appName = channel; 534 d->appName = channel;
533 channel = "QPE/Application/" + channel; 535 channel = "QPE/Application/" + channel;
534 pidChannel = new QCopChannel( channel, this); 536 pidChannel = new QCopChannel( channel, this);
535 connect( pidChannel, SIGNAL(received(const QCString &, const QByteArray &)), 537 connect( pidChannel, SIGNAL(received(const QCString &, const QByteArray &)),
536 this, SLOT(pidMessage(const QCString &, const QByteArray &))); 538 this, SLOT(pidMessage(const QCString &, const QByteArray &)));
537 539
538 if ( f.isOpen() ) { 540 if ( f.isOpen() ) {
539 d->keep_running = FALSE; 541 d->keep_running = FALSE;
540 QDataStream ds(&f); 542 QDataStream ds(&f);
541 QCString channel, message; 543 QCString channel, message;
542 QByteArray data; 544 QByteArray data;
543 while(!ds.atEnd()) { 545 while(!ds.atEnd()) {
544 ds >> channel >> message >> data; 546 ds >> channel >> message >> data;
545 d->enqueueQCop(channel,message,data); 547 d->enqueueQCop(channel,message,data);
546 } 548 }
547 549
548 flock(f.handle(), LOCK_UN); 550 flock(f.handle(), LOCK_UN);
549 f.close(); 551 f.close();
550 f.remove(); 552 f.remove();
551 } 553 }
552 554
553 for (int a=0; a<argc; a++) { 555 for (int a=0; a<argc; a++) {
554 if ( qstrcmp(argv[a],"-preload")==0 ) { 556 if ( qstrcmp(argv[a],"-preload")==0 ) {
555 argv[a] = argv[a+1]; 557 argv[a] = argv[a+1];
556 a++; 558 a++;
557 d->preloaded = TRUE; 559 d->preloaded = TRUE;
558 argc-=1; 560 argc-=1;
559 } else if ( qstrcmp(argv[a],"-preload-show")==0 ) { 561 } else if ( qstrcmp(argv[a],"-preload-show")==0 ) {
560 argv[a] = argv[a+1]; 562 argv[a] = argv[a+1];
561 a++; 563 a++;
562 d->preloaded = TRUE; 564 d->preloaded = TRUE;
563 d->forceshow = TRUE; 565 d->forceshow = TRUE;
564 argc-=1; 566 argc-=1;
565 } 567 }
566 } 568 }
567 569
568 /* overide stored arguments */ 570 /* overide stored arguments */
569 setArgs(argc, argv); 571 setArgs(argc, argv);
570 572
571#endif 573#endif
572 574
573 qwsSetDecoration( new QPEDecoration() ); 575 qwsSetDecoration( new QPEDecoration() );
574 576
575#ifndef QT_NO_TRANSLATION 577#ifndef QT_NO_TRANSLATION
576 QStringList langs = Global::languageList(); 578 QStringList langs = Global::languageList();
577 for (QStringList::ConstIterator it = langs.begin(); it!=langs.end(); ++it) { 579 for (QStringList::ConstIterator it = langs.begin(); it!=langs.end(); ++it) {
578 QString lang = *it; 580 QString lang = *it;
579 581
580 QTranslator * trans; 582 QTranslator * trans;
581 QString tfn; 583 QString tfn;
582 584
583 trans = new QTranslator(this); 585 trans = new QTranslator(this);
584 tfn = qpeDir()+"/i18n/"+lang+"/libqpe.qm"; 586 tfn = qpeDir()+"/i18n/"+lang+"/libqpe.qm";
585 if ( trans->load( tfn )) 587 if ( trans->load( tfn ))
586 installTranslator( trans ); 588 installTranslator( trans );
587 else 589 else
588 delete trans; 590 delete trans;
589 591
590 trans = new QTranslator(this); 592 trans = new QTranslator(this);
591 tfn = qpeDir()+"/i18n/"+lang+"/"+d->appName+".qm"; 593 tfn = qpeDir()+"/i18n/"+lang+"/"+d->appName+".qm";
592 if ( trans->load( tfn )) 594 if ( trans->load( tfn ))
593 installTranslator( trans ); 595 installTranslator( trans );
594 else 596 else
595 delete trans; 597 delete trans;
596 598
597 //###language/font hack; should look it up somewhere 599 //###language/font hack; should look it up somewhere
598 if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) { 600 if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) {
599 QFont fn = FontManager::unicodeFont( FontManager::Proportional ); 601 QFont fn = FontManager::unicodeFont( FontManager::Proportional );
600 setFont( fn ); 602 setFont( fn );
601 } 603 }
604 else {
605 Config config( "qpe" );
606 config.setGroup( "Appearance" );
607 QString familyStr = config.readEntry( "FontFamily", "fixed" );
608 QString styleStr = config.readEntry( "FontStyle", "Regular" );
609 QString sizeStr = config.readEntry( "FontSize", "10" );
610 QString charSetStr = config.readEntry( "FontCharSet", "iso10646-1" );
611 bool ok;
612 int i_size = sizeStr.toInt( &ok, 10 );
613 FontDatabase fdb;
614 QFont selectedFont = fdb.font( familyStr, styleStr, i_size, charSetStr );
615 setFont( selectedFont );
616 }
602 } 617 }
618
603#endif 619#endif
604 620
605 applyStyle(); 621 applyStyle();
606 622
607 if ( type() == GuiServer ) { 623 if ( type() == GuiServer ) {
608 setScreenSaverInterval(-1); 624 setScreenSaverInterval(-1);
609 setVolume(); 625 setVolume();
610 QWSServer::setScreenSaver(new QPEScreenSaver); 626 QWSServer::setScreenSaver(new QPEScreenSaver);
611 } 627 }
612 628
613 installEventFilter( this ); 629 installEventFilter( this );
614 630
615 QPEMenuToolFocusManager::initialize(); 631 QPEMenuToolFocusManager::initialize();
616 632
617#ifdef QT_NO_QWS_CURSOR 633#ifdef QT_NO_QWS_CURSOR
618 // if we have no cursor, probably don't want tooltips 634 // if we have no cursor, probably don't want tooltips
619 QToolTip::setEnabled( FALSE ); 635 QToolTip::setEnabled( FALSE );
620#endif 636#endif
621} 637}
622 638
623static QPtrDict<void>* inputMethodDict=0; 639static QPtrDict<void>* inputMethodDict=0;
624static void createInputMethodDict() 640static void createInputMethodDict()
625{ 641{
626 if ( !inputMethodDict ) 642 if ( !inputMethodDict )
627 inputMethodDict = new QPtrDict<void>; 643 inputMethodDict = new QPtrDict<void>;
628} 644}
629 645
630/*! 646/*!
631 Returns the currently set hint to the system as to whether 647 Returns the currently set hint to the system as to whether
632 \a w has any use for text input methods. 648 \a w has any use for text input methods.
633 649
634 \sa setInputMethodHint() 650 \sa setInputMethodHint()
635*/ 651*/
636QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget* w ) 652QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget* w )
637{ 653{
638 if ( inputMethodDict && w ) 654 if ( inputMethodDict && w )
639 return (InputMethodHint)(int)inputMethodDict->find(w); 655 return (InputMethodHint)(int)inputMethodDict->find(w);
640 return Normal; 656 return Normal;
641} 657}
642 658
643/*! 659/*!
644 \enum QPEApplication::InputMethodHint 660 \enum QPEApplication::InputMethodHint
645 661
646 \value Normal the application sometimes needs text input (the default). 662 \value Normal the application sometimes needs text input (the default).
647 \value AlwaysOff the application never needs text input. 663 \value AlwaysOff the application never needs text input.
648 \value AlwaysOn the application always needs text input. 664 \value AlwaysOn the application always needs text input.
649*/ 665*/
650 666
651/*! 667/*!
652 Hints to the system that \a w has use for text input methods 668 Hints to the system that \a w has use for text input methods
653 as specified by \a mode. 669 as specified by \a mode.
654 670
655 \sa inputMethodHint() 671 \sa inputMethodHint()
656*/ 672*/
657void QPEApplication::setInputMethodHint( QWidget* w, InputMethodHint mode ) 673void QPEApplication::setInputMethodHint( QWidget* w, InputMethodHint mode )
658{ 674{
659 createInputMethodDict(); 675 createInputMethodDict();
660 if ( mode == Normal ) { 676 if ( mode == Normal ) {
661 inputMethodDict->remove(w); 677 inputMethodDict->remove(w);
662 } else { 678 } else {
663 inputMethodDict->insert(w,(void*)mode); 679 inputMethodDict->insert(w,(void*)mode);
664 } 680 }
665} 681}
666 682
667class HackDialog : public QDialog 683class HackDialog : public QDialog
668{ 684{
669public: 685public:
670 void acceptIt() { accept(); } 686 void acceptIt() { accept(); }
671 void rejectIt() { reject(); } 687 void rejectIt() { reject(); }
672}; 688};
673 689
674 690
675void QPEApplication::mapToDefaultAction( QWSKeyEvent *ke, int key ) 691void QPEApplication::mapToDefaultAction( QWSKeyEvent *ke, int key )
676{ 692{
677 // specialised actions for certain widgets. May want to 693 // specialised actions for certain widgets. May want to
678 // add more stuff here. 694 // add more stuff here.
679 if ( activePopupWidget() && activePopupWidget()->inherits( "QListBox" ) 695 if ( activePopupWidget() && activePopupWidget()->inherits( "QListBox" )
680 && activePopupWidget()->parentWidget() 696 && activePopupWidget()->parentWidget()
681 && activePopupWidget()->parentWidget()->inherits( "QComboBox" ) ) 697 && activePopupWidget()->parentWidget()->inherits( "QComboBox" ) )
682 key = Qt::Key_Return; 698 key = Qt::Key_Return;
683 699
684 if ( activePopupWidget() && activePopupWidget()->inherits( "QPopupMenu" ) ) 700 if ( activePopupWidget() && activePopupWidget()->inherits( "QPopupMenu" ) )
685 key = Qt::Key_Return; 701 key = Qt::Key_Return;
686 702
687 ke->simpleData.keycode = key; 703 ke->simpleData.keycode = key;
688} 704}
689 705
690class HackWidget : public QWidget 706class HackWidget : public QWidget
691{ 707{
692public: 708public:
693 bool needsOk() 709 bool needsOk()
694 { return (getWState() & WState_Reserved1 ); } 710 { return (getWState() & WState_Reserved1 ); }
695}; 711};
696 712
697/*! 713/*!
698 \internal 714 \internal