summaryrefslogtreecommitdiff
path: root/x11/libqpe-x11
Unidiff
Diffstat (limited to 'x11/libqpe-x11') (more/less context) (ignore whitespace changes)
-rw-r--r--x11/libqpe-x11/qpe/qpeapplication.cpp207
-rw-r--r--x11/libqpe-x11/qpe/qpeapplication.h23
2 files changed, 217 insertions, 13 deletions
diff --git a/x11/libqpe-x11/qpe/qpeapplication.cpp b/x11/libqpe-x11/qpe/qpeapplication.cpp
index 891e132..6e4a96c 100644
--- a/x11/libqpe-x11/qpe/qpeapplication.cpp
+++ b/x11/libqpe-x11/qpe/qpeapplication.cpp
@@ -1,491 +1,672 @@
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#include <qdir.h> 8#include <qdir.h>
9#include <qdialog.h> 9#include <qdialog.h>
10#include <qdragobject.h> 10#include <qdragobject.h>
11#include <qevent.h> 11#include <qevent.h>
12#include <qlabel.h> 12#include <qlabel.h>
13#include <qlist.h> 13#include <qlist.h>
14#include <qtextstream.h> 14#include <qtextstream.h>
15#include <qtextcodec.h> 15#include <qtextcodec.h>
16#include <qpalette.h> 16#include <qpalette.h>
17#include <qptrdict.h> 17#include <qptrdict.h>
18#include <qregexp.h> 18#include <qregexp.h>
19 19
20#include <qpe/alarmserver.h> 20#include <qpe/alarmserver.h>
21#include <qpe/applnk.h> 21#include <qpe/applnk.h>
22#include <qpe/qpemenubar.h> 22#include <qpe/qpemenubar.h>
23#include <qpe/textcodecinterface.h> 23#include <qpe/textcodecinterface.h>
24#include <qpe/imagecodecinterface.h> 24#include <qpe/imagecodecinterface.h>
25#include <qpe/qlibrary.h> 25#include <qpe/qlibrary.h>
26#include <qpe/qpestyle.h> 26#include <qpe/qpestyle.h>
27#include <qpe/styleinterface.h> 27#include <qpe/styleinterface.h>
28#include <qpe/global.h> 28#include <qpe/global.h>
29#include <qpe/resource.h> 29#include <qpe/resource.h>
30#include <qpe/config.h> 30#include <qpe/config.h>
31#include <qpe/network.h> 31#include <qpe/network.h>
32 32
33#include <qpe/qpeapplication.h> 33#include <qpe/qpeapplication.h>
34#include <qpe/timestring.h> 34#include <qpe/timestring.h>
35#include <qpe/qcopenvelope_qws.h> 35#include <qpe/qcopenvelope_qws.h>
36 36
37namespace { 37namespace {
38 struct QCopRec{ 38 struct QCopRec{
39 QCopRec( const QCString& ch, const QCString& msg, const QByteArray& ar ) 39 QCopRec( const QCString& ch, const QCString& msg, const QByteArray& ar )
40 : channel(ch), message(msg), data(ar) { 40 : channel(ch), message(msg), data(ar) {
41 41
42 } 42 }
43 QCString channel; 43 QCString channel;
44 QCString message; 44 QCString message;
45 QByteArray data; 45 QByteArray data;
46 }; 46 };
47}; 47};
48 48
49 49
50class QPEApplication::Private { 50class QPEApplication::Private {
51public: 51public:
52 Private(); 52 Private();
53 ~Private(); 53 ~Private();
54 void enqueueQCop( const QCString& ch, const QCString& msg, 54 void enqueueQCop( const QCString& ch, const QCString& msg,
55 const QByteArray& ); 55 const QByteArray& );
56 void sendQCopQ(); 56 void sendQCopQ();
57 static void show_mx(QWidget* mw, bool nomaximize ); 57 static void show_mx(QWidget* mw, bool nomaximize );
58 void show( QWidget* mw, bool nomax ); 58 void show( QWidget* mw, bool nomax );
59 void loadTextCodecs(); 59 void loadTextCodecs();
60 void loadImageCodecs(); 60 void loadImageCodecs();
61 61
62 int kbgrabber; 62 int kbgrabber;
63 int presstimer; 63 int presstimer;
64 64
65 bool rightpressed : 1; 65 bool rightpressed : 1;
66 bool kbregrab : 1; 66 bool kbregrab : 1;
67 bool notbusysent : 1; 67 bool notbusysent : 1;
68 bool preloaded : 1; 68 bool preloaded : 1;
69 bool forceshow : 1; 69 bool forceshow : 1;
70 bool nomaximize : 1; 70 bool nomaximize : 1;
71 bool keep_running : 1; 71 bool keep_running : 1;
72 72
73 QWidget* presswidget; 73 QWidget* presswidget;
74 QPoint presspos; 74 QPoint presspos;
75 QWidget* qpe_main_widget; 75 QWidget* qpe_main_widget;
76 QString appName; 76 QString appName;
77 QString styleName; 77 QString styleName;
78 QString decorationName; 78 QString decorationName;
79 79
80private: 80private:
81 QList<QCopRec> qcopq; 81 QList<QCopRec> qcopq;
82}; 82};
83QPEApplication::Private::~Private() { 83QPEApplication::Private::~Private() {
84} 84}
85QPEApplication::Private::Private() 85QPEApplication::Private::Private()
86 : kbgrabber(0 ), presstimer(0 ), rightpressed( FALSE ), kbregrab( FALSE ), notbusysent( FALSE ), 86 : kbgrabber(0 ), presstimer(0 ), rightpressed( FALSE ), kbregrab( FALSE ), notbusysent( FALSE ),
87 preloaded( FALSE ), forceshow( FALSE ), nomaximize( FALSE ), keep_running( TRUE ), 87 preloaded( FALSE ), forceshow( FALSE ), nomaximize( FALSE ), keep_running( TRUE ),
88 presswidget( 0 ), qpe_main_widget(0 ) { 88 presswidget( 0 ), qpe_main_widget(0 ) {
89 89
90 qcopq.setAutoDelete( TRUE ); 90 qcopq.setAutoDelete( TRUE );
91} 91}
92void QPEApplication::Private::enqueueQCop( const QCString& chan, const QCString& msg, 92void QPEApplication::Private::enqueueQCop( const QCString& chan, const QCString& msg,
93 const QByteArray& ar ) { 93 const QByteArray& ar ) {
94 qcopq.append( new QCopRec(chan, msg, ar ) ); 94 qcopq.append( new QCopRec(chan, msg, ar ) );
95} 95}
96void QPEApplication::Private::sendQCopQ() { 96void QPEApplication::Private::sendQCopQ() {
97 QCopRec* r; 97 QCopRec* r;
98 for ( r = qcopq.first(); r; r = qcopq.next() ) { 98 for ( r = qcopq.first(); r; r = qcopq.next() ) {
99 QCopChannel::sendLocally( r->channel, r->message, r->data ); 99 QCopChannel::sendLocally( r->channel, r->message, r->data );
100 } 100 }
101 qcopq.clear(); 101 qcopq.clear();
102} 102}
103void QPEApplication::Private::show_mx(QWidget* mw, bool nomaximize ) { 103void QPEApplication::Private::show_mx(QWidget* mw, bool nomaximize ) {
104 if (mw->layout() && mw->inherits("QDialog") ) { 104 if (mw->layout() && mw->inherits("QDialog") ) {
105 QPEApplication::showDialog( (QDialog*)mw, nomaximize ); 105 QPEApplication::showDialog( (QDialog*)mw, nomaximize );
106 }else { 106 }else {
107 if (!nomaximize ) 107 if (!nomaximize )
108 mw->showMaximized(); 108 mw->showMaximized();
109 else 109 else
110 mw->show(); 110 mw->show();
111 } 111 }
112} 112}
113void QPEApplication::Private::show( QWidget* mw, bool nomax ) { 113void QPEApplication::Private::show( QWidget* mw, bool nomax ) {
114 nomaximize = nomax; 114 nomaximize = nomax;
115 qpe_main_widget = mw; 115 qpe_main_widget = mw;
116 116
117 sendQCopQ(); 117 sendQCopQ();
118 118
119 if ( preloaded ) { 119 if ( preloaded ) {
120 if (forceshow ) 120 if (forceshow )
121 show_mx(mw, nomax ); 121 show_mx(mw, nomax );
122 }else if ( keep_running ) 122 }else if ( keep_running )
123 show_mx( mw, nomax ); 123 show_mx( mw, nomax );
124} 124}
125void QPEApplication::Private::loadTextCodecs() { 125void QPEApplication::Private::loadTextCodecs() {
126 QString path = QPEApplication::qpeDir() + "/plugins/textcodecs"; 126 QString path = QPEApplication::qpeDir() + "/plugins/textcodecs";
127 QDir dir( path, "lib*.so" ); 127 QDir dir( path, "lib*.so" );
128 QStringList list = dir.entryList(); 128 QStringList list = dir.entryList();
129 QStringList::Iterator it; 129 QStringList::Iterator it;
130 for ( it = list.begin(); it != list.end(); ++it ) { 130 for ( it = list.begin(); it != list.end(); ++it ) {
131 TextCodecInterface *iface = 0; 131 TextCodecInterface *iface = 0;
132 QLibrary *lib = new QLibrary( path + "/" + *it ); 132 QLibrary *lib = new QLibrary( path + "/" + *it );
133 if ( lib->queryInterface( IID_QtopiaTextCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { 133 if ( lib->queryInterface( IID_QtopiaTextCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) {
134 QValueList<int> mibs = iface->mibEnums(); 134 QValueList<int> mibs = iface->mibEnums();
135 for (QValueList<int>::ConstIterator i = mibs.begin(); i != mibs.end(); ++i) { 135 for (QValueList<int>::ConstIterator i = mibs.begin(); i != mibs.end(); ++i) {
136 (void)iface->createForMib(*i); 136 (void)iface->createForMib(*i);
137 // ### it exists now; need to remember if we can delete it 137 // ### it exists now; need to remember if we can delete it
138 } 138 }
139 } 139 }
140 else { 140 else {
141 lib->unload(); 141 lib->unload();
142 delete lib; 142 delete lib;
143 } 143 }
144 } 144 }
145} 145}
146void QPEApplication::Private::loadImageCodecs() { 146void QPEApplication::Private::loadImageCodecs() {
147 QString path = QPEApplication::qpeDir() + "/plugins/imagecodecs"; 147 QString path = QPEApplication::qpeDir() + "/plugins/imagecodecs";
148 QDir dir( path, "lib*.so" ); 148 QDir dir( path, "lib*.so" );
149 QStringList list = dir.entryList(); 149 QStringList list = dir.entryList();
150 QStringList::Iterator it; 150 QStringList::Iterator it;
151 for ( it = list.begin(); it != list.end(); ++it ) { 151 for ( it = list.begin(); it != list.end(); ++it ) {
152 ImageCodecInterface *iface = 0; 152 ImageCodecInterface *iface = 0;
153 QLibrary *lib = new QLibrary( path + "/" + *it ); 153 QLibrary *lib = new QLibrary( path + "/" + *it );
154 if ( lib->queryInterface( IID_QtopiaImageCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) { 154 if ( lib->queryInterface( IID_QtopiaImageCodec, (QUnknownInterface**)&iface ) == QS_OK && iface ) {
155 QStringList formats = iface->keys(); 155 QStringList formats = iface->keys();
156 for (QStringList::ConstIterator i = formats.begin(); i != formats.end(); ++i) { 156 for (QStringList::ConstIterator i = formats.begin(); i != formats.end(); ++i) {
157 (void)iface->installIOHandler(*i); 157 (void)iface->installIOHandler(*i);
158 // ### it exists now; need to remember if we can delete it 158 // ### it exists now; need to remember if we can delete it
159 } 159 }
160 } 160 }
161 else { 161 else {
162 lib->unload(); 162 lib->unload();
163 delete lib; 163 delete lib;
164 } 164 }
165 } 165 }
166} 166}
167 167
168// The Help System hook 168// The Help System hook
169namespace { 169namespace {
170 class ResourceMimeFactory : public QMimeSourceFactory 170 class ResourceMimeFactory : public QMimeSourceFactory
171 { 171 {
172 public: 172 public:
173 ResourceMimeFactory(); 173 ResourceMimeFactory();
174 ~ResourceMimeFactory(); 174 ~ResourceMimeFactory();
175 const QMimeSource* data( const QString& abs_name )const; 175 const QMimeSource* data( const QString& abs_name )const;
176 }; 176 };
177 ResourceMimeFactory::ResourceMimeFactory() 177 ResourceMimeFactory::ResourceMimeFactory()
178 { 178 {
179 setFilePath( Global::helpPath() ); 179 setFilePath( Global::helpPath() );
180 setExtensionType( "html", "text/html;charset=UTF-8" ); 180 setExtensionType( "html", "text/html;charset=UTF-8" );
181 } 181 }
182 ResourceMimeFactory::~ResourceMimeFactory() { 182 ResourceMimeFactory::~ResourceMimeFactory() {
183 } 183 }
184 184
185 const QMimeSource* ResourceMimeFactory::data( const QString& abs_name ) const 185 const QMimeSource* ResourceMimeFactory::data( const QString& abs_name ) const
186 { 186 {
187 const QMimeSource * r = QMimeSourceFactory::data( abs_name ); 187 const QMimeSource * r = QMimeSourceFactory::data( abs_name );
188 if ( !r ) { 188 if ( !r ) {
189 int sl = abs_name.length(); 189 int sl = abs_name.length();
190 do { 190 do {
191 sl = abs_name.findRev( '/', sl - 1 ); 191 sl = abs_name.findRev( '/', sl - 1 );
192 QString name = sl >= 0 ? abs_name.mid( sl + 1 ) : abs_name; 192 QString name = sl >= 0 ? abs_name.mid( sl + 1 ) : abs_name;
193 int dot = name.findRev( '.' ); 193 int dot = name.findRev( '.' );
194 if ( dot >= 0 ) 194 if ( dot >= 0 )
195 name = name.left( dot ); 195 name = name.left( dot );
196 QImage img = Resource::loadImage( name ); 196 QImage img = Resource::loadImage( name );
197 if ( !img.isNull() ) 197 if ( !img.isNull() )
198 r = new QImageDrag( img ); 198 r = new QImageDrag( img );
199 } 199 }
200 while ( !r && sl > 0 ); 200 while ( !r && sl > 0 );
201 } 201 }
202 return r; 202 return r;
203 }; 203 };
204}; 204};
205// QPEApplication 205// QPEApplication
206QPEApplication::~QPEApplication() {
207 qWarning("~QPEApplication");
208 ungrabKeyboard();
209 qWarning("UngrabKeyboard");
210
211// delete m_sys;
212// delete m_pid;
213
214 delete d;
215}
206QPEApplication::QPEApplication(int &arg, char** argv, Type t) 216QPEApplication::QPEApplication(int &arg, char** argv, Type t)
207 : QApplication( arg, argv, t ) { 217 : QApplication( arg, argv, t ) {
208 d = new Private; 218 d = new Private;
209 d->loadTextCodecs(); 219 d->loadTextCodecs();
210 d->loadImageCodecs(); 220 d->loadImageCodecs();
211 221
212 int dw = desktop()->width(); 222 int dw = desktop()->width();
213 if ( dw < 200 ) { 223 if ( dw < 200 ) {
214 setFont( QFont( "helvetica", 8 ) ); 224 setFont( QFont( "helvetica", 8 ) );
215 AppLnk::setSmallIconSize( 10 ); 225 AppLnk::setSmallIconSize( 10 );
216 AppLnk::setBigIconSize( 28 ); 226 AppLnk::setBigIconSize( 28 );
217 }else if ( dw > 600 ) { 227 }else if ( dw > 600 ) {
218 setFont( QFont( "helvetica", 12 ) ); 228 setFont( QFont( "helvetica", 12 ) );
219 AppLnk::setSmallIconSize( 24 ); 229 AppLnk::setSmallIconSize( 24 );
220 AppLnk::setBigIconSize( 48 ); 230 AppLnk::setBigIconSize( 48 );
221 }else if ( dw > 200 ) { 231 }else if ( dw > 200 ) {
222 setFont( QFont( "helvetica", 10 ) ); 232 setFont( QFont( "helvetica", 10 ) );
223 AppLnk::setSmallIconSize( 16 ); 233 AppLnk::setSmallIconSize( 16 );
224 AppLnk::setBigIconSize( 32 ); 234 AppLnk::setBigIconSize( 32 );
225 } 235 }
226 QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory ); 236 QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory );
227 237
228 connect( this, SIGNAL( lastWindowClosed() ), this, SLOT(hideOrQuit() ) ); 238 connect( this, SIGNAL( lastWindowClosed() ), this, SLOT(hideOrQuit() ) );
229 239
230 QString qcopfn( "/tmp/qcop-msg-" ); 240 QString qcopfn( "/tmp/qcop-msg-" );
231 qcopfn += QString( argv[0] ); // append command name to the QCOP name 241 qcopfn += QString( argv[0] ); // append command name to the QCOP name
232 QFile file( qcopfn ); 242 QFile file( qcopfn );
233 if (file.open(IO_ReadOnly ) ) { 243 if (file.open(IO_ReadOnly ) ) {
234 flock( file.handle(), LOCK_EX ); 244 flock( file.handle(), LOCK_EX );
235 } 245 }
236 246
237 m_sys = new QCopChannel( "QPE/System", this ); 247 /* Hmmm damn we need to make the parent 0l otherwise it get's deleted
248 * past the QApplication
249 */
250 m_sys = new QCopChannel( "QPE/System", 0l);
238 connect(m_sys, SIGNAL( received( const QCString&, const QByteArray& ) ), 251 connect(m_sys, SIGNAL( received( const QCString&, const QByteArray& ) ),
239 this, SLOT(systemMessage( const QCString&, const QByteArray& ) ) ); 252 this, SLOT(systemMessage( const QCString&, const QByteArray& ) ) );
240 253
241 // private channel QPE/Application/appname 254 // private channel QPE/Application/appname
242 QCString channel = QCString( argv[0] ); 255 QCString channel = QCString( argv[0] );
243 channel.replace( QRegExp( ".*/"), "" ); 256 channel.replace( QRegExp( ".*/"), "" );
244 d->appName = channel; 257 d->appName = channel;
245 channel = "QPE/Application/"+ channel; 258 channel = "QPE/Application/"+ channel;
246 m_pid = new QCopChannel( channel, this ); 259 m_pid = new QCopChannel( channel, 0l );
247 connect(m_pid, SIGNAL( received( const QCString&, const QByteArray& ) ), 260 connect(m_pid, SIGNAL( received( const QCString&, const QByteArray& ) ),
248 this, SLOT( pidMessage( const QCString&, const QByteArray& ) ) ); 261 this, SLOT( pidMessage( const QCString&, const QByteArray& ) ) );
249 262
250 // read the Pre QCOP Stuff from the file 263 // read the Pre QCOP Stuff from the file
251 if ( file.isOpen() ) { 264 if ( file.isOpen() ) {
252 d->keep_running = FALSE; 265 d->keep_running = FALSE;
253 QDataStream ds( &file ); 266 QDataStream ds( &file );
254 QCString chanel, message; 267 QCString chanel, message;
255 QByteArray data; 268 QByteArray data;
256 while (!ds.atEnd() ) { 269 while (!ds.atEnd() ) {
257 ds >> chanel >> message >> data; 270 ds >> chanel >> message >> data;
258 d->enqueueQCop( chanel, message, data ); 271 d->enqueueQCop( chanel, message, data );
259 } 272 }
260 flock( file.handle(), LOCK_UN ); 273 flock( file.handle(), LOCK_UN );
261 file.close(); 274 file.close();
262 file.remove(); 275 file.remove();
263 } 276 }
264 277
265 // read in some stuff from the command line 278 // read in some stuff from the command line
266 // we do not have setArgs so we need to take 279 // we do not have setArgs so we need to take
267 // care of that 280 // care of that
268 for ( int a = 0; a < arg; a++ ) { 281 for ( int a = 0; a < arg; a++ ) {
269 if ( qstrcmp( argv[a], "-preload" ) == 0 ) { 282 if ( qstrcmp( argv[a], "-preload" ) == 0 ) {
270 d->preloaded = TRUE; 283 d->preloaded = TRUE;
271 }else if ( qstrcmp( argv[a ] , "-preload-show" ) == 0 ) { 284 }else if ( qstrcmp( argv[a ] , "-preload-show" ) == 0 ) {
272 d->preloaded = TRUE; 285 d->preloaded = TRUE;
273 d->forceshow = TRUE; 286 d->forceshow = TRUE;
274 } 287 }
275 } 288 }
276 initTranslations(); 289 initTranslations();
277 applyStyle(); 290 applyStyle();
278 291
279 if ( type() == GuiServer ) 292 if ( type() == GuiServer )
280 ; 293 ;
281 294
282 installEventFilter( this ); 295 installEventFilter( this );
283 QPEMenuToolFocusManager::initialize(); 296 QPEMenuToolFocusManager::initialize();
284} 297}
285void QPEApplication::initTranslations() { 298void QPEApplication::initTranslations() {
286 // Translations add it 299 // Translations add it
287 QStringList langs = Global::languageList(); 300 QStringList langs = Global::languageList();
288 for ( QStringList::ConstIterator it = langs.begin(); it != langs.end(); ++it ) { 301 for ( QStringList::ConstIterator it = langs.begin(); it != langs.end(); ++it ) {
289 QString lang = *it; 302 QString lang = *it;
290 303
291 QTranslator * trans; 304 QTranslator * trans;
292 QString tfn; 305 QString tfn;
293 306
294 trans = new QTranslator( this ); 307 trans = new QTranslator( this );
295 tfn = qpeDir() + "/i18n/" + lang + "/libqpe.qm"; 308 tfn = qpeDir() + "/i18n/" + lang + "/libqpe.qm";
296 if ( trans->load( tfn ) ) 309 if ( trans->load( tfn ) )
297 installTranslator( trans ); 310 installTranslator( trans );
298 else 311 else
299 delete trans; 312 delete trans;
300 313
301 trans = new QTranslator( this ); 314 trans = new QTranslator( this );
302 tfn = qpeDir() + "/i18n/" + lang + "/" + d->appName + ".qm"; 315 tfn = qpeDir() + "/i18n/" + lang + "/" + d->appName + ".qm";
303 if ( trans->load( tfn ) ) 316 if ( trans->load( tfn ) )
304 installTranslator( trans ); 317 installTranslator( trans );
305 else 318 else
306 delete trans; 319 delete trans;
307 } 320 }
308} 321}
309QPEApplication::~QPEApplication() {
310 delete d;
311}
312QString QPEApplication::qpeDir() { 322QString QPEApplication::qpeDir() {
313 const char * base = getenv( "OPIEDIR" ); 323 const char * base = getenv( "OPIEDIR" );
314 if ( base ) 324 if ( base )
315 return QString( base ) + "/"; 325 return QString( base ) + "/";
316 326
317 return QString( "../" ); 327 return QString( "../" );
318} 328}
319QString QPEApplication::documentDir() { 329QString QPEApplication::documentDir() {
320 const char* base = getenv( "HOME"); 330 const char* base = getenv( "HOME");
321 if ( base ) 331 if ( base )
322 return QString( base ) + "/Documents"; 332 return QString( base ) + "/Documents";
323 333
324 return QString( "../Documents" ); 334 return QString( "../Documents" );
325} 335}
326void QPEApplication::applyStyle() { 336void QPEApplication::applyStyle() {
327 Config config( "qpe" ); 337 Config config( "qpe" );
328 338
329 config.setGroup( "Appearance" ); 339 config.setGroup( "Appearance" );
330 340
331 // Widget style 341 // Widget style
332 QString style = config.readEntry( "Style", "Light" ); 342 QString style = config.readEntry( "Style", "Light" );
333 internalSetStyle( style ); 343 internalSetStyle( style );
334 344
335 // Colors 345 // Colors
336 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) ); 346 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) );
337 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) ); 347 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) );
338 QPalette pal( btncolor, bgcolor ); 348 QPalette pal( btncolor, bgcolor );
339 QString color = config.readEntry( "Highlight", "#800000" ); 349 QString color = config.readEntry( "Highlight", "#800000" );
340 pal.setColor( QColorGroup::Highlight, QColor( color ) ); 350 pal.setColor( QColorGroup::Highlight, QColor( color ) );
341 color = config.readEntry( "HighlightedText", "#FFFFFF" ); 351 color = config.readEntry( "HighlightedText", "#FFFFFF" );
342 pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); 352 pal.setColor( QColorGroup::HighlightedText, QColor( color ) );
343 color = config.readEntry( "Text", "#000000" ); 353 color = config.readEntry( "Text", "#000000" );
344 pal.setColor( QColorGroup::Text, QColor( color ) ); 354 pal.setColor( QColorGroup::Text, QColor( color ) );
345 color = config.readEntry( "ButtonText", "#000000" ); 355 color = config.readEntry( "ButtonText", "#000000" );
346 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); 356 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) );
347 color = config.readEntry( "Base", "#FFFFFF" ); 357 color = config.readEntry( "Base", "#FFFFFF" );
348 pal.setColor( QColorGroup::Base, QColor( color ) ); 358 pal.setColor( QColorGroup::Base, QColor( color ) );
349 359
350 pal.setColor( QPalette::Disabled, QColorGroup::Text, 360 pal.setColor( QPalette::Disabled, QColorGroup::Text,
351 pal.color( QPalette::Active, QColorGroup::Background ).dark() ); 361 pal.color( QPalette::Active, QColorGroup::Background ).dark() );
352 362
353 setPalette( pal, TRUE ); 363 setPalette( pal, TRUE );
354 364
355 365
356 366
357 // Font 367 // Font
358 QString ff = config.readEntry( "FontFamily", font().family() ); 368 QString ff = config.readEntry( "FontFamily", font().family() );
359 int fs = config.readNumEntry( "FontSize", font().pointSize() ); 369 int fs = config.readNumEntry( "FontSize", font().pointSize() );
360 setFont( QFont(ff, fs) ); 370 setFont( QFont(ff, fs) );
361} 371}
362int QPEApplication::defaultRotation() { 372int QPEApplication::defaultRotation() {
363 return 0; 373 return 0;
364} 374}
365void QPEApplication::setDefaultRotation(int r ) { 375void QPEApplication::setDefaultRotation(int r ) {
366 376
367} 377}
368void QPEApplication::grabKeyboard() { 378void QPEApplication::grabKeyboard() {
369 QPEApplication::Private * d = ( ( QPEApplication* ) qApp ) ->d; 379 QPEApplication::Private * d = ( ( QPEApplication* ) qApp ) ->d;
370 if ( qApp->type() == QApplication::GuiServer ) 380 if ( qApp->type() == QApplication::GuiServer )
371 d->kbgrabber = 0; 381 d->kbgrabber = 0;
372 else { 382 else {
373 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); 383 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" );
374 e << d->appName; 384 e << d->appName;
375 385
376 d->kbgrabber = 2; // me 386 d->kbgrabber = 2; // me
377 } 387 }
378} 388}
379void QPEApplication::ungrabKeyboard() { 389void QPEApplication::ungrabKeyboard() {
380 QPEApplication::Private * d = ( ( QPEApplication* ) qApp ) ->d; 390 QPEApplication::Private * d = ( ( QPEApplication* ) qApp ) ->d;
381 if ( d->kbgrabber == 2 ) { 391 if ( d->kbgrabber == 2 ) {
382 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" ); 392 QCopEnvelope e( "QPE/System", "grabKeyboard(QString)" );
383 e << QString::null; 393 e << QString::null;
384 394
385 d->kbregrab = FALSE; 395 d->kbregrab = FALSE;
386 d->kbgrabber = 0; 396 d->kbgrabber = 0;
387 } 397 }
388} 398}
389void QPEApplication::setStylusOperation( QWidget*, StylusMode ) {
390
391}
392QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* ) {
393
394}
395void QPEApplication::showMainWidget( QWidget* wid, bool b) { 399void QPEApplication::showMainWidget( QWidget* wid, bool b) {
396 d->show(wid, b ); 400 d->show(wid, b );
397} 401}
398void QPEApplication::showMainDocumentWidget( QWidget* mw, bool m) { 402void QPEApplication::showMainDocumentWidget( QWidget* mw, bool m) {
399 if ( mw && argc() == 2 ) 403 if ( mw && argc() == 2 )
400 Global::setDocument( mw, QString::fromUtf8(argv()[1] ) ); 404 Global::setDocument( mw, QString::fromUtf8(argv()[1] ) );
401 405
402 d->show(mw, m ); 406 d->show(mw, m );
403} 407}
404void QPEApplication::showDialog( QDialog* d, bool nomax ) { 408void QPEApplication::showDialog( QDialog* d, bool nomax ) {
405 QSize sh = d->sizeHint(); 409 QSize sh = d->sizeHint();
406 int w = QMAX(sh.width(),d->width()); 410 int w = QMAX(sh.width(),d->width());
407 int h = QMAX(sh.height(),d->height()); 411 int h = QMAX(sh.height(),d->height());
408 if ( !nomax 412 if ( !nomax
409 && ( w > qApp->desktop()->width()*3/4 413 && ( w > qApp->desktop()->width()*3/4
410 || h > qApp->desktop()->height()*3/4 ) ) 414 || h > qApp->desktop()->height()*3/4 ) )
411 { 415 {
412 d->showMaximized(); 416 d->showMaximized();
413 } else { 417 } else {
414 d->resize(w,h); 418 d->resize(w,h);
415 d->show(); 419 d->show();
416 } 420 }
417} 421}
418int QPEApplication::execDialog( QDialog* d, bool nomax) { 422int QPEApplication::execDialog( QDialog* d, bool nomax) {
419 showDialog(d,nomax); 423 showDialog(d,nomax);
420 return d->exec(); 424 return d->exec();
421} 425}
422void QPEApplication::setKeepRunning() { 426void QPEApplication::setKeepRunning() {
423 if ( qApp && qApp->inherits( "QPEApplication" ) ) { 427 if ( qApp && qApp->inherits( "QPEApplication" ) ) {
424 QPEApplication * qpeApp = ( QPEApplication* ) qApp; 428 QPEApplication * qpeApp = ( QPEApplication* ) qApp;
425 qpeApp->d->keep_running = TRUE; 429 qpeApp->d->keep_running = TRUE;
426 } 430 }
427} 431}
428bool QPEApplication::keepRunning()const { 432bool QPEApplication::keepRunning()const {
429 return d->keep_running; 433 return d->keep_running;
430} 434}
431bool QPEApplication::keyboardGrabbed()const { 435bool QPEApplication::keyboardGrabbed()const {
432 return d->kbgrabber; 436 return d->kbgrabber;
433} 437}
434int QPEApplication::exec() { 438int QPEApplication::exec() {
435 /* now send the QCOP stuff gotten from the file */ 439 /* now send the QCOP stuff gotten from the file */
436 d->sendQCopQ(); 440 d->sendQCopQ();
437 441
438 if ( d->keep_running ) 442 if ( d->keep_running ) {
439 return QApplication::exec(); 443 qWarning("going to exec");
444 int a = QApplication::exec();
445 qWarning("left");
446 return a;
447 }
440 448
441 { 449 {
442 QCopEnvelope e( "QPE/System", "closing(QString)" ); 450 QCopEnvelope e( "QPE/System", "closing(QString)" );
443 e << d->appName; 451 e << d->appName;
444 } 452 }
453 qWarning("processing events!");
445 processEvents(); 454 processEvents();
446 return 0; 455 return 0;
447} 456}
448void QPEApplication::internalSetStyle( const QString& ) { 457void QPEApplication::internalSetStyle( const QString& ) {
449 458
450} 459}
460void QPEApplication::systemMessage( const QCString&, const QByteArray& ) {
461
462}
463void QPEApplication::pidMessage( const QCString&, const QByteArray& ) {
464
465}
466void QPEApplication::timerEvent( QTimerEvent* e ) {
467 if ( e->timerId() == d->presstimer && d->presswidget ) {
468 // Right pressed
469 postEvent( d->presswidget,
470 new QMouseEvent( QEvent::MouseButtonPress, d->presspos,
471 RightButton, LeftButton ) );
472 killTimer( d->presstimer );
473 d->presstimer = 0;
474 }
475}
476
477// InputMethods Hints
478namespace {
479 static QPtrDict<void>* inputMethodDict = 0;
480 static void createInputMethodDict(){
481 if ( !inputMethodDict )
482 inputMethodDict = new QPtrDict<void>;
483 }
484
485 static QPtrDict<void>* stylusDict = 0;
486 static void createDict() {
487 if ( !stylusDict )
488 stylusDict = new QPtrDict<void>;
489 }
490};
491
492void QPEApplication::setInputMethodHint( QWidget* w, InputMethodHint mode ) {
493 createInputMethodDict();
494 if ( mode == Normal ) {
495 inputMethodDict->remove
496 ( w );
497 }else {
498 inputMethodDict->insert( w, ( void* ) mode );
499 }
500}
501QPEApplication::InputMethodHint QPEApplication::inputMethodHint( QWidget* w) {
502 if ( inputMethodDict && w )
503 return ( InputMethodHint ) ( int ) inputMethodDict->find( w );
504 return Normal;
505}
506
507
508void QPEApplication::removeSenderFromStylusDict() {
509 stylusDict->remove( ( void* ) sender() );
510 if ( d->presswidget == sender() )
511 d->presswidget = 0;
512}
513void QPEApplication::setStylusOperation( QWidget* w, StylusMode mode) {
514 createDict();
515 if ( mode == LeftOnly ) {
516 stylusDict->remove
517 ( w );
518 w->removeEventFilter( qApp );
519 }else {
520 stylusDict->insert( w, ( void* ) mode );
521 connect( w, SIGNAL( destroyed() ), qApp, SLOT( removeSenderFromStylusDict() ) );
522 w->installEventFilter( qApp );
523 }
524}
525QPEApplication::StylusMode QPEApplication::stylusOperation( QWidget* w) {
526 if ( stylusDict )
527 return ( StylusMode ) ( int ) stylusDict->find( w );
528 return LeftOnly;
529}
530
531// eventFilter......
532bool QPEApplication::eventFilter( QObject* o, QEvent* e ) {
533 if ( stylusDict && e->type() >= QEvent::MouseButtonPress && e->type() <= QEvent::MouseMove ) {
534 QMouseEvent * me = ( QMouseEvent* ) e;
535 StylusMode mode = (StylusMode)(int)stylusDict->find(o);
536 switch (mode) {
537 case RightOnHold:
538 switch ( me->type() ) {
539 case QEvent::MouseButtonPress:
540 if ( me->button() == LeftButton ) {
541 d->presstimer = startTimer(500); // #### pref.
542 d->presswidget = (QWidget*)o;
543 d->presspos = me->pos();
544 d->rightpressed = FALSE;
545 }
546 break;
547 case QEvent::MouseMove:
548 if (d->presstimer && (me->pos() - d->presspos).manhattanLength() > 8) {
549 killTimer(d->presstimer);
550 d->presstimer = 0;
551 }
552 break;
553 case QEvent::MouseButtonRelease:
554 if ( me->button() == LeftButton ) {
555 if ( d->presstimer ) {
556 killTimer(d->presstimer);
557 d->presstimer = 0;
558 }
559 if ( d->rightpressed && d->presswidget ) {
560 // Right released
561 postEvent( d->presswidget,
562 new QMouseEvent( QEvent::MouseButtonRelease, me->pos(),
563 RightButton, LeftButton + RightButton ) );
564 // Left released, off-widget
565 postEvent( d->presswidget,
566 new QMouseEvent( QEvent::MouseMove, QPoint( -1, -1),
567 LeftButton, LeftButton ) );
568 postEvent( d->presswidget,
569 new QMouseEvent( QEvent::MouseButtonRelease, QPoint( -1, -1),
570 LeftButton, LeftButton ) );
571 d->rightpressed = FALSE;
572 return TRUE; // don't send the real Left release
573 }
574 }
575 break;
576 default:
577 break;
578 }
579 break;
580 default:
581 ;
582 }
583 }
584 else if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) {
585 QKeyEvent *ke = (QKeyEvent *)e;
586 if ( ke->key() == Key_Enter ) {
587 if ( o->isA( "QRadioButton" ) || o->isA( "QCheckBox" ) ) {
588 postEvent( o, new QKeyEvent( e->type(), Key_Space, ' ',
589 ke->state(), " ", ke->isAutoRepeat(), ke->count() ) );
590 return TRUE;
591 }
592 }
593 }
594 return FALSE;
595}
596
597// Quit stuff
598void QPEApplication::restart() {
599
600}
601void QPEApplication::shutdown() {
451 602
603}
604void QPEApplication::tryQuit() {
605 qWarning("TryQuit!!");
606 if ( activeModalWidget() || strcmp( argv() [ 0 ], "embeddedkonsole" ) == 0 )
607 return ; // Inside modal loop or konsole. Too hard to save state.
608 {
609 QCopEnvelope e( "QPE/System", "closing(QString)" );
610 e << d->appName;
611 }
612 processEvents();
452 613
614 quit();
615}
616void QPEApplication::hideOrQuit() {
617 qWarning("hide or close");
618 processEvents();
619 qWarning("past processing");
620
621 // If we are a preloaded application we don't actually quit, so emit
622 // a System message indicating we're quasi-closing.
623 if ( d->preloaded && d->qpe_main_widget )
624
625 {
626 qWarning("hiding");
627 QCopEnvelope e("QPE/System", "fastAppHiding(QString)" );
628 e << d->appName;
629 d->qpe_main_widget->hide();
630 }
631 else
632 quit();
633}
453 634
454#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) 635#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX)
455 636
456// The libraries with the skiff package (and possibly others) have 637// The libraries with the skiff package (and possibly others) have
457// completely useless implementations of builtin new and delete that 638// completely useless implementations of builtin new and delete that
458// use about 50% of your CPU. Here we revert to the simple libc 639// use about 50% of your CPU. Here we revert to the simple libc
459// functions. 640// functions.
460 641
461void* operator new[]( size_t size ) 642void* operator new[]( size_t size )
462{ 643{
463 return malloc( size ); 644 return malloc( size );
464} 645}
465 646
466void* operator new( size_t size ) 647void* operator new( size_t size )
467{ 648{
468 return malloc( size ); 649 return malloc( size );
469} 650}
470 651
471void operator delete[]( void* p ) 652void operator delete[]( void* p )
472{ 653{
473 free( p ); 654 free( p );
474} 655}
475 656
476void operator delete[]( void* p, size_t /*size*/ ) 657void operator delete[]( void* p, size_t /*size*/ )
477{ 658{
478 free( p ); 659 free( p );
479} 660}
480 661
481void operator delete( void* p ) 662void operator delete( void* p )
482{ 663{
483 free( p ); 664 free( p );
484} 665}
485 666
486void operator delete( void* p, size_t /*size*/ ) 667void operator delete( void* p, size_t /*size*/ )
487{ 668{
488 free( p ); 669 free( p );
489} 670}
490 671
491#endif 672#endif
diff --git a/x11/libqpe-x11/qpe/qpeapplication.h b/x11/libqpe-x11/qpe/qpeapplication.h
index cd385db..2af1c66 100644
--- a/x11/libqpe-x11/qpe/qpeapplication.h
+++ b/x11/libqpe-x11/qpe/qpeapplication.h
@@ -1,70 +1,93 @@
1#ifndef OPIE_QPE_APPLICATION_H 1#ifndef OPIE_QPE_APPLICATION_H
2#define OPIE_QPE_APPLICATION_H 2#define OPIE_QPE_APPLICATION_H
3 3
4/** 4/**
5 * LGPLed 5 * LGPLed
6 */ 6 */
7 7
8#include <qapplication.h> 8#include <qapplication.h>
9#include <qevent.h>
9 10
10#include <qpe/timestring.h> 11#include <qpe/timestring.h>
11 12
12class QCopChannel; 13class QCopChannel;
13class QPEApplication : public QApplication { 14class QPEApplication : public QApplication {
14 Q_OBJECT 15 Q_OBJECT
15public: 16public:
16 QPEApplication(int& argc, char** argv, Type=GuiClient ); 17 QPEApplication(int& argc, char** argv, Type=GuiClient );
17 ~QPEApplication(); 18 ~QPEApplication();
18 19
20
19 static QString qpeDir(); 21 static QString qpeDir();
20 static QString documentDir(); 22 static QString documentDir();
21 void applyStyle(); 23 void applyStyle();
22 24
23 static int defaultRotation(); 25 static int defaultRotation();
24 static void setDefaultRotation( int r ); 26 static void setDefaultRotation( int r );
25 static void grabKeyboard(); 27 static void grabKeyboard();
26 static void ungrabKeyboard(); 28 static void ungrabKeyboard();
27 29
28 enum StylusMode { 30 enum StylusMode {
29 LeftOnly, 31 LeftOnly,
30 RightOnHold 32 RightOnHold
31 }; 33 };
32 static void setStylusOperation( QWidget*, StylusMode ); 34 static void setStylusOperation( QWidget*, StylusMode );
33 static StylusMode stylusOperation( QWidget* ); 35 static StylusMode stylusOperation( QWidget* );
34 36
37 enum InputMethodHint {
38 Normal,
39 AlwaysOff,
40 AlwaysOn
41 };
42 static void setInputMethodHint( QWidget*, InputMethodHint );
43 static InputMethodHint inputMethodHint( QWidget* );
44
35 void showMainWidget( QWidget*, bool nomax = FALSE ); 45 void showMainWidget( QWidget*, bool nomax = FALSE );
36 void showMainDocumentWidget( QWidget*, bool nomax = FALSE ); 46 void showMainDocumentWidget( QWidget*, bool nomax = FALSE );
37 47
38 static void showDialog( QDialog*, bool nomax = FALSE ); 48 static void showDialog( QDialog*, bool nomax = FALSE );
39 static int execDialog( QDialog*, bool nomax = FALSE ); 49 static int execDialog( QDialog*, bool nomax = FALSE );
40 50
41 static void setKeepRunning(); 51 static void setKeepRunning();
42 bool keepRunning()const; 52 bool keepRunning()const;
43 53
44 bool keyboardGrabbed()const; 54 bool keyboardGrabbed()const;
45 int exec(); 55 int exec();
46 56
47signals: 57signals:
48 void clientMoused(); 58 void clientMoused();
49 void timeChanged(); 59 void timeChanged();
50 void clockChanged( bool pm ); 60 void clockChanged( bool pm );
51 void micChanged( bool muted ); 61 void micChanged( bool muted );
52 void volumeChanged( bool muted ); 62 void volumeChanged( bool muted );
53 void appMessage( const QCString& msg, const QByteArray& data); 63 void appMessage( const QCString& msg, const QByteArray& data);
54 void weekChanged( bool startOnMonday ); 64 void weekChanged( bool startOnMonday );
55 void dateFormatChanged( DateFormat ); 65 void dateFormatChanged( DateFormat );
56 void flush(); 66 void flush();
57 void reload(); 67 void reload();
58 68
59private: 69private:
60 void initTranslations(); 70 void initTranslations();
61 void internalSetStyle(const QString&); 71 void internalSetStyle(const QString&);
62 72
73private slots:
74 void hideOrQuit();
75 void systemMessage( const QCString&, const QByteArray& );
76 void pidMessage( const QCString&, const QByteArray& );
77 void removeSenderFromStylusDict();
78protected:
79 virtual void restart();
80 virtual void shutdown();
81 bool eventFilter( QObject*, QEvent* );
82 void timerEvent( QTimerEvent* );
83 void raiseAppropriateWindow();
84 virtual void tryQuit();
85
63private: 86private:
64 class Private; 87 class Private;
65 Private* d; 88 Private* d;
66 QCopChannel *m_sys; 89 QCopChannel *m_sys;
67 QCopChannel *m_pid; 90 QCopChannel *m_pid;
68}; 91};
69 92
70#endif 93#endif