2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: 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
|
|
|
|
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick 2.5
|
2019-11-03 05:28:16 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2020-06-24 17:24:22 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2020-02-27 18:48:23 +03:00
|
|
|
TextEdit {
|
2021-07-15 01:26:39 +03:00
|
|
|
id: r
|
2021-07-15 21:37:52 +03:00
|
|
|
|
2022-04-23 02:43:25 +03:00
|
|
|
property alias cursorShape: cs.cursorShape
|
|
|
|
|
2020-10-08 22:11:21 +03:00
|
|
|
textFormat: TextEdit.RichText
|
|
|
|
readOnly: true
|
2020-11-25 19:38:06 +03:00
|
|
|
focus: false
|
2020-10-08 22:11:21 +03:00
|
|
|
wrapMode: Text.Wrap
|
2020-10-24 17:21:00 +03:00
|
|
|
selectByMouse: !Settings.mobileMode
|
2021-06-23 01:51:45 +03:00
|
|
|
// this always has to be enabled, otherwise you can't click links anymore!
|
|
|
|
//enabled: selectByMouse
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.text
|
2021-05-13 09:52:02 +03:00
|
|
|
onLinkActivated: Nheko.openLink(link)
|
2021-07-27 23:35:38 +03:00
|
|
|
ToolTip.visible: hoveredLink || false
|
2021-12-31 02:47:14 +03:00
|
|
|
ToolTip.text: hoveredLink
|
|
|
|
// 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);
|
|
|
|
}
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2021-02-14 03:28:28 +03:00
|
|
|
CursorShape {
|
2022-04-23 02:43:25 +03:00
|
|
|
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
|
|
|
|
|
|
|
}
|