2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 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 ".."
|
2020-06-24 17:24:22 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2019-11-03 05:28:16 +03:00
|
|
|
MatrixText {
|
2020-10-08 22:11:21 +03:00
|
|
|
property string formatted: model.data.formattedBody
|
2021-04-30 00:38:45 +03:00
|
|
|
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : model.data.body
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2021-05-13 09:23:56 +03: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 + "'>")
|
2020-10-08 22:11:21 +03:00
|
|
|
width: parent ? parent.width : undefined
|
2021-05-14 16:23:32 +03:00
|
|
|
height: isReply ? Math.round(Math.min(timelineView.height / 8, implicitHeight)) : undefined
|
2020-10-22 22:02:39 +03:00
|
|
|
clip: isReply
|
2021-02-14 03:28:28 +03:00
|
|
|
selectByMouse: !Settings.mobileMode && !isReply
|
2020-10-08 22:11:21 +03:00
|
|
|
font.pointSize: (Settings.enlargeEmojiOnlyMessages && model.data.isOnlyEmoji > 0 && model.data.isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
|
2019-09-03 00:28:05 +03:00
|
|
|
}
|