moment/src/qml/Chat/Timeline/EventFile.qml

29 lines
625 B
QML
Raw Normal View History

2019-09-15 07:48:53 +10:00
import QtQuick 2.12
import QtQuick.Layouts 1.12
import "../../Base"
HTile {
2019-09-15 08:52:43 +10:00
onLeftClicked: Qt.openUrlExternally(fileUrl)
onRightClicked: eventDelegate.openContextMenu()
onHoveredChanged:
eventDelegate.hoveredMediaTypeUrl =
hovered ? [EventDelegate.Media.File, fileUrl] : []
2019-09-15 07:48:53 +10:00
property url thumbnailUrl
property url fileUrl
property string fileTitle: ""
property int fileSize: 0
title.text: fileTitle || qsTr("Untitled file")
title.elide: Text.ElideMiddle
subtitle.text: CppUtils.formattedBytes(fileSize)
image: HIcon {
svgName: "download"
}
}