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