matrixion/qml/delegates/TextMessage.qml

51 lines
1.9 KiB
QML
Raw Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
2022-04-16 03:13:01 +03:00
import "../"
2022-04-14 16:28:17 +03:00
import QtQuick
import QtQuick.Controls
import im.nheko
2020-06-24 17:24:22 +03:00
2019-11-03 05:28:16 +03:00
MatrixText {
required property string body
2022-04-16 03:13:01 +03:00
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
property bool fitsMetadata: positionAt(width, height - 4) == positionAt(width - metadataWidth - 10, height - 4)
required property string formatted
required property bool isOnlyEmoji
required property bool isReply
2022-02-14 23:07:03 +03:00
property int metadataWidth
2022-04-16 03:13:01 +03:00
clip: isReply
enabled: !Settings.mobileMode
font.pointSize: (Settings.enlargeEmojiOnlyMessages && isOnlyEmoji > 0 && isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
height: isReply ? Math.round(Math.min(timelineView.height / 8, implicitHeight)) : implicitHeight
selectByMouse: !Settings.mobileMode && !isReply
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\">
2022-04-11 05:18:16 +03:00
a { color:" + timelineRoot.palette.link + ";}
code { background-color: " + timelineRoot.palette.alternateBase + ";}
2021-06-05 02:22:59 +03:00
table {
border-width: 1px;
border-collapse: collapse;
border-style: solid;
}
table th,
table td {
2022-04-11 05:18:16 +03:00
bgcolor: " + timelineRoot.palette.alternateBase + ";
2021-06-05 02:22:59 +03:00
border-collapse: collapse;
2022-04-11 05:18:16 +03:00
border: 1px solid " + timelineRoot.palette.text + ";
2021-06-05 02:22:59 +03:00
}
blockquote { margin-left: 1em; }
2021-06-05 02:22:59 +03:00
</style>
2022-04-11 05:18:16 +03:00
" + formatted.replace(/<pre>/g, "<pre style='white-space: pre-wrap; background-color: " + timelineRoot.palette.alternateBase + "'>").replace(/<del>/g, "<s>").replace(/<\/del>/g, "</s>").replace(/<strike>/g, "<s>").replace(/<\/strike>/g, "</s>")
width: parent?.width
2021-08-25 17:10:55 +03:00
NhekoCursorShape {
2021-08-25 17:10:55 +03:00
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
2022-04-16 03:13:01 +03:00
enabled: isReply
2021-08-25 17:10:55 +03:00
}
}