Only reset the backend pointer after we're done with it
[qt-netbsd.git] / doc / src / modules.qdoc
blobc795f54e5f4499ff6ce50fbb8f435ea54c4ef7b6
1 /****************************************************************************
2 **
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the documentation of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
38 ** $QT_END_LICENSE$
40 ****************************************************************************/
42 /*!
43     \group modules
44     \title Qt's Modules
45     \startpage index.html Qt Reference Documentation
46     \nextpage QtCore
48     Qt 4 consists of several modules, each of which lives in a
49     separate library.
51     Modules for general software development:
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
69     Modules for working with Qt's tools:
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
79     The following extension modules are available in the \l{Qt
80     Commercial Editions} on Windows:
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
87     The following extension module is available in all \l {Qt Editions}
88     on Unix platforms:
90     \table 80%
91     \row \o \l{QtDBus} \o Classes for Inter-Process Communication using the D-Bus
92     \endtable
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:
98     \snippet doc/src/snippets/code/doc_src_modules.qdoc 0
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.
104     \sa {Qt's Classes}