2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
|
2021-09-06 17:19:52 +02:00
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\previouspage studio-optimized-3d-scenes.html
|
|
|
|
|
\page studio-implementing-applications.html
|
2021-11-18 15:25:02 +01:00
|
|
|
\nextpage studio-designer-developer-workflow.html
|
2021-09-06 17:19:52 +02:00
|
|
|
|
|
|
|
|
\title Implementing Applications
|
|
|
|
|
|
|
|
|
|
\table
|
|
|
|
|
\row
|
|
|
|
|
\li \image front-preview.png
|
|
|
|
|
\li \QDS attempts to meet your needs, whether you have previous
|
|
|
|
|
experience with QML and coding or not. When you install \QDS,
|
|
|
|
|
the default configuration allows you to start wireframing,
|
|
|
|
|
prototyping, and validating UIs with very little effort.
|
|
|
|
|
|
2022-08-29 13:58:04 +03:00
|
|
|
You can use the \l{Code} view to edit your component
|
2021-11-18 15:25:02 +01:00
|
|
|
files (.qml). If you use JavaScript, you can debug and profile
|
|
|
|
|
your UIs to find and fix problems in them.
|
2021-09-06 17:19:52 +02:00
|
|
|
\endtable
|
|
|
|
|
|
|
|
|
|
\list
|
2021-11-18 15:25:02 +01:00
|
|
|
|
|
|
|
|
\li \l{Designer-Developer Workflow}
|
|
|
|
|
|
|
|
|
|
In \QDS projects, you work on \l{UI Files}{UI files} (.ui.qml),
|
|
|
|
|
while developers work on the .qml and C++ source files in
|
|
|
|
|
Qt Creator to create an application that you can build and
|
|
|
|
|
run on target hardware.
|
2021-09-06 17:19:52 +02:00
|
|
|
\li \l{Coding}
|
|
|
|
|
|
2022-08-29 13:58:04 +03:00
|
|
|
You can use the code editor in the \uicontrol {Code} view or
|
2021-09-06 17:19:52 +02:00
|
|
|
in the \uicontrol Edit mode to modify QML code. The code editor
|
|
|
|
|
understands the QML language as code, not just as plain text. This
|
|
|
|
|
enables it to provide you with useful features, such as semantic
|
|
|
|
|
highlighting, checking code syntax, code completion, and refactoring
|
|
|
|
|
actions.
|
|
|
|
|
\li \l{Debugging and Profiling}
|
|
|
|
|
|
|
|
|
|
\QDS comes with a JavaScript debugger. In the \uicontrol Debug mode,
|
|
|
|
|
you can inspect the state of your UI while debugging.
|
|
|
|
|
|
|
|
|
|
The memory and CPU power available on devices are limited and
|
|
|
|
|
you should use them carefully. The QML Profiler enables you to
|
|
|
|
|
profile Qt Quick UIs.
|
|
|
|
|
\endlist
|
|
|
|
|
*/
|