fix(StatusListItem): various fixes w.r.t. sensor, icon size etc

This also exposes `statusListItemSubTitle` for more control over
it's appearance, if needed.
This commit is contained in:
Pascal Precht 2021-06-14 13:23:23 +02:00 committed by Michał Cieślak
parent 04e74609f8
commit 9085fe72d7
1 changed files with 8 additions and 2 deletions

View File

@ -26,11 +26,15 @@ Rectangle {
color: Theme.palette.primaryColor3
}
}
property StatusImageSettings image: StatusImageSettings {}
property StatusImageSettings image: StatusImageSettings {
width: 40
height: 40
}
property string label: ""
property alias sensor: sensor
property alias statusListItemTitle: statusListItemTitle
property alias statusListItemSubTitle: statusListItemSubTitle
property alias statusListItemComponentsSlot: statusListItemComponentsSlot
property list<Item> components
@ -47,7 +51,7 @@ Rectangle {
id: sensor
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
cursorShape: enabled ? Qt.PointingHandCursor : Qt.ArrowCursor
acceptedButtons: Qt.LeftButton | Qt.RightButton
hoverEnabled: true
@ -76,6 +80,8 @@ Rectangle {
id: statusRoundedImage
StatusRoundedImage {
image.source: statusListItem.image.source
image.height: statusListItem.image.height
image.width: statusListItem.image.width
}
}