forked from mirror/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.
58 lines
1.2 KiB
58 lines
1.2 KiB
import QtQuick 2.6
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.2
|
|
import QtQuick.Window 2.2
|
|
|
|
Rectangle {
|
|
id: replyComponent
|
|
|
|
property alias modelData: reply.modelData
|
|
property color userColor: "red"
|
|
|
|
width: parent.width
|
|
height: replyContainer.height
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
preventStealing: true
|
|
onClicked: chat.positionViewAtIndex(chat.model.idToIndex(timelineManager.replyingEvent), ListView.Contain)
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
|
|
Rectangle {
|
|
id: colorLine
|
|
|
|
anchors.top: replyContainer.top
|
|
anchors.bottom: replyContainer.bottom
|
|
width: 4
|
|
|
|
color: timelineManager.userColor(reply.modelData.userId, colors.window)
|
|
}
|
|
|
|
Column {
|
|
id: replyContainer
|
|
anchors.left: colorLine.right
|
|
anchors.leftMargin: 4
|
|
width: parent.width - 8
|
|
|
|
Text {
|
|
id: userName
|
|
text: chat.model ? chat.model.escapeEmoji(reply.modelData.userName) : ""
|
|
color: replyComponent.userColor
|
|
textFormat: Text.RichText
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: chat.model.openUserProfile(reply.modelData.userId)
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
}
|
|
|
|
MessageDelegate {
|
|
id: reply
|
|
width: parent.width
|
|
}
|
|
}
|
|
|
|
color: Qt.rgba(userColor.r, userColor.g, userColor.b, 0.2)
|
|
}
|
|
|