2019-07-08 13:52:41 +10:00
|
|
|
// Copyright 2019 miruka
|
|
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
|
2019-03-22 14:28:14 +11:00
|
|
|
import QtQuick 2.7
|
2019-07-10 12:48:59 +10:00
|
|
|
import QtQuick.Controls 2.0
|
2019-04-29 05:18:36 +10:00
|
|
|
import "../Base"
|
2019-07-04 12:31:29 +10:00
|
|
|
import "../utils.js" as Utils
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-07-13 07:06:37 +10:00
|
|
|
HRectangle {
|
2019-07-07 14:24:23 +10:00
|
|
|
property string name: ""
|
2019-05-12 05:52:56 +10:00
|
|
|
property var imageUrl: null
|
2019-07-10 12:48:59 +10:00
|
|
|
property var toolTipImageUrl: imageUrl
|
2019-07-07 07:50:55 +10:00
|
|
|
property int dimension: theme.avatar.size
|
2019-05-12 05:52:56 +10:00
|
|
|
property bool hidden: false
|
2019-04-19 16:07:01 +10:00
|
|
|
|
2019-07-10 11:46:21 +10:00
|
|
|
onImageUrlChanged: if (imageUrl) { avatarImage.source = imageUrl }
|
|
|
|
|
2019-07-10 12:48:59 +10:00
|
|
|
onToolTipImageUrlChanged: if (imageUrl) {
|
|
|
|
avatarToolTipImage.source = toolTipImageUrl
|
|
|
|
}
|
|
|
|
|
2019-04-29 01:32:02 +10:00
|
|
|
width: dimension
|
|
|
|
height: hidden ? 1 : dimension
|
2019-04-29 04:20:30 +10:00
|
|
|
implicitWidth: dimension
|
|
|
|
implicitHeight: hidden ? 1 : dimension
|
|
|
|
|
2019-04-29 01:32:02 +10:00
|
|
|
opacity: hidden ? 0 : 1
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-07-07 07:50:55 +10:00
|
|
|
color: name ? Utils.avatarColor(name) : theme.avatar.background.unknown
|
2019-04-29 01:32:02 +10:00
|
|
|
|
|
|
|
HLabel {
|
|
|
|
z: 1
|
|
|
|
anchors.centerIn: parent
|
2019-07-10 11:46:21 +10:00
|
|
|
visible: ! hidden && ! imageUrl
|
2019-04-29 01:32:02 +10:00
|
|
|
|
2019-05-12 05:52:56 +10:00
|
|
|
text: name ? name.charAt(0) : "?"
|
2019-07-07 07:50:55 +10:00
|
|
|
color: theme.avatar.letter
|
2019-04-29 01:32:02 +10:00
|
|
|
font.pixelSize: parent.height / 1.4
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
|
|
|
|
2019-04-29 01:32:02 +10:00
|
|
|
HImage {
|
|
|
|
z: 2
|
2019-07-10 11:46:21 +10:00
|
|
|
id: avatarImage
|
2019-03-22 14:28:14 +11:00
|
|
|
anchors.fill: parent
|
2019-07-10 11:46:21 +10:00
|
|
|
visible: ! hidden && imageUrl
|
2019-03-22 14:28:14 +11:00
|
|
|
fillMode: Image.PreserveAspectCrop
|
2019-07-10 11:46:21 +10:00
|
|
|
|
2019-04-29 01:32:02 +10:00
|
|
|
sourceSize.width: dimension
|
2019-07-10 11:46:21 +10:00
|
|
|
sourceSize.height: dimension
|
2019-07-10 12:48:59 +10:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: imageMouseArea
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
2019-07-10 13:49:59 +10:00
|
|
|
propagateComposedEvents: true
|
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-07-10 12:48:59 +10:00
|
|
|
visible: imageMouseArea.containsMouse
|
2019-07-10 13:42:03 +10:00
|
|
|
width: 128
|
|
|
|
height: 128
|
2019-07-10 12:48:59 +10:00
|
|
|
|
|
|
|
HImage {
|
|
|
|
id: avatarToolTipImage
|
2019-07-10 13:42:03 +10:00
|
|
|
sourceSize.width: avatarToolTip.width
|
|
|
|
sourceSize.height: avatarToolTip.height
|
|
|
|
width: sourceSize.width
|
|
|
|
height: sourceSize.height
|
2019-07-10 12:48:59 +10:00
|
|
|
}
|
|
|
|
}
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
|
|
|
}
|