forked from qt-creator/qt-creator
Conflicts: src/plugins/debugger/debuggerdialogs.cpp src/plugins/qmldesigner/components/materialeditor/materialeditorview.cpp src/plugins/texteditor/fontsettingspage.cpp Change-Id: I5a6accd2065e0d8320045b57ade7b54a9a09aae0
50 lines
2.0 KiB
Plaintext
50 lines
2.0 KiB
Plaintext
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
|
|
|
|
/*!
|
|
\previouspage studio-optimized-3d-scenes.html
|
|
\page studio-implementing-applications.html
|
|
\nextpage studio-designer-developer-workflow.html
|
|
|
|
\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.
|
|
|
|
You can use the \l{Code} view to edit your component
|
|
files (.qml). If you use JavaScript, you can debug and profile
|
|
your UIs to find and fix problems in them.
|
|
\endtable
|
|
|
|
\list
|
|
|
|
\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.
|
|
\li \l{Coding}
|
|
|
|
You can use the code editor in the \uicontrol {Code} view or
|
|
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
|
|
*/
|