feat(GODT-2767): Outlook version selector and warning screen.

This commit is contained in:
Xavier Michelon
2023-08-08 10:40:42 +02:00
parent a35c8424a3
commit df02e39fe1
6 changed files with 255 additions and 10 deletions

View File

@ -37,6 +37,12 @@ Item {
function closeWizard() {
root.visible = false;
}
function showOutlookSelector() {
console.error("showOutlookSelector()");
root.visible = true;
leftContent.showOutlookSelector();
rightContent.currentIndex = 3;
}
function start() {
root.visible = true;
leftContent.showOnboarding();
@ -57,6 +63,13 @@ Item {
loginRightPane.reset(true);
}
function showClientWarning() {
console.error("showClientWarning()");
root.visible = true;
//leftContent.showWarning();
rightContent.currentIndex = 4
}
Connections {
function onLoginFinished() {
startClientConfig();
@ -141,6 +154,20 @@ Item {
Layout.fillWidth: true
wizard: root
}
// stack index 3
ClientConfigOutlookSelector {
id: clientConfigOutlookSelector
Layout.fillHeight: true
Layout.fillWidth: true
wizard: root
}
// stack index 4
ClientConfigWarning {
id: clientConfigWarning
Layout.fillHeight: true
Layout.fillWidth: true
wizard: root
}
}
LinkLabel {
id: reportProblemLink