mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Update profiles files after changing them
This commit is contained in:
parent
22773a6dd6
commit
55e7ba97a1
3 changed files with 33 additions and 3 deletions
|
@ -124,11 +124,29 @@ void CMainWindow::onConfigureClicked()
|
||||||
|
|
||||||
void CMainWindow::onProfiles()
|
void CMainWindow::onProfiles()
|
||||||
{
|
{
|
||||||
CProfilesDialog dialog(this);
|
bool updated = false;
|
||||||
|
|
||||||
if (dialog.exec())
|
|
||||||
{
|
{
|
||||||
updateProfiles();
|
CProfilesDialog dialog(this);
|
||||||
|
|
||||||
|
if (dialog.exec())
|
||||||
|
{
|
||||||
|
updateProfiles();
|
||||||
|
|
||||||
|
updated = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (updated)
|
||||||
|
{
|
||||||
|
COperationDialog dialog(this);
|
||||||
|
|
||||||
|
dialog.setOperation(COperationDialog::OperationUpdateProfiles);
|
||||||
|
|
||||||
|
if (!dialog.exec())
|
||||||
|
{
|
||||||
|
// aborted
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -102,6 +102,10 @@ void COperationDialog::processNextStep()
|
||||||
processMigrateNextStep();
|
processMigrateNextStep();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case OperationUpdateProfiles:
|
||||||
|
processUpgradeProfilesNextStep();
|
||||||
|
break;
|
||||||
|
|
||||||
case OperationInstall:
|
case OperationInstall:
|
||||||
processInstallNextStep();
|
processInstallNextStep();
|
||||||
break;
|
break;
|
||||||
|
@ -201,8 +205,14 @@ void COperationDialog::processMigrateNextStep()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void COperationDialog::processUpdateProfilesNextStep()
|
||||||
|
{
|
||||||
|
// TODO: implement
|
||||||
|
}
|
||||||
|
|
||||||
void COperationDialog::processInstallNextStep()
|
void COperationDialog::processInstallNextStep()
|
||||||
{
|
{
|
||||||
|
// TODO: implement
|
||||||
}
|
}
|
||||||
|
|
||||||
void COperationDialog::processUninstallNextStep()
|
void COperationDialog::processUninstallNextStep()
|
||||||
|
|
|
@ -42,6 +42,7 @@ public:
|
||||||
{
|
{
|
||||||
OperationNone,
|
OperationNone,
|
||||||
OperationMigrate,
|
OperationMigrate,
|
||||||
|
OperationUpdateProfiles,
|
||||||
OperationInstall,
|
OperationInstall,
|
||||||
OperationUninstall
|
OperationUninstall
|
||||||
};
|
};
|
||||||
|
@ -92,6 +93,7 @@ protected:
|
||||||
|
|
||||||
void processNextStep();
|
void processNextStep();
|
||||||
void processMigrateNextStep();
|
void processMigrateNextStep();
|
||||||
|
void processUpdateProfilesNextStep();
|
||||||
void processInstallNextStep();
|
void processInstallNextStep();
|
||||||
void processUninstallNextStep();
|
void processUninstallNextStep();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue