2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2020-09-29 06:39:29 +00:00
|
|
|
import QtGraphicalEffects 1.13
|
2021-07-23 09:22:14 +00:00
|
|
|
import StatusQ.Controls 0.1
|
2020-06-19 18:06:58 +00:00
|
|
|
import "../imports"
|
2020-06-13 15:17:54 +00:00
|
|
|
import "../shared"
|
|
|
|
import "./Login"
|
|
|
|
|
|
|
|
ModalPopup {
|
|
|
|
property int selectedIndex: 0
|
|
|
|
property var onClosed: function () {}
|
|
|
|
property var onNextClick: function () {}
|
|
|
|
id: popup
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Choose a chat name"
|
|
|
|
title: qsTrId("intro-wizard-title2")
|
2020-06-13 15:17:54 +00:00
|
|
|
|
|
|
|
AccountList {
|
|
|
|
id: accountList
|
|
|
|
anchors.fill: parent
|
2020-06-15 13:37:16 +00:00
|
|
|
interactive: false
|
2020-06-13 15:17:54 +00:00
|
|
|
|
|
|
|
accounts: onboardingModel
|
2021-07-26 07:17:49 +00:00
|
|
|
isSelected: function (index) {
|
2020-06-13 15:17:54 +00:00
|
|
|
return index === selectedIndex
|
|
|
|
}
|
|
|
|
onAccountSelect: function(index) {
|
|
|
|
selectedIndex = index
|
|
|
|
}
|
|
|
|
}
|
2020-09-30 12:33:26 +00:00
|
|
|
footer: StatusRoundButton {
|
2020-06-13 15:17:54 +00:00
|
|
|
id: submitBtn
|
|
|
|
anchors.bottom: parent.bottom
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.topMargin: Style.current.padding
|
2020-06-13 15:17:54 +00:00
|
|
|
anchors.right: parent.right
|
2020-09-30 12:33:26 +00:00
|
|
|
icon.name: "arrow-right"
|
|
|
|
icon.width: 20
|
|
|
|
icon.height: 16
|
2020-06-13 15:17:54 +00:00
|
|
|
onClicked : {
|
|
|
|
onNextClick(selectedIndex);
|
|
|
|
popup.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
|
|
|
|
}
|
|
|
|
##^##*/
|