1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information ([email protected])
|
---|
5 | **
|
---|
6 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
7 | **
|
---|
8 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
9 | ** Commercial Usage
|
---|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
11 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
12 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
13 | ** a written agreement between you and Nokia.
|
---|
14 | **
|
---|
15 | ** GNU Lesser General Public License Usage
|
---|
16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
17 | ** General Public License version 2.1 as published by the Free Software
|
---|
18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
19 | ** packaging of this file. Please review the following information to
|
---|
20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
22 | **
|
---|
23 | ** In addition, as a special exception, Nokia gives you certain
|
---|
24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
26 | ** package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you are unsure which license is appropriate for your use, please
|
---|
37 | ** contact the sales department at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | /*!
|
---|
43 | \group modules
|
---|
44 | \title Qt's Modules
|
---|
45 | \startpage index.html Qt Reference Documentation
|
---|
46 | \nextpage QtCore
|
---|
47 |
|
---|
48 | Qt 4 consists of several modules, each of which lives in a
|
---|
49 | separate library.
|
---|
50 |
|
---|
51 | Modules for general software development:
|
---|
52 |
|
---|
53 | \table 80%
|
---|
54 | \row \o \l{QtCore} \o Core non-graphical classes used by other modules
|
---|
55 | \row \o \l{QtGui} \o Graphical user interface (GUI) components
|
---|
56 | \row \o \l{QtNetwork} \o Classes for network programming
|
---|
57 | \row \o \l{QtOpenGL} \o OpenGL support classes
|
---|
58 | \row \o \l{QtScript} \o Classes for evaluating Qt Scripts
|
---|
59 | \row \o \l{QtScriptTools} \o Additional Qt Script components
|
---|
60 | \row \o \l{QtSql} \o Classes for database integration using SQL
|
---|
61 | \row \o \l{QtSvg} \o Classes for displaying the contents of SVG files
|
---|
62 | \row \o \l{QtWebKit} \o Classes for displaying and editing Web content
|
---|
63 | \row \o \l{QtXml} \o Classes for handling XML
|
---|
64 | \row \o \l{QtXmlPatterns} \o An XQuery & XPath engine for XML and custom data models
|
---|
65 | \row \o \l{Phonon Module}{Phonon} \o Multimedia framework classes
|
---|
66 | \row \o \l{Qt3Support} \o Qt 3 compatibility classes
|
---|
67 | \endtable
|
---|
68 |
|
---|
69 | Modules for working with Qt's tools:
|
---|
70 |
|
---|
71 | \table 80%
|
---|
72 | \row \o \l{QtDesigner} \o Classes for extending \QD
|
---|
73 | \row \o \l{QtUiTools} \o Classes for handling \QD forms in applications
|
---|
74 | \row \o \l{QtHelp} \o Classes for online help
|
---|
75 | \row \o \l{QtAssistant} \o Support for online help
|
---|
76 | \row \o \l{QtTest} \o Tool classes for unit testing
|
---|
77 | \endtable
|
---|
78 |
|
---|
79 | The following extension modules are available in the \l{Qt
|
---|
80 | Commercial Editions} on Windows:
|
---|
81 |
|
---|
82 | \table 80%
|
---|
83 | \row \o \l{QAxContainer} \o Extension for accessing ActiveX controls
|
---|
84 | \row \o \l{QAxServer} \o Extension for writing ActiveX servers
|
---|
85 | \endtable
|
---|
86 |
|
---|
87 | The following extension module is available in all \l {Qt Editions}
|
---|
88 | on Unix platforms:
|
---|
89 |
|
---|
90 | \table 80%
|
---|
91 | \row \o \l{QtDBus} \o Classes for Inter-Process Communication using the D-Bus
|
---|
92 | \endtable
|
---|
93 |
|
---|
94 | If you use \l qmake to build your projects, the QtCore and QtGui
|
---|
95 | modules are included by default. To link only against QtCore, add
|
---|
96 | the following line to your \c .pro file:
|
---|
97 |
|
---|
98 | \snippet doc/src/snippets/code/doc_src_modules.qdoc 0
|
---|
99 |
|
---|
100 | On Windows, if you do not use \l qmake, the \l{Visual Studio Integration}
|
---|
101 | available to \l{Qt Commercial Editions}{commercial licensees}, or other
|
---|
102 | build tools such as CMake, you also need to link against the \c qtmain library.
|
---|
103 |
|
---|
104 | \sa {Qt's Classes}
|
---|
105 | */
|
---|