forked from Silverfish/proton-bridge
feat(GODT-2767): Outlook version selector and warning screen.
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user