74 lines
1.8 KiB
QML
74 lines
1.8 KiB
QML
// Copyright 2019 miruka
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
import "../Base"
|
|
import "../utils.js" as Utils
|
|
|
|
HRectangle {
|
|
property string name: ""
|
|
property var imageUrl: null
|
|
property var toolTipImageUrl: imageUrl
|
|
property int dimension: theme.avatar.size
|
|
property bool hidden: false
|
|
|
|
onImageUrlChanged: if (imageUrl) { avatarImage.source = imageUrl }
|
|
|
|
onToolTipImageUrlChanged: if (imageUrl) {
|
|
avatarToolTipImage.source = toolTipImageUrl
|
|
}
|
|
|
|
width: dimension
|
|
height: hidden ? 1 : dimension
|
|
implicitWidth: dimension
|
|
implicitHeight: hidden ? 1 : dimension
|
|
|
|
opacity: hidden ? 0 : 1
|
|
|
|
color: name ? Utils.avatarColor(name) : theme.avatar.background.unknown
|
|
|
|
HLabel {
|
|
z: 1
|
|
anchors.centerIn: parent
|
|
visible: ! hidden && ! imageUrl
|
|
|
|
text: name ? name.charAt(0) : "?"
|
|
color: theme.avatar.letter
|
|
font.pixelSize: parent.height / 1.4
|
|
}
|
|
|
|
HImage {
|
|
z: 2
|
|
id: avatarImage
|
|
anchors.fill: parent
|
|
visible: ! hidden && imageUrl
|
|
fillMode: Image.PreserveAspectCrop
|
|
|
|
sourceSize.width: dimension
|
|
sourceSize.height: dimension
|
|
|
|
MouseArea {
|
|
id: imageMouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
propagateComposedEvents: true
|
|
}
|
|
|
|
HToolTip {
|
|
id: avatarToolTip
|
|
visible: imageMouseArea.containsMouse
|
|
width: 128
|
|
height: 128
|
|
|
|
HImage {
|
|
id: avatarToolTipImage
|
|
sourceSize.width: avatarToolTip.width
|
|
sourceSize.height: avatarToolTip.height
|
|
width: sourceSize.width
|
|
height: sourceSize.height
|
|
}
|
|
}
|
|
}
|
|
}
|