Skip to content
Snippets Groups Projects
DapUiQmlWidgetConsoleLastActionsDelegateForm.qml 924 B
Newer Older
import QtQuick 2.0
import QtQuick.Layouts 1.0
jonymt's avatar
jonymt committed

Component {
    ColumnLayout {
jonymt's avatar
jonymt committed
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.leftMargin: 18 * pt
        anchors.rightMargin: 18 * pt

        Rectangle {
            height: 18 * pt
        }

        Text {
            id: textLastCmd
            Layout.fillWidth: true
            verticalAlignment: Qt.AlignVCenter
            wrapMode: Text.Wrap
            text: lastCommand
            color: "#5F5F63"
            font.family: "Roboto Regular"
            font.pixelSize: 14 * pt
            clip: true

            MouseArea {
                anchors.fill: parent
                onClicked: {
                    consoleData.append("> " + lastCommand);
                    dapConsoleModel.receiveRequest(lastCommand);
                }
            }
jonymt's avatar
jonymt committed
        }

        Rectangle {
            height: 18 * pt
        }
    }
}