2019-09-08 13:44:46 +03:00
|
|
|
import QtQuick 2.6
|
|
|
|
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2019-10-06 02:44:02 +03:00
|
|
|
|
2019-09-08 13:44:46 +03:00
|
|
|
Item {
|
2019-10-28 00:01:40 +03:00
|
|
|
width: Math.min(parent ? parent.width : undefined, model.width)
|
2019-10-09 01:36:03 +03:00
|
|
|
height: width * model.proportionalHeight
|
2019-09-08 13:44:46 +03:00
|
|
|
|
|
|
|
Image {
|
2019-09-28 12:07:58 +03:00
|
|
|
id: img
|
2019-09-08 13:44:46 +03:00
|
|
|
anchors.fill: parent
|
|
|
|
|
2019-10-08 21:55:09 +03:00
|
|
|
source: model.url.replace("mxc://", "image://MxcImage/")
|
2019-09-08 13:44:46 +03:00
|
|
|
asynchronous: true
|
|
|
|
fillMode: Image.PreserveAspectFit
|
2019-09-28 12:07:58 +03:00
|
|
|
|
|
|
|
MouseArea {
|
2019-10-08 21:55:09 +03:00
|
|
|
enabled: model.type == MtxEvent.ImageMessage
|
2019-09-28 12:07:58 +03:00
|
|
|
anchors.fill: parent
|
2019-10-08 21:55:09 +03:00
|
|
|
onClicked: timelineManager.openImageOverlay(model.url, model.filename, model.mimetype, model.type)
|
2019-09-28 12:07:58 +03:00
|
|
|
}
|
2019-09-08 13:44:46 +03:00
|
|
|
}
|
|
|
|
}
|