summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/doc/qdoc-manual.qdoc
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@nokia.com>2011-02-22 10:53:12 (GMT)
committerMartin Smith <martin.smith@nokia.com>2011-02-22 10:53:12 (GMT)
commitd89d932c08b2841253b66e2c140807de824185eb (patch)
tree4137fe848dda49f1158002234db11474882a88fd /tools/qdoc3/doc/qdoc-manual.qdoc
parentd94188fa8ce1dc67c3c9d6155baf78a2b6ac65a4 (diff)
downloadQt-d89d932c08b2841253b66e2c140807de824185eb.zip
Qt-d89d932c08b2841253b66e2c140807de824185eb.tar.gz
Qt-d89d932c08b2841253b66e2c140807de824185eb.tar.bz2
qdoc: More updating command descriptions.
Diffstat (limited to 'tools/qdoc3/doc/qdoc-manual.qdoc')
-rw-r--r--tools/qdoc3/doc/qdoc-manual.qdoc160
1 files changed, 77 insertions, 83 deletions
diff --git a/tools/qdoc3/doc/qdoc-manual.qdoc b/tools/qdoc3/doc/qdoc-manual.qdoc
index 9729944..f1aa8c4 100644
--- a/tools/qdoc3/doc/qdoc-manual.qdoc
+++ b/tools/qdoc3/doc/qdoc-manual.qdoc
@@ -4538,103 +4538,97 @@
\target group-command
\section1 \\group
- The \\group command creates a separate page that
- lists the classes belonging to the group specified by the
- command's argument.
+ The \\group command creates a separate page that lists the classes
+ belonging to the group. The argument is the group name.
- The command follows \l {topic argument} {the general
- topic command convention} for the argument. The \\group
- command is typically followed by a \l {title-command} {\\title}
- command and a short introduction to the group. The
- generated HTML documentation for the specified group is put
- in <lower-case>\e{group}.html.
-
- A class can be related to a group by using the \l
- {ingroup-command} {\\ingroup} command. In addition, overviews can be
- related to a group using the same command, but these must
- be listed explicitly using the \l
- {generatelist-command} {\\generatelist} command (see example below).
-
- Each class is listed with a link to the class reference
- page and a brief description based on the classes' \l
- {brief-command} {\\brief} texts. For example:
-
- \code
- / *!
- \group io
+ A class is included in a group by using the \l {ingroup-command}
+ {\\ingroup} command. Overview pages can also be related to a group
+ using the same command, but the list of overview pages must be
+ requested explicitly using the \l {generatelist-command}
+ {\\generatelist} command (see example below).
- \title Input/Output and Networking
+ The \\group command is typically followed by a \l {title-command}
+ {\\title} command and a short introduction to the group. The
+ HTML page for the group is written to a \c {.html} file put in
+ <lower-case>\e{group}.html.
- These classes are used to handle input and output to
- and from external devices, processes, files etc. as
- well as manipulating files and directories.
- * /
- \endcode
+ Each class name is listed as a link to the class reference page
+ followed by the text from the class's \l {brief-command} {\\brief}
+ texts. For example:
- QDoc renders this as:
+ \code
+ / *!
+ \group io
- \quotation
- \raw HTML
+ \title Input/Output and Networking
- <h1>Input/Output and Networking</h1>
-
- <p>These classes are used to handle input and output
- to and from external devices, processes, files etc. as
- well as manipulating files and directories.</p>
-
- <p>
- <table width="100%">
- <tr valign="top" bgcolor="#e0e0e0">
- <td><b>
- <a href="http://qt.nokia.com/doc/4.0/qabstractsocket.html">QAbstractSocket</a>
- </b></td>
- <td>
- The base functionality common to all socket types
- </td></tr>
-
- <tr valign="top" bgcolor="#e0e0e0">
- <td><b>
- <a href="http://qt.nokia.com/doc/4.0/qbuffer.html">QBuffer</a>
- </b></td>
- <td>
- QIODevice interface for a QByteArray
- </td></tr>
-
- <tr valign="top" bgcolor="#e0e0e0">
- <td><b>
- <a href="http://qt.nokia.com/doc/4.0/qclipboard.html">QClipboard</a>
- </b></td>
- <td>
- Access to the window system clipboard
- </td></tr>
- </table>
- \endraw
- \endquotation
+ These classes are used to handle input and output to
+ and from external devices, processes, files etc. as
+ well as manipulating files and directories.
+ * /
+ \endcode
- in io.html.
+ QDoc generates a group page in \c{io.html} that will look
+ something like this:
- Note that overviews related to the given group, must be
- listed explicitly using the \l
- {generatelist-command} {\\generatelist} command with the \c related
- argument. For example:
+ \quotation
+ \raw HTML
+
+ <h1>Input/Output and Networking</h1>
+
+ <p>These classes are used to handle input and output
+ to and from external devices, processes, files etc. as
+ well as manipulating files and directories.</p>
+
+ <p>
+ <table width="100%">
+ <tr valign="top" bgcolor="#e0e0e0">
+ <td><b>
+ <a href="http://qt.nokia.com/doc/4.0/qabstractsocket.html">QAbstractSocket</a>
+ </b></td>
+ <td>
+ The base functionality common to all socket types
+ </td></tr>
+
+ <tr valign="top" bgcolor="#e0e0e0">
+ <td><b>
+ <a href="http://qt.nokia.com/doc/4.0/qbuffer.html">QBuffer</a>
+ </b></td>
+ <td>
+ QIODevice interface for a QByteArray
+ </td></tr>
+
+ <tr valign="top" bgcolor="#e0e0e0">
+ <td><b>
+ <a href="http://qt.nokia.com/doc/4.0/qclipboard.html">QClipboard</a>
+ </b></td>
+ <td>
+ Access to the window system clipboard
+ </td></tr>
+ </table>
+ \endraw
+ \endquotation
- \code
- / *!
- \group architecture
+ Note that overview pages related to the group, must be listed
+ explicitly using the \l {generatelist-command} {\\generatelist}
+ command with the \c related argument. For example:
- \title Architecture
+ \code
+ / *!
+ \group architecture
- These documents describe aspects of Qt's architecture
- and design, including overviews of core Qt features and
- technologies.
+ \title Architecture
- \generatelist{related}
- * /
- \endcode
+ These documents describe aspects of Qt's architecture
+ and design, including overviews of core Qt features and
+ technologies.
- See also \l {ingroup-command} {\\ingroup} and \l
- {generatelist-command} {\\generatelist}.
+ \generatelist{related}
+ * /
+ \endcode
+ See also \l {ingroup-command} {\\ingroup} and \l
+ {generatelist-command} {\\generatelist}.
\target headerfile-command
\section1 \\headerfile