2025-10-11 02:30:58 +02:00
|
|
|
import QtQuick 6.8
|
2025-10-12 03:10:14 +02:00
|
|
|
import QtQuick.Controls 6.8
|
|
|
|
|
import QtQuick.Controls.Basic 6.8
|
2025-10-11 02:30:58 +02:00
|
|
|
|
2025-10-12 03:10:14 +02:00
|
|
|
CheckBox {
|
2025-10-11 17:55:56 +02:00
|
|
|
implicitWidth: 14
|
|
|
|
|
implicitHeight: 14
|
2025-10-11 02:30:58 +02:00
|
|
|
contentItem: Rectangle {
|
2025-10-11 17:55:56 +02:00
|
|
|
anchors.fill: parent
|
2025-10-11 02:30:58 +02:00
|
|
|
radius: 2
|
|
|
|
|
color: parent.checked ? (parent.hovered ? Colors.primaryAlt : Colors.primary) : "#fff"
|
2025-10-12 03:10:14 +02:00
|
|
|
border.color: parent.checked ? (parent.hovered ? Colors.primaryAlt : Colors.primary) : "#000"
|
2025-10-11 02:30:58 +02:00
|
|
|
border.width: 1
|
|
|
|
|
}
|
|
|
|
|
}
|