author | ar <ar> | 2004-10-20 22:13:02 (UTC) |
---|---|---|
committer | ar <ar> | 2004-10-20 22:13:02 (UTC) |
commit | 24b27cb83dfc2a23c26e6edcda84fe26a9e9d685 (patch) (side-by-side diff) | |
tree | 74a0f718dc4199051c4e485d2d6c214a98ac6af6 | |
parent | c0ea353593cd6beed183ee0f9b58a16a869a0308 (diff) | |
download | opie-24b27cb83dfc2a23c26e6edcda84fe26a9e9d685.zip opie-24b27cb83dfc2a23c26e6edcda84fe26a9e9d685.tar.gz opie-24b27cb83dfc2a23c26e6edcda84fe26a9e9d685.tar.bz2 |
- use busy indicator when backing up and restore
-rw-r--r-- | noncore/settings/backup/backuprestore.cpp | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp index 36b101c..1748e8d 100644 --- a/noncore/settings/backup/backuprestore.cpp +++ b/noncore/settings/backup/backuprestore.cpp @@ -8,6 +8,7 @@ using namespace Opie::Core; #include <opie2/ofiledialog.h> +#include <opie2/owait.h> using namespace Opie::Ui; #include <qpe/qpeapplication.h> @@ -251,7 +252,11 @@ void BackupAndRestore::backup() return; } - setCaption(tr("Backup and Restore... working...")); + OWait *owait = new OWait(); + Global::statusMessage( tr( "Backing up..." ) ); + owait->show(); + qApp->processEvents(); + QString outputFile = backupLocations[storeToLocation->currentText()]; QDateTime datetime = QDateTime::currentDateTime(); @@ -284,6 +289,10 @@ void BackupAndRestore::backup() int r = system( commandLine ); + owait->hide(); + delete owait; + + //Error-Handling if(r != 0) { perror("Error: "); @@ -434,7 +443,11 @@ void BackupAndRestore::restore() tr( "Please select something to restore." ),QString( tr( "Ok") ) ); return; } - setCaption(tr("Backup and Restore... working...")); + + OWait *owait = new OWait(); + Global::statusMessage( tr( "Restore Backup..." ) ); + owait->show(); + qApp->processEvents(); QString restoreFile = backupLocations[restoreSource->currentText()]; @@ -467,6 +480,9 @@ void BackupAndRestore::restore() r = system( commandLine ); + owait->hide(); + delete owait; + //error handling if(r != 0) { |