2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
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
|
|
|
|
title: qsTr("Choose a chat name")
|
|
|
|
|
|
|
|
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
|
|
|
|
isSelected: function (index, address) {
|
|
|
|
return index === selectedIndex
|
|
|
|
}
|
|
|
|
onAccountSelect: function(index) {
|
|
|
|
selectedIndex = index
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: Button {
|
|
|
|
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-07-02 15:14:31 +00:00
|
|
|
anchors.rightMargin: Style.current.padding
|
2020-06-13 15:17:54 +00:00
|
|
|
width: 44
|
|
|
|
height: 44
|
|
|
|
background: Rectangle {
|
|
|
|
radius: 50
|
2020-07-02 15:14:31 +00:00
|
|
|
color: Style.current.lightBlue
|
2020-06-13 15:17:54 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 13:23:17 +00:00
|
|
|
SVGImage {
|
2020-06-13 15:17:54 +00:00
|
|
|
sourceSize.height: 15
|
|
|
|
sourceSize.width: 20
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
source: "../app/img/leave_chat.svg"
|
|
|
|
rotation: 180
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
}
|
|
|
|
|
|
|
|
onClicked : {
|
|
|
|
onNextClick(selectedIndex);
|
|
|
|
popup.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
|
|
|
|
}
|
|
|
|
##^##*/
|