summaryrefslogtreecommitdiffstats
path: root/installerbuilder/installerbase/tabcontroller.cpp
diff options
context:
space:
mode:
authorkh1 <qt-info@nokia.com>2011-06-29 13:26:05 +0200
committerkh1 <qt-info@nokia.com>2011-06-29 13:26:05 +0200
commit3a8908b0683486b86912ab6ceceb98df32ec7bc9 (patch)
tree273e6e78fa08adecc4bfdb9a7401fd9cf66a43d5 /installerbuilder/installerbase/tabcontroller.cpp
parent812f60ea11e3c5bbd929c3426ade87917575826a (diff)
Add an error function and display it in the ui.
If there happens to be an error during fetch, set the appropriate installer status and display an error message.
Diffstat (limited to 'installerbuilder/installerbase/tabcontroller.cpp')
-rw-r--r--installerbuilder/installerbase/tabcontroller.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/installerbuilder/installerbase/tabcontroller.cpp b/installerbuilder/installerbase/tabcontroller.cpp
index fcff11798..44f3b1c6c 100644
--- a/installerbuilder/installerbase/tabcontroller.cpp
+++ b/installerbuilder/installerbase/tabcontroller.cpp
@@ -138,6 +138,7 @@ int TabController::init()
IntroductionPageImpl *introPage =
qobject_cast<IntroductionPageImpl*>(d->m_gui->page(PackageManagerCore::Introduction));
connect(introPage, SIGNAL(initUpdater()), this, SLOT(initUpdater()));
+ connect(introPage, SIGNAL(initUninstaller()), this, SLOT(initUninstaller()));
connect(introPage, SIGNAL(initPackageManager()), this, SLOT(initPackageManager()));
}
@@ -170,8 +171,12 @@ int TabController::initUpdater()
d->m_gui->setWindowModality(Qt::WindowModal);
d->m_gui->show();
- if (!d->m_updatesFetched)
+ if (!d->m_updatesFetched) {
+ introPage->setErrorMessage(QLatin1String(""));
d->m_updatesFetched = d->m_core->fetchUpdaterPackages();
+ if (!d->m_updatesFetched)
+ introPage->setErrorMessage(d->m_core->error());
+ }
// Initialize the gui. Needs to be done after check repositories as only then the ui can handle
// hide of pages depenging on the components.
@@ -181,7 +186,8 @@ int TabController::initUpdater()
introPage->showMaintenanceTools();
introPage->setMaintenanceToolsEnabled(true);
- introPage->setComplete(true);
+ if (d->m_updatesFetched)
+ introPage->setComplete(true);
if (d->m_core->status() == PackageManagerCore::Canceled)
return PackageManagerCore::Canceled;
@@ -194,6 +200,7 @@ int TabController::initUninstaller()
introPage->setComplete(true);
introPage->showMaintenanceTools();
+ introPage->setErrorMessage(QLatin1String(""));
d->m_gui->setWindowModality(Qt::WindowModal);
d->m_gui->show();
@@ -221,8 +228,12 @@ int TabController::initPackageManager()
d->m_gui->setWindowModality(Qt::WindowModal);
d->m_gui->show();
- if (!d->m_allPackagesFetched)
+ if (!d->m_allPackagesFetched) {
+ introPage->setErrorMessage(QLatin1String(""));
d->m_allPackagesFetched = d->m_core->fetchAllPackages();
+ if (!d->m_allPackagesFetched)
+ introPage->setErrorMessage(d->m_core->error());
+ }
// Initialize the gui. Needs to be done after check repositories as only then the ui can handle
// hide of pages depenging on the components.
@@ -236,7 +247,8 @@ int TabController::initPackageManager()
} else {
introPage->hideAll();
}
- introPage->setComplete(true);
+ if (d->m_allPackagesFetched)
+ introPage->setComplete(true);
if (d->m_core->status() == PackageManagerCore::Canceled)
return PackageManagerCore::Canceled;