matrixion/qml/MatrixText.qml

37 lines
1 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
import QtQuick 2.5
2019-11-03 05:28:16 +03:00
import QtQuick.Controls 2.3
import im.nheko
2020-06-24 17:24:22 +03:00
TextEdit {
id: r
2021-07-15 21:37:52 +03:00
property alias cursorShape: cs.cursorShape
2022-04-16 03:13:01 +03:00
ToolTip.text: hoveredLink
ToolTip.visible: hoveredLink || false
// this always has to be enabled, otherwise you can't click links anymore!
//enabled: selectByMouse
2022-04-11 05:18:16 +03:00
color: timelineRoot.palette.text
2022-04-16 03:13:01 +03:00
focus: false
readOnly: true
selectByMouse: !Settings.mobileMode
textFormat: TextEdit.RichText
wrapMode: Text.Wrap
// Setting a tooltip delay makes the hover text empty .-.
//ToolTip.delay: Nheko.tooltipDelay
2021-07-15 21:37:52 +03:00
Component.onCompleted: {
TimelineManager.fixImageRendering(r.textDocument, r);
}
2022-04-16 03:13:01 +03:00
onLinkActivated: Nheko.openLink(link)
2020-10-08 22:11:21 +03:00
NhekoCursorShape {
id: cs
2020-10-08 22:11:21 +03:00
anchors.fill: parent
2021-02-14 03:28:28 +03:00
cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
2020-10-08 22:11:21 +03:00
}
2019-11-03 05:28:16 +03:00
}