mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
26 lines
605 B
QML
26 lines
605 B
QML
// SPDX-FileCopyrightText: 2021 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 {
|
|
textFormat: TextEdit.RichText
|
|
readOnly: true
|
|
focus: false
|
|
wrapMode: Text.Wrap
|
|
selectByMouse: !Settings.mobileMode
|
|
enabled: selectByMouse
|
|
color: Nheko.colors.text
|
|
onLinkActivated: Nheko.openLink(link)
|
|
ToolTip.visible: hoveredLink
|
|
ToolTip.text: hoveredLink
|
|
|
|
CursorShape {
|
|
anchors.fill: parent
|
|
cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
}
|
|
|
|
}
|