mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
3.8 KiB
132 lines
3.8 KiB
3 years ago
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
||
|
//
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
3 years ago
|
import ".."
|
||
3 years ago
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.15
|
||
|
import QtQuick.Layouts 1.15
|
||
|
import im.nheko 1.0
|
||
|
|
||
|
ApplicationWindow {
|
||
|
id: readReceiptsRoot
|
||
|
|
||
3 years ago
|
property ReadReceiptsProxy readReceipts
|
||
3 years ago
|
property Room room
|
||
3 years ago
|
|
||
|
height: 380
|
||
|
width: 340
|
||
|
minimumHeight: 380
|
||
|
minimumWidth: headerTitle.width + 2 * Nheko.paddingMedium
|
||
|
palette: Nheko.colors
|
||
|
color: Nheko.colors.window
|
||
3 years ago
|
flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
|
||
3 years ago
|
Component.onCompleted: Nheko.reparent(readReceiptsRoot)
|
||
3 years ago
|
|
||
3 years ago
|
Shortcut {
|
||
|
sequence: StandardKey.Cancel
|
||
|
onActivated: readReceiptsRoot.close()
|
||
|
}
|
||
|
|
||
3 years ago
|
ColumnLayout {
|
||
|
anchors.fill: parent
|
||
|
anchors.margins: Nheko.paddingMedium
|
||
|
spacing: Nheko.paddingMedium
|
||
|
|
||
|
Label {
|
||
|
id: headerTitle
|
||
|
|
||
3 years ago
|
color: Nheko.colors.text
|
||
3 years ago
|
Layout.alignment: Qt.AlignCenter
|
||
|
text: qsTr("Read receipts")
|
||
|
font.pointSize: fontMetrics.font.pointSize * 1.5
|
||
|
}
|
||
|
|
||
|
ScrollView {
|
||
|
palette: Nheko.colors
|
||
|
padding: Nheko.paddingMedium
|
||
|
ScrollBar.horizontal.visible: false
|
||
|
Layout.fillHeight: true
|
||
|
Layout.minimumHeight: 200
|
||
|
Layout.fillWidth: true
|
||
|
|
||
|
ListView {
|
||
|
id: readReceiptsList
|
||
|
|
||
|
clip: true
|
||
|
spacing: Nheko.paddingMedium
|
||
|
boundsBehavior: Flickable.StopAtBounds
|
||
|
model: readReceipts
|
||
|
|
||
|
delegate: RowLayout {
|
||
|
spacing: Nheko.paddingMedium
|
||
|
|
||
|
Avatar {
|
||
|
width: Nheko.avatarSize
|
||
|
height: Nheko.avatarSize
|
||
|
userid: model.mxid
|
||
|
url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
|
||
|
displayName: model.displayName
|
||
3 years ago
|
onClicked: room.openUserProfile(model.mxid)
|
||
3 years ago
|
ToolTip.visible: avatarHover.hovered
|
||
|
ToolTip.text: model.mxid
|
||
|
|
||
|
HoverHandler {
|
||
|
id: avatarHover
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
ColumnLayout {
|
||
|
spacing: Nheko.paddingSmall
|
||
|
|
||
|
Label {
|
||
|
text: model.displayName
|
||
|
color: TimelineManager.userColor(model ? model.mxid : "", Nheko.colors.window)
|
||
|
font.pointSize: fontMetrics.font.pointSize
|
||
|
ToolTip.visible: displayNameHover.hovered
|
||
|
ToolTip.text: model.mxid
|
||
|
|
||
|
TapHandler {
|
||
3 years ago
|
onSingleTapped: room.openUserProfile(userId)
|
||
3 years ago
|
}
|
||
|
|
||
|
CursorShape {
|
||
|
anchors.fill: parent
|
||
|
cursorShape: Qt.PointingHandCursor
|
||
|
}
|
||
|
|
||
|
HoverHandler {
|
||
|
id: displayNameHover
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
Label {
|
||
|
text: model.timestamp
|
||
|
color: Nheko.colors.buttonText
|
||
|
font.pointSize: fontMetrics.font.pointSize * 0.9
|
||
|
}
|
||
|
|
||
|
Item {
|
||
|
Layout.fillHeight: true
|
||
|
Layout.fillWidth: true
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
3 years ago
|
footer: DialogButtonBox {
|
||
|
standardButtons: DialogButtonBox.Ok
|
||
|
onAccepted: readReceiptsRoot.close()
|
||
|
}
|
||
|
|
||
3 years ago
|
}
|