mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
42 lines
1.3 KiB
QML
42 lines
1.3 KiB
QML
import qs.modules.common
|
|
import QtQuick
|
|
|
|
Rectangle {
|
|
id: root
|
|
property string key
|
|
|
|
property real horizontalPadding: 6
|
|
property real verticalPadding: 1
|
|
property real borderWidth: 1
|
|
property real extraBottomBorderWidth: 2
|
|
property color borderColor: Appearance.colors.colOnLayer0
|
|
property real borderRadius: 5
|
|
property color keyColor: Appearance.m3colors.m3surfaceContainerLow
|
|
implicitWidth: keyFace.implicitWidth + borderWidth * 2
|
|
implicitHeight: keyFace.implicitHeight + borderWidth * 2 + extraBottomBorderWidth
|
|
radius: borderRadius
|
|
color: borderColor
|
|
|
|
Rectangle {
|
|
id: keyFace
|
|
anchors {
|
|
fill: parent
|
|
topMargin: borderWidth
|
|
leftMargin: borderWidth
|
|
rightMargin: borderWidth
|
|
bottomMargin: extraBottomBorderWidth + borderWidth
|
|
}
|
|
implicitWidth: keyText.implicitWidth + horizontalPadding * 2
|
|
implicitHeight: keyText.implicitHeight + verticalPadding * 2
|
|
color: keyColor
|
|
radius: borderRadius - borderWidth
|
|
|
|
StyledText {
|
|
id: keyText
|
|
anchors.centerIn: parent
|
|
font.family: Appearance.font.family.monospace
|
|
font.pixelSize: Appearance.font.pixelSize.smaller
|
|
text: key
|
|
}
|
|
}
|
|
}
|