status-desktop/ui/onboarding/GenKeyModal.qml

51 lines
1.1 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtGraphicalEffects 1.13
import StatusQ.Controls 0.1
import utils 1.0
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
//% "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
isSelected: function (index) {
2020-06-13 15:17:54 +00:00
return index === selectedIndex
}
onAccountSelect: function(index) {
selectedIndex = index
}
}
footer: StatusRoundButton {
2020-06-13 15:17:54 +00:00
id: submitBtn
anchors.bottom: parent.bottom
anchors.topMargin: Style.current.padding
2020-06-13 15:17:54 +00:00
anchors.right: parent.right
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}
}
##^##*/