2023-02-21 23:48:49 +01:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-07 05:57:56 +01:00
|
|
|
//
|
2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-06-25 02:40:44 +02:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import im.nheko
|
2020-06-24 16:24:22 +02:00
|
|
|
|
2023-06-25 02:40:44 +02:00
|
|
|
TextArea {
|
2021-07-15 00:26:39 +02:00
|
|
|
id: r
|
2021-07-15 20:37:52 +02:00
|
|
|
|
2022-04-23 01:43:25 +02:00
|
|
|
property alias cursorShape: cs.cursorShape
|
|
|
|
|
2023-06-25 02:40:44 +02:00
|
|
|
leftInset: 0
|
|
|
|
bottomInset: 0
|
|
|
|
rightInset: 0
|
|
|
|
topInset: 0
|
|
|
|
leftPadding: 0
|
|
|
|
bottomPadding: 0
|
|
|
|
rightPadding: 0
|
|
|
|
topPadding: 0
|
|
|
|
background: null
|
2023-06-10 02:01:42 +02:00
|
|
|
|
2023-06-02 01:45:24 +02:00
|
|
|
ToolTip.text: hoveredLink
|
|
|
|
ToolTip.visible: hoveredLink || false
|
2021-06-23 00:51:45 +02:00
|
|
|
// this always has to be enabled, otherwise you can't click links anymore!
|
|
|
|
//enabled: selectByMouse
|
2023-06-02 01:29:05 +02:00
|
|
|
color: palette.text
|
2023-06-02 01:45:24 +02:00
|
|
|
focus: false
|
|
|
|
readOnly: true
|
|
|
|
selectByMouse: !Settings.mobileMode
|
|
|
|
textFormat: TextEdit.RichText
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
|
2021-12-31 00:47:14 +01:00
|
|
|
// Setting a tooltip delay makes the hover text empty .-.
|
|
|
|
//ToolTip.delay: Nheko.tooltipDelay
|
2021-07-15 20:37:52 +02:00
|
|
|
Component.onCompleted: {
|
|
|
|
TimelineManager.fixImageRendering(r.textDocument, r);
|
|
|
|
}
|
2023-06-02 01:45:24 +02:00
|
|
|
onLinkActivated: Nheko.openLink(link)
|
2020-10-08 21:11:21 +02:00
|
|
|
|
2023-06-25 02:40:44 +02:00
|
|
|
// propagate events up
|
|
|
|
onPressAndHold: (event) => event.accepted = false
|
|
|
|
onPressed: (event) => event.accepted = (event.button == Qt.LeftButton)
|
2023-06-10 02:01:42 +02:00
|
|
|
|
2023-06-19 01:38:40 +02:00
|
|
|
NhekoCursorShape {
|
2022-04-23 01:43:25 +02:00
|
|
|
id: cs
|
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
anchors.fill: parent
|
2021-02-14 01:28:28 +01:00
|
|
|
cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
2020-10-08 21:11:21 +02:00
|
|
|
}
|
2019-11-03 03:28:16 +01:00
|
|
|
}
|