Files
yacreader/YACReaderLibrary/qml/InfoTick.qml
2026-02-19 18:06:32 +01:00

24 lines
396 B
QML

import QtQuick
import QtQuick.Controls.impl
Item {
property bool read
signal readChangedByUser(bool read)
MouseArea {
anchors.fill: read_compact
onClicked: {
readChangedByUser(!read);
}
}
ColorImage {
id: read_compact
source: "info-tick.svg"
color: read ? readTickCheckedColor : readTickUncheckedColor
}
}