2018-07-12 01:44:41 +00:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.2
|
2018-07-10 06:34:17 +00:00
|
|
|
|
|
|
|
Row {
|
2018-08-13 14:44:32 +00:00
|
|
|
readonly property bool avatarVisible: !(sentByMe || (aboveAuthor === author && section === aboveSection))
|
2018-08-09 11:58:19 +00:00
|
|
|
|
2018-07-10 06:34:17 +00:00
|
|
|
spacing: 6
|
|
|
|
|
|
|
|
ImageStatus {
|
|
|
|
id: avatar
|
|
|
|
|
|
|
|
width: height
|
|
|
|
height: 40
|
|
|
|
round: false
|
2018-08-09 11:58:19 +00:00
|
|
|
visible: avatarVisible
|
2018-07-10 06:34:17 +00:00
|
|
|
source: author.avatarUrl != "" ? "image://mxc/" + author.avatarUrl : null
|
|
|
|
displayText: author.displayName
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
width: height
|
|
|
|
height: 40
|
|
|
|
color: "transparent"
|
2018-08-09 11:58:19 +00:00
|
|
|
visible: !avatarVisible
|
2018-07-10 06:34:17 +00:00
|
|
|
}
|
|
|
|
}
|