Skip to content
Snippets Groups Projects
MatrixText.qml 809 B
Newer Older
  • Learn to ignore specific revisions
  • Nicolas Werner's avatar
    Nicolas Werner committed
    // SPDX-FileCopyrightText: 2021 Nheko Contributors
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    // SPDX-License-Identifier: GPL-3.0-or-later
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    import QtQuick.Controls 2.3
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    import im.nheko 1.0
    
    
        textFormat: TextEdit.RichText
        readOnly: true
    
        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 || ""
    
    Nicolas Werner's avatar
    Nicolas Werner committed
        Component.onCompleted: {
            TimelineManager.fixImageRendering(r.textDocument, r);
        }
    
        CursorShape {
    
            anchors.fill: parent
    
            cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor