2019-10-08 21:55:09 +03:00
|
|
|
import QtQuick 2.6
|
2019-10-17 10:36:16 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2019-10-08 21:55:09 +03:00
|
|
|
import QtQuick.Layouts 1.2
|
|
|
|
import QtQuick.Window 2.2
|
|
|
|
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2019-10-28 00:01:40 +03:00
|
|
|
import "./delegates"
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
MouseArea {
|
2019-10-08 21:55:09 +03:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2020-02-27 01:43:15 +03:00
|
|
|
height: row.height
|
|
|
|
propagateComposedEvents: true
|
2020-03-10 02:30:45 +03:00
|
|
|
preventStealing: true
|
2019-11-09 00:08:51 +03:00
|
|
|
|
2020-03-10 02:30:45 +03:00
|
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
|
|
|
onClicked: {
|
|
|
|
if (mouse.button === Qt.RightButton)
|
2020-04-21 23:32:45 +03:00
|
|
|
messageContextMenu.show(model.id, model.type, model.isEncrypted, row)
|
2020-03-10 02:30:45 +03:00
|
|
|
}
|
|
|
|
onPressAndHold: {
|
|
|
|
if (mouse.source === Qt.MouseEventNotSynthesized)
|
2020-04-21 23:32:45 +03:00
|
|
|
messageContextMenu.show(model.id, model.type, model.isEncrypted, row)
|
2020-02-27 01:43:15 +03:00
|
|
|
}
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
RowLayout {
|
|
|
|
id: row
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
anchors.leftMargin: avatarSize + 4
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-01-29 03:20:39 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
Column {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignTop
|
|
|
|
spacing: 4
|
2019-10-17 10:36:16 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
// fancy reply, if this is a reply
|
|
|
|
Reply {
|
|
|
|
visible: model.replyTo
|
|
|
|
modelData: chat.model.getDump(model.replyTo)
|
|
|
|
userColor: timelineManager.userColor(modelData.userId, colors.window)
|
|
|
|
}
|
2020-02-02 02:27:28 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
// actual message content
|
|
|
|
MessageDelegate {
|
|
|
|
id: contentItem
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
width: parent.width
|
2019-10-17 10:36:16 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
modelData: model
|
|
|
|
}
|
2020-05-04 01:59:05 +03:00
|
|
|
|
|
|
|
Reactions {
|
2020-05-04 14:14:54 +03:00
|
|
|
reactions: model.reactions
|
2020-05-04 01:59:05 +03:00
|
|
|
}
|
2020-02-27 01:43:15 +03:00
|
|
|
}
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
StatusIndicator {
|
|
|
|
state: model.state
|
|
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignTop
|
|
|
|
Layout.preferredHeight: 16
|
|
|
|
width: 16
|
|
|
|
}
|
|
|
|
|
|
|
|
EncryptionIndicator {
|
2020-05-15 03:35:29 +03:00
|
|
|
visible: model.isRoomEncrypted
|
|
|
|
encrypted: model.isEncrypted
|
2020-03-28 21:12:00 +03:00
|
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignTop
|
|
|
|
Layout.preferredHeight: 16
|
|
|
|
width: 16
|
|
|
|
}
|
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
ImageButton {
|
2020-03-10 02:30:45 +03:00
|
|
|
visible: timelineSettings.buttons
|
2020-02-27 01:43:15 +03:00
|
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignTop
|
|
|
|
Layout.preferredHeight: 16
|
|
|
|
width: 16
|
|
|
|
id: replyButton
|
|
|
|
hoverEnabled: true
|
2020-02-02 02:27:28 +03:00
|
|
|
|
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
image: ":/icons/icons/ui/mail-reply.png"
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Reply")
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-02-27 01:43:15 +03:00
|
|
|
onClicked: chat.model.replyAction(model.id)
|
|
|
|
}
|
|
|
|
ImageButton {
|
2020-03-10 02:30:45 +03:00
|
|
|
visible: timelineSettings.buttons
|
2020-02-27 01:43:15 +03:00
|
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignTop
|
|
|
|
Layout.preferredHeight: 16
|
|
|
|
width: 16
|
|
|
|
id: optionsButton
|
2019-10-08 21:55:09 +03:00
|
|
|
hoverEnabled: true
|
2020-02-27 01:43:15 +03:00
|
|
|
|
|
|
|
image: ":/icons/icons/ui/vertical-ellipsis.png"
|
|
|
|
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Options")
|
|
|
|
|
2020-04-21 23:32:45 +03:00
|
|
|
onClicked: messageContextMenu.show(model.id, model.type, model.isEncrypted, optionsButton)
|
2020-02-27 01:43:15 +03:00
|
|
|
}
|
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Label {
|
2020-02-27 01:43:15 +03:00
|
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignTop
|
|
|
|
text: model.timestamp.toLocaleTimeString("HH:mm")
|
|
|
|
color: inactiveColors.text
|
|
|
|
|
|
|
|
MouseArea{
|
|
|
|
id: ma
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
2020-03-10 02:30:45 +03:00
|
|
|
propagateComposedEvents: true
|
2020-02-27 01:43:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ToolTip.visible: ma.containsMouse
|
|
|
|
ToolTip.text: Qt.formatDateTime(model.timestamp, Qt.DefaultLocaleLongDate)
|
|
|
|
}
|
2019-10-08 21:55:09 +03:00
|
|
|
}
|
|
|
|
}
|