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/
54 lines
1.4 KiB
QML
54 lines
1.4 KiB
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.5
|
|
import QtQuick.Controls 2.1
|
|
import im.nheko 1.0
|
|
|
|
ImageButton {
|
|
id: indicator
|
|
|
|
required property int status
|
|
required property string eventId
|
|
|
|
width: 16
|
|
height: 16
|
|
hoverEnabled: true
|
|
changeColorOnHover: (status == MtxEvent.Read)
|
|
cursor: (status == MtxEvent.Read) ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
ToolTip.visible: hovered && status != MtxEvent.Empty
|
|
ToolTip.text: {
|
|
switch (status) {
|
|
case MtxEvent.Failed:
|
|
return qsTr("Failed");
|
|
case MtxEvent.Sent:
|
|
return qsTr("Sent");
|
|
case MtxEvent.Received:
|
|
return qsTr("Received");
|
|
case MtxEvent.Read:
|
|
return qsTr("Read");
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
onClicked: {
|
|
if (status == MtxEvent.Read)
|
|
room.showReadReceipts(eventId);
|
|
|
|
}
|
|
image: {
|
|
switch (status) {
|
|
case MtxEvent.Failed:
|
|
return ":/icons/icons/ui/dismiss.svg";
|
|
case MtxEvent.Sent:
|
|
return ":/icons/icons/ui/clock.svg";
|
|
case MtxEvent.Received:
|
|
return ":/icons/icons/ui/checkmark.svg";
|
|
case MtxEvent.Read:
|
|
return ":/icons/icons/ui/double-checkmark.svg";
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
}
|