nheko/resources/qml/Avatar.qml

48 lines
993 B
QML
Raw Normal View History

2019-09-07 22:22:07 +02:00
import QtQuick 2.6
import QtQuick.Controls 2.3
2019-09-07 22:22:07 +02:00
import QtGraphicalEffects 1.0
Rectangle {
id: avatar
width: 48
height: 48
radius: settings.avatar_circles ? height/2 : 3
property alias url: img.source
property string displayName
Label {
2019-09-07 22:22:07 +02:00
anchors.fill: parent
text: chat.model.escapeEmoji(String.fromCodePoint(displayName.codePointAt(0)))
textFormat: Text.RichText
2019-09-07 22:22:07 +02:00
font.pixelSize: avatar.height/2
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
visible: img.status != Image.Ready
2020-05-05 23:43:43 +02:00
color: colors.text
2019-09-07 22:22:07 +02:00
}
Image {
id: img
anchors.fill: parent
asynchronous: true
2019-10-27 22:01:40 +01:00
fillMode: Image.PreserveAspectCrop
mipmap: true
smooth: false
sourceSize.width: avatar.width
sourceSize.height: avatar.height
2019-09-07 22:22:07 +02:00
layer.enabled: true
layer.effect: OpacityMask {
maskSource: Rectangle {
anchors.fill: parent
width: avatar.width
height: avatar.height
radius: settings.avatar_circles ? height/2 : 3
}
}
}
2020-05-05 23:43:43 +02:00
color: colors.base
2019-09-07 22:22:07 +02:00
}