2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2021-10-14 08:04:15 +00:00
|
|
|
|
2022-07-14 11:03:36 +00:00
|
|
|
import StatusQ.Core 0.1
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2020-06-03 20:50:59 +00:00
|
|
|
|
2022-07-14 11:03:36 +00:00
|
|
|
import "../controls"
|
|
|
|
|
|
|
|
StatusListView {
|
2021-10-14 08:04:15 +00:00
|
|
|
id: accountsView
|
|
|
|
|
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
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
focus: true
|
2021-11-02 20:21:45 +00:00
|
|
|
spacing: Style.current.halfPadding
|
2020-06-03 20:50:59 +00:00
|
|
|
|
2021-10-14 08:04:15 +00:00
|
|
|
delegate: AccountViewDelegate {
|
|
|
|
username: model.username
|
2022-03-30 15:30:28 +00:00
|
|
|
image: model.thumbnailImage
|
2021-07-26 07:17:49 +00:00
|
|
|
keyUid: model.keyUid
|
|
|
|
address: model.address || ''
|
2022-04-07 19:02:54 +00:00
|
|
|
colorHash: model.colorHash
|
|
|
|
colorId: model.colorId
|
2021-10-14 08:04:15 +00:00
|
|
|
isSelected: function (index, keyUid) {
|
|
|
|
return accountsView.isSelected(index, keyUid)
|
2020-06-13 15:17:54 +00:00
|
|
|
}
|
2021-10-14 08:04:15 +00:00
|
|
|
onAccountSelect: function (index) {
|
|
|
|
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
|
|
|
}
|