summaryrefslogtreecommitdiff
authorzecke <zecke>2003-09-30 07:59:50 (UTC)
committer zecke <zecke>2003-09-30 07:59:50 (UTC)
commitc638bdc2b6ff6a18ec851f4317629b9d3eed4d7b (patch) (unidiff)
treecb40a149213adf36df74e5b65111a08a7f43f023
parent22635efede76151e728501f48ef6ae2c6a965aac (diff)
downloadopie-c638bdc2b6ff6a18ec851f4317629b9d3eed4d7b.zip
opie-c638bdc2b6ff6a18ec851f4317629b9d3eed4d7b.tar.gz
opie-c638bdc2b6ff6a18ec851f4317629b9d3eed4d7b.tar.bz2
Use the improved version to iterate over windows from Qtopia
and include the top level widgets in the to be iterated widgets
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--library/qpeapplication.cpp144
-rw-r--r--library/qpeapplication.h3
2 files changed, 66 insertions, 81 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index bf353d4..86aa53d 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -132,3 +132,3 @@ public:
132 QWidget* qpe_main_widget; 132 QWidget* qpe_main_widget;
133 QGuardedPtr<QWidget> lastWidget; 133 QGuardedPtr<QWidget> lastraised;
134 QList<QCopRec> qcopq; 134 QList<QCopRec> qcopq;
@@ -153,3 +153,3 @@ public:
153 } 153 }
154 static void show_mx(QWidget* mw, bool nomaximize) 154 static void show_mx(QWidget* mw, bool nomaximize, const QString & = QString::null )
155 { 155 {
@@ -706,2 +706,3 @@ void QPEApplication::initApp( int argc, char **argv )
706{ 706{
707 bool initial = pidChannel; // was set to 0 in the initializer
707 delete pidChannel; 708 delete pidChannel;
@@ -725,4 +726,6 @@ void QPEApplication::initApp( int argc, char **argv )
725 726
727 if (!initial) {
726 processQCopFile(); 728 processQCopFile();
727 d->keep_running = d->qcopq.isEmpty(); 729 d->keep_running = d->qcopq.isEmpty();
730 }
728 731
@@ -1364,32 +1367,6 @@ void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data
1364 1367
1365#include <qmetaobject.h>
1366 1368
1367QWidget *QPEApplication::nextWidget(QWidgetList* list, QWidget* _wid) {
1368 QWidget *next = 0;
1369 if ( list->isEmpty() || list->count() == 1 )
1370 next = _wid;
1371 else{
1372 QWidget* wid;
1373 uint idx = list->findRef( _wid );
1374 uint count = list->count();
1375
1376 /* one time through the list hacky we may not start with idx but end with it*/
1377 for (uint i = (idx + 1)%count; true; i=(i+1)%count ) {
1378 wid = list->at(i);
1379 if ( wid == _wid ) {
1380 next = _wid;
1381 break;
1382 }else if ((( wid->inherits("QMainWindow") ||
1383 wid->inherits("QDialog") ) &&
1384 wid != qApp->desktop() && !wid->isHidden() ) ||
1385 ( wid == mainWidget() || wid == d->qpe_main_widget ) ){
1386 next = wid;
1387 break;
1388 }
1389 }
1390 }
1391 1369
1392 delete list; 1370
1393 return next; 1371
1394}
1395/*! 1372/*!
@@ -1397,14 +1374,2 @@ QWidget *QPEApplication::nextWidget(QWidgetList* list, QWidget* _wid) {
1397*/ 1374*/
1398// ########## raise()ing main window should raise and set active
1399// ########## it and then all childen. This belongs in Qt/Embedded
1400/*
1401 * slightly change in behaviour to kill the need of modality in Opie
1402 * If any of the topLevelWidgets !isFullyObscured we highlight the next
1403 * top level window
1404 * 1)If visible and not modal we iterate over the list of top level widgets
1405 * 2)If modal we we make the modal and its parent toplevel widget visible if available
1406 * 3)else make topLevel visible
1407 *
1408 * send qcop if necessary and save current visible widget if not modal
1409 */
1410bool QPEApplication::raiseAppropriateWindow() 1375bool QPEApplication::raiseAppropriateWindow()
@@ -1413,44 +1378,67 @@ bool QPEApplication::raiseAppropriateWindow()
1413 1378
1414 QWidget *top = d->qpe_main_widget ? d->qpe_main_widget : mainWidget(); 1379 // 1. Raise the main widget
1415 /* 1. */ 1380 QWidget *top = d->qpe_main_widget;
1416 if ( ( top && (top->isVisible() ) || ( d->lastWidget && d->lastWidget->isVisible() ) ) && 1381 if ( !top ) top = mainWidget();
1417 !activeModalWidget() ) { 1382
1383 if ( top && d->keep_running ) {
1384 if ( top->isVisible() )
1418 r = TRUE; 1385 r = TRUE;
1419 /*wid will be valid and topLevelWidgets will be deleted properly.. */ 1386 else if (d->preloaded) {
1420 QWidget *wid = nextWidget( topLevelWidgets(), 1387 // We are preloaded and not visible.. pretend we just started..
1421 d->lastWidget ? (QWidget*)d->lastWidget : top ); 1388#ifndef QT_NO_COP
1422 /* keep the size window got but not for root*/ 1389 QCopEnvelope e("QPE/System", "fastAppShowing(QString)");
1423 if ( top == wid ) 1390 e << d->appName;
1424 d->show_mx(top, d->nomaximize ); 1391#endif
1425 else 1392 }
1426 wid->show(); 1393
1427 1394 d->show_mx(top,d->nomaximize, d->appName);
1428 wid->raise();
1429 wid->setActiveWindow();
1430 d->lastWidget = wid;
1431 }else if ( activeModalWidget() ) {
1432 QWidget* mod = activeModalWidget();
1433 /* get the parent of the modal and its topLevelWidget as background widget */
1434 QWidget* par = activeModalWidget()->parentWidget() ? activeModalWidget()->parentWidget()->topLevelWidget() : 0;
1435 if (par ) {
1436 if (par == top )
1437 d->show_mx(par, d->nomaximize );
1438 else
1439 par->show();
1440 par->raise();
1441 par->setActiveWindow();
1442 }
1443 mod->show();
1444 mod->raise();
1445 mod->setActiveWindow();
1446 }else if (top){
1447 d->show_mx(top, d->nomaximize );
1448 top->raise(); 1395 top->raise();
1449 top->setActiveWindow();
1450 d->lastWidget = top;
1451 } 1396 }
1452 1397
1453 if (!r && d->preloaded ) { 1398 QWidget *topm = activeModalWidget();
1399
1400 // 2. Raise any parentless widgets (except top and topm, as they
1401 // are raised before and after this loop). Order from most
1402 // recently raised as deepest to least recently as top, so
1403 // that repeated calls cycle through widgets.
1404 QWidgetList *list = topLevelWidgets();
1405 if ( list ) {
1406 bool foundlast = FALSE;
1407 QWidget* topsub = 0;
1408 if ( d->lastraised ) {
1409 for (QWidget* w = list->first(); w; w = list->next()) {
1410 if ( !w->parentWidget() && w != topm && w->isVisible() && !w->isDesktop() ) {
1411 if ( w == d->lastraised )
1412 foundlast = TRUE;
1413 if ( foundlast ) {
1414 w->raise();
1415 topsub = w;
1416 }
1417 }
1418 }
1419 }
1420 for (QWidget* w = list->first(); w; w = list->next()) {
1421 if ( !w->parentWidget() && w != topm && w->isVisible() && !w->isDesktop() ) {
1422 if ( w == d->lastraised )
1423 break;
1424 w->raise();
1425 topsub = w;
1426 }
1427 }
1428 d->lastraised = topsub;
1429 delete list;
1430 }
1431
1432 // 3. Raise the active modal widget.
1433 if ( topm && topm != top ) {
1434 topm->show();
1435 topm->raise();
1436 // If we haven't already handled the fastAppShowing message
1437 if (!top && d->preloaded) {
1438#ifndef QT_NO_COP
1454 QCopEnvelope e("QPE/System", "fastAppShowing(QString)"); 1439 QCopEnvelope e("QPE/System", "fastAppShowing(QString)");
1455 e << d->appName; 1440 e << d->appName;
1441#endif
1442 }
1443 r = FALSE;
1456 } 1444 }
diff --git a/library/qpeapplication.h b/library/qpeapplication.h
index 69e0058..729cf2b 100644
--- a/library/qpeapplication.h
+++ b/library/qpeapplication.h
@@ -117,5 +117,2 @@ private slots:
117 117
118private:
119 QWidget *nextWidget( QWidgetList*, QWidget* );
120
121protected: 118protected: