mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
96f791daf1
See also: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/ https://hynek.me/til/copyright-years/
38 lines
964 B
QML
38 lines
964 B
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.5
|
|
import QtQuick.Controls 2.3
|
|
import im.nheko 1.0
|
|
|
|
TextEdit {
|
|
id: r
|
|
|
|
property alias cursorShape: cs.cursorShape
|
|
|
|
textFormat: TextEdit.RichText
|
|
readOnly: true
|
|
focus: false
|
|
wrapMode: Text.Wrap
|
|
selectByMouse: !Settings.mobileMode
|
|
// this always has to be enabled, otherwise you can't click links anymore!
|
|
//enabled: selectByMouse
|
|
color: Nheko.colors.text
|
|
onLinkActivated: Nheko.openLink(link)
|
|
ToolTip.visible: hoveredLink || false
|
|
ToolTip.text: hoveredLink
|
|
// Setting a tooltip delay makes the hover text empty .-.
|
|
//ToolTip.delay: Nheko.tooltipDelay
|
|
Component.onCompleted: {
|
|
TimelineManager.fixImageRendering(r.textDocument, r);
|
|
}
|
|
|
|
CursorShape {
|
|
id: cs
|
|
|
|
anchors.fill: parent
|
|
cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
}
|
|
|
|
}
|