From 73736a5f2e9668e4f38f5466df5df2ddf93e064f Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 26 Jun 2012 13:45:35 +1000 Subject: Document the concept of creation context for QML Components. Task-number: QTBUG-18011 Change-Id: I78d13df70a20fd9286a20fad4cc09f21591d3f9a Reviewed-by: Bea Lam --- .../doc/snippets/qml/loader/creationContext1.qml | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/quick/doc/snippets/qml/loader/creationContext1.qml (limited to 'src/quick/doc/snippets/qml/loader/creationContext1.qml') 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] -- cgit v1.2.3