matrixion/resources/qml/MatrixText.qml

27 lines
609 B
QML
Raw Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.5
2019-11-03 05:28:16 +03:00
import QtQuick.Controls 2.3
2020-06-24 17:24:22 +03:00
import im.nheko 1.0
TextEdit {
2020-10-08 22:11:21 +03:00
textFormat: TextEdit.RichText
readOnly: true
focus: false
2020-10-08 22:11:21 +03:00
wrapMode: Text.Wrap
selectByMouse: !Settings.mobileMode
2021-02-14 03:28:28 +03:00
enabled: selectByMouse
2020-10-08 22:11:21 +03:00
color: colors.text
2021-04-29 20:09:16 +03:00
onLinkActivated: TimelineManager.openLink(link)
2020-10-08 22:11:21 +03:00
ToolTip.visible: hoveredLink
ToolTip.text: hoveredLink
2021-02-14 03:28:28 +03:00
CursorShape {
2020-10-08 22:11:21 +03:00
anchors.fill: parent
2021-02-14 03:28:28 +03:00
cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
2020-10-08 22:11:21 +03:00
}
2019-11-03 05:28:16 +03:00
}