mirror of
https://github.com/monero-project/monero-gui
synced 2024-11-19 13:37:13 +01:00
StandardButton: indicating "focused" state
This commit is contained in:
parent
7973d0cbcc
commit
513f7ebc3a
@ -41,6 +41,7 @@ Item {
|
||||
property alias text: label.text
|
||||
signal clicked()
|
||||
|
||||
|
||||
Rectangle {
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
@ -51,6 +52,9 @@ Item {
|
||||
parent.enabled ? (buttonArea.pressed ? parent.shadowPressedColor : parent.shadowReleasedColor)
|
||||
: Qt.lighter(parent.shadowReleasedColor)
|
||||
}
|
||||
border.color: Qt.darker(parent.releasedColor)
|
||||
border.width: parent.focus ? 1 : 0
|
||||
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
@ -64,6 +68,8 @@ Item {
|
||||
|
||||
}
|
||||
//radius: 4
|
||||
|
||||
|
||||
}
|
||||
|
||||
Text {
|
||||
@ -92,4 +98,7 @@ Item {
|
||||
anchors.fill: parent
|
||||
onClicked: parent.clicked()
|
||||
}
|
||||
|
||||
Keys.onSpacePressed: clicked()
|
||||
Keys.onReturnPressed: clicked()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user