aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/loader/creationContext1.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2012-06-26 13:45:35 +1000
committerQt by Nokia <qt-info@nokia.com>2012-06-27 07:26:46 +0200
commit73736a5f2e9668e4f38f5466df5df2ddf93e064f (patch)
tree750c5ec08c483a96fa7a9681c325d5390b893dae /src/quick/doc/snippets/qml/loader/creationContext1.qml
parent05dfbbbb261388c7be7a576b4be5791910f57076 (diff)
Document the concept of creation context for QML Components.
Task-number: QTBUG-18011 Change-Id: I78d13df70a20fd9286a20fad4cc09f21591d3f9a Reviewed-by: Bea Lam <bea.lam@nokia.com>
Diffstat (limited to 'src/quick/doc/snippets/qml/loader/creationContext1.qml')
-rw-r--r--src/quick/doc/snippets/qml/loader/creationContext1.qml65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/quick/doc/snippets/qml/loader/creationContext1.qml b/src/quick/doc/snippets/qml/loader/creationContext1.qml
new file mode 100644
index 0000000000..1c738420fb
--- /dev/null
+++ b/src/quick/doc/snippets/qml/loader/creationContext1.qml
@@ -0,0 +1,65 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/
+**
+** This file is part of the documentation of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** 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, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.0
+
+//![0]
+Item {
+ width: 400
+ height: 400
+
+ Component {
+ id: myComponent
+ Text { text: index } //fails
+ }
+
+ ListView {
+ anchors.fill: parent
+ model: 5
+ delegate: Component {
+ id: delegateComponent
+ Loader {
+ sourceComponent: myComponent
+ }
+ }
+ }
+}
+//![0]