summary refs log tree commit diff
path: root/resources/qml/MatrixText.qml
blob: 7253cbe6be4ca8ffbdcfb9ba86bb1704598ddab2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// 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 {
    id: r

    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 || ""
    Component.onCompleted: {
        TimelineManager.fixImageRendering(r.textDocument, r);
    }

    CursorShape {
        anchors.fill: parent
        cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
    }

}