mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
53 lines
1.3 KiB
QML
53 lines
1.3 KiB
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
|
|
|
|
//leftInset: 0
|
|
//bottomInset: 0
|
|
//rightInset: 0
|
|
//topInset: 0
|
|
//leftPadding: 0
|
|
//bottomPadding: 0
|
|
//rightPadding: 0
|
|
//topPadding: 0
|
|
//background: null
|
|
|
|
ToolTip.text: hoveredLink
|
|
ToolTip.visible: hoveredLink || false
|
|
// this always has to be enabled, otherwise you can't click links anymore!
|
|
//enabled: selectByMouse
|
|
color: palette.text
|
|
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
|
|
Component.onCompleted: {
|
|
TimelineManager.fixImageRendering(r.textDocument, r);
|
|
}
|
|
onLinkActivated: Nheko.openLink(link)
|
|
|
|
|
|
//// propagate events up
|
|
//onPressAndHold: (event) => event.accepted = false
|
|
//onPressed: (event) => event.accepted = (event.button == Qt.LeftButton)
|
|
|
|
NhekoCursorShape {
|
|
id: cs
|
|
|
|
anchors.fill: parent
|
|
cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
}
|
|
}
|