summaryrefslogtreecommitdiff
path: root/tests/manual/qml/testprojects/plugins/plugins.qml
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@digia.com>2014-09-09 10:04:23 +0200
committerThomas Hartmann <Thomas.Hartmann@digia.com>2014-09-09 16:54:10 +0200
commit79c0a29deae622239cd0d57dfbe8c10d4e5be68b (patch)
treee3088e907ed8dc1b6b1804d103304d8fe946a65a /tests/manual/qml/testprojects/plugins/plugins.qml
parent0bb66932e3a5759f128acb6f39db86c07aa03d02 (diff)
downloadqt-creator-79c0a29deae622239cd0d57dfbe8c10d4e5be68b.tar.gz
QmlDesigner: Adding a manual test for plugin integration
Because we had a couple of regressions in this area, I add this project for manual testing. In this project we have a qmlproject with a plugin that contains a .metainfo file and a custom property sheet. We define two items in the item library: MyComponent and MyComponent2. While MyComponent has a custom property sheet the property sheet for MyComponent2 is auto generated. Change-Id: I8d5ade43f648354175587c0a3e989bad87149298 Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
Diffstat (limited to 'tests/manual/qml/testprojects/plugins/plugins.qml')
-rw-r--r--tests/manual/qml/testprojects/plugins/plugins.qml44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/manual/qml/testprojects/plugins/plugins.qml b/tests/manual/qml/testprojects/plugins/plugins.qml
new file mode 100644
index 0000000000..dd25598fe1
--- /dev/null
+++ b/tests/manual/qml/testprojects/plugins/plugins.qml
@@ -0,0 +1,44 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+import QtQuick 2.3
+import QtQuick.Controls 1.2
+import QtQuick.Window 2.2
+import MyPlugin 1.0
+
+ApplicationWindow {
+ title: qsTr("Hello World")
+ width: 640
+ height: 480
+
+ MyComponent {
+ text: qsTr("Some Text")
+
+ }
+}