nheko/resources/qml/delegates/FileMessage.qml

99 lines
2.3 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import im.nheko
Control {
id: evRoot
2020-06-24 16:24:22 +02:00
required property string eventId
required property string filename
required property string filesize
padding: Settings.bubbles? 8 : 12
//Layout.preferredHeight: rowa.implicitHeight + padding
//Layout.maximumWidth: rowa.Layout.maximumWidth + metadataWidth + padding
property int metadataWidth: 0
property bool fitsMetadata: false
Layout.maximumWidth: rowa.Layout.maximumWidth + padding * 2
2020-10-08 21:11:21 +02:00
contentItem: RowLayout {
2023-06-06 00:29:46 +02:00
id: rowa
2020-10-08 21:11:21 +02:00
spacing: 16
2020-10-08 21:11:21 +02:00
Rectangle {
id: button
color: palette.light
2020-10-08 21:11:21 +02:00
radius: 22
height: 44
width: 44
Image {
id: img
2022-01-02 23:17:23 +01:00
height: 40
width: 40
sourceSize.height: 40
sourceSize.width: 40
2020-10-08 21:11:21 +02:00
anchors.centerIn: parent
2021-11-14 02:23:10 +01:00
source: "qrc:/icons/icons/ui/download.svg"
2020-10-08 21:11:21 +02:00
fillMode: Image.Pad
}
2021-02-14 01:28:28 +01:00
TapHandler {
onSingleTapped: room.saveMedia(eventId)
2021-04-11 22:24:39 +02:00
gesturePolicy: TapHandler.ReleaseWithinBounds
2021-02-14 01:28:28 +01:00
}
2023-06-19 01:38:40 +02:00
NhekoCursorShape {
2021-02-14 01:28:28 +01:00
anchors.fill: parent
2020-10-08 21:11:21 +02:00
cursorShape: Qt.PointingHandCursor
}
}
ColumnLayout {
id: col
Text {
id: filename_
2020-10-08 21:11:21 +02:00
Layout.fillWidth: true
Layout.maximumWidth: implicitWidth + 1
text: filename
2020-10-08 21:11:21 +02:00
textFormat: Text.PlainText
elide: Text.ElideRight
color: palette.text
2020-10-08 21:11:21 +02:00
}
Text {
id: filesize_
2020-10-08 21:11:21 +02:00
Layout.fillWidth: true
Layout.maximumWidth: implicitWidth + 1
text: filesize
2020-10-08 21:11:21 +02:00
textFormat: Text.PlainText
elide: Text.ElideRight
color: palette.text
2020-10-08 21:11:21 +02:00
}
}
}
background: Rectangle {
color: palette.alternateBase
radius: fontMetrics.lineSpacing / 2 + 2 * Nheko.paddingSmall
2022-02-14 21:07:03 +01:00
visible: !Settings.bubbles // the bubble in a bubble looks odd
2020-10-08 21:11:21 +02:00
}
2019-10-04 01:10:46 +02:00
}