Dec 6 2004, 01:30 AM
Post
#1
|
|
|
Group: Members Posts: 145 Joined: 13-November 04 Member No.: 5,449 |
Some Qtopia applications, when they are busy, show a gray window in the center of the screen with an hourglass and short information, like "Now updating information...".
Is there a class / method in Qtopia API to display such window? Or should I write my own code for that? Openning such window seems to be tricky as QSemiModal is not available in Qt/Embedded. |
|
|
|
![]() |
Dec 6 2004, 02:04 AM
Post
#2
|
|
![]() Group: Members Posts: 451 Joined: 27-November 03 From: Brisbane, Australia Member No.: 1,001 |
use
QCopEnvelope e("QPE/System", "busy()" ); and then QCopEnvelope e("QPE/System", "notBusy()" ); |
|
|
|
Dec 7 2004, 01:27 AM
Post
#3
|
|
|
Group: Members Posts: 145 Joined: 13-November 04 Member No.: 5,449 |
QUOTE(lpotter @ Dec 6 2004, 10:04 AM) use QCopEnvelope e("QPE/System", "busy()" ); and then QCopEnvelope e("QPE/System", "notBusy()" ); QCopEnvelope e("QPE/System", "busy()" ) has slightly different behavior: it displays a small hourglass in the task bar. What I would like to do is to give a distinct feedback to the user that the application has not crashed but is busy with some computation. An hour glass in the task bar is nice for launching applications but is difficult to notice when a lot of other things are happening on the screen. So my question is what is the best way to show a progress/busy dialog if QProgressDialog is not available in Qt/Embedded? |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 18th May 2013 - 04:01 AM |