matrixion/resources/qml/dialogs/ReadReceipts.qml

124 lines
4 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
import ".."
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import im.nheko 1.0
ApplicationWindow {
id: readReceiptsRoot
property ReadReceiptsProxy readReceipts
property Room room
2023-10-31 05:11:03 +03:00
color: palette.window
flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
height: 380
minimumHeight: 380
minimumWidth: headerTitle.width + 2 * Nheko.paddingMedium
2023-10-31 05:11:03 +03:00
width: 340
footer: DialogButtonBox {
standardButtons: DialogButtonBox.Ok
onAccepted: readReceiptsRoot.close()
}
2021-07-25 01:38:22 +03:00
Shortcut {
sequence: StandardKey.Cancel
2023-10-31 05:11:03 +03:00
2021-07-25 01:38:22 +03:00
onActivated: readReceiptsRoot.close()
}
ColumnLayout {
anchors.fill: parent
anchors.margins: Nheko.paddingMedium
spacing: Nheko.paddingMedium
Label {
id: headerTitle
Layout.alignment: Qt.AlignCenter
2023-10-31 05:11:03 +03:00
color: palette.text
font.pointSize: fontMetrics.font.pointSize * 1.5
2023-10-31 05:11:03 +03:00
text: qsTr("Read receipts")
}
ScrollView {
Layout.fillHeight: true
Layout.fillWidth: true
2023-10-31 05:11:03 +03:00
Layout.minimumHeight: 200
ScrollBar.horizontal.visible: false
padding: Nheko.paddingMedium
ListView {
id: readReceiptsList
boundsBehavior: Flickable.StopAtBounds
2023-10-31 05:11:03 +03:00
clip: true
model: readReceipts
2021-11-06 02:35:13 +03:00
delegate: ItemDelegate {
2021-11-13 22:05:27 +03:00
id: del
2023-10-31 05:11:03 +03:00
ToolTip.text: model.mxid
ToolTip.visible: hovered
2021-11-13 22:38:22 +03:00
height: receiptLayout.implicitHeight + Nheko.paddingSmall * 2
2021-11-06 02:35:13 +03:00
hoverEnabled: true
2023-10-31 05:11:03 +03:00
padding: Nheko.paddingMedium
width: ListView.view.width
2021-11-13 22:05:27 +03:00
background: Rectangle {
color: del.hovered ? palette.dark : readReceiptsRoot.color
2021-11-13 22:05:27 +03:00
}
2023-10-31 05:11:03 +03:00
onClicked: room.openUserProfile(model.mxid)
2021-11-06 02:35:13 +03:00
RowLayout {
id: receiptLayout
2021-11-16 03:04:33 +03:00
anchors.fill: parent
anchors.margins: Nheko.paddingSmall
2023-10-31 05:11:03 +03:00
spacing: Nheko.paddingMedium
2021-11-06 02:35:13 +03:00
Avatar {
id: avatar
2023-10-26 17:43:09 +03:00
Layout.preferredHeight: Nheko.avatarSize
2023-10-31 05:11:03 +03:00
Layout.preferredWidth: Nheko.avatarSize
2021-11-06 02:35:13 +03:00
displayName: model.displayName
2021-11-09 05:26:35 +03:00
enabled: false
2023-10-31 05:11:03 +03:00
url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
userid: model.mxid
2021-11-06 02:35:13 +03:00
}
ColumnLayout {
Layout.fillWidth: true
2023-10-31 05:11:03 +03:00
spacing: Nheko.paddingSmall
ElidedLabel {
2023-10-31 05:11:03 +03:00
Layout.fillWidth: true
color: TimelineManager.userColor(model ? model.mxid : "", palette.window)
elideWidth: del.width - Nheko.paddingMedium - avatar.width
2023-10-31 05:11:03 +03:00
font.pointSize: fontMetrics.font.pointSize
fullText: model.displayName
}
ElidedLabel {
2023-10-31 05:11:03 +03:00
Layout.fillWidth: true
color: palette.buttonText
elideWidth: del.width - Nheko.paddingMedium - avatar.width
2023-10-31 05:11:03 +03:00
font.pointSize: fontMetrics.font.pointSize * 0.9
fullText: model.timestamp
}
}
2021-11-06 02:35:13 +03:00
}
2023-06-19 02:38:40 +03:00
NhekoCursorShape {
2021-11-06 02:35:13 +03:00
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
}
}
}
}
}