matrixion/resources/qml/delegates/TextMessage.qml

53 lines
1.8 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
2019-11-03 05:28:16 +03:00
import ".."
import im.nheko
2020-06-24 17:24:22 +03:00
2019-11-03 05:28:16 +03:00
MatrixText {
required property string body
required property bool isOnlyEmoji
2023-10-09 00:52:23 +03:00
property bool isReply: EventDelegateChooser.isReply
2022-04-24 17:37:35 +03:00
required property bool keepFullText
required property string formatted
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
property int metadataWidth: 100
2023-06-06 01:29:46 +03:00
property bool fitsMetadata: false //positionAt(width,height-4) == positionAt(width-metadataWidth-10, height-4)
2020-10-08 22:11:21 +03:00
2021-06-05 02:22:59 +03:00
// table border-collapse doesn't seem to work
2023-10-26 02:51:45 +03:00
text: `
<style type="text/css">
code { background-color: ` + palette.alternateBase + `; white-space: pre-wrap; }
pre { background-color: ` + palette.alternateBase + `; white-space: pre-wrap; }
2021-06-05 02:22:59 +03:00
table {
border-width: 1px;
border-collapse: collapse;
border-style: solid;
2023-10-26 02:51:45 +03:00
border-color: ` + palette.text + `;
background-color: ` + palette.alternateBase + `;
2021-06-05 02:22:59 +03:00
}
table th,
table td {
2023-10-26 02:51:45 +03:00
padding: ` + Math.ceil(fontMetrics.lineSpacing/2) + `px;
2021-06-05 02:22:59 +03:00
}
blockquote { margin-left: 1em; }
2023-10-26 02:51:45 +03:00
` + (!Settings.mobileMode ? `span[data-mx-spoiler] {
color: transparent;
2023-10-26 02:51:45 +03:00
background-color: ` + palette.text + `;
}` : "") + // TODO(Nico): Figure out how to support mobile
`</style>
` + formatted.replace(/<del>/g, "<s>").replace(/<\/del>/g, "</s>").replace(/<strike>/g, "<s>").replace(/<\/strike>/g, "</s>")
2023-10-10 02:01:37 +03:00
enabled: !isReply
font.pointSize: (Settings.enlargeEmojiOnlyMessages && isOnlyEmoji > 0 && isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
2021-08-25 17:10:55 +03:00
2023-06-19 02:38:40 +03:00
NhekoCursorShape {
2021-08-25 17:10:55 +03:00
enabled: isReply
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
}