2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2023-01-02 06:25:33 +03:00
|
|
|
// SPDX-FileCopyrightText: 2023 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 ".."
|
2021-08-25 17:10:55 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2020-06-24 17:24:22 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
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
|
|
|
|
required property bool 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
|
|
|
|
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
|
2022-02-14 23:07:03 +03:00
|
|
|
property int metadataWidth
|
|
|
|
property bool fitsMetadata: 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
|
|
|
|
text: "
|
|
|
|
<style type=\"text/css\">
|
|
|
|
a { color:" + Nheko.colors.link + ";}
|
2023-01-22 19:36:23 +03:00
|
|
|
code { background-color: " + Nheko.colors.alternateBase + "; white-space: pre-wrap; }
|
|
|
|
pre { background-color: " + Nheko.colors.alternateBase + "; white-space: pre-wrap; }
|
2021-06-05 02:22:59 +03:00
|
|
|
table {
|
|
|
|
border-width: 1px;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
table th,
|
|
|
|
table td {
|
|
|
|
bgcolor: " + Nheko.colors.alternateBase + ";
|
|
|
|
border-collapse: collapse;
|
|
|
|
border: 1px solid " + Nheko.colors.text + ";
|
|
|
|
}
|
2021-09-04 15:52:33 +03:00
|
|
|
blockquote { margin-left: 1em; }
|
2022-09-11 01:29:23 +03:00
|
|
|
" + (!Settings.mobileMode ? "span[data-mx-spoiler] {
|
2022-08-17 02:06:28 +03:00
|
|
|
color: transparent;
|
|
|
|
background-color: " + Nheko.colors.text + ";
|
|
|
|
}" : "") + // TODO(Nico): Figure out how to support mobile
|
|
|
|
"</style>
|
2023-01-22 19:36:23 +03:00
|
|
|
" + formatted.replace(/<del>/g, "<s>").replace(/<\/del>/g, "</s>").replace(/<strike>/g, "<s>").replace(/<\/strike>/g, "</s>")
|
2022-02-04 23:20:25 +03:00
|
|
|
width: parent.width
|
2022-04-24 17:37:35 +03:00
|
|
|
height: !keepFullText ? Math.round(Math.min(timelineView.height / 8, implicitHeight)) : implicitHeight
|
|
|
|
clip: !keepFullText
|
2021-02-14 03:28:28 +03:00
|
|
|
selectByMouse: !Settings.mobileMode && !isReply
|
2022-03-28 21:22:58 +03:00
|
|
|
enabled: !Settings.mobileMode
|
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
|
|
|
|
|
|
|
CursorShape {
|
|
|
|
enabled: isReply
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
}
|
2021-09-18 01:21:14 +03:00
|
|
|
|
2019-09-03 00:28:05 +03:00
|
|
|
}
|