forked from qt-creator/qt-creator
Restructure existing information and fix navigation links. Fixes: QDS-4470 Change-Id: I4a1118a4620527b461b99bf05b8b06d947018c80 Reviewed-by: Johanna Vanhatapio <johanna.vanhatapio@qt.io>
124 lines
4.1 KiB
Plaintext
124 lines
4.1 KiB
Plaintext
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2021 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the Qt Creator documentation.
|
|
**
|
|
** 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 The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU Free Documentation License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Free
|
|
** Documentation License version 1.3 as published by the Free Software
|
|
** Foundation and appearing in the file included in the packaging of
|
|
** this file. Please review the following information to ensure
|
|
** the GNU Free Documentation License version 1.3 requirements
|
|
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
/*!
|
|
\page qtquick-placeholder-data.html
|
|
|
|
\previouspage studio-simulation-overview.html
|
|
\if defined(qtdesignstudio)
|
|
\nextpage studio-javascript.html
|
|
\else
|
|
\nextpage creator-qml-modules-with-plugins.html
|
|
\endif
|
|
|
|
\title Loading Placeholder Data
|
|
|
|
\QC supports views, models, and delegates, so that when you add
|
|
a Grid View, List View, or Path View component, the ListModel and
|
|
the delegate component are added automatically.
|
|
|
|
However, the missing context of the application presents a challenge.
|
|
Specific models defined in C++ are the most obvious case. Often,
|
|
the context is missing simple properties, which are either defined in C++,
|
|
or in other component files. A typical example is a component that uses the
|
|
properties of its parent, such as \c parent.width.
|
|
|
|
\section1 Using Dummy Models
|
|
|
|
If you open a file in \l {Form Editor} that references a C++ model, you see
|
|
nothing in it. If the data in the model is fetched from the
|
|
internet, you have no control over it. To get reliable data, \e {dummy data}
|
|
was introduced.
|
|
|
|
For example, the following code snippet describes the file example.qml that
|
|
contains a ListView that in turn specifies a C++ model:
|
|
|
|
\qml
|
|
ListView {
|
|
model: dataModel
|
|
delegate: ContactDelegate {
|
|
name: name
|
|
}
|
|
}
|
|
\endqml
|
|
|
|
Create a directory named \e dummydata in the root directory of the project,
|
|
so that it is not deployed to the device. In the \c dummydata directory,
|
|
create a file (.qml) that has the same name as the value of \c model:
|
|
|
|
\code
|
|
qml/exampleapp/example.qml
|
|
dummydata/dataModel.qml
|
|
\endcode
|
|
|
|
Then create the dataModel.qml file that contains the dummy data:
|
|
|
|
\qml
|
|
import QtQuick 2.0
|
|
|
|
ListModel {
|
|
ListElement {
|
|
name: "Ariane"
|
|
}
|
|
ListElement {
|
|
name: "Bella"
|
|
}
|
|
ListElement {
|
|
name: "Corinna"
|
|
}
|
|
}
|
|
\endqml
|
|
|
|
\section1 Creating Dummy Context
|
|
|
|
The following example presents a common pattern:
|
|
|
|
\qml
|
|
Item {
|
|
width: parent.width
|
|
height: parent.height
|
|
}
|
|
\endqml
|
|
|
|
This works nicely for applications but \uicontrol {Form Editor} displays a
|
|
zero-sized component. A parent for the opened file does not exist, because
|
|
the context is missing. To get around the missing context, the idea of a
|
|
\e {dummy context} is introduced. If you place a file with the same name as
|
|
the application (here, example.qml) in the \c {dummydata/context} directory,
|
|
you can fake a parent context:
|
|
|
|
\qml
|
|
import QtQuick 2.0
|
|
import QmlDesigner 1.0
|
|
|
|
DummyContextObject {
|
|
parent: Item {
|
|
width: 640
|
|
height: 300
|
|
}
|
|
}
|
|
\endqml
|
|
*/
|