nheko/resources/qml/delegates/FileMessage.qml

67 lines
1.2 KiB
QML
Raw Normal View History

2019-10-04 01:10:46 +02:00
import QtQuick 2.6
import QtQuick.Layouts 1.2
2019-10-04 01:10:46 +02:00
2020-04-09 00:10:08 +02:00
Item {
2019-10-05 23:11:20 +02:00
height: row.height + 24
2019-10-27 22:01:40 +01:00
width: parent ? parent.width : undefined
2019-10-04 01:10:46 +02:00
2019-10-05 23:11:20 +02:00
RowLayout {
2019-10-04 01:10:46 +02:00
id: row
2019-10-05 23:11:20 +02:00
anchors.centerIn: parent
width: parent.width - 24
2019-10-04 01:10:46 +02:00
spacing: 15
Rectangle {
2019-10-05 23:11:20 +02:00
id: button
2019-10-04 01:10:46 +02: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.timeline.saveMedia(model.data.id)
2019-10-04 01:10:46 +02:00
cursorShape: Qt.PointingHandCursor
}
}
2019-10-05 23:11:20 +02:00
ColumnLayout {
id: col
Text {
id: filename
2019-10-05 23:11:20 +02:00
Layout.fillWidth: true
text: model.data.body
2019-10-05 23:11:20 +02:00
textFormat: Text.PlainText
elide: Text.ElideRight
2019-10-04 01:10:46 +02:00
color: colors.text
}
2019-10-05 23:11:20 +02:00
Text {
id: filesize
2019-10-05 23:11:20 +02:00
Layout.fillWidth: true
text: model.data.filesize
2019-10-05 23:11:20 +02:00
textFormat: Text.PlainText
elide: Text.ElideRight
2019-10-04 01:10:46 +02:00
color: colors.text
}
}
}
Rectangle {
color: colors.dark
z: -1
radius: 10
height: row.height + 24
width: 44 + 24 + 24 + Math.max(Math.min(filesize.width, filesize.implicitWidth), Math.min(filename.width, filename.implicitWidth))
}
2019-10-04 01:10:46 +02:00
}