2019-12-08 02:54:28 +03:00
|
|
|
import QtQuick 2.9
|
2020-02-02 02:27:28 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2019-10-06 13:12:29 +03:00
|
|
|
import QtQuick.Layouts 1.2
|
2019-09-07 02:33:46 +03:00
|
|
|
import QtGraphicalEffects 1.0
|
2019-09-18 21:34:30 +03:00
|
|
|
import QtQuick.Window 2.2
|
2019-08-30 20:29:25 +03:00
|
|
|
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2020-05-14 03:19:15 +03:00
|
|
|
import im.nheko.EmojiModel 1.0
|
2019-09-03 00:28:05 +03:00
|
|
|
|
2019-10-08 21:55:09 +03:00
|
|
|
import "./delegates"
|
2020-05-14 03:19:15 +03:00
|
|
|
import "./emoji"
|
2019-10-08 21:55:09 +03:00
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Page {
|
2020-07-25 23:08:02 +03:00
|
|
|
id: timelineRoot
|
|
|
|
|
2019-10-17 10:36:16 +03:00
|
|
|
property var colors: currentActivePalette
|
|
|
|
property var systemInactive: SystemPalette { colorGroup: SystemPalette.Disabled }
|
|
|
|
property var inactiveColors: currentInactivePalette ? currentInactivePalette : systemInactive
|
2019-11-03 03:17:40 +03:00
|
|
|
property int avatarSize: 40
|
2020-05-22 04:21:35 +03:00
|
|
|
property real highlightHue: colors.highlight.hslHue
|
|
|
|
property real highlightSat: colors.highlight.hslSaturation
|
|
|
|
property real highlightLight: colors.highlight.hslLightness
|
2019-09-19 22:53:24 +03:00
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
palette: colors
|
|
|
|
|
2020-04-30 23:02:41 +03:00
|
|
|
FontMetrics {
|
|
|
|
id: fontMetrics
|
|
|
|
}
|
|
|
|
|
2020-07-25 23:57:54 +03:00
|
|
|
EmojiPicker {
|
|
|
|
id: emojiPopup
|
|
|
|
width: 7 * 52 + 20
|
|
|
|
height: 6 * 52
|
|
|
|
colors: palette
|
|
|
|
model: EmojiProxyModel {
|
|
|
|
category: EmojiCategory.People
|
|
|
|
sourceModel: EmojiModel {}
|
|
|
|
}
|
|
|
|
}
|
2020-05-14 03:19:15 +03:00
|
|
|
|
2020-02-02 02:27:28 +03:00
|
|
|
Menu {
|
|
|
|
id: messageContextMenu
|
2020-02-02 02:33:55 +03:00
|
|
|
modal: true
|
2020-02-02 02:27:28 +03:00
|
|
|
|
2020-07-26 03:06:38 +03:00
|
|
|
function show(eventId_, eventType_, isEncrypted_, showAt_, position) {
|
2020-02-02 02:27:28 +03:00
|
|
|
eventId = eventId_
|
|
|
|
eventType = eventType_
|
2020-04-21 23:32:45 +03:00
|
|
|
isEncrypted = isEncrypted_
|
2020-07-26 03:06:38 +03:00
|
|
|
|
|
|
|
if (position)
|
|
|
|
popup(position, showAt_)
|
|
|
|
else
|
2020-07-20 01:42:48 +03:00
|
|
|
popup(showAt_)
|
2020-02-02 02:27:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
property string eventId
|
|
|
|
property int eventType
|
2020-04-21 23:32:45 +03:00
|
|
|
property bool isEncrypted
|
2020-07-20 01:42:48 +03:00
|
|
|
|
2020-05-08 03:53:24 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("React")
|
2020-07-20 01:42:48 +03:00
|
|
|
onClicked: emojiPopup.show(messageContextMenu.parent, messageContextMenu.eventId)
|
2020-05-08 03:53:24 +03:00
|
|
|
}
|
2020-03-10 02:30:45 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Reply")
|
|
|
|
onClicked: chat.model.replyAction(messageContextMenu.eventId)
|
|
|
|
}
|
2020-02-02 02:27:28 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Read receipts")
|
|
|
|
onTriggered: chat.model.readReceiptsAction(messageContextMenu.eventId)
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Mark as read")
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("View raw message")
|
|
|
|
onTriggered: chat.model.viewRawMessage(messageContextMenu.eventId)
|
|
|
|
}
|
2020-04-21 23:32:45 +03:00
|
|
|
MenuItem {
|
|
|
|
visible: messageContextMenu.isEncrypted
|
|
|
|
height: visible ? implicitHeight : 0
|
|
|
|
text: qsTr("View decrypted raw message")
|
|
|
|
onTriggered: chat.model.viewDecryptedRawMessage(messageContextMenu.eventId)
|
|
|
|
}
|
2020-02-02 02:27:28 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Redact message")
|
|
|
|
onTriggered: chat.model.redactEvent(messageContextMenu.eventId)
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
visible: messageContextMenu.eventType == MtxEvent.ImageMessage || messageContextMenu.eventType == MtxEvent.VideoMessage || messageContextMenu.eventType == MtxEvent.AudioMessage || messageContextMenu.eventType == MtxEvent.FileMessage || messageContextMenu.eventType == MtxEvent.Sticker
|
2020-04-21 23:32:45 +03:00
|
|
|
height: visible ? implicitHeight : 0
|
2020-02-02 02:27:28 +03:00
|
|
|
text: qsTr("Save as")
|
|
|
|
onTriggered: timelineManager.timeline.saveMedia(messageContextMenu.eventId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
color: colors.window
|
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Label {
|
2019-11-10 02:30:02 +03:00
|
|
|
visible: !timelineManager.timeline && !timelineManager.isInitialSync
|
2019-11-08 16:39:45 +03:00
|
|
|
anchors.centerIn: parent
|
|
|
|
text: qsTr("No room open")
|
|
|
|
font.pointSize: 24
|
2020-04-29 22:41:46 +03:00
|
|
|
color: colors.text
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
2019-08-31 00:20:53 +03:00
|
|
|
|
2019-11-10 02:30:02 +03:00
|
|
|
BusyIndicator {
|
2020-05-16 00:27:41 +03:00
|
|
|
visible: running
|
2019-11-10 02:30:02 +03:00
|
|
|
anchors.centerIn: parent
|
2020-05-26 23:27:05 +03:00
|
|
|
running: timelineManager.isInitialSync
|
2019-11-10 02:30:02 +03:00
|
|
|
height: 200
|
|
|
|
width: 200
|
2020-01-06 20:08:01 +03:00
|
|
|
z: 3
|
2019-11-10 02:30:02 +03:00
|
|
|
}
|
|
|
|
|
2020-09-03 18:01:58 +03:00
|
|
|
ColumnLayout {
|
|
|
|
anchors.fill: parent
|
|
|
|
Rectangle {
|
|
|
|
id: topBar
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
implicitHeight: topLayout.height + 16
|
|
|
|
z: 3
|
|
|
|
|
|
|
|
color: colors.base
|
|
|
|
|
2020-09-03 20:34:17 +03:00
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: timelineManager.openRoomSettings();
|
|
|
|
}
|
|
|
|
|
2020-09-03 18:01:58 +03:00
|
|
|
GridLayout {
|
|
|
|
id: topLayout
|
|
|
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.margins: 8
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
|
|
|
//Layout.margins: 8
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
id: backToRoomsButton
|
|
|
|
|
|
|
|
Layout.column: 0
|
|
|
|
Layout.row: 0
|
|
|
|
Layout.rowSpan: 2
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
|
|
|
|
visible: timelineManager.isNarrowView
|
|
|
|
|
|
|
|
image: ":/icons/icons/ui/angle-pointing-to-left.png"
|
|
|
|
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Back to room list")
|
|
|
|
|
|
|
|
onClicked: timelineManager.backToRooms()
|
|
|
|
}
|
|
|
|
|
|
|
|
Avatar {
|
|
|
|
Layout.column: 1
|
|
|
|
Layout.row: 0
|
|
|
|
Layout.rowSpan: 2
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
|
|
|
|
width: avatarSize
|
|
|
|
height: avatarSize
|
2020-09-03 20:51:50 +03:00
|
|
|
|
|
|
|
url: chat.model ? chat.model.roomAvatarUrl.replace("mxc://", "image://MxcImage/") : ""
|
|
|
|
displayName: chat.model ? chat.model.roomName : qsTr("No room selected")
|
2020-09-03 20:34:17 +03:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: timelineManager.openRoomSettings();
|
|
|
|
}
|
2020-09-03 18:01:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.column: 2
|
|
|
|
Layout.row: 0
|
|
|
|
|
|
|
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
2020-09-03 20:51:50 +03:00
|
|
|
|
|
|
|
text: chat.model ? chat.model.roomName : qsTr("No room selected")
|
2020-09-03 20:34:17 +03:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: timelineManager.openRoomSettings();
|
|
|
|
}
|
2020-09-03 18:01:58 +03:00
|
|
|
}
|
|
|
|
MatrixText {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.column: 2
|
|
|
|
Layout.row: 1
|
|
|
|
Layout.maximumHeight: fontMetrics.lineSpacing * 2 // show 2 lines
|
|
|
|
clip: true
|
2020-09-03 20:51:50 +03:00
|
|
|
|
|
|
|
text: chat.model ? chat.model.roomTopic : ""
|
2020-09-03 18:01:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
id: roomOptionsButton
|
|
|
|
|
|
|
|
Layout.column: 3
|
|
|
|
Layout.row: 0
|
|
|
|
Layout.rowSpan: 2
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
|
|
|
|
image: ":/icons/icons/ui/vertical-ellipsis.png"
|
|
|
|
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Room options")
|
|
|
|
|
|
|
|
onClicked: roomOptionsMenu.popup(roomOptionsButton)
|
|
|
|
|
|
|
|
Menu {
|
|
|
|
id: roomOptionsMenu
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Invite users")
|
|
|
|
onTriggered: timelineManager.openInviteUsersDialog();
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Members")
|
|
|
|
onTriggered: timelineManager.openMemberListDialog();
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Leave room")
|
|
|
|
onTriggered: timelineManager.openLeaveRoomDialog();
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Settings")
|
|
|
|
onTriggered: timelineManager.openRoomSettings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
ListView {
|
|
|
|
id: chat
|
2019-09-01 23:34:36 +03:00
|
|
|
|
2020-07-25 23:57:54 +03:00
|
|
|
visible: !!timelineManager.timeline
|
2020-01-17 03:25:14 +03:00
|
|
|
|
2020-05-26 23:27:05 +03:00
|
|
|
cacheBuffer: 400
|
2020-05-14 00:55:02 +03:00
|
|
|
|
2020-09-03 18:01:58 +03:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
2019-11-03 03:17:40 +03:00
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
model: timelineManager.timeline
|
2019-09-18 21:34:30 +03:00
|
|
|
|
2019-12-08 02:54:28 +03:00
|
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
|
2020-04-30 23:02:41 +03:00
|
|
|
ScrollHelper {
|
|
|
|
flickable: parent
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
2019-09-18 21:34:30 +03:00
|
|
|
|
2020-06-19 20:34:03 +03:00
|
|
|
pixelAligned: true
|
|
|
|
|
2020-01-31 01:57:39 +03:00
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.MoveToPreviousPage
|
2020-01-31 02:02:15 +03:00
|
|
|
onActivated: { chat.contentY = chat.contentY - chat.height / 2; chat.returnToBounds(); }
|
2020-01-31 01:57:39 +03:00
|
|
|
}
|
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.MoveToNextPage
|
2020-01-31 02:02:15 +03:00
|
|
|
onActivated: { chat.contentY = chat.contentY + chat.height / 2; chat.returnToBounds(); }
|
2020-01-31 01:57:39 +03:00
|
|
|
}
|
2020-05-06 14:33:13 +03:00
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.Cancel
|
|
|
|
onActivated: chat.model.reply = undefined
|
|
|
|
}
|
|
|
|
Shortcut {
|
|
|
|
sequence: "Alt+Up"
|
|
|
|
onActivated: chat.model.reply = chat.model.indexToId(chat.model.reply? chat.model.idToIndex(chat.model.reply) + 1 : 0)
|
|
|
|
}
|
|
|
|
Shortcut {
|
|
|
|
sequence: "Alt+Down"
|
|
|
|
onActivated: {
|
|
|
|
var idx = chat.model.reply? chat.model.idToIndex(chat.model.reply) - 1 : -1
|
|
|
|
chat.model.reply = idx >= 0 ? chat.model.indexToId(idx) : undefined
|
|
|
|
}
|
|
|
|
}
|
2020-01-31 01:57:39 +03:00
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
|
|
id: scrollbar
|
2019-09-18 21:34:30 +03:00
|
|
|
}
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
spacing: 4
|
2020-01-04 01:21:33 +03:00
|
|
|
verticalLayoutDirection: ListView.BottomToTop
|
|
|
|
|
2020-01-06 20:08:01 +03:00
|
|
|
onCountChanged: if (atYEnd) model.currentIndex = 0 // Mark last event as read, since we are at the bottom
|
|
|
|
|
2020-09-03 18:01:58 +03:00
|
|
|
property int delegateMaxWidth: (settings.timelineMaxWidth > 100 && (parent.width - settings.timelineMaxWidth) > scrollbar.width*2) ? settings.timelineMaxWidth : (parent.width - scrollbar.width*2)
|
2020-06-08 02:45:24 +03:00
|
|
|
|
2020-09-03 18:01:58 +03:00
|
|
|
delegate: Item {
|
2020-01-04 01:21:33 +03:00
|
|
|
// This would normally be previousSection, but our model's order is inverted.
|
|
|
|
property bool sectionBoundary: (ListView.nextSection != "" && ListView.nextSection !== ListView.section) || model.index === chat.count - 1
|
|
|
|
|
|
|
|
id: wrapper
|
|
|
|
property Item section
|
2020-07-08 03:02:48 +03:00
|
|
|
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined
|
2020-06-08 02:45:24 +03:00
|
|
|
width: chat.delegateMaxWidth
|
2020-01-04 01:21:33 +03:00
|
|
|
height: section ? section.height + timelinerow.height : timelinerow.height
|
|
|
|
|
|
|
|
TimelineRow {
|
|
|
|
id: timelinerow
|
|
|
|
y: section ? section.y + section.height : 0
|
|
|
|
}
|
|
|
|
|
|
|
|
onSectionBoundaryChanged: {
|
|
|
|
if (sectionBoundary) {
|
|
|
|
var properties = {
|
|
|
|
'modelData': model.dump,
|
|
|
|
'section': ListView.section,
|
|
|
|
'nextSection': ListView.nextSection
|
|
|
|
}
|
|
|
|
section = sectionHeader.createObject(wrapper, properties)
|
|
|
|
} else {
|
|
|
|
section.destroy()
|
|
|
|
section = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-25 23:57:54 +03:00
|
|
|
Connections {
|
|
|
|
target: chat
|
|
|
|
function onMovementEnded() {
|
|
|
|
if (y + height + 2 * chat.spacing > chat.contentY + chat.height && y < chat.contentY + chat.height)
|
|
|
|
chat.model.currentIndex = index;
|
|
|
|
}
|
2020-01-06 20:08:01 +03:00
|
|
|
}
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
property: "section"
|
2020-01-04 01:21:33 +03:00
|
|
|
}
|
|
|
|
Component {
|
|
|
|
id: sectionHeader
|
|
|
|
Column {
|
|
|
|
property var modelData
|
|
|
|
property string section
|
|
|
|
property string nextSection
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
topPadding: 4
|
|
|
|
bottomPadding: 4
|
|
|
|
spacing: 8
|
|
|
|
|
2020-01-04 01:21:33 +03:00
|
|
|
visible: !!modelData
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
width: parent.width
|
|
|
|
height: (section.includes(" ") ? dateBubble.height + 8 + userName.height : userName.height) + 8
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: dateBubble
|
2020-01-04 01:21:33 +03:00
|
|
|
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined
|
2019-11-08 16:39:45 +03:00
|
|
|
visible: section.includes(" ")
|
2020-01-04 01:21:33 +03:00
|
|
|
text: chat.model.formatDateSeparator(modelData.timestamp)
|
2020-05-06 00:43:43 +03:00
|
|
|
color: colors.text
|
2019-11-08 16:39:45 +03:00
|
|
|
|
2020-04-29 12:14:43 +03:00
|
|
|
height: fontMetrics.height * 1.4
|
|
|
|
width: contentWidth * 1.2
|
2020-04-28 10:38:13 +03:00
|
|
|
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
2020-07-19 06:21:44 +03:00
|
|
|
verticalAlignment: Text.AlignVCenter
|
2019-11-08 16:39:45 +03:00
|
|
|
background: Rectangle {
|
|
|
|
radius: parent.height / 2
|
2020-05-06 00:43:43 +03:00
|
|
|
color: colors.base
|
2019-11-03 04:09:36 +03:00
|
|
|
}
|
2019-09-01 23:34:36 +03:00
|
|
|
}
|
2019-11-08 16:39:45 +03:00
|
|
|
Row {
|
|
|
|
height: userName.height
|
2020-05-26 23:27:05 +03:00
|
|
|
spacing: 8
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
Avatar {
|
|
|
|
width: avatarSize
|
|
|
|
height: avatarSize
|
2020-01-04 01:21:33 +03:00
|
|
|
url: chat.model.avatarUrl(modelData.userId).replace("mxc://", "image://MxcImage/")
|
|
|
|
displayName: modelData.userName
|
2020-06-08 02:45:24 +03:00
|
|
|
userid: modelData.userId
|
2019-11-08 16:39:45 +03:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
2020-01-04 01:21:33 +03:00
|
|
|
onClicked: chat.model.openUserProfile(modelData.userId)
|
2019-11-08 16:39:45 +03:00
|
|
|
cursorShape: Qt.PointingHandCursor
|
2020-03-10 02:30:45 +03:00
|
|
|
propagateComposedEvents: true
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
|
|
|
}
|
2019-09-01 23:34:36 +03:00
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Label {
|
2019-11-08 16:39:45 +03:00
|
|
|
id: userName
|
2020-09-03 20:51:50 +03:00
|
|
|
text: timelineManager.escapeEmoji(modelData.userName)
|
2020-02-20 22:51:07 +03:00
|
|
|
color: timelineManager.userColor(modelData.userId, colors.window)
|
2019-11-08 16:39:45 +03:00
|
|
|
textFormat: Text.RichText
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: chat.model.openUserProfile(section.split(" ")[0])
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
2020-03-10 02:30:45 +03:00
|
|
|
propagateComposedEvents: true
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
2019-11-03 04:09:36 +03:00
|
|
|
}
|
2020-06-08 02:45:24 +03:00
|
|
|
|
|
|
|
Label {
|
|
|
|
color: colors.buttonText
|
|
|
|
text: timelineManager.userStatus(modelData.userId)
|
|
|
|
textFormat: Text.PlainText
|
|
|
|
elide: Text.ElideRight
|
|
|
|
width: chat.delegateMaxWidth - parent.spacing*2 - userName.implicitWidth - avatarSize
|
|
|
|
font.italic: true
|
|
|
|
}
|
2019-09-01 23:34:36 +03:00
|
|
|
}
|
|
|
|
}
|
2019-09-01 15:17:33 +03:00
|
|
|
}
|
2020-01-17 03:25:14 +03:00
|
|
|
|
2020-07-25 23:57:54 +03:00
|
|
|
footer: BusyIndicator {
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
running: chat.model && chat.model.paginationInProgress
|
|
|
|
height: 50
|
|
|
|
width: 50
|
|
|
|
z: 3
|
|
|
|
}
|
2020-01-17 03:25:14 +03:00
|
|
|
}
|
|
|
|
|
2020-09-03 18:01:58 +03:00
|
|
|
Item {
|
2020-01-17 03:25:14 +03:00
|
|
|
id: chatFooter
|
|
|
|
|
2020-09-03 18:01:58 +03:00
|
|
|
implicitHeight: Math.max(fontMetrics.height * 1.2, footerContent.height)
|
|
|
|
Layout.fillWidth: true
|
2020-01-17 03:25:14 +03:00
|
|
|
z: 3
|
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
Column {
|
2020-01-29 03:20:39 +03:00
|
|
|
id: footerContent
|
2020-01-17 03:25:14 +03:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2020-09-20 09:58:25 +03:00
|
|
|
anchors.bottom: parent.bottom
|
2020-09-17 16:49:56 +03:00
|
|
|
Rectangle {
|
|
|
|
id: typingRect
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2020-09-18 14:55:48 +03:00
|
|
|
color: (chat.model && chat.model.typingUsers.length > 0) ? colors.window : "transparent"
|
2020-09-20 09:58:25 +03:00
|
|
|
height: typingDisplay.height
|
2020-09-17 16:49:56 +03:00
|
|
|
Label {
|
|
|
|
id: typingDisplay
|
|
|
|
anchors.left: parent.left
|
2020-09-18 16:18:31 +03:00
|
|
|
anchors.leftMargin: 10
|
2020-09-17 16:49:56 +03:00
|
|
|
anchors.right: parent.right
|
2020-09-18 16:18:31 +03:00
|
|
|
anchors.rightMargin: 10
|
2020-09-17 16:49:56 +03:00
|
|
|
color: colors.text
|
|
|
|
text: chat.model ? chat.model.formatTypingUsers(chat.model.typingUsers, colors.window) : ""
|
|
|
|
textFormat: Text.RichText
|
|
|
|
}
|
|
|
|
}
|
2020-01-28 07:28:11 +03:00
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
Rectangle {
|
2020-01-28 07:28:11 +03:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
id: replyPopup
|
2020-01-28 07:28:11 +03:00
|
|
|
|
2020-04-13 17:22:30 +03:00
|
|
|
visible: chat.model && chat.model.reply
|
2020-01-28 21:08:16 +03:00
|
|
|
// Height of child, plus margins, plus border
|
|
|
|
height: replyPreview.height + 10
|
2020-02-03 21:21:03 +03:00
|
|
|
color: colors.base
|
2020-01-28 07:28:11 +03:00
|
|
|
|
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
Reply {
|
|
|
|
id: replyPreview
|
|
|
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
anchors.right: closeReplyButton.left
|
2020-01-29 03:20:39 +03:00
|
|
|
anchors.rightMargin: 20
|
2020-01-28 21:08:16 +03:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
|
2020-07-10 00:15:22 +03:00
|
|
|
modelData: chat.model ? chat.model.getDump(chat.model.reply, chat.model.id) : {}
|
2020-02-20 22:51:07 +03:00
|
|
|
userColor: timelineManager.userColor(modelData.userId, colors.window)
|
2020-01-28 07:28:11 +03:00
|
|
|
}
|
2020-01-28 21:08:16 +03:00
|
|
|
|
2020-01-28 07:28:11 +03:00
|
|
|
ImageButton {
|
|
|
|
id: closeReplyButton
|
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
anchors.right: parent.right
|
2020-01-29 03:20:39 +03:00
|
|
|
anchors.rightMargin: 15
|
2020-01-28 21:08:16 +03:00
|
|
|
anchors.top: replyPreview.top
|
2020-01-29 03:20:39 +03:00
|
|
|
hoverEnabled: true
|
2020-01-30 06:01:44 +03:00
|
|
|
width: 16
|
|
|
|
height: 16
|
2020-01-28 21:08:16 +03:00
|
|
|
|
2020-01-28 07:28:11 +03:00
|
|
|
image: ":/icons/icons/ui/remove-symbol.png"
|
2020-02-02 02:27:28 +03:00
|
|
|
ToolTip.visible: closeReplyButton.hovered
|
|
|
|
ToolTip.text: qsTr("Close")
|
2020-01-28 07:28:11 +03:00
|
|
|
|
2020-04-13 17:22:30 +03:00
|
|
|
onClicked: chat.model.reply = undefined
|
2020-01-28 07:28:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-31 00:20:53 +03:00
|
|
|
}
|
2019-08-31 23:43:31 +03:00
|
|
|
}
|
2020-09-03 18:01:58 +03:00
|
|
|
}
|
2019-08-30 20:29:25 +03:00
|
|
|
}
|