88 lines
2.6 KiB
QML
88 lines
2.6 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
|
|
import utils 1.0
|
|
|
|
import shared 1.0
|
|
import shared.panels 1.0
|
|
|
|
import StatusQ.Controls 0.1 as StatusQControls
|
|
|
|
Item {
|
|
id: modalBody
|
|
|
|
property string currency: "USD"
|
|
property alias tokenListModel: tokenListView.model
|
|
|
|
anchors.fill: parent
|
|
|
|
ButtonGroup {
|
|
id: currencyGroup
|
|
}
|
|
|
|
ListView {
|
|
id: tokenListView
|
|
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
|
|
clip: true
|
|
spacing: 10
|
|
ScrollBar.vertical: ScrollBar {
|
|
active: true
|
|
policy: tokenListView.contentHeight > tokenListView.height ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
|
|
}
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
delegate: Component {
|
|
Rectangle {
|
|
id: wrapper
|
|
property bool hovered: false
|
|
radius: Style.current.radius
|
|
color: modalBody.currency === key ? Style.current.secondaryBackground : (hovered ? Style.current.backgroundHover: Style.current.transparent)
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 0
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 10
|
|
width: parent.width
|
|
height: 52
|
|
|
|
StyledText {
|
|
text: name + " (" + code + ")"
|
|
font.pixelSize: 15
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Style.current.padding
|
|
}
|
|
|
|
StatusQControls.StatusRadioButton {
|
|
id: currencyRadioBtn
|
|
checked: currency === key
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Style.current.padding
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
ButtonGroup.group: currencyGroup
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
hoverEnabled: true
|
|
onEntered: {
|
|
wrapper.hovered = true
|
|
}
|
|
onExited: {
|
|
wrapper.hovered = false
|
|
}
|
|
onClicked: {
|
|
currencyRadioBtn.checked = !currencyRadioBtn.checked
|
|
modalBody.currency = key
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|