yacreader/YACReaderLibrary/qml/InfoTick.qml
Luis Ángel San Martín 2a136e3ea3 Merge - 9.0.0 release
2018-02-18 10:35:24 +01:00

30 lines
516 B
QML

import QtQuick 2.6
import QtGraphicalEffects 1.0
Item {
property bool read
signal readChangedByUser(bool read)
MouseArea {
anchors.fill: read_compact
onClicked: {
readChangedByUser(!read);
}
}
Image {
id: read_compact
source: "info-tick.png"
}
ColorOverlay {
anchors.fill: read_compact
source: read_compact
color: read ? readTickCheckedColor : readTickUncheckedColor
}
}