2011-12-14 15:07:05 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2020-02-25 11:24:03 +01:00
|
|
|
** Copyright (C) 2020 The Qt Company Ltd.
|
2016-01-15 14:51:16 +01:00
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-12-14 15:07:05 +01:00
|
|
|
**
|
2016-01-15 14:51:16 +01:00
|
|
|
** This file is part of the Qt Creator documentation.
|
2011-12-14 15:07:05 +01:00
|
|
|
**
|
2016-01-15 14:51:16 +01:00
|
|
|
** 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.
|
2011-12-14 15:07:05 +01:00
|
|
|
**
|
2016-01-15 14:51:16 +01:00
|
|
|
** GNU Free Documentation License Usage
|
2011-12-14 15:07:05 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Free
|
|
|
|
|
** Documentation License version 1.3 as published by the Free Software
|
2016-01-15 14:51:16 +01:00
|
|
|
** 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.
|
2011-12-14 15:07:05 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
// **********************************************************************
|
|
|
|
|
// NOTE: the sections are not ordered by their logical order to avoid
|
|
|
|
|
// reshuffling the file each time the index order changes (i.e., often).
|
|
|
|
|
// Run the fixnavi.pl script to adjust the links to the index order.
|
|
|
|
|
// **********************************************************************
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\page quick-components.html
|
2019-03-29 15:10:22 +01:00
|
|
|
\if defined(qtdesignstudio)
|
2020-06-11 10:41:24 +02:00
|
|
|
\previouspage studio-app-flows.html
|
2019-03-29 15:10:22 +01:00
|
|
|
\else
|
2018-08-24 13:46:38 +02:00
|
|
|
\previouspage creator-using-qt-quick-designer.html
|
2019-03-29 15:10:22 +01:00
|
|
|
\endif
|
2020-04-21 16:18:10 +02:00
|
|
|
\nextpage qtquick-form-editor.html
|
2011-12-14 15:07:05 +01:00
|
|
|
|
|
|
|
|
\title Creating Components
|
|
|
|
|
|
2013-03-13 11:39:36 +01:00
|
|
|
A \l{glossary-component}{component} provides a way of defining a new visual item
|
2011-12-14 15:07:05 +01:00
|
|
|
that you can re-use in other QML files. A component is like a black box; it
|
|
|
|
|
interacts with the outside world through properties, signals, and slots, and
|
|
|
|
|
is generally defined in its own QML file. You can import components to
|
2018-07-11 13:36:37 +02:00
|
|
|
applications.
|
|
|
|
|
|
2020-02-25 11:24:03 +01:00
|
|
|
The \uicontrol {Library} view lists the available QML types, UI
|
2020-02-20 16:32:01 +01:00
|
|
|
components, assets, and QML imports.
|
2018-07-11 13:36:37 +02:00
|
|
|
|
|
|
|
|
\image qmldesigner-qml-components.png "QML Components"
|
|
|
|
|
|
2020-05-07 09:24:14 +02:00
|
|
|
The \uicontrol {QML Types} tab displays the QML types grouped by category,
|
|
|
|
|
such as your own QML components, basic types, layouts, positioner types, and
|
|
|
|
|
views.
|
2018-07-11 13:36:37 +02:00
|
|
|
|
2020-10-01 16:48:17 +02:00
|
|
|
\section1 QML Imports
|
|
|
|
|
|
2018-07-11 13:36:37 +02:00
|
|
|
Sets of UI components with the look and feel of a particular mobile device
|
|
|
|
|
platform have been defined for Qt Quick 1. Since Qt 5.1, ready-made Qt
|
|
|
|
|
Quick Controls, Dialogs, and Layouts are available for creating user
|
|
|
|
|
interfaces using Qt Quick 2. The components and controls are based on
|
2020-05-07 09:24:14 +02:00
|
|
|
standard QML types. To view the components and controls in
|
2020-02-20 16:32:01 +01:00
|
|
|
\uicontrol {Library}, import the component sets in \uicontrol {QML Imports}.
|
2018-07-11 13:36:37 +02:00
|
|
|
|
|
|
|
|
The \uicontrol {Qt Quick Application} wizards for a particular platform add
|
|
|
|
|
the import statements automatically. You can remove import statements in
|
2020-04-22 16:03:39 +02:00
|
|
|
\uicontrol {QML Imports}.
|
2018-07-11 13:36:37 +02:00
|
|
|
|
2020-10-01 16:48:17 +02:00
|
|
|
\section1 Assets
|
|
|
|
|
|
2020-08-14 08:36:32 +02:00
|
|
|
\uicontrol {Assets} displays the images and other files that you import to
|
|
|
|
|
the project folder by selecting \uicontrol {Add New Assets}.
|
2018-07-11 13:36:37 +02:00
|
|
|
|
2020-10-01 16:48:17 +02:00
|
|
|
When you drag and drop assets from the tab to \uicontrol Navigator or
|
|
|
|
|
\uicontrol {Form Editor}, QML components with a suitable type are
|
|
|
|
|
automatically created for you. For example, when using graphical
|
|
|
|
|
assets to create components, the components will be of the Image type.
|
|
|
|
|
|
2018-07-11 13:36:37 +02:00
|
|
|
\section1 Adding Components to Designs
|
|
|
|
|
|
2020-05-07 09:24:14 +02:00
|
|
|
\image qmldesigner-editing-components.png "Editing QML components in Design mode"
|
2018-07-11 13:36:37 +02:00
|
|
|
|
|
|
|
|
\list 1
|
2020-05-07 09:24:14 +02:00
|
|
|
\li Drag and drop components from \uicontrol Library (1) to
|
|
|
|
|
\uicontrol Navigator (2) or \uicontrol {Form Editor} (3).
|
2020-08-25 17:10:49 +02:00
|
|
|
\li Select components in \uicontrol Navigator to edit the
|
|
|
|
|
values of their properties in \uicontrol Properties.
|
2020-05-07 09:24:14 +02:00
|
|
|
\image qmldesigner-properties-view.png "Properties view"
|
|
|
|
|
For more information, see \l {Specifying Item Properties}.
|
2020-08-25 17:10:49 +02:00
|
|
|
\li To change the appearance and behavior of your components in ways
|
|
|
|
|
that are not supported out of the box, you can define custom
|
|
|
|
|
properties for your components in the \uicontrol Connections view,
|
|
|
|
|
\uicontrol Properties tab.
|
|
|
|
|
\image qmldesigner-dynamicprops.png "Connections view Properties tab"
|
|
|
|
|
For more information, see \l{Specifying Dynamic Properties}.
|
|
|
|
|
\li To enable users to interact with components, connect the components
|
|
|
|
|
to signals in the \uicontrol Connections view. For example, you can
|
|
|
|
|
specify what happens when a component is clicked.
|
|
|
|
|
For more information, see \l{Connecting Objects to Signals}.
|
|
|
|
|
\image qmldesigner-connections.png "Connections view Connections tab"
|
|
|
|
|
\li To dynamically change the behavior of an object when another object
|
|
|
|
|
changes, create bindings between components in the
|
|
|
|
|
\uicontrol Connections view, \uicontrol Bindings tab.
|
|
|
|
|
For more information, see \l{Adding Bindings Between Properties}.
|
2020-05-07 09:24:14 +02:00
|
|
|
\image qmldesigner-bindings.png "Connections view Bindings tab"
|
2020-08-25 17:10:49 +02:00
|
|
|
\li Add states to apply sets of changes to the property values of one
|
|
|
|
|
or several components in the \uicontrol States view.
|
2020-05-07 09:24:14 +02:00
|
|
|
For more information, see \l{Adding States}.
|
|
|
|
|
\li Animate component properties in the \uicontrol Timeline view.
|
2020-04-22 16:06:49 +02:00
|
|
|
For more information, see \l{Creating Animations}.
|
2018-07-11 13:36:37 +02:00
|
|
|
\endlist
|
|
|
|
|
|
2020-10-01 16:48:17 +02:00
|
|
|
\section1 Component Types
|
|
|
|
|
|
|
|
|
|
The following sections describe the types of components that you can create
|
|
|
|
|
in the Design mode.
|
|
|
|
|
|
|
|
|
|
\list
|
|
|
|
|
\li \l Shapes
|
|
|
|
|
\li UI controls
|
|
|
|
|
\li Screens
|
2020-11-03 15:18:06 +01:00
|
|
|
\li \l {Lists and Other Data Models}
|
2020-10-01 16:48:17 +02:00
|
|
|
\endlist
|
|
|
|
|
|
|
|
|
|
\section2 Basic QML Types
|
2011-12-14 15:07:05 +01:00
|
|
|
|
2013-03-13 11:39:36 +01:00
|
|
|
You can use the following QML types to create components:
|
2011-12-14 15:07:05 +01:00
|
|
|
|
|
|
|
|
\list
|
2019-05-14 16:00:06 +02:00
|
|
|
\li \l [QtQuick]{AnimatedImage}{Animated Image} provides a way to play
|
2019-04-08 16:59:05 +02:00
|
|
|
animations stored as images containing a series of frames, such
|
|
|
|
|
as those stored in GIF files.
|
2019-05-14 16:00:06 +02:00
|
|
|
\li \l [QtQuick]{BorderImage}{Border Image} uses an image as a border or
|
2018-07-11 13:36:37 +02:00
|
|
|
background.
|
2019-05-14 16:00:06 +02:00
|
|
|
\li \l [QtQuick]{Image} adds a bitmap to the scene. You can stretch and
|
2018-07-11 13:36:37 +02:00
|
|
|
tile images.
|
2019-05-14 16:00:06 +02:00
|
|
|
\li \l [QtQuick]{Item} is the most basic of all visual types in QML. Even
|
2018-07-11 13:36:37 +02:00
|
|
|
though it has no visual appearance, it defines all the properties
|
|
|
|
|
that are common across visual types, such as the x and y position,
|
|
|
|
|
width and height, anchoring, and key handling.
|
2019-05-14 16:00:06 +02:00
|
|
|
\li \l [QtQuick] {Rectangle} adds a rectangle that is painted with a solid
|
2018-07-11 13:36:37 +02:00
|
|
|
fill color and an optional border. You can use the radius property
|
|
|
|
|
to create rounded rectangles.
|
2019-05-14 16:00:06 +02:00
|
|
|
\li \l [QtQuick]{Text} adds formatted read-only text.
|
|
|
|
|
\li \l [QtQuick]{TextEdit}{Text Edit} adds a single line of editable
|
2018-07-11 13:36:37 +02:00
|
|
|
formatted text that can be validated.
|
2019-05-14 16:00:06 +02:00
|
|
|
\li \l [QtQuick]{TextInput}{Text Input} adds a single line of editable
|
2018-07-11 13:36:37 +02:00
|
|
|
plain text that can be validated.
|
|
|
|
|
\endlist
|
2020-10-01 16:48:17 +02:00
|
|
|
\section1 User Interaction Methods
|
2018-07-11 13:36:37 +02:00
|
|
|
|
|
|
|
|
You can use the following QML types to add basic interaction methods to
|
2019-04-16 11:15:09 +02:00
|
|
|
UIs:
|
2018-07-11 13:36:37 +02:00
|
|
|
|
|
|
|
|
\list
|
|
|
|
|
\li \l{Flickable}
|
|
|
|
|
items can be flicked horizontally or vertically.
|
|
|
|
|
\li \l{FocusScope}{Focus Scope}
|
|
|
|
|
assists in keyboard focus handling when building reusable QML
|
|
|
|
|
components.
|
2019-05-14 16:00:06 +02:00
|
|
|
\li \l [QtQuick]{MouseArea}{Mouse Area} enables simple mouse handling.
|
2018-07-11 13:36:37 +02:00
|
|
|
\endlist
|
|
|
|
|
|
2019-04-08 16:56:13 +02:00
|
|
|
Since Qt 5.7, you can also use the following \l{Qt Quick Controls} types
|
2018-07-11 13:36:37 +02:00
|
|
|
to inform users about the progress of the application or to gather input
|
|
|
|
|
from the user:
|
|
|
|
|
|
|
|
|
|
\list
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{BusyIndicator}{Busy Indicator} indicates
|
2018-07-11 13:36:37 +02:00
|
|
|
activity while content is being loaded.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{Button} provides a push button that you can
|
2018-07-11 13:36:37 +02:00
|
|
|
associate with an action.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{CheckBox}{Check Box} provides an option button
|
2018-07-11 13:36:37 +02:00
|
|
|
that can be toggled on (checked) or off (unchecked).
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{CheckDelegate}{Check Delegate} presents an
|
2018-07-11 13:36:37 +02:00
|
|
|
item delegate that can be toggled on (checked) or off (unchecked).
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{ComboBox}{Combo Box} is a combined button and
|
2018-07-11 13:36:37 +02:00
|
|
|
popup list that is populated by using a data model.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{DelayButton}{Delay Button} provides an option
|
2018-07-12 15:52:43 +02:00
|
|
|
button that is triggered when held down long enough.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{Dial} is a circular dial that is rotated to
|
2018-07-11 13:36:37 +02:00
|
|
|
set a value.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{ProgressBar}{Progress Bar} indicates the
|
2018-07-11 13:36:37 +02:00
|
|
|
progress of an operation.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{RadioButton}{Radio Button} provides an option
|
2018-07-11 13:36:37 +02:00
|
|
|
button that can be switched on (checked) or off (unchecked).
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{RadioDelegate}{Radio Delegate} presents an
|
2018-07-11 13:36:37 +02:00
|
|
|
item delegate that can be toggled on (checked) or off (unchecked).
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{RangeSlider}{Range Slider} enables users to
|
2018-07-12 15:52:43 +02:00
|
|
|
select a range of values by sliding two handles along a track.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{RoundButton}{Round Button} provides a push
|
2018-07-12 15:52:43 +02:00
|
|
|
button with rounded corners that you can associate with an action.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{Slider} selects a value by sliding a handle
|
2018-07-11 13:36:37 +02:00
|
|
|
along a track.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{SpinBox}{Spin Box} enables the user to specify
|
2018-07-11 13:36:37 +02:00
|
|
|
a value by clicking the up or down buttons, by pressing up or down
|
|
|
|
|
on the keyboard, or by entering a value in the box.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{Switch} is an option button that can be
|
2018-07-11 13:36:37 +02:00
|
|
|
toggled on or off.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{SwitchDelegate}{Switch Delegate} presents an
|
2018-07-12 15:52:43 +02:00
|
|
|
item delegate with a switch indicator that can be toggled on or off.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls] {TabBar}{Tab Bar} enables users to switch
|
2018-07-12 15:52:43 +02:00
|
|
|
between different views or subtasks.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{TabButton}{Tab Button} is a button
|
2018-07-12 15:52:43 +02:00
|
|
|
that is functionally similar to \uicontrol Button, but provides a
|
|
|
|
|
look that is more suitable for a \uicontrol {Tab Bar}.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{TextArea}{Text Area} displays multiple lines
|
2018-07-11 13:36:37 +02:00
|
|
|
of editable formatted text.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{TextField}{Text Field} displays a single line
|
2018-07-11 13:36:37 +02:00
|
|
|
of editable plain text.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{ToolBar}{Tool Bar} is a container of
|
2018-07-11 13:36:37 +02:00
|
|
|
application-wide and context sensitive actions and controls, such as
|
|
|
|
|
navigation buttons and search fields.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{ToolButton}{Tool Button} is a button
|
2018-07-11 13:36:37 +02:00
|
|
|
that is functionally similar to \uicontrol Button, but provides a
|
|
|
|
|
look that is more suitable for a \uicontrol {Tool Bar}.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{ToolSeparator}{Tool Separator} separates a
|
2018-07-12 15:52:43 +02:00
|
|
|
group of items from adjacent items on a \uicontrol {Tool Bar}.
|
2019-04-08 16:56:13 +02:00
|
|
|
\li \l [QtQuickControls]{Tumbler} is a spinnable wheel of items that
|
2018-07-11 13:36:37 +02:00
|
|
|
can be selected.
|
2011-12-14 15:07:05 +01:00
|
|
|
\endlist
|
|
|
|
|
|
2020-09-08 17:00:43 +02:00
|
|
|
You can also use the \l Dialog type in the Qt Quick Dialogs module to wrap
|
|
|
|
|
arbitrary content into a dialog window including a row of platform-tailored
|
|
|
|
|
buttons.
|
2019-03-27 14:04:36 +01:00
|
|
|
|
2020-08-11 17:02:49 +02:00
|
|
|
\include qtquick-animation-types.qdocinc qtquick animation types
|
|
|
|
|
|
2018-08-21 16:57:07 +02:00
|
|
|
\if defined(qtdesignstudio)
|
2018-12-03 11:49:25 +01:00
|
|
|
\include qtdesignstudio-visual-effects.qdocinc qml visual effects
|
2018-08-21 16:57:07 +02:00
|
|
|
\include qtdesignstudio-components.qdocinc creating studio components
|
|
|
|
|
\include qtdesignstudio-components.qdocinc studio components
|
|
|
|
|
\endif
|
|
|
|
|
|
2018-07-11 13:36:37 +02:00
|
|
|
\section1 History of Qt Quick Controls
|
2017-05-04 11:47:04 +02:00
|
|
|
|
|
|
|
|
In Qt 4, ready-made Qt Quick 1 Components were provided for creating
|
2019-04-16 11:15:09 +02:00
|
|
|
UIs with a native look and feel for a particular target platform.
|
2017-05-04 11:47:04 +02:00
|
|
|
In Qt 5.1, Qt Quick Controls, Dialogs, and Layouts were added for
|
|
|
|
|
creating classic desktop-style user interfaces using Qt Quick 2.1. The
|
|
|
|
|
Qt Quick Controls Styles could be used to customize Qt Quick Controls.
|
2013-05-08 17:20:20 +02:00
|
|
|
|
2016-09-30 14:23:05 +02:00
|
|
|
Since Qt 5.7, \l {Qt Quick Controls 2} replace Qt Quick Controls 1 and
|
2017-05-04 11:47:04 +02:00
|
|
|
Qt Labs Controls. They provide lightweight QML types for creating performant
|
2017-08-17 17:02:56 +02:00
|
|
|
user interfaces for \l{glossary-device}{devices}.
|
2016-03-22 16:14:09 +01:00
|
|
|
|
2017-05-04 11:47:04 +02:00
|
|
|
Qt Quick Controls 2 achieve improved efficiency by employing a simplified
|
2019-10-29 10:43:01 +01:00
|
|
|
\l {Styling Qt Quick Controls}{styling architecture} when compared to
|
2018-06-25 17:46:23 +02:00
|
|
|
Qt Quick Controls, on which the module is based. The visual editor reads the
|
2017-05-04 11:47:04 +02:00
|
|
|
\c qtquickcontrols2.conf file that specifies the preferred style and some
|
|
|
|
|
style-specific arguments. To change the style, select another style from
|
|
|
|
|
the list on the toolbar. This enables you to check how your UI looks when
|
|
|
|
|
using the available styles.
|
|
|
|
|
|
2018-06-25 17:46:23 +02:00
|
|
|
For an example of defining your own style and using it in the Design mode, see
|
2017-05-05 14:28:08 +02:00
|
|
|
\l {Qt Quick Controls 2 - Flat Style}.
|
|
|
|
|
|
2019-07-16 16:42:15 +02:00
|
|
|
For more information about how to customize a particular control, see
|
|
|
|
|
\l{Customization Reference}.
|
|
|
|
|
|
2017-05-04 11:47:04 +02:00
|
|
|
Qt Quick Controls 2 work in conjunction with Qt Quick and Qt Quick Layouts.
|
2015-10-26 16:40:58 +01:00
|
|
|
|
2013-05-08 17:20:20 +02:00
|
|
|
The \QC project wizards create Qt Quick applications that use Qt Quick
|
2017-05-04 11:47:04 +02:00
|
|
|
2 types or Qt Quick Controls 2 types.
|
2011-12-14 15:07:05 +01:00
|
|
|
|
2017-05-04 11:47:04 +02:00
|
|
|
Even if you use Qt Quick Controls 2, you can still write cross-platform
|
2011-12-14 15:07:05 +01:00
|
|
|
applications, by using different sets of QML files for each platform.
|
|
|
|
|
|
2017-05-04 11:47:04 +02:00
|
|
|
Some ready-made controls, such as a gauge, dial, status indicator, and
|
|
|
|
|
tumbler, are provided by the \l {Qt Quick Extras} module.
|
|
|
|
|
|
2018-06-25 17:46:23 +02:00
|
|
|
\section1 Creating Components in Design Mode
|
2011-12-14 15:07:05 +01:00
|
|
|
|
|
|
|
|
\list 1
|
|
|
|
|
|
2014-12-11 15:43:19 +01:00
|
|
|
\li Select \uicontrol File > \uicontrol {New File or Project} >
|
2019-01-30 14:26:56 +01:00
|
|
|
\if defined(qtcreator)
|
|
|
|
|
\uicontrol Qt > \uicontrol {QML File (Qt Quick 2)} >
|
|
|
|
|
\else
|
|
|
|
|
\uicontrol {Qt Quick Files} > \uicontrol {Qt Quick File} >
|
|
|
|
|
\endif
|
|
|
|
|
\uicontrol Choose to create a new .qml file.
|
2011-12-14 15:07:05 +01:00
|
|
|
|
2020-05-07 09:24:14 +02:00
|
|
|
\note Components are listed in the \uicontrol {My QML Components}
|
|
|
|
|
tab in the \uicontrol Library view only if the filename begins with
|
|
|
|
|
a capital letter.
|
2011-12-14 15:07:05 +01:00
|
|
|
|
2018-06-25 17:46:23 +02:00
|
|
|
\li Click \uicontrol Design to open the .qml file in the Design mode.
|
2011-12-14 15:07:05 +01:00
|
|
|
|
2020-05-07 09:24:14 +02:00
|
|
|
\li Drag and drop a QML type from \uicontrol Library to
|
2017-02-03 15:43:05 +01:00
|
|
|
\uicontrol Navigator or \uicontrol {Form Editor}.
|
2011-12-14 15:07:05 +01:00
|
|
|
|
2020-05-07 09:24:14 +02:00
|
|
|
\li Edit its properties in \uicontrol Properties.
|
2011-12-14 15:07:05 +01:00
|
|
|
|
2013-03-13 11:39:36 +01:00
|
|
|
The available properties depend on the QML type.
|
2011-12-14 15:07:05 +01:00
|
|
|
|
|
|
|
|
\endlist
|
|
|
|
|
|
2020-05-07 09:24:14 +02:00
|
|
|
The following sections contain more information about how to use
|
2020-04-21 16:18:10 +02:00
|
|
|
\uicontrol {Form Editor} to edit 2D content, as well as examples of
|
|
|
|
|
how to create some common components using basic QML types:
|
2011-12-14 15:07:05 +01:00
|
|
|
|
|
|
|
|
\list
|
|
|
|
|
|
2020-04-21 16:18:10 +02:00
|
|
|
\li \l{Editing 2D Content}
|
|
|
|
|
|
2013-02-06 08:50:23 +01:00
|
|
|
\li \l{Creating Buttons}
|
2011-12-14 15:07:05 +01:00
|
|
|
|
2013-02-06 08:50:23 +01:00
|
|
|
\li \l{Creating Scalable Buttons and Borders}
|
2011-12-14 15:07:05 +01:00
|
|
|
|
|
|
|
|
\endlist
|
|
|
|
|
|
|
|
|
|
\section1 Moving Within Components
|
|
|
|
|
|
|
|
|
|
Components can consist of several other components. To view the component
|
2020-05-07 09:24:14 +02:00
|
|
|
hierarchy as a bread crumb path when you edit a component in
|
|
|
|
|
\uicontrol {Form Editor}, select \uicontrol {Go into Component} or press
|
|
|
|
|
\key F2. Click the component names in the path to navigate to them. You
|
|
|
|
|
can easily navigate back to the top level when you are done editing the
|
|
|
|
|
component.
|
2011-12-14 15:07:05 +01:00
|
|
|
|
|
|
|
|
\image qmldesigner-breadcrumbs.png "Go into Component command"
|
|
|
|
|
*/
|