Skip to content
Snippets Groups Projects
TextMessage.qml 1.83 KiB
Newer Older
  • Learn to ignore specific revisions
  • Nicolas Werner's avatar
    Nicolas Werner committed
    // SPDX-FileCopyrightText: 2021 Nheko Contributors
    
    // SPDX-FileCopyrightText: 2022 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 ".."
    
    import QtQuick.Controls 2.3
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    import im.nheko 1.0
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    MatrixText {
    
        required property string body
        required property bool isOnlyEmoji
        required property bool isReply
        required property string formatted
        property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
    
        property int metadataWidth
        property bool fitsMetadata: positionAt(width,height-4) == positionAt(width-metadataWidth-10, height-4)
    
        // table border-collapse doesn't seem to work
        text: "
        <style type=\"text/css\">
        a { color:" + Nheko.colors.link + ";}
        code { background-color: " + Nheko.colors.alternateBase + ";}
        table {
            border-width: 1px;
            border-collapse: collapse;
            border-style: solid;
        }
        table th,
        table td {
            bgcolor: " + Nheko.colors.alternateBase + ";
            border-collapse: collapse;
            border: 1px solid " + Nheko.colors.text + ";
        }
    
        blockquote { margin-left: 1em; }
    
        </style>
    
        " + formatted.replace(/<pre>/g, "<pre style='white-space: pre-wrap; background-color: " + Nheko.colors.alternateBase + "'>").replace(/<del>/g, "<s>").replace(/<\/del>/g, "</s>").replace(/<strike>/g, "<s>").replace(/<\/strike>/g, "</s>")
    
        height: isReply ? Math.round(Math.min(timelineView.height / 8, implicitHeight)) : implicitHeight
    
        selectByMouse: !Settings.mobileMode && !isReply
    
        enabled: !Settings.mobileMode
    
        font.pointSize: (Settings.enlargeEmojiOnlyMessages && isOnlyEmoji > 0 && isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
    
    
        CursorShape {
            enabled: isReply
            anchors.fill: parent
            cursorShape: Qt.PointingHandCursor
        }