refs #886, added wizard component for initial data load

* added buttons to CDbLoadOverviewComponent
* wizard component/page
* added to wizard
This commit is contained in:
Klaus Basan
2017-02-26 15:26:10 +01:00
committed by Mathew Sutcliffe
parent 9b4b2f70cc
commit b94eab581e
8 changed files with 1109 additions and 696 deletions

View File

@@ -19,15 +19,16 @@ namespace BlackGui
ui(new Ui::CConfigurationWizard)
{
ui->setupUi(this);
ui->wp_CopyCaches->setConfigComponent(ui->comp_CopyCaches);
ui->wp_CopySettings->setConfigComponent(ui->comp_CopySettings);
ui->wp_Simulator->setConfigComponent(ui->comp_Simulator);
ui->wp_DataLoad->setConfigComponent(ui->comp_DataLoad);
// no other versions, skip copy pages
if (!ui->comp_CopySettings->hasOtherVersionData())
{
this->setStartId(ConfigSimulator);
}
ui->wp_CopyCaches->setConfigComponent(ui->comp_CopyCaches);
ui->wp_CopySettings->setConfigComponent(ui->comp_CopySettings);
ui->wp_Simulator->setConfigComponent(ui->comp_Simulator);
connect(this, &QWizard::currentIdChanged, this, &CConfigurationWizard::wizardCurrentIdChanged);
}