feat(GODT-2771): macOS cert install support in bridge-gui-test + placeholder QML.

This commit is contained in:
Xavier Michelon
2023-08-17 17:35:50 +02:00
parent f57a40677e
commit 69190daf3f
15 changed files with 338 additions and 45 deletions

View File

@ -31,7 +31,8 @@ Item {
Login,
ClientConfigSelector,
ClientConfigOutlookSelector,
ClientConfigWarning
ClientConfigWarning,
ClientConfigAppleMail
}
enum RootStack {
TwoPanesView,
@ -80,6 +81,12 @@ Item {
function closeWizard() {
wizardEnded();
}
function showAppleMailAutoConfig() {
rootStackLayout.currentIndex = SetupWizard.RootStack.TwoPanesView;
leftContent.showClientSelector();
rightContent.currentIndex = SetupWizard.ContentStack.ClientConfigAppleMail;
clientConfigAppleMail.showAutoConfig();
}
function showClientConfig(user, address) {
root.user = user;
root.address = address;
@ -222,6 +229,13 @@ Item {
Layout.fillWidth: true
wizard: root
}
// rightContent stack index 5
ClientConfigAppleMail {
id: clientConfigAppleMail
Layout.fillHeight: true
Layout.fillWidth: true
wizard: root
}
}
LinkLabel {
id: reportProblemLink