nheko/resources/qml/delegates/TextMessage.qml

19 lines
1.0 KiB
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
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 ".."
2020-06-24 16:24:22 +02:00
import im.nheko 1.0
2019-11-03 03:28:16 +01:00
MatrixText {
2020-10-08 21:11:21 +02:00
property string formatted: model.data.formattedBody
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : model.data.body
2020-10-08 21:11:21 +02:00
2021-05-28 17:25:46 +02:00
text: "<style type=\"text/css\">a { color:" + Nheko.colors.link + ";}\ncode { background-color: " + Nheko.colors.alternateBase + ";}</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
height: isReply ? Math.round(Math.min(timelineView.height / 8, implicitHeight)) : undefined
clip: isReply
2021-02-14 01:28:28 +01:00
selectByMouse: !Settings.mobileMode && !isReply
2020-10-08 21:11:21 +02:00
font.pointSize: (Settings.enlargeEmojiOnlyMessages && model.data.isOnlyEmoji > 0 && model.data.isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
}