2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-FileCopyrightText: 2021 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 ".."
|
2021-08-25 16:10:55 +02:00
|
|
|
import QtQuick.Controls 2.3
|
2020-06-24 16:24:22 +02:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
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
|
|
|
|
required property bool isReply
|
|
|
|
required property string formatted
|
|
|
|
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
|
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\">
|
|
|
|
a { color:" + Nheko.colors.link + ";}
|
|
|
|
code { background-color: " + Nheko.colors.alternateBase + ";}
|
|
|
|
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 14:52:33 +02:00
|
|
|
blockquote { margin-left: 1em; }
|
2021-06-05 01:22:59 +02:00
|
|
|
</style>
|
|
|
|
" + formatted.replace("<pre>", "<pre style='white-space: pre-wrap; background-color: " + Nheko.colors.alternateBase + "'>").replace("<del>", "<s>").replace("</del>", "</s>").replace("<strike>", "<s>").replace("</strike>", "</s>")
|
2020-10-08 21:11:21 +02:00
|
|
|
width: parent ? parent.width : undefined
|
2021-05-14 15:23:32 +02:00
|
|
|
height: isReply ? Math.round(Math.min(timelineView.height / 8, implicitHeight)) : undefined
|
2020-10-22 21:02:39 +02:00
|
|
|
clip: isReply
|
2021-02-14 01:28:28 +01:00
|
|
|
selectByMouse: !Settings.mobileMode && !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
|
|
|
|
|
|
|
CursorShape {
|
|
|
|
enabled: isReply
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
}
|
2019-09-02 23:28:05 +02:00
|
|
|
}
|