mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
96f791daf1
See also: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/ https://hynek.me/til/copyright-years/
51 lines
1.7 KiB
QML
51 lines
1.7 KiB
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import im.nheko 1.0
|
|
|
|
Rectangle{
|
|
|
|
height: redactedLayout.implicitHeight + Nheko.paddingSmall
|
|
implicitWidth: redactedLayout.implicitWidth + 2 * Nheko.paddingMedium
|
|
width: Math.min(parent.width,implicitWidth+1)
|
|
radius: fontMetrics.lineSpacing / 2 + 2 * Nheko.paddingSmall
|
|
color: Nheko.colors.alternateBase
|
|
property int metadataWidth
|
|
property bool fitsMetadata: parent.width - redactedLayout.width > metadataWidth + 4
|
|
|
|
RowLayout {
|
|
id: redactedLayout
|
|
anchors.centerIn: parent
|
|
width: parent.width - 2 * Nheko.paddingMedium
|
|
spacing: Nheko.paddingSmall
|
|
|
|
Image {
|
|
id: trashImg
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
|
|
Layout.preferredWidth: fontMetrics.font.pixelSize
|
|
Layout.preferredHeight: fontMetrics.font.pixelSize
|
|
source: "image://colorimage/:/icons/icons/ui/delete.svg?" + Nheko.colors.text
|
|
}
|
|
Label {
|
|
id: redactedLabel
|
|
Layout.margins: 0
|
|
Layout.alignment: Qt.AlignVCenter | Qt.AlignRight
|
|
Layout.preferredWidth: implicitWidth
|
|
Layout.fillWidth: true
|
|
property var redactedPair: room.formatRedactedEvent(eventId)
|
|
text: redactedPair["first"]
|
|
wrapMode: Label.WordWrap
|
|
color: Nheko.colors.text
|
|
|
|
ToolTip.text: redactedPair["second"]
|
|
ToolTip.visible: hh.hovered
|
|
HoverHandler {
|
|
id: hh
|
|
}
|
|
}
|
|
}
|
|
}
|