Warning, /sdk/rust-qt-binding-generator/templates/qt_quick_cargo/MainForm.ui.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.6
0002 import RustCode 1.0
0003
0004 Rectangle {
0005 property alias mouseArea: mouseArea
0006 property alias textEdit: textEdit
0007
0008 Simple {
0009 id: rust
0010 }
0011
0012 width: 360
0013 height: 360
0014
0015 MouseArea {
0016 id: mouseArea
0017 anchors.fill: parent
0018 }
0019
0020 TextEdit {
0021 id: textEdit
0022 text: rust.message
0023 verticalAlignment: Text.AlignVCenter
0024 anchors.top: parent.top
0025 anchors.horizontalCenter: parent.horizontalCenter
0026 anchors.topMargin: 20
0027 Rectangle {
0028 anchors.fill: parent
0029 anchors.margins: -10
0030 color: "transparent"
0031 border.width: 1
0032 }
0033 }
0034 }