Files
qyouradio/QYRComponents/Button.qml

25 lines
600 B
QML
Raw Normal View History

2025-10-11 02:30:58 +02:00
import QtQuick 6.8
import QtQuick.Controls 6.8
import QtQuick.Controls.Basic 6.8
2025-10-11 02:30:58 +02:00
Button {
2025-10-11 02:30:58 +02:00
implicitHeight: 36
contentItem: Text {
text: parent.text
font.family: Colors.fontFamily
font.pointSize: Colors.fontSize.base
opacity: enabled ? 1.0 : 0.3
color: Colors.text;
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
}
2025-10-11 02:30:58 +02:00
background: Rectangle {
color: parent.hovered ? Colors.primaryAlt : Colors.primary
opacity: enabled ? 1 : 0.3
radius: 5
2025-10-11 02:30:58 +02:00
}
}