Doc: Added a Qt Network landing page.
-fixed generated HTML file names -removed qt-network group in qt/qtdoc and removed \ingroup instances Change-Id: Ida5ded5da30e6db1978382f6742a5da8036e055e Reviewed-by: Shane Kearns <shane.kearns@accenture.com> Reviewed-by: Martin Smith <martin.smith@nokia.com> Reviewed-by: Laszlo Papp <lpapp@kde.org>
This commit is contained in:
parent
2b4ce2f0ff
commit
06ca4e38cf
@ -28,7 +28,6 @@
|
||||
/*!
|
||||
\page datastreamformat.html
|
||||
\title Serializing Qt Data Types
|
||||
\ingroup qt-network
|
||||
\brief Representations of data types that can be serialized by QDataStream.
|
||||
|
||||
The \l QDataStream allows you to serialize some of the Qt data types.
|
||||
|
@ -28,7 +28,6 @@
|
||||
/*!
|
||||
\page resources.html
|
||||
\title The Qt Resource System
|
||||
\ingroup qt-network
|
||||
\brief A platform-independent mechanism for storing binary files in an application.
|
||||
|
||||
\keyword resource system
|
||||
@ -153,7 +152,7 @@
|
||||
argument.
|
||||
|
||||
\code
|
||||
rcc -no-compress myresources.qrc
|
||||
rcc -no-compress myresources.qrc
|
||||
\endcode
|
||||
|
||||
\c rcc also gives you some control over the compression. You can
|
||||
|
@ -29,7 +29,6 @@
|
||||
\page bearer-management.html
|
||||
|
||||
\title Bearer Management
|
||||
\ingroup qt-network
|
||||
\brief An API to control the system's connectivity state.
|
||||
|
||||
Bearer Management controls the connectivity state of the system so that
|
||||
|
@ -34,12 +34,11 @@
|
||||
*/
|
||||
|
||||
/*!
|
||||
\page network-programming.html
|
||||
\title Network Programming
|
||||
\ingroup qt-network
|
||||
\brief An Introduction to Network Programming with Qt
|
||||
\page qtnetwork-programming.html
|
||||
\title Network Programming with Qt
|
||||
\brief Programming applications with networking capabilities
|
||||
|
||||
The QtNetwork module offers classes that allow you to write TCP/IP clients
|
||||
The Qt Network module offers classes that allow you to write TCP/IP clients
|
||||
and servers. It offers lower-level classes such as QTcpSocket,
|
||||
QTcpServer and QUdpSocket that represent low level network concepts,
|
||||
and high level classes such as QNetworkRequest, QNetworkReply and
|
||||
@ -52,9 +51,8 @@
|
||||
|
||||
\section1 Qt's Classes for Network Programming
|
||||
|
||||
The following classes provide support for network programming in Qt.
|
||||
|
||||
\annotatedlist network
|
||||
The \l{Qt Network - C++ Classes} page contains a list of the C++ classes
|
||||
in Qt Network.
|
||||
|
||||
\section1 High Level Network Operations for HTTP and FTP
|
||||
|
||||
|
@ -25,9 +25,45 @@
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
/*!
|
||||
\page qtnetwork-index.html
|
||||
\title Qt Network
|
||||
\brief A module that provides networking capabilities
|
||||
|
||||
Qt Network provides a set of APIs for programming applications that use
|
||||
TCP/IP. Operations such as requests, cookies, and sending data over HTTP
|
||||
are handled by various C++ classes.
|
||||
|
||||
\section1 Getting Started
|
||||
|
||||
To use Qt Network classes,add this directive into the C++ files:
|
||||
\code
|
||||
#include <QtNetwork>
|
||||
\endcode
|
||||
To link against the Qt Network module, add this line to the project file:
|
||||
\code
|
||||
QT += network
|
||||
\endcode
|
||||
|
||||
\section1 Articles and Guides
|
||||
|
||||
These articles contain information about Qt Network setup and about
|
||||
applications with networking capabilities.
|
||||
\list
|
||||
\li \l{Network Programming with Qt} - Programming applications with networking capabilities
|
||||
\li \l{Bearer Management} - An API to control the system's connectivity state
|
||||
\li \l{Secure Sockets Layer (SSL) Classes} - Classes for secure communication over network sockets
|
||||
\endlist
|
||||
|
||||
\section1 API Reference
|
||||
These are links to the API reference materials.
|
||||
\list
|
||||
\li \l{Qt Network - C++ Classes}
|
||||
\endlist
|
||||
*/
|
||||
/*!
|
||||
\module QtNetwork
|
||||
\title QtNetwork Module
|
||||
\title Qt Network - C++ Classes
|
||||
\ingroup modules
|
||||
|
||||
\brief The QtNetwork module provides classes to make network programming
|
||||
|
@ -29,7 +29,6 @@
|
||||
\page ssl.html
|
||||
\title Secure Sockets Layer (SSL) Classes
|
||||
\brief Classes for secure communication over network sockets.
|
||||
\ingroup qt-network
|
||||
|
||||
\keyword SSL
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user