matrixion/resources/qml/delegates/FileMessage.qml

58 lines
1,003 B
QML
Raw Normal View History

2019-10-04 02:10:46 +03:00
import QtQuick 2.6
import QtQuick.Layouts 1.2
2019-10-04 02:10:46 +03:00
Rectangle {
radius: 10
color: colors.dark
2019-10-06 00:11:20 +03:00
height: row.height + 24
width: parent.width
2019-10-04 02:10:46 +03:00
2019-10-06 00:11:20 +03:00
RowLayout {
2019-10-04 02:10:46 +03:00
id: row
2019-10-06 00:11:20 +03:00
anchors.centerIn: parent
width: parent.width - 24
2019-10-04 02:10:46 +03:00
spacing: 15
Rectangle {
2019-10-06 00:11:20 +03:00
id: button
2019-10-04 02:10:46 +03:00
color: colors.light
radius: 22
height: 44
width: 44
Image {
id: img
anchors.centerIn: parent
source: "qrc:/icons/icons/ui/arrow-pointing-down.png"
fillMode: Image.Pad
}
MouseArea {
anchors.fill: parent
onClicked: timelineManager.saveMedia(eventData.url, eventData.filename, eventData.mimetype, eventData.type)
cursorShape: Qt.PointingHandCursor
}
}
2019-10-06 00:11:20 +03:00
ColumnLayout {
id: col
Text {
Layout.fillWidth: true
2019-10-04 02:10:46 +03:00
text: eventData.body
2019-10-06 00:11:20 +03:00
textFormat: Text.PlainText
elide: Text.ElideRight
2019-10-04 02:10:46 +03:00
color: colors.text
}
2019-10-06 00:11:20 +03:00
Text {
Layout.fillWidth: true
2019-10-04 02:10:46 +03:00
text: eventData.filesize
2019-10-06 00:11:20 +03:00
textFormat: Text.PlainText
elide: Text.ElideRight
2019-10-04 02:10:46 +03:00
color: colors.text
}
}
}
}