Skip to content
Snippets Groups Projects
TextMessage.qml 2.11 KiB
Newer Older
  • Learn to ignore specific revisions
  • // SPDX-FileCopyrightText: 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
    
    //import QtQuick.Layouts
    
    import im.nheko
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    MatrixText {
    
        required property string body
        required property bool isOnlyEmoji
        required property bool isReply
    
        required property bool keepFullText
    
        required property string formatted
    
        property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
    
        property int metadataWidth: 100
    
        property bool fitsMetadata: false //positionAt(width,height-4) == positionAt(width-metadataWidth-10, height-4)
    
        // table border-collapse doesn't seem to work
        text: "
        <style type=\"text/css\">
    
        code { background-color: " + palette.alternateBase + "; white-space: pre-wrap; }
        pre { background-color: " + palette.alternateBase + "; white-space: pre-wrap; }
    
        table {
            border-width: 1px;
            border-collapse: collapse;
            border-style: solid;
    
            border-color: " + palette.text + ";
            background-color: " + palette.alternateBase + ";
    
        }
        table th,
        table td {
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            padding: " + Math.ceil(fontMetrics.lineSpacing/2) + "px;
    
        blockquote { margin-left: 1em; }
    
        " + (!Settings.mobileMode ? "span[data-mx-spoiler] {
    
            background-color: " + palette.text + ";
    
        }" : "") +  // TODO(Nico): Figure out how to support mobile
        "</style>
    
        " + formatted.replace(/<del>/g, "<s>").replace(/<\/del>/g, "</s>").replace(/<strike>/g, "<s>").replace(/<\/strike>/g, "</s>")
    
        //Layout.maximumHeight: !keepFullText ? Math.round(Math.min(timelineView.height / 8, implicitHeight)) : implicitHeight
    
        //EventDelegateChooser.fillWidth: true
    
    
        clip: !keepFullText
    
        selectByMouse: !Settings.mobileMode && !isReply
    
        enabled: !Settings.mobileMode && !isReply
        hoverEnabled: !Settings.mobileMode
    
        font.pointSize: (Settings.enlargeEmojiOnlyMessages && isOnlyEmoji > 0 && isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
    
        NhekoCursorShape {
    
            enabled: isReply
            anchors.fill: parent
            cursorShape: Qt.PointingHandCursor
        }