summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tutorials
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2024-02-28 14:23:07 +0100
committerKai Köhne <kai.koehne@qt.io>2024-02-29 15:35:58 +0100
commitb74f814ae26b07fe1678ee58dfb651eb3d4717da (patch)
tree5dd560f1da6cceaafc51b6fb00e8d6ad6204f0cd /examples/widgets/tutorials
parentd5deca54cb7456ac52a30ad668640a756a34fad0 (diff)
Doc: Further replace 'Qt Designer' with 'Qt Widgets Designer'
Use \QD macro wherever possible. Amends 8aceccc7eb075 Task-number: QTBUG-122253 Change-Id: I276dabd40fb81486f6380fd90cf9968990932a24 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'examples/widgets/tutorials')
-rw-r--r--examples/widgets/tutorials/notepad/gettingstartedqt.qdoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/widgets/tutorials/notepad/gettingstartedqt.qdoc b/examples/widgets/tutorials/notepad/gettingstartedqt.qdoc
index e1d9312987..0979cecb18 100644
--- a/examples/widgets/tutorials/notepad/gettingstartedqt.qdoc
+++ b/examples/widgets/tutorials/notepad/gettingstartedqt.qdoc
@@ -143,25 +143,25 @@
The wizard generates a user interface definition in XML format: notepad.ui.
When you open the notepad.ui file in Qt Creator, it automatically
- opens in the integrated Qt Designer.
+ opens in the integrated \QD.
When you build the application, Qt Creator launches the Qt
\l{User Interface Compiler (uic)} that reads the .ui file and creates
a corresponding C++ header file, ui_notepad.h.
- \section2 Using Qt Designer
+ \section2 Using \QD
The wizard creates an application that uses a QMainWindow. It has
its own layout to which you can add a menu bar, dock widgets, toolbars,
and a status bar. The center area can be occupied by any kind of widget.
The wizard places the Notepad widget there.
- To add widgets in Qt Designer:
+ To add widgets in \QD:
\list 1
\li In the Qt Creator \uicontrol Edit mode, double-click the notepad.ui
file in the \uicontrol Projects view to launch the file in the integrated
- Qt Designer.
+ \QD.
\li Drag and drop widgets Text Edit (QTextEdit) to the form.
\li Press \key {Ctrl+A} (or \key {Cmd+A}) to select the widgets and click
\uicontrol {Lay out Vertically} (or press \key {Ctrl+L}) to apply a vertical
@@ -169,7 +169,7 @@
\li Press \key {Ctrl+S} (or \key {Cmd+S}) to save your changes.
\endlist
- The UI now looks as follows in Qt Designer:
+ The UI now looks as follows in \QD:
\image notepad4.png