2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2020-06-03 20:50:59 +00:00
|
|
|
import "./samples/"
|
2020-06-11 21:23:27 +00:00
|
|
|
import "../../imports"
|
2020-06-03 20:50:59 +00:00
|
|
|
|
|
|
|
ListView {
|
|
|
|
property var accounts: AccountsData {}
|
2020-06-13 15:17:54 +00:00
|
|
|
property var isSelected: function () {}
|
2020-06-11 21:23:27 +00:00
|
|
|
property var onAccountSelect: function () {}
|
2020-06-03 20:50:59 +00:00
|
|
|
|
2021-07-26 07:17:49 +00:00
|
|
|
id: accountsView
|
2020-06-11 21:23:27 +00:00
|
|
|
anchors.fill: parent
|
2020-06-03 20:50:59 +00:00
|
|
|
model: accounts
|
2020-06-11 21:23:27 +00:00
|
|
|
focus: true
|
2020-07-02 15:14:31 +00:00
|
|
|
spacing: Style.current.smallPadding
|
2021-04-30 18:15:50 +00:00
|
|
|
clip: true
|
2020-06-03 20:50:59 +00:00
|
|
|
|
2021-07-26 07:17:49 +00:00
|
|
|
delegate: AccountView {
|
2020-06-11 21:23:27 +00:00
|
|
|
username: model.username
|
2020-12-21 15:53:32 +00:00
|
|
|
identicon: model.thumbnailImage || model.identicon
|
2021-07-26 07:17:49 +00:00
|
|
|
keyUid: model.keyUid
|
|
|
|
address: model.address || ''
|
|
|
|
isSelected: function (index, keyUid) {
|
|
|
|
return accountsView.isSelected(index, keyUid)
|
2020-06-13 15:17:54 +00:00
|
|
|
}
|
2020-06-11 21:23:27 +00:00
|
|
|
onAccountSelect: function (index) {
|
2021-07-26 07:17:49 +00:00
|
|
|
accountsView.onAccountSelect(index)
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
2020-06-03 20:50:59 +00:00
|
|
|
}
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
2020-06-03 20:50:59 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
2020-06-03 20:50:59 +00:00
|
|
|
}
|
2020-06-11 21:23:27 +00:00
|
|
|
##^##*/
|