Spectral/qml/component/ImageBubble.qml

39 lines
1001 B
QML
Raw Normal View History

2018-07-12 01:44:41 +00:00
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
2018-07-10 04:18:21 +00:00
AvatarContainer {
2018-07-10 04:18:21 +00:00
Rectangle {
id: messageRect
width: messageImage.implicitWidth + 24
height: messageImage.implicitHeight + 24
color: sentByMe ? "lightgrey" : Material.accent
DownloadableContent {
id: downloadable
width: messageImage.width
height: messageImage.height
2018-07-10 04:18:21 +00:00
anchors.centerIn: parent
Image {
id: messageImage
2018-07-17 08:18:50 +00:00
source: "image://mxc/" + (content.thumbnail_url ? content.thumbnail_url : content.url)
MouseArea {
anchors.fill: parent
hoverEnabled: true
propagateComposedEvents: true
ToolTip.visible: containsMouse
ToolTip.text: content.body
2018-07-10 04:18:21 +00:00
onClicked: downloadable.downloadAndOpen()
}
2018-07-10 04:18:21 +00:00
}
}
}
}