31 lines
582 B
QML
31 lines
582 B
QML
import QtQuick
|
|
import "../services" as S
|
|
import NovaStats as NS
|
|
|
|
Item {
|
|
id: root
|
|
|
|
readonly property bool hovered: _hover.hovered
|
|
signal tapped
|
|
|
|
width: parent?.width ?? 0
|
|
height: 32
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
anchors.leftMargin: 4
|
|
anchors.rightMargin: 4
|
|
color: root.hovered ? NS.ThemeService.base02 : "transparent"
|
|
radius: NS.ThemeService.radius
|
|
z: -1
|
|
}
|
|
|
|
HoverHandler {
|
|
id: _hover
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
|
|
TapHandler {
|
|
onTapped: root.tapped()
|
|
}
|
|
}
|