summaryrefslogtreecommitdiff
path: root/doc/qtcreatordev
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2021-11-19 11:28:25 +0100
committerEike Ziller <eike.ziller@qt.io>2021-12-02 11:02:35 +0000
commitd0973148731fbd60269b83aebc3a717800642d20 (patch)
tree5efd7cb2638bf47fe2100056cc22debdfbeaf7f3 /doc/qtcreatordev
parent510ab1a6595d6b1c3956f94f225d03b08b830f14 (diff)
downloadqt-creator-d0973148731fbd60269b83aebc3a717800642d20.tar.gz
Split "New File or Project" into "File" and "Project" parts
This was non-standard to begin with, and splitting it makes it possible to have different designs for New Project and New File dialogs that are more tailored for the different needs (as is done in Design Studio) Change-Id: Ie6246e3c3f3527702c4562ec6f8fcbf5fae6c6ad Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'doc/qtcreatordev')
-rw-r--r--doc/qtcreatordev/src/common-extension-tasks.qdoc2
-rw-r--r--doc/qtcreatordev/src/first-plugin.qdoc2
-rw-r--r--doc/qtcreatordev/src/qtcreator-dev-wizards.qdoc6
-rw-r--r--doc/qtcreatordev/src/qtcreator-dev.qdoc2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/qtcreatordev/src/common-extension-tasks.qdoc b/doc/qtcreatordev/src/common-extension-tasks.qdoc
index 807c84e1bd..7f514af370 100644
--- a/doc/qtcreatordev/src/common-extension-tasks.qdoc
+++ b/doc/qtcreatordev/src/common-extension-tasks.qdoc
@@ -61,7 +61,7 @@
\row
\li Add a new wizard.
\li You can extend the wizards in \uicontrol File >
- \uicontrol {New File or Project} with your own file
+ \uicontrol {New File} and \uicontrol {New Project} with your own file
and project templates. We recommend that you create
JSON-based wizards instead of implementing new
wizards in C++ code.
diff --git a/doc/qtcreatordev/src/first-plugin.qdoc b/doc/qtcreatordev/src/first-plugin.qdoc
index 9b347facc3..99c709a713 100644
--- a/doc/qtcreatordev/src/first-plugin.qdoc
+++ b/doc/qtcreatordev/src/first-plugin.qdoc
@@ -48,7 +48,7 @@
with.
\list 1
- \li Select \uicontrol File > \uicontrol {New File or Project} >
+ \li Select \uicontrol File > \uicontrol {New Project} >
\uicontrol Library > \uicontrol {Qt Creator Plugin} >
\uicontrol Choose.
diff --git a/doc/qtcreatordev/src/qtcreator-dev-wizards.qdoc b/doc/qtcreatordev/src/qtcreator-dev-wizards.qdoc
index ddb11119ea..1888f7516e 100644
--- a/doc/qtcreatordev/src/qtcreator-dev-wizards.qdoc
+++ b/doc/qtcreatordev/src/qtcreator-dev-wizards.qdoc
@@ -44,7 +44,7 @@
the wizard does and what its UI looks like.
\li Providing a set of parameters that determine how the wizard shows up
- in the list of wizards in the \uicontrol {New File or Project} dialog.
+ in the list of wizards in the \uicontrol {New File} or \uicontrol {New Project} dialog.
When deriving from Core::IWizardFactory, the constructor has to call
the following setters provided by the base class:
@@ -103,7 +103,7 @@
\section2 Setters and Getters of IWizardFactory
The setters and getters listed below determine how the wizard shows up
- in the list of wizards in the \uicontrol {New File or Project} dialog.
+ in the list of wizards in the \uicontrol {New File} or \uicontrol {New Project} dialog.
\table
\header
@@ -151,6 +151,6 @@
\endtable
All wizards that have the same category set will be grouped together in the
- \uicontrol {New File or Project} dialog.
+ \uicontrol {New File} or \uicontrol {New Project} dialog.
*/
diff --git a/doc/qtcreatordev/src/qtcreator-dev.qdoc b/doc/qtcreatordev/src/qtcreator-dev.qdoc
index 74ba98bcb2..7a1e1093be 100644
--- a/doc/qtcreatordev/src/qtcreator-dev.qdoc
+++ b/doc/qtcreatordev/src/qtcreator-dev.qdoc
@@ -67,7 +67,7 @@
\section2 File and Project Templates
You can extend the wizards in \uicontrol File >
- \uicontrol {New File or Project} with your own file and project templates by
+ \uicontrol {New File} or \uicontrol {New Project} with your own file and project templates by
writing JSON definition files for them.
\list
\li \l{https://doc.qt.io/qtcreator/creator-project-wizards.html}