2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-07 07:57:56 +03:00
|
|
|
//
|
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 ".."
|
2023-09-30 17:00:04 +03:00
|
|
|
import im.nheko
|
2020-06-24 17:24:22 +03:00
|
|
|
|
2019-11-03 05:28:16 +03:00
|
|
|
MatrixText {
|
2021-07-12 01:24:33 +03:00
|
|
|
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
|
2021-07-12 01:24:33 +03:00
|
|
|
required property string formatted
|
2023-06-25 03:40:44 +03:00
|
|
|
|
2021-07-12 01:24:33 +03:00
|
|
|
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
|
2023-06-25 03:40:44 +03:00
|
|
|
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
|
|
|
}
|
2021-09-04 15:52:33 +03:00
|
|
|
blockquote { margin-left: 1em; }
|
2023-10-26 02:51:45 +03:00
|
|
|
` + (!Settings.mobileMode ? `span[data-mx-spoiler] {
|
2022-08-17 02:06:28 +03:00
|
|
|
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-08 21:14:13 +03:00
|
|
|
|
2023-10-10 02:01:37 +03:00
|
|
|
enabled: !isReply
|
2021-07-12 01:24:33 +03:00
|
|
|
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
|
|
|
|
}
|
2021-09-18 01:21:14 +03:00
|
|
|
|
2019-09-03 00:28:05 +03:00
|
|
|
}
|