Spectral/qml/component/ImageBubble.qml

35 lines
884 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-08-04 20:35:31 +00:00
readonly property var downloadAndOpen: downloadable.downloadAndOpen
readonly property var saveFileAs: downloadable.saveFileAs
2018-07-10 04:18:21 +00:00
Rectangle {
id: messageRect
width: messageImage.width + 24
height: messageImage.height + 24
2018-07-10 04:18:21 +00:00
2018-07-20 04:14:02 +00:00
color: sentByMe ? background : Material.accent
2018-07-10 04:18:21 +00:00
DownloadableContent {
id: downloadable
width: messageImage.width
height: messageImage.height
2018-07-10 04:18:21 +00:00
anchors.centerIn: parent
AutoImage {
id: messageImage
2018-07-20 04:14:02 +00:00
z: -4
sourceSize: 128
2018-07-17 08:18:50 +00:00
source: "image://mxc/" + (content.thumbnail_url ? content.thumbnail_url : content.url)
2018-08-07 17:58:06 +00:00
onClicked: downloadAndOpen()
2018-07-10 04:18:21 +00:00
}
}
}
}