2019-09-07 23:22:07 +03:00
|
|
|
import QtQuick 2.6
|
2020-03-28 21:12:00 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2019-09-07 23:22:07 +03:00
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: avatar
|
|
|
|
width: 48
|
|
|
|
height: 48
|
2020-05-26 23:27:05 +03:00
|
|
|
radius: settings.avatarCircles ? height/2 : 3
|
2019-09-07 23:22:07 +03:00
|
|
|
|
|
|
|
property alias url: img.source
|
2020-06-08 02:45:24 +03:00
|
|
|
property string userid
|
2019-09-07 23:22:07 +03:00
|
|
|
property string displayName
|
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Label {
|
2019-09-07 23:22:07 +03:00
|
|
|
anchors.fill: parent
|
2020-01-21 22:41:09 +03:00
|
|
|
text: chat.model.escapeEmoji(String.fromCodePoint(displayName.codePointAt(0)))
|
|
|
|
textFormat: Text.RichText
|
2019-09-07 23:22:07 +03:00
|
|
|
font.pixelSize: avatar.height/2
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
2020-02-23 17:47:19 +03:00
|
|
|
visible: img.status != Image.Ready
|
2020-05-06 00:43:43 +03:00
|
|
|
color: colors.text
|
2019-09-07 23:22:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: img
|
|
|
|
anchors.fill: parent
|
|
|
|
asynchronous: true
|
2019-10-28 00:01:40 +03:00
|
|
|
fillMode: Image.PreserveAspectCrop
|
2019-11-03 03:17:40 +03:00
|
|
|
mipmap: true
|
|
|
|
smooth: false
|
|
|
|
|
|
|
|
sourceSize.width: avatar.width
|
|
|
|
sourceSize.height: avatar.height
|
2019-09-07 23:22:07 +03:00
|
|
|
|
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: OpacityMask {
|
|
|
|
maskSource: Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
width: avatar.width
|
|
|
|
height: avatar.height
|
2020-05-26 23:27:05 +03:00
|
|
|
radius: settings.avatarCircles ? height/2 : 3
|
2019-09-07 23:22:07 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-08 02:45:24 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.bottom: avatar.bottom
|
|
|
|
anchors.right: avatar.right
|
|
|
|
|
|
|
|
height: avatar.height / 6
|
|
|
|
width: height
|
|
|
|
radius: settings.avatarCircles ? height / 2 : height / 4
|
|
|
|
color: switch (timelineManager.userPresence(userid)) {
|
|
|
|
case "online": return "#00cc66"
|
|
|
|
case "unavailable": return "#ff9933"
|
|
|
|
case "offline": return "#a82353"
|
|
|
|
default: "transparent"
|
|
|
|
}
|
2019-09-07 23:22:07 +03:00
|
|
|
}
|
2020-06-08 02:45:24 +03:00
|
|
|
|
2020-05-06 00:43:43 +03:00
|
|
|
color: colors.base
|
2019-09-07 23:22:07 +03:00
|
|
|
}
|