2019-12-19 22:46:16 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-07-13 08:02:14 +10:00
|
|
|
import QtQuick 2.12
|
2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick.Controls 2.12
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-08-28 12:46:31 +10:00
|
|
|
Rectangle {
|
2019-07-14 10:15:20 +10:00
|
|
|
id: avatar
|
2020-03-23 03:50:10 +11:00
|
|
|
implicitWidth: implicitHeight
|
|
|
|
implicitHeight:
|
|
|
|
compact ?
|
|
|
|
theme.controls.avatar.compactSize :
|
|
|
|
theme.controls.avatar.size
|
|
|
|
|
2020-03-16 05:27:10 +11:00
|
|
|
radius: theme.controls.avatar.radius
|
2019-07-14 10:15:20 +10:00
|
|
|
|
2019-12-18 08:59:53 +11:00
|
|
|
color: avatarImage.visible ? "transparent" : utils.hsluv(
|
|
|
|
name ? utils.hueFrom(name) : 0,
|
2019-07-24 16:14:34 +10:00
|
|
|
name ? theme.controls.avatar.background.saturation : 0,
|
|
|
|
theme.controls.avatar.background.lightness,
|
|
|
|
theme.controls.avatar.background.opacity
|
|
|
|
)
|
2019-04-29 01:32:02 +10:00
|
|
|
|
2020-03-16 05:14:05 +11:00
|
|
|
|
2020-03-23 03:50:10 +11:00
|
|
|
property bool compact: false
|
|
|
|
|
2019-11-04 04:48:12 +11:00
|
|
|
property string name
|
|
|
|
property alias mxc: avatarImage.mxc
|
2020-03-10 02:46:08 +11:00
|
|
|
property alias title: avatarImage.title
|
2019-11-04 04:48:12 +11:00
|
|
|
|
|
|
|
property alias toolTipMxc: avatarToolTipImage.mxc
|
|
|
|
property alias sourceOverride: avatarImage.sourceOverride
|
|
|
|
property alias toolTipSourceOverride: avatarToolTipImage.sourceOverride
|
|
|
|
property alias fillMode: avatarImage.fillMode
|
|
|
|
property alias animate: avatarImage.animate
|
|
|
|
|
|
|
|
readonly property alias hovered: hoverHandler.hovered
|
2020-03-16 05:14:05 +11:00
|
|
|
readonly property alias circleRadius: avatarImage.circleRadius
|
|
|
|
|
2019-11-04 04:48:12 +11:00
|
|
|
|
2020-03-22 05:47:43 +11:00
|
|
|
Behavior on color { HColorAnimation {} }
|
|
|
|
|
2019-04-29 01:32:02 +10:00
|
|
|
HLabel {
|
|
|
|
z: 1
|
|
|
|
anchors.centerIn: parent
|
2019-07-24 16:14:34 +10:00
|
|
|
visible: ! avatarImage.visible
|
2019-04-29 01:32:02 +10:00
|
|
|
|
2019-05-12 05:52:56 +10:00
|
|
|
text: name ? name.charAt(0) : "?"
|
2019-04-29 01:32:02 +10:00
|
|
|
font.pixelSize: parent.height / 1.4
|
2019-07-24 16:14:34 +10:00
|
|
|
|
2019-12-18 08:59:53 +11:00
|
|
|
color: utils.hsluv(
|
|
|
|
name ? utils.hueFrom(name) : 0,
|
2019-07-24 16:14:34 +10:00
|
|
|
name ? theme.controls.avatar.letter.saturation : 0,
|
|
|
|
theme.controls.avatar.letter.lightness,
|
|
|
|
theme.controls.avatar.letter.opacity
|
|
|
|
)
|
2020-03-22 05:47:43 +11:00
|
|
|
|
|
|
|
Behavior on color { HColorAnimation {} }
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
|
|
|
|
2019-11-04 04:48:12 +11:00
|
|
|
HMxcImage {
|
2019-07-10 11:46:21 +10:00
|
|
|
id: avatarImage
|
2019-03-22 14:28:14 +11:00
|
|
|
anchors.fill: parent
|
2019-12-16 04:02:40 +11:00
|
|
|
showProgressBar: false
|
2019-11-04 04:48:12 +11:00
|
|
|
visible: Boolean(sourceOverride || mxc)
|
2019-07-14 10:15:20 +10:00
|
|
|
z: 2
|
2019-11-04 04:48:12 +11:00
|
|
|
sourceSize.width: parent.width
|
|
|
|
sourceSize.height: parent.height
|
2019-07-16 10:10:43 +10:00
|
|
|
fillMode: Image.PreserveAspectCrop
|
2019-09-13 06:16:35 +10:00
|
|
|
animate: false
|
2020-03-16 05:14:05 +11:00
|
|
|
radius: parent.radius
|
2019-07-10 12:48:59 +10:00
|
|
|
|
2019-08-22 23:27:26 +10:00
|
|
|
HoverHandler { id: hoverHandler }
|
2019-07-10 12:48:59 +10:00
|
|
|
|
2019-07-10 12:51:52 +10:00
|
|
|
HToolTip {
|
2019-07-10 13:42:03 +10:00
|
|
|
id: avatarToolTip
|
2019-12-12 06:16:14 +11:00
|
|
|
visible: ! avatarImage.broken &&
|
|
|
|
avatarImage.status !== Image.Error &&
|
2019-12-13 21:21:12 +11:00
|
|
|
avatarImage.width < dimension * 0.75 &&
|
2019-12-12 06:16:14 +11:00
|
|
|
(toolTipSourceOverride || toolTipMxc) &&
|
2019-11-04 04:48:12 +11:00
|
|
|
hoverHandler.hovered
|
2019-09-13 09:54:31 +10:00
|
|
|
delay: 1000
|
2019-09-13 10:04:46 +10:00
|
|
|
backgroundColor: theme.controls.avatar.hoveredImage.background
|
2019-09-13 09:54:31 +10:00
|
|
|
|
|
|
|
readonly property int dimension: Math.min(
|
2019-07-16 22:10:37 +10:00
|
|
|
mainUI.width / 1.25,
|
|
|
|
mainUI.height / 1.25,
|
2019-09-13 10:04:46 +10:00
|
|
|
theme.controls.avatar.hoveredImage.size +
|
|
|
|
background.border.width * 2,
|
2019-07-16 22:10:37 +10:00
|
|
|
)
|
2019-07-16 06:14:08 +10:00
|
|
|
|
2019-11-04 04:48:12 +11:00
|
|
|
contentItem: HMxcImage {
|
2019-07-10 12:48:59 +10:00
|
|
|
id: avatarToolTipImage
|
2019-07-14 10:15:20 +10:00
|
|
|
fillMode: Image.PreserveAspectCrop
|
2019-11-04 04:48:12 +11:00
|
|
|
mxc: avatarImage.mxc
|
2020-03-10 02:46:08 +11:00
|
|
|
title: avatarImage.title
|
2019-09-13 09:54:31 +10:00
|
|
|
|
|
|
|
sourceSize.width: avatarToolTip.dimension
|
|
|
|
sourceSize.height: avatarToolTip.dimension
|
|
|
|
width: avatarToolTip.dimension
|
|
|
|
height: avatarToolTip.dimension
|
2019-07-10 12:48:59 +10:00
|
|
|
}
|
|
|
|
}
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
|
|
|
}
|