summaryrefslogtreecommitdiffstats
path: root/resources/qml/delegates/ImageMessage.qml
blob: 2ed41a176b3b089f0b71ff02bf2ff6e06be041e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick 2.6

import com.github.nheko 1.0

Item {
	width: 300
	height: 300 * eventData.proportionalHeight

	Image {
		id: img
		anchors.fill: parent

		source: eventData.url.replace("mxc://", "image://MxcImage/")
		asynchronous: true
		fillMode: Image.PreserveAspectFit

		MouseArea {
			enabled: eventData.type == MtxEvent.ImageMessage
			anchors.fill: parent
			onClicked: timelineManager.openImageOverlay(eventData.url, eventData.filename, eventData.mimetype, eventData.type)
		}
	}
}