Doc: Add missing full stops in briefs

Task-number: QTBUG-68933
Change-Id: I3f2a9f8c562f9a44bb32bddd31d75abbfe6de04d
Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
This commit is contained in:
Paul Wicking 2018-06-18 13:11:18 +02:00
parent f415f50619
commit 8bd73ad989
70 changed files with 73 additions and 73 deletions

View File

@ -28,7 +28,7 @@
/*! /*!
\example threads/queuedcustomtype \example threads/queuedcustomtype
\title Queued Custom Type Example \title Queued Custom Type Example
\brief Demonstrates multi-thread programming using Qt \brief Demonstrates multi-thread programming using Qt.
\ingroup qtconcurrent-mtexamples \ingroup qtconcurrent-mtexamples
\brief The Queued Custom Type example shows how to send custom types between \brief The Queued Custom Type example shows how to send custom types between

View File

@ -28,7 +28,7 @@
/*! /*!
\example threads/semaphores \example threads/semaphores
\title Semaphores Example \title Semaphores Example
\brief Demonstrates multi-thread programming using Qt \brief Demonstrates multi-thread programming using Qt.
\ingroup qtconcurrent-mtexamples \ingroup qtconcurrent-mtexamples
\brief The Semaphores example shows how to use QSemaphore to control \brief The Semaphores example shows how to use QSemaphore to control

View File

@ -28,7 +28,7 @@
/*! /*!
\example threads/waitconditions \example threads/waitconditions
\title Wait Conditions Example \title Wait Conditions Example
\brief Demonstrates multi-thread programming using Qt \brief Demonstrates multi-thread programming using Qt.
\ingroup qtconcurrent-mtexamples \ingroup qtconcurrent-mtexamples
\brief The Wait Conditions example shows how to use QWaitCondition and \brief The Wait Conditions example shows how to use QWaitCondition and

View File

@ -34,7 +34,7 @@
isn't, users still dislike an application using excessive memory. isn't, users still dislike an application using excessive memory.
Using QContiguousCache to manage a list, rather than loading Using QContiguousCache to manage a list, rather than loading
the entire list into memory, allows the application to limit the amount the entire list into memory, allows the application to limit the amount
of memory it uses, regardless of the size of the data set it accesses of memory it uses, regardless of the size of the data set it accesses.
The simplest way to use QContiguousCache is to cache as items are requested. When The simplest way to use QContiguousCache is to cache as items are requested. When
a view requests an item at row N it is also likely to ask for items at rows near a view requests an item at row N it is also likely to ask for items at rows near

View File

@ -29,7 +29,7 @@
\example blockingfortuneclient \example blockingfortuneclient
\title Blocking Fortune Client Example \title Blocking Fortune Client Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates how to create a client for a network service \brief Demonstrates how to create a client for a network service.
\image blockingfortuneclient-example.png \image blockingfortuneclient-example.png

View File

@ -29,7 +29,7 @@
\example fortuneclient \example fortuneclient
\title Fortune Client Example \title Fortune Client Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates how to create a client for a network service \brief Demonstrates how to create a client for a network service.
This example uses QTcpSocket, and is intended to be run alongside the This example uses QTcpSocket, and is intended to be run alongside the
\l{fortuneserver}{Fortune Server} example or \l{fortuneserver}{Fortune Server} example or

View File

@ -29,7 +29,7 @@
\example googlesuggest \example googlesuggest
\title Google Suggest Example \title Google Suggest Example
\ingroup examples-network \ingroup examples-network
\brief Obtains the list of search recommendations by the Google search engine \brief Obtains the list of search recommendations by the Google search engine.
The example uses the QNetworkAccessManager to obtain the list of search The example uses the QNetworkAccessManager to obtain the list of search
recommendations by Google as the user types into a QLineEdit. recommendations by Google as the user types into a QLineEdit.

View File

@ -29,7 +29,7 @@
\example http \example http
\title HTTP Example \title HTTP Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates a simple HTTP client \brief Demonstrates a simple HTTP client.
This example demonstrates how a simple HTTP client can fetch files This example demonstrates how a simple HTTP client can fetch files
from remote hosts. from remote hosts.

View File

@ -29,7 +29,7 @@
\example loopback \example loopback
\title Loopback Example \title Loopback Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates the client-server communication on a local host \brief Demonstrates the client-server communication on a local host.
The example demonstrates how the clients and servers on a local host The example demonstrates how the clients and servers on a local host
communicate with each other. communicate with each other.

View File

@ -29,7 +29,7 @@
\example multicastreceiver \example multicastreceiver
\title Multicast Receiver Example \title Multicast Receiver Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates how to receive information sent to a multicast group \brief Demonstrates how to receive information sent to a multicast group.
This example demonstrates how to receive messages sent to a multicast group This example demonstrates how to receive messages sent to a multicast group
\image multicastreceiver-example.png \image multicastreceiver-example.png

View File

@ -29,7 +29,7 @@
\example multicastsender \example multicastsender
\title Multicast Sender Example \title Multicast Sender Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates how to send messages to a multicast group \brief Demonstrates how to send messages to a multicast group.
This example demonstrates how to send messages to the clients of a This example demonstrates how to send messages to the clients of a
multicast group. multicast group.

View File

@ -29,7 +29,7 @@
\example network-chat \example network-chat
\title Network Chat Example \title Network Chat Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates a stateful peer-to-peer Chat client \brief Demonstrates a stateful peer-to-peer Chat client.
This example uses broadcasting with QUdpSocket and QNetworkInterface to This example uses broadcasting with QUdpSocket and QNetworkInterface to
discover its peers. discover its peers.

View File

@ -28,7 +28,7 @@
/*! /*!
\example download \example download
\title Network Download Example \title Network Download Example
\brief Demonstrates how to use networking APIs for multiple downloads \brief Demonstrates how to use networking APIs for multiple downloads.
\ingroup examples-network \ingroup examples-network
The Network Download example shows how to perform multiple downloads in The Network Download example shows how to perform multiple downloads in

View File

@ -28,7 +28,7 @@
/*! /*!
\example downloadmanager \example downloadmanager
\title Network Download Manager Example \title Network Download Manager Example
\brief Demonstrates how to use the networking APIs for multiple downloads \brief Demonstrates how to use the networking APIs for multiple downloads.
\ingroup examples-network \ingroup examples-network
The Network Download example shows how to implement a queue for multiple The Network Download example shows how to implement a queue for multiple

View File

@ -29,7 +29,7 @@
\example securesocketclient \example securesocketclient
\title Secure Socket Client Example \title Secure Socket Client Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates how to communicate over an encrypted (SSL) connection \brief Demonstrates how to communicate over an encrypted (SSL) connection.
This example uses QSslSocket to demonstrate how to communicate over an This example uses QSslSocket to demonstrate how to communicate over an
encrypted connection, deal with authenticity problems, and display security encrypted connection, deal with authenticity problems, and display security

View File

@ -29,7 +29,7 @@
\example torrent \example torrent
\title Torrent Example \title Torrent Example
\ingroup examples-network \ingroup examples-network
\brief Demonstrates complex TCP/IP operations \brief Demonstrates complex TCP/IP operations.
This example demonstrates some of the complex TCP/IP operations This example demonstrates some of the complex TCP/IP operations
supported by the Qt Network APIs. supported by the Qt Network APIs.

View File

@ -28,7 +28,7 @@
/*! /*!
\example wordcount \example wordcount
\title QtConcurrent Word Count Example \title QtConcurrent Word Count Example
\brief Demonstrates how to use the map-reduce algorithm \brief Demonstrates how to use the map-reduce algorithm.
\ingroup qtconcurrentexamples \ingroup qtconcurrentexamples
The QtConcurrent Word Count example demonstrates the use of the map-reduce The QtConcurrent Word Count example demonstrates the use of the map-reduce

View File

@ -29,7 +29,7 @@
\example hellovulkancubes \example hellovulkancubes
\title Hello Vulkan Cubes Example \title Hello Vulkan Cubes Example
\ingroup examples-vulkan \ingroup examples-vulkan
\brief Shows the basics of using QVulkanWindow \brief Shows the basics of using QVulkanWindow.
The \e{Hello Vulkan Cubes Example} shows more advanced usage of QVulkanWindow. The \e{Hello Vulkan Cubes Example} shows more advanced usage of QVulkanWindow.

View File

@ -29,7 +29,7 @@
\example hellovulkantexture \example hellovulkantexture
\ingroup examples-vulkan \ingroup examples-vulkan
\title Hello Vulkan Texture Vulkan Example \title Hello Vulkan Texture Vulkan Example
\brief Shows the basics of rendering with textures in a QVulkanWindow \brief Shows the basics of rendering with textures in a QVulkanWindow.
The \e{Hello Vulkan Texture Example} builds on \l hellovulkantriangle. Here The \e{Hello Vulkan Texture Example} builds on \l hellovulkantriangle. Here
instead of drawing a single triangle, a triangle strip is drawn in order to instead of drawing a single triangle, a triangle strip is drawn in order to

View File

@ -29,7 +29,7 @@
\example hellovulkantriangle \example hellovulkantriangle
\ingroup examples-vulkan \ingroup examples-vulkan
\title Hello Vulkan Triangle Example \title Hello Vulkan Triangle Example
\brief Shows the basics of rendering with QVulkanWindow and the Vulkan API \brief Shows the basics of rendering with QVulkanWindow and the Vulkan API.
The \e{Hello Vulkan Triangle Example} builds on \l hellovulkanwindow. This The \e{Hello Vulkan Triangle Example} builds on \l hellovulkanwindow. This
time a full graphics pipeline is created, including a vertex and fragment time a full graphics pipeline is created, including a vertex and fragment

View File

@ -29,7 +29,7 @@
\example hellovulkanwidget \example hellovulkanwidget
\ingroup examples-vulkan \ingroup examples-vulkan
\title Hello Vulkan Widget Example \title Hello Vulkan Widget Example
\brief Shows the usage of QVulkanWindow in QWidget applications \brief Shows the usage of QVulkanWindow in QWidget applications.
The \e{Hello Vulkan Widget Example} is a variant of \l hellovulkantriangle The \e{Hello Vulkan Widget Example} is a variant of \l hellovulkantriangle
that embeds the QVulkanWindow into a QWidget-based user interface using that embeds the QVulkanWindow into a QWidget-based user interface using

View File

@ -29,7 +29,7 @@
\example hellovulkanwindow \example hellovulkanwindow
\title Hello Vulkan Window Example \title Hello Vulkan Window Example
\ingroup examples-vulkan \ingroup examples-vulkan
\brief Shows the basics of using QVulkanWindow \brief Shows the basics of using QVulkanWindow.
The \e{Hello Vulkan Window Example} shows the basics of using QVulkanWindow The \e{Hello Vulkan Window Example} shows the basics of using QVulkanWindow
in order to display rendering with the Vulkan graphics API on systems that in order to display rendering with the Vulkan graphics API on systems that

View File

@ -29,7 +29,7 @@
\example graphicsview/basicgraphicslayouts \example graphicsview/basicgraphicslayouts
\title Basic Graphics Layouts Example \title Basic Graphics Layouts Example
\ingroup examples-graphicsview-layout \ingroup examples-graphicsview-layout
\brief Demonstrates how to create basic graphics layout \brief Demonstrates how to create basic graphics layout.
The Basic Graphics Layouts example shows how to use the layout classes The Basic Graphics Layouts example shows how to use the layout classes
in QGraphicsView: QGraphicsLinearLayout and QGraphicsGridLayout. in QGraphicsView: QGraphicsLinearLayout and QGraphicsGridLayout.

View File

@ -29,7 +29,7 @@
\example effects/blurpicker \example effects/blurpicker
\title Blur Picker Effect Example \title Blur Picker Effect Example
\ingroup examples-graphicsview-graphicseffects \ingroup examples-graphicsview-graphicseffects
\brief Demonstrates how to apply graphical effects on items in the view \brief Demonstrates how to apply graphical effects on items in the view.
\image blurpickereffect-example.png \image blurpickereffect-example.png

View File

@ -29,7 +29,7 @@
\example graphicsview/boxes \example graphicsview/boxes
\title Boxes \title Boxes
\ingroup examples-graphicsview \ingroup examples-graphicsview
\brief Combines advanced OpenGL rendering with the Graphics View framework \brief Combines advanced OpenGL rendering with the Graphics View framework.
\image boxes-demo.png \image boxes-demo.png

View File

@ -29,7 +29,7 @@
\example graphicsview/chip \example graphicsview/chip
\title 40000 Chips \title 40000 Chips
\ingroup examples-graphicsview \ingroup examples-graphicsview
\brief Visualizes a huge graphic view scene with 40000 chip items \brief Visualizes a huge graphic view scene with 40000 chip items.
This examples demonstrates Graphics View's powerful navigation This examples demonstrates Graphics View's powerful navigation
and interaction features, allowing you to zoom and rotate each of four and interaction features, allowing you to zoom and rotate each of four

View File

@ -28,7 +28,7 @@
/*! /*!
\example graphicsview/collidingmice \example graphicsview/collidingmice
\title Colliding Mice Example \title Colliding Mice Example
\brief Demonstrates how to animate items on a graphics view \brief Demonstrates how to animate items on a graphics view.
\ingroup examples-graphicsview \ingroup examples-graphicsview
The Colliding Mice example shows how to use the Graphics View The Colliding Mice example shows how to use the Graphics View

View File

@ -29,7 +29,7 @@
\example graphicsview/diagramscene \example graphicsview/diagramscene
\title Diagram Scene Example \title Diagram Scene Example
\ingroup examples-graphicsview \ingroup examples-graphicsview
\brief Demonstrate how to use the Graphics View framework \brief Demonstrate how to use the Graphics View framework.
\image diagramscene.png \image diagramscene.png

View File

@ -29,7 +29,7 @@
\example graphicsview/dragdroprobot \example graphicsview/dragdroprobot
\title Drag and Drop Robot Example \title Drag and Drop Robot Example
\ingroup examples-graphicsview \ingroup examples-graphicsview
\brief Demonstrates how to drag and drop items in a graphics view \brief Demonstrates how to drag and drop items in a graphics view.
The Drag and Drop Robot example shows how to implement Drag and Drop in a The Drag and Drop Robot example shows how to implement Drag and Drop in a
QGraphicsItem subclass, as well as how to animate items using Qt's QGraphicsItem subclass, as well as how to animate items using Qt's

View File

@ -28,7 +28,7 @@
/*! /*!
\example draganddrop/draggabletext \example draganddrop/draggabletext
\title Draggable Text Example \title Draggable Text Example
\brief Illustrates how to drag and drop text between widgets \brief Illustrates how to drag and drop text between widgets.
\brief The Draggable Text example shows how to drag and drop textual data between widgets \brief The Draggable Text example shows how to drag and drop textual data between widgets
in the same application, and between different applications. in the same application, and between different applications.

View File

@ -29,7 +29,7 @@
\example graphicsview/elasticnodes \example graphicsview/elasticnodes
\title Elastic Nodes Example \title Elastic Nodes Example
\ingroup examples-graphicsview \ingroup examples-graphicsview
\brief Demonstrates how to interact with graphical items in a scene \brief Demonstrates how to interact with graphical items in a scene.
The Elastic Nodes example shows how to implement edges between nodes in a The Elastic Nodes example shows how to implement edges between nodes in a
graph, with basic interaction. You can click to drag a node around, and graph, with basic interaction. You can click to drag a node around, and

View File

@ -29,7 +29,7 @@
\example graphicsview/embeddeddialogs \example graphicsview/embeddeddialogs
\title Embedded Dialogs \title Embedded Dialogs
\ingroup examples-graphicsview-layout \ingroup examples-graphicsview-layout
\brief Demonstrates how to embed dialogs into a graphics view \brief Demonstrates how to embed dialogs into a graphics view.
This example shows how to embed standard dialogs into This example shows how to embed standard dialogs into
Graphics View. It also shows how you can customize the Graphics View. It also shows how you can customize the

View File

@ -29,7 +29,7 @@
\example effects/fademessage \example effects/fademessage
\title Fade Message Effect Example \title Fade Message Effect Example
\ingroup examples-graphicsview-graphicseffects \ingroup examples-graphicsview-graphicseffects
\brief Demonstrates how to apply effects on items in the view \brief Demonstrates how to apply effects on items in the view.
\div { style="text-align: left"} \div { style="text-align: left"}
\inlineimage fademessageeffect-example.png \inlineimage fademessageeffect-example.png

View File

@ -30,7 +30,7 @@
\title Find Files Example \title Find Files Example
\ingroup examples-dialogs \ingroup examples-dialogs
\brief A dialog for finding files in a specified folder \brief A dialog for finding files in a specified folder.
The Find Files application allows the user to search for files in a The Find Files application allows the user to search for files in a
specified directory, matching a given file name or wildcard, specified directory, matching a given file name or wildcard,

View File

@ -29,7 +29,7 @@
\example graphicsview/anchorlayout \example graphicsview/anchorlayout
\title Anchor Layout Example \title Anchor Layout Example
\ingroup examples-graphicsview-layout \ingroup examples-graphicsview-layout
\brief Demonstrates anchor layout in a graphics view scene \brief Demonstrates anchor layout in a graphics view scene.
The Anchor Layout example demonstrates the use of the QGraphicsAnchorLayout The Anchor Layout example demonstrates the use of the QGraphicsAnchorLayout
class. class.

View File

@ -29,7 +29,7 @@
\example graphicsview/simpleanchorlayout \example graphicsview/simpleanchorlayout
\title Simple Anchor Layout Example \title Simple Anchor Layout Example
\ingroup examples-graphicsview-layout \ingroup examples-graphicsview-layout
\brief Demonstrates anchor layout on a graphics view scene \brief Demonstrates anchor layout on a graphics view scene.
The Simple Anchor Layout example shows the basic use of the The Simple Anchor Layout example shows the basic use of the
QGraphicsAnchorLayout class. QGraphicsAnchorLayout class.

View File

@ -29,7 +29,7 @@
\example graphicsview/weatheranchorlayout \example graphicsview/weatheranchorlayout
\title Weather Anchor Layout Example \title Weather Anchor Layout Example
\ingroup examples-graphicsview-layout \ingroup examples-graphicsview-layout
\brief Demonstrates anchor layout on a graphics view scene \brief Demonstrates anchor layout on a graphics view scene.
The Weather Anchor Layout example shows more complex use of the The Weather Anchor Layout example shows more complex use of the
QGraphicsAnchorLayout class to create a real-world window layout. QGraphicsAnchorLayout class to create a real-world window layout.

View File

@ -29,7 +29,7 @@
\example graphicsview/padnavigator \example graphicsview/padnavigator
\title Pad Navigator Example \title Pad Navigator Example
\ingroup examples-graphicsview \ingroup examples-graphicsview
\brief Demonstrates how to create animated user interface \brief Demonstrates how to create animated user interface.
The Pad Navigator Example shows how you can use Graphics View together with The Pad Navigator Example shows how you can use Graphics View together with
embedded widgets and Qt's \l{The State Machine Framework}{state machine embedded widgets and Qt's \l{The State Machine Framework}{state machine

View File

@ -28,7 +28,7 @@
/*! /*!
\example gestures/imagegestures \example gestures/imagegestures
\title Image Gestures Example \title Image Gestures Example
\brief Demonstrates the use of simple gestures in a widget \brief Demonstrates the use of simple gestures in a widget.
This example shows how to enable gestures for a widget and use gesture input This example shows how to enable gestures for a widget and use gesture input
to perform actions. to perform actions.

View File

@ -28,7 +28,7 @@
/*! /*!
\example tutorials/notepad \example tutorials/notepad
\title Getting Started Programming with Qt Widgets \title Getting Started Programming with Qt Widgets
\brief A tutorial for Qt Widgets based on a notepad application \brief A tutorial for Qt Widgets based on a notepad application.
In this topic, we teach basic Qt knowledge by implementing a simple In this topic, we teach basic Qt knowledge by implementing a simple
Notepad application using C++ and the \l{Qt Widgets} module. The Notepad application using C++ and the \l{Qt Widgets} module. The

View File

@ -29,7 +29,7 @@
\example dombookmarks \example dombookmarks
\title DOM Bookmarks Example \title DOM Bookmarks Example
\ingroup xml-examples \ingroup xml-examples
\brief Provides a reader for XML Bookmark Exchange Language files \brief Provides a reader for XML Bookmark Exchange Language files.
The DOM Bookmarks example provides a reader for XML Bookmark Exchange Language (XBEL) The DOM Bookmarks example provides a reader for XML Bookmark Exchange Language (XBEL)
files that uses Qt's DOM-based XML API to read and parse the files. The SAX Bookmarks files that uses Qt's DOM-based XML API to read and parse the files. The SAX Bookmarks

View File

@ -28,7 +28,7 @@
/*! /*!
\example saxbookmarks \example saxbookmarks
\title SAX Bookmarks Example \title SAX Bookmarks Example
\brief Demonstrates how to read XBEL files \brief Demonstrates how to read XBEL files.
\ingroup xml-examples \ingroup xml-examples
This example uses Qt's SAX API to read and parse the files. The DOM Bookmarks This example uses Qt's SAX API to read and parse the files. The DOM Bookmarks

View File

@ -28,7 +28,7 @@
/*! /*!
\example streambookmarks \example streambookmarks
\title QXmlStream Bookmarks Example \title QXmlStream Bookmarks Example
\brief Demonstrates how to read and write to XBEL files \brief Demonstrates how to read and write to XBEL files.
\ingroup xml-examples \ingroup xml-examples
The QXmlStream Bookmarks example provides a reader for XML Bookmark The QXmlStream Bookmarks example provides a reader for XML Bookmark

View File

@ -28,7 +28,7 @@
/*! /*!
\module QtConcurrent \module QtConcurrent
\title Qt Concurrent C++ Classes \title Qt Concurrent C++ Classes
\brief The Qt Concurrent module contains functionality to support concurrent execution of program code \brief The Qt Concurrent module contains functionality to support concurrent execution of program code.
\ingroup modules \ingroup modules
\qtvariable concurrent \qtvariable concurrent

View File

@ -40,7 +40,7 @@
/*! /*!
\class QPropertyAnimation \class QPropertyAnimation
\inmodule QtCore \inmodule QtCore
\brief The QPropertyAnimation class animates Qt properties \brief The QPropertyAnimation class animates Qt properties.
\since 4.6 \since 4.6
\ingroup animation \ingroup animation

View File

@ -336,7 +336,7 @@
\threadsafe \threadsafe
\inmodule QtCore \inmodule QtCore
\since 5.1 \since 5.1
\brief The QGlobalStatic class is used to implement a global static object \brief The QGlobalStatic class is used to implement a global static object.
The QGlobalStatic class is the front-end API exported when The QGlobalStatic class is the front-end API exported when
Q_GLOBAL_STATIC() is used. See the documentation for the macro for a Q_GLOBAL_STATIC() is used. See the documentation for the macro for a

View File

@ -842,7 +842,7 @@ QDebug &QDebug::resetFormat()
/*! /*!
\class QDebugStateSaver \class QDebugStateSaver
\inmodule QtCore \inmodule QtCore
\brief Convenience class for custom QDebug operators \brief Convenience class for custom QDebug operators.
Saves the settings used by QDebug, and restores them upon destruction, Saves the settings used by QDebug, and restores them upon destruction,
then calls \l {QDebug::maybeSpace()}{maybeSpace()}, to separate arguments with a space if then calls \l {QDebug::maybeSpace()}{maybeSpace()}, to separate arguments with a space if

View File

@ -83,7 +83,7 @@ class QIdentityProxyModelPrivate : public QAbstractProxyModelPrivate
\since 4.8 \since 4.8
\class QIdentityProxyModel \class QIdentityProxyModel
\inmodule QtCore \inmodule QtCore
\brief The QIdentityProxyModel class proxies its source model unmodified \brief The QIdentityProxyModel class proxies its source model unmodified.
\ingroup model-view \ingroup model-view

View File

@ -511,7 +511,7 @@ void QMetaCallEvent::placeMetaCall(QObject *object)
/*! /*!
\class QSignalBlocker \class QSignalBlocker
\brief Exception-safe wrapper around QObject::blockSignals() \brief Exception-safe wrapper around QObject::blockSignals().
\since 5.3 \since 5.3
\ingroup objectmodel \ingroup objectmodel
\inmodule QtCore \inmodule QtCore

View File

@ -2265,7 +2265,7 @@ QXmlStreamAttributes QXmlStreamReader::attributes() const
\inmodule QtCore \inmodule QtCore
\since 4.3 \since 4.3
\reentrant \reentrant
\brief The QXmlStreamAttribute class represents a single XML attribute \brief The QXmlStreamAttribute class represents a single XML attribute.
\ingroup xml-tools \ingroup xml-tools

View File

@ -503,7 +503,7 @@ bool QSemaphore::tryAcquire(int n, int timeout)
/*! /*!
\class QSemaphoreReleaser \class QSemaphoreReleaser
\brief The QSemaphoreReleaser class provides exception-safe deferral of a QSemaphore::release() call \brief The QSemaphoreReleaser class provides exception-safe deferral of a QSemaphore::release() call.
\since 5.10 \since 5.10
\ingroup thread \ingroup thread
\inmodule QtCore \inmodule QtCore

View File

@ -334,7 +334,7 @@ int qFindByteArray(
\class QStaticByteArrayMatcher \class QStaticByteArrayMatcher
\since 5.9 \since 5.9
\inmodule QtCore \inmodule QtCore
\brief The QStaticByteArrayMatcher class is a compile-time version of QByteArrayMatcher \brief The QStaticByteArrayMatcher class is a compile-time version of QByteArrayMatcher.
\ingroup tools \ingroup tools
\ingroup string-processing \ingroup string-processing

View File

@ -46,7 +46,7 @@
/*! /*!
\class QSharedPointer \class QSharedPointer
\inmodule QtCore \inmodule QtCore
\brief The QSharedPointer class holds a strong reference to a shared pointer \brief The QSharedPointer class holds a strong reference to a shared pointer.
\since 4.5 \since 4.5
\reentrant \reentrant
@ -315,7 +315,7 @@
/*! /*!
\class QWeakPointer \class QWeakPointer
\inmodule QtCore \inmodule QtCore
\brief The QWeakPointer class holds a weak reference to a shared pointer \brief The QWeakPointer class holds a weak reference to a shared pointer.
\since 4.5 \since 4.5
\reentrant \reentrant
@ -373,7 +373,7 @@
/*! /*!
\class QEnableSharedFromThis \class QEnableSharedFromThis
\inmodule QtCore \inmodule QtCore
\brief A base class that allows obtaining a QSharedPointer for an object already managed by a shared pointer \brief A base class that allows obtaining a QSharedPointer for an object already managed by a shared pointer.
\since 5.4 \since 5.4
You can inherit this class when you need to create a QSharedPointer You can inherit this class when you need to create a QSharedPointer

View File

@ -305,7 +305,7 @@ int QDBusAbstractInterfaceBase::qt_metacall(QMetaObject::Call _c, int _id, void
\inmodule QtDBus \inmodule QtDBus
\since 4.2 \since 4.2
\brief The QDBusAbstractInterface class is the base class for all D-Bus interfaces in the Qt D-Bus binding, allowing access to remote interfaces \brief The QDBusAbstractInterface class is the base class for all D-Bus interfaces in the Qt D-Bus binding, allowing access to remote interfaces.
Generated-code classes also derive from QDBusAbstractInterface, Generated-code classes also derive from QDBusAbstractInterface,
all methods described here are also valid for generated-code all methods described here are also valid for generated-code

View File

@ -58,7 +58,7 @@ QT_BEGIN_NAMESPACE
\ingroup shared \ingroup shared
\since 4.5 \since 4.5
\brief The QDBusPendingCall class refers to one pending asynchronous call \brief The QDBusPendingCall class refers to one pending asynchronous call.
A QDBusPendingCall object is a reference to a method call that was A QDBusPendingCall object is a reference to a method call that was
sent over D-Bus without waiting for a reply. QDBusPendingCall is an sent over D-Bus without waiting for a reply. QDBusPendingCall is an
@ -91,7 +91,7 @@ QT_BEGIN_NAMESPACE
\since 4.5 \since 4.5
\brief The QDBusPendingCallWatcher class provides a convenient way for \brief The QDBusPendingCallWatcher class provides a convenient way for
waiting for asynchronous replies waiting for asynchronous replies.
The QDBusPendingCallWatcher provides the finished() signal that will be The QDBusPendingCallWatcher provides the finished() signal that will be
emitted when a reply arrives. emitted when a reply arrives.

View File

@ -49,7 +49,7 @@
\inmodule QtDBus \inmodule QtDBus
\since 4.5 \since 4.5
\brief The QDBusPendingReply class contains the reply to an asynchronous method call \brief The QDBusPendingReply class contains the reply to an asynchronous method call.
The QDBusPendingReply is a template class with up to 8 template The QDBusPendingReply is a template class with up to 8 template
parameters. Those parameters are the types that will be used to parameters. Those parameters are the types that will be used to

View File

@ -46,7 +46,7 @@ QT_BEGIN_NAMESPACE
\inmodule QtGui \inmodule QtGui
\since 5.4 \since 5.4
\brief QPixelFormat is a class for describing different pixel \brief QPixelFormat is a class for describing different pixel
layouts in graphics buffers layouts in graphics buffers.
In Qt there is a often a need to represent the layout of the pixels in a In Qt there is a often a need to represent the layout of the pixels in a
graphics buffer. Internally QPixelFormat stores everything in a 64 bit graphics buffer. Internally QPixelFormat stores everything in a 64 bit

View File

@ -50,7 +50,7 @@ QT_BEGIN_NAMESPACE
\class QRasterWindow \class QRasterWindow
\inmodule QtGui \inmodule QtGui
\since 5.4 \since 5.4
\brief QRasterWindow is a convenience class for using QPainter on a QWindow \brief QRasterWindow is a convenience class for using QPainter on a QWindow.
QRasterWindow is a QWindow with a raster-based, non-OpenGL surface. On top of QRasterWindow is a QWindow with a raster-based, non-OpenGL surface. On top of
the functionality offered by QWindow, QRasterWindow adds a virtual the functionality offered by QWindow, QRasterWindow adds a virtual

View File

@ -47,7 +47,7 @@ QT_BEGIN_NAMESPACE
\inmodule QtGui \inmodule QtGui
\since 5.1 \since 5.1
\wrapper \wrapper
\brief The QOpenGLFunctions_ES2 class provides all functions for OpenGL ES 2 \brief The QOpenGLFunctions_ES2 class provides all functions for OpenGL ES 2.
This class is a wrapper for OpenGL ES 2 functions. See reference pages on This class is a wrapper for OpenGL ES 2 functions. See reference pages on
\l {http://www.khronos.org/opengles/sdk/docs/man/}{khronos.org} for \l {http://www.khronos.org/opengles/sdk/docs/man/}{khronos.org} for

View File

@ -908,7 +908,7 @@ QSize QPageSizePrivate::sizePixels(int resolution) const
\class QPageSize \class QPageSize
\inmodule QtGui \inmodule QtGui
\since 5.3 \since 5.3
\brief The QPageSize class describes the size and name of a defined page size \brief The QPageSize class describes the size and name of a defined page size.
This class implements support for the set of standard page sizes as defined This class implements support for the set of standard page sizes as defined
in the Adobe Postscript PPD Standard v4.3. It defines the standard set of in the Adobe Postscript PPD Standard v4.3. It defines the standard set of

View File

@ -264,7 +264,7 @@ bool QSupportedWritingSystems::supported(QFontDatabase::WritingSystem writingSys
/*! /*!
\class QSupportedWritingSystems \class QSupportedWritingSystems
\brief The QSupportedWritingSystems class is used when registering fonts with the internal Qt \brief The QSupportedWritingSystems class is used when registering fonts with the internal Qt
fontdatabase fontdatabase.
\ingroup painting \ingroup painting
\inmodule QtGui \inmodule QtGui

View File

@ -166,7 +166,7 @@ static void ensureInitialized()
/*! /*!
\class QNetworkAccessManager \class QNetworkAccessManager
\brief The QNetworkAccessManager class allows the application to \brief The QNetworkAccessManager class allows the application to
send network requests and receive replies send network requests and receive replies.
\since 4.4 \since 4.4
\ingroup network \ingroup network

View File

@ -54,7 +54,7 @@ QT_BEGIN_NAMESPACE
\since 4.4 \since 4.4
\inmodule QtNetwork \inmodule QtNetwork
\brief The QNetworkCookieJar class implements a simple jar of QNetworkCookie objects \brief The QNetworkCookieJar class implements a simple jar of QNetworkCookie objects.
Cookies are small bits of information that stateless protocols Cookies are small bits of information that stateless protocols
like HTTP use to maintain some persistent information across like HTTP use to maintain some persistent information across

View File

@ -61,7 +61,7 @@ QNetworkReplyPrivate::QNetworkReplyPrivate()
\class QNetworkReply \class QNetworkReply
\since 4.4 \since 4.4
\brief The QNetworkReply class contains the data and headers for a request \brief The QNetworkReply class contains the data and headers for a request
sent with QNetworkAccessManager sent with QNetworkAccessManager.
\reentrant \reentrant
\ingroup network \ingroup network

View File

@ -96,7 +96,7 @@
\title Qt Network C++ Classes \title Qt Network C++ Classes
\ingroup modules \ingroup modules
\qtvariable network \qtvariable network
\brief Provides classes to make network programming easier and portable \brief Provides classes to make network programming easier and portable.
To include the definitions of the module's classes, use the To include the definitions of the module's classes, use the
following directive: following directive:

View File

@ -59,7 +59,7 @@ const char QSslConfiguration::NextProtocolHttp1_1[] = "http/1.1";
/*! /*!
\class QSslConfiguration \class QSslConfiguration
\brief The QSslConfiguration class holds the configuration and state of an SSL connection \brief The QSslConfiguration class holds the configuration and state of an SSL connection.
\since 4.4 \since 4.4
\reentrant \reentrant

View File

@ -30,7 +30,7 @@
\inmodule QtPlatformHeaders \inmodule QtPlatformHeaders
\since 5.4 \since 5.4
\brief A class encapsulating an EGL context and display handle \brief A class encapsulating an EGL context and display handle.
\note There is no binary compatibility guarantee for this class, meaning \note There is no binary compatibility guarantee for this class, meaning
that an application using it is only guaranteed to work with the Qt version it was that an application using it is only guaranteed to work with the Qt version it was

View File

@ -30,7 +30,7 @@
\inmodule QtPlatformHeaders \inmodule QtPlatformHeaders
\since 5.4 \since 5.4
\brief A class encapsulating a WGL context on Windows with desktop OpenGL (opengl32.dll) \brief A class encapsulating a WGL context on Windows with desktop OpenGL (opengl32.dll).
\note There is no binary compatibility guarantee for this class, \note There is no binary compatibility guarantee for this class,
meaning that an application using it is only guaranteed to work with the Qt meaning that an application using it is only guaranteed to work with the Qt

View File

@ -109,7 +109,7 @@ public:
/*! \class QPlainTextDocumentLayout /*! \class QPlainTextDocumentLayout
\since 4.4 \since 4.4
\brief The QPlainTextDocumentLayout class implements a plain text layout for QTextDocument \brief The QPlainTextDocumentLayout class implements a plain text layout for QTextDocument.
\ingroup richtext-processing \ingroup richtext-processing
\inmodule QtWidgets \inmodule QtWidgets

View File

@ -2049,7 +2049,7 @@ void QTextEdit::setAcceptRichText(bool accept)
\inmodule QtWidgets \inmodule QtWidgets
\brief The QTextEdit::ExtraSelection structure provides a way of specifying a \brief The QTextEdit::ExtraSelection structure provides a way of specifying a
character format for a given selection in a document character format for a given selection in a document.
*/ */
/*! /*!