2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2014-09-09 10:04:23 +02:00
|
|
|
|
2022-02-11 17:34:27 +01:00
|
|
|
import QtQuick
|
2014-09-09 10:04:23 +02:00
|
|
|
import MyPlugin 1.0
|
|
|
|
|
|
2022-02-11 17:34:27 +01:00
|
|
|
Rectangle {
|
2014-09-09 10:04:23 +02:00
|
|
|
width: 640
|
|
|
|
|
height: 480
|
|
|
|
|
|
|
|
|
|
MyComponent {
|
|
|
|
|
text: qsTr("Some Text")
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-11 17:34:27 +01:00
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
|
Designer {
|
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
|
|
|
}
|
|
|
|
|
##^##*/
|