nheko/resources/qml/delegates/ImageMessage.qml

29 lines
739 B
QML
Raw Normal View History

import QtQuick 2.6
import im.nheko 1.0
2019-10-06 01:44:02 +02:00
Item {
property double tempWidth: Math.min(parent ? parent.width : undefined, model.data.width)
property double tempHeight: tempWidth * model.data.proportionalHeight
2019-12-13 02:16:12 +01:00
property bool tooHigh: tempHeight > chat.height - 40
height: tooHigh ? chat.height - 40 : tempHeight
width: tooHigh ? (chat.height - 40) / model.data.proportionalHeight : tempWidth
Image {
2019-09-28 11:07:58 +02:00
id: img
anchors.fill: parent
source: model.data.url.replace("mxc://", "image://MxcImage/")
asynchronous: true
fillMode: Image.PreserveAspectFit
2019-09-28 11:07:58 +02:00
MouseArea {
enabled: model.data.type == MtxEvent.ImageMessage
2019-09-28 11:07:58 +02:00
anchors.fill: parent
onClicked: timelineManager.openImageOverlay(model.data.url, model.data.id)
2019-09-28 11:07:58 +02:00
}
}
}