Doc: Fix qdoc link warnings to Qt Creator docs

Also, use the macro, \QC.

Change-Id: I0c0fddf4c70bbe420a27d54c2ad8ee01487dff81
Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
This commit is contained in:
Andreas Eliasson 2024-08-06 12:39:48 +02:00
parent aa258d7816
commit df340d9ca8
4 changed files with 14 additions and 14 deletions

View File

@ -16,8 +16,8 @@ application.
\section1 Chapter 1: Setting Up
When setting up a new project, it's easiest to use
\l {Qt Creator Manual}{Qt Creator}. For this project, we chose the
\l {Qt Creator: Creating Qt Quick Projects}{Qt Quick application} template, which creates a
\l {\QC Documentation}{\QC}. For this project, we chose the
\l {\QC: Creating Qt Quick Projects}{Qt Quick application} template, which creates a
basic "Hello World" application with the following files:
\list

View File

@ -31,7 +31,7 @@ Examples/Qt-\QtVersion/qml/tutorials/extending-qml/.
Alternatively, you can follow the tutorial by creating the sources from scratch:
For each chapter, create a new project using the \e {Qt Quick Application} template
in Qt Creator, as instructed in \l {Qt Creator: Creating Qt Quick Projects}.
in \QC, as instructed in \l {\QC: Creating Qt Quick Projects}.
Then follow along by adapting and extending the generated skeleton code.
\section1 Chapter 1: Creating a New Type

View File

@ -10,7 +10,7 @@
\keyword qtquick-samples
Qt includes several examples to demonstrate a particular usage. The examples
run as applications or as non-GUI examples in Qt Creator. Qt tutorials show
run as applications or as non-GUI examples in \QC. Qt tutorials show
the step-by-step information and give insight to particular code snippets.
This page lists the \l{Qt Qml} and \l{Qt Quick} examples, however, many other
@ -19,12 +19,12 @@ This page lists the \l{Qt Qml} and \l{Qt Quick} examples, however, many other
\section1 Running the Examples and Demos
The examples are packaged with the \l{Getting Started with Qt}{Qt installers}
and are accessed through Qt Creator. For more information about running
examples in Qt Creator, visit the
\l{Qt Creator: Building and Running an Example}{Building and Running an Example}
and are accessed through \QC. For more information about running
examples in \QC, visit the
\l{\QC: Building and Running an Example}{Building and Running an Example}
page.
Open and run examples within Qt Creator's \gui{Welcome} mode. Most of the
Open and run examples within \QC's \gui{Welcome} mode. Most of the
examples run on various platforms and to search for platform-specific
examples, type the platform name (or any keywords) in the search field. For
example, typing \c mobile in the search field lists the examples that are
@ -44,15 +44,15 @@ demos are deployable to mobile and desktop platforms.
\section1 Developing Qt Quick Applications
The following pages show how to develop Qt applications using
\l{Qt Creator Manual}{Qt Creator} and Qt Quick. The pages demonstrate various
\l{\QC Documentation}{\QC} and Qt Quick. The pages demonstrate various
steps such as use cases and introductory material. For more information about Qt Quick Applications and related modules, visit the \l{QML Applications} page.
\div {class="multi-column"}
\div {class="doc-column"}
\b{Development Environment}
\list
\li \l{Qt Creator: Creating Qt Quick Projects}{Creating Qt Quick Projects}
\li \l{Qt Creator: Using QML Modules with Plugins}{Using QML Modules with Plugins}
\li \l{\QC: Creating Qt Quick Projects}{Creating Qt Quick Projects}
\li \l{\QC: Using QML Modules with Plugins}{Using QML Modules with Plugins}
\endlist
\enddiv
\div {class="doc-column"}

View File

@ -361,9 +361,9 @@
style will illustrate the elevation with a drop shadow; the higher the
elevation, the larger the shadow.
The first step is to \l {Qt Creator: Project Types}{create a new Qt Quick
Controls application} in Qt Creator. After that, we
\l {Qt Creator: Creating C++ Classes}{add a C++ type} that stores the elevation. Since
The first step is to \l {\QC: Project Types}{create a new Qt Quick
Controls application} in \QC. After that, we
\l {\QC: Creating C++ Classes}{add a C++ type} that stores the elevation. Since
the type will be used for every control supported by our style, and because
we may wish to add other attached properties later on, we'll call it
MyStyle. Here is \c MyStyle.h: