nheko/resources/qml/MatrixText.qml

28 lines
686 B
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.5
2019-11-03 03:28:16 +01:00
import QtQuick.Controls 2.3
2020-06-24 16:24:22 +02:00
import im.nheko 1.0
TextEdit {
2020-10-08 21:11:21 +02:00
textFormat: TextEdit.RichText
readOnly: true
focus: false
2020-10-08 21:11:21 +02:00
wrapMode: Text.Wrap
selectByMouse: !Settings.mobileMode
// this always has to be enabled, otherwise you can't click links anymore!
//enabled: selectByMouse
2021-05-13 08:23:56 +02:00
color: Nheko.colors.text
2021-05-13 08:52:02 +02:00
onLinkActivated: Nheko.openLink(link)
2020-10-08 21:11:21 +02:00
ToolTip.visible: hoveredLink
ToolTip.text: hoveredLink
2021-02-14 01:28:28 +01:00
CursorShape {
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
}