2020-07-15 21:04:14 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import "../../../../../shared"
|
|
|
|
import "../../../../../imports"
|
|
|
|
|
|
|
|
StyledTextEdit {
|
|
|
|
id: chatName
|
|
|
|
visible: (isMessage || isEmoji) && authorCurrentMsg != authorPrevMsg
|
|
|
|
height: this.visible ? 18 : 0
|
2020-07-16 15:20:29 +00:00
|
|
|
//% "You"
|
|
|
|
text: !isCurrentUser ? userName : qsTrId("You")
|
2020-07-15 21:04:14 +00:00
|
|
|
font.bold: true
|
|
|
|
font.pixelSize: 14
|
|
|
|
readOnly: true
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
selectByMouse: true
|
|
|
|
MouseArea {
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
clickMessage()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|