source: trunk/doc/src/modules.qdoc@ 814

Last change on this file since 814 was 769, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

File size: 41.5 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2010 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** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
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.
23**
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.
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 have questions regarding the use of this file, please contact
37** Nokia at qt-info@nokia.com.
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42/*!
43 \group modules
44 \title All Qt Modules
45 \startpage index.html Qt Reference Documentation
46 \nextpage QtCore
47
48 \ingroup classlists
49
50 \brief Qt 4 comprises several modules. Each module is a separate
51 library.
52
53 \table 80%
54 \header \o {2,1} \bold{Modules for general software development}
55 \row \o \l{QtCore} \o Core non-graphical classes used by other modules
56 \row \o \l{QtGui} \o Graphical user interface (GUI) components
57 \row \o \l{QtMultimedia} \o Classes for low-level multimedia functionality
58 \row \o \l{QtNetwork} \o Classes for network programming
59 \row \o \l{QtOpenGL} \o OpenGL support classes
60 \row \o \l{QtOpenVG} \o OpenVG support classes
61 \row \o \l{QtScript} \o Classes for evaluating Qt Scripts
62 \row \o \l{QtScriptTools} \o Additional Qt Script components
63 \row \o \l{QtSql} \o Classes for database integration using SQL
64 \row \o \l{QtSvg} \o Classes for displaying the contents of SVG files
65 \row \o \l{QtWebKit} \o Classes for displaying and editing Web content
66 \row \o \l{QtXml} \o Classes for handling XML
67 \row \o \l{QtXmlPatterns} \o An XQuery & XPath engine for XML and custom data models
68 \row \o \l{Phonon Module}{Phonon} \o Multimedia framework classes
69 \row \o \l{Qt3Support} \o Qt 3 compatibility classes
70 \header \o {2,1} \bold{Modules for working with Qt's tools}
71 \row \o \l{QtDesigner} \o Classes for extending \QD
72 \row \o \l{QtUiTools} \o Classes for handling \QD forms in applications
73 \row \o \l{QtHelp} \o Classes for online help
74 \row \o \l{QtTest} \o Tool classes for unit testing
75 \header \o {2,1} \bold{Modules for Windows developers}
76 \row \o \l{QAxContainer} \o Extension for accessing ActiveX controls
77 \row \o \l{QAxServer} \o Extension for writing ActiveX servers
78 \header \o {2,1} \bold{Modules for Unix developers}
79 \row \o \l{QtDBus} \o Classes for Inter-Process Communication using the D-Bus
80 \endtable
81
82 If you use \l qmake to build your projects, the QtCore and QtGui
83 modules are included by default. To link only against QtCore, add
84 the following line to your \c .pro file:
85
86 \snippet doc/src/snippets/code/doc_src_modules.qdoc 0
87
88 On Windows, if you do not use \l qmake
89 or other build tools such as CMake, you also need to link against
90 the \c qtmain library.
91
92 \sa {Class and Function Documentation}
93*/
94
95/*!
96 \module QtCore
97 \title QtCore Module
98 \contentspage All Qt Modules
99 \previouspage All Qt Modules
100 \nextpage QtGui
101 \ingroup modules
102
103 \keyword QtCore
104
105 \brief The QtCore module contains core non-GUI functionality.
106
107 All other Qt modules rely on this module. To include the
108 definitions of the module's classes, use the following directive:
109
110 \snippet doc/src/snippets/code/doc_src_qtcore.qdoc 0
111
112 The QtCore module is part of all \l{Qt editions}.
113*/
114
115
116/*!
117 \module QtGui
118 \title QtGui Module
119 \contentspage All Qt Modules
120 \previouspage QtCore
121 \nextpage QtNetwork
122 \ingroup modules
123
124 \brief The QtGui module extends QtCore with GUI functionality.
125
126 To include the definitions of both modules' classes, use the
127 following directive:
128
129 \snippet doc/src/snippets/code/doc_src_qtgui.qdoc 0
130
131 The QtGui module is part of the \l{Qt GUI Framework Edition},
132 the \l{Qt Full Framework Edition}, and the \l{Open Source Versions of Qt}.
133*/
134
135/*!
136 \module QtMultimedia
137 \title QtMultimedia Module
138 \contentspage All Qt Modules
139 \previouspage QtCore
140 \nextpage QtNetwork
141 \ingroup modules
142
143 \brief The QtMultimedia module provides low-level multimedia functionality.
144
145 To include the definitions of the module's classes, use the
146 following directive:
147
148 \snippet doc/src/snippets/code/doc_src_qtmultimedia.qdoc 1
149
150 To link against the module, add this line to your \l qmake \c
151 .pro file:
152
153 \snippet doc/src/snippets/code/doc_src_qtmultimedia.qdoc 0
154
155 The functionality provided by the \l{Phonon Module} is on a higher level
156 and in many cases more suitable for application developers.
157*/
158
159/*!
160 \module QtNetwork
161 \title QtNetwork Module
162 \contentspage All Qt Modules
163 \previouspage QtMultimedia
164 \nextpage QtOpenGL
165 \ingroup modules
166
167 \brief The QtNetwork module provides classes to make network programming
168 easier and portable.
169
170 To include the definitions of the module's classes, use the
171 following directive:
172
173 \snippet doc/src/snippets/code/doc_src_qtnetwork.qdoc 1
174
175 To link against the module, add this line to your \l qmake \c
176 .pro file:
177
178 \snippet doc/src/snippets/code/doc_src_qtnetwork.qdoc 0
179
180 The QtNetwork module is part of the \l{Qt Full Framework Edition} and the
181 \l{Open Source Versions of Qt}.
182*/
183
184/*!
185 \module QtOpenGL
186 \title QtOpenGL Module
187 \contentspage All Qt Modules
188 \previouspage QtNetwork
189 \nextpage QtOpenVG
190 \ingroup modules
191
192 \brief The QtOpenGL module offers classes that make it easy to
193 use OpenGL in Qt applications.
194
195 OpenGL is a standard API for rendering 3D graphics. OpenGL only
196 deals with 3D rendering and provides little or no support for GUI
197 programming issues. The user interface for an OpenGL application
198 must be created with another toolkit, such as Motif on the X
199 platform, Microsoft Foundation Classes (MFC) under Windows, or Qt
200 on both platforms.
201
202 \note OpenGL is a trademark of Silicon Graphics, Inc. in
203 the United States and other countries.
204
205 The Qt OpenGL module makes it easy to use OpenGL in Qt applications.
206 It provides an OpenGL widget class that can be used just like any
207 other Qt widget, except that it opens an OpenGL display buffer where
208 you can use the OpenGL API to render the contents.
209
210 To include the definitions of the module's classes, use the
211 following directive:
212
213 \snippet doc/src/snippets/code/doc_src_qtopengl.qdoc 0
214
215 To link against the module, add this line to your \l qmake \c
216 .pro file:
217
218 \snippet doc/src/snippets/code/doc_src_qtopengl.qdoc 1
219
220 The Qt OpenGL module is implemented as a platform-independent Qt/C++
221 wrapper around the platform-dependent GLX (version 1.3 or later),
222 WGL, or AGL C APIs. Although the basic functionality provided is very
223 similar to Mark Kilgard's GLUT library, applications using the Qt
224 OpenGL module can take advantage of the whole Qt API for
225 non-OpenGL-specific GUI functionality.
226
227 The QtOpenGL module is part of the \l{Qt Full Framework Edition} and the
228 \l{Open Source Versions of Qt}. It is available on Windows, X11, and Mac OS X.
229 \l{Qt for Embedded Linux and OpenGL} supports OpenGL ES (OpenGL for Embedded Systems).
230 \note To be able to use the OpenGL API in \l{Qt for Embedded Linux}, it must be
231 integrated with the Q Window System (QWS). See the
232 \l{Qt for Embedded Linux and OpenGL} documentation for details.
233
234*/
235
236/*!
237 \module QtOpenVG
238 \title QtOpenVG Module
239 \since 4.6
240 \contentspage All Qt Modules
241 \previouspage QtOpenGL
242 \nextpage QtScript
243 \ingroup modules
244
245 \brief The QtOpenVG module is a plugin that provides support for
246 OpenVG painting.
247
248 OpenVG is a standard API from the
249 \l{http://www.khronos.org/openvg}{Khronos Group} for accelerated
250 2D vector graphics that is appearing in an increasing number of
251 embedded devices.
252
253 OpenVG support can be enabled by passing the \c{-openvg} option
254 to configure. It is assumed that the following qmake variables
255 are set to appropriate values in the qmake.conf file for your
256 platform:
257
258 \list
259 \o QMAKE_INCDIR_OPENVG
260 \o QMAKE_LIBDIR_OPENVG
261 \o QMAKE_LIBS_OPENVG
262 \endlist
263
264 Most OpenVG implementations are based on EGL, so the following
265 variables may also need to be set:
266
267 \list
268 \o QMAKE_INCDIR_EGL
269 \o QMAKE_LIBDIR_EGL
270 \o QMAKE_LIBS_EGL
271 \endlist
272
273 See \l{qmake Variable Reference} for more information on these variables.
274
275 Two kinds of OpenVG engines are currently supported: EGL based,
276 and engines built on top of OpenGL such as
277 \l{http://sourceforge.net/projects/shivavg}{ShivaVG}.
278 EGL based engines are preferred.
279
280 Once the graphics system plugin has been built and installed,
281 applications can be run as follows to use the plugin:
282
283 \code
284 app -graphicssystem OpenVG
285 \endcode
286
287 If ShivaVG is being used, then substitute \c ShivaVG instead of
288 \c OpenVG in the line above.
289*/
290
291/*!
292 \module QtScript
293 \title QtScript Module
294 \since 4.3
295 \contentspage All Qt Modules
296 \previouspage QtOpenVG
297 \nextpage QtScriptTools
298 \ingroup modules
299
300 \brief The QtScript module provides classes for making Qt applications scriptable.
301
302 The QtScript module only provides core scripting facilities; the
303 QtScriptTools module provides additional Qt Script-related
304 components that application developers may find useful.
305
306 \tableofcontents
307
308 To include the definitions of the module's classes, use the
309 following directive:
310
311 \snippet doc/src/snippets/code/doc_src_qtscript.qdoc 0
312
313 To link against the module, add this line to your \l qmake \c .pro file:
314
315 \snippet doc/src/snippets/code/doc_src_qtscript.qdoc 1
316
317 For detailed information on how to make your application
318 scriptable with QtScript, see \l{Making Applications
319 Scriptable}.
320
321 The QtScript module is part of the \l{Qt Full Framework Edition} and the
322 \l{Open Source Versions of Qt}.
323
324 \section1 License Information
325
326 Qt Commercial Edition licensees that wish to distribute applications that
327 use the QtScript module need to be aware of their obligations under the
328 GNU Library General Public License (LGPL).
329
330 Developers using the Open Source Edition can choose to redistribute
331 the module under the appropriate version of the GNU LGPL.
332
333 \legalese
334 QtScript is licensed under the GNU Library General Public License.
335 Individual contributor names and copyright dates can be found
336 inline in the code.
337
338 This library is free software; you can redistribute it and/or
339 modify it under the terms of the GNU Library General Public
340 License as published by the Free Software Foundation; either
341 version 2 of the License, or (at your option) any later version.
342
343 This library is distributed in the hope that it will be useful,
344 but WITHOUT ANY WARRANTY; without even the implied warranty of
345 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
346 Library General Public License for more details.
347
348 You should have received a copy of the GNU Library General Public License
349 along with this library; see the file COPYING.LIB. If not, write to
350 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
351 Boston, MA 02110-1301, USA.
352 \endlegalese
353
354*/
355
356/*!
357 \module QtScriptTools
358 \title QtScriptTools Module
359 \since 4.5
360 \contentspage All Qt Modules
361 \previouspage QtScript
362 \nextpage QtSql
363 \ingroup modules
364
365 \brief The QtScriptTools module provides additional components for applications that use Qt Script.
366
367 \tableofcontents
368
369 \section1 Configuring the Build Process
370
371 Applications that use the Qt Script Tools classes need to
372 be configured to be built against the QtScriptTools module.
373 To include the definitions of the module's classes, use the
374 following directive:
375
376 \snippet doc/src/snippets/code/doc.src.qtscripttools.qdoc 0
377
378 To link against the module, add this line to your \l qmake \c .pro file:
379
380 \snippet doc/src/snippets/code/doc.src.qtscripttools.qdoc 1
381
382 The QtScriptTools module is part of the \l{Qt Full Framework Edition} and
383 the \l{Open Source Versions of Qt}.
384*/
385
386/*!
387 \module QtSql
388 \title QtSql Module
389 \contentspage All Qt Modules
390 \previouspage QtScript
391 \nextpage QtSvg
392 \ingroup modules
393
394 To include the definitions of the module's classes, use the
395 following directive:
396
397 \snippet doc/src/snippets/code/doc_src_qtsql.qdoc 0
398
399 To link against the module, add this line to your \l qmake \c
400 .pro file:
401
402 \snippet doc/src/snippets/code/doc_src_qtsql.qdoc 1
403
404 The QtSql module is part of the \l{Qt Full Framework Edition} and the
405 \l{Open Source Versions of Qt}.
406
407 See the \l{SQL Programming} guide for information about using this
408 module in your applications.
409*/
410
411/*!
412 \module QtSvg
413 \title QtSvg Module
414 \since 4.1
415 \contentspage All Qt Modules
416 \previouspage QtSql
417 \nextpage QtWebKit
418 \ingroup modules
419
420 \brief The QtSvg module provides classes for displaying and creating SVG files.
421
422 To include the definitions of the module's classes, use the
423 following directive:
424
425 \snippet doc/src/snippets/code/doc_src_qtsvg.qdoc 0
426
427 To link against the module, add this line to your \l qmake \c
428 .pro file:
429
430 \snippet doc/src/snippets/code/doc_src_qtsvg.qdoc 1
431
432 The QtSvg module is part of the \l{Qt Full Framework Edition} and the
433 \l{Open Source Versions of Qt}.
434
435 \section1 License Information
436
437 Some code for arc handling in this module is derived from code with
438 the following license:
439
440 \legalese
441 Copyright 2002 USC/Information Sciences Institute
442
443 Permission to use, copy, modify, distribute, and sell this software
444 and its documentation for any purpose is hereby granted without
445 fee, provided that the above copyright notice appear in all copies
446 and that both that copyright notice and this permission notice
447 appear in supporting documentation, and that the name of
448 Information Sciences Institute not be used in advertising or
449 publicity pertaining to distribution of the software without
450 specific, written prior permission. Information Sciences Institute
451 makes no representations about the suitability of this software for
452 any purpose. It is provided "as is" without express or implied
453 warranty.
454
455 INFORMATION SCIENCES INSTITUTE DISCLAIMS ALL WARRANTIES WITH REGARD
456 TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
457 MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL INFORMATION SCIENCES
458 INSTITUTE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
459 DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
460 OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
461 TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
462 PERFORMANCE OF THIS SOFTWARE.
463 \endlegalese
464*/
465
466/*!
467 \module QtXml
468 \title QtXml Module
469 \contentspage All Qt Modules
470 \previouspage QtSvg
471 \nextpage QtXmlPatterns
472 \ingroup modules
473
474 \brief The QtXml module provides a stream reader and writer for
475 XML documents, and C++ implementations of SAX and DOM.
476
477 To include the definitions of the module's classes, use the
478 following directive:
479
480 \snippet doc/src/snippets/code/doc_src_qtxml.qdoc 0
481
482 To link against the module, add this line to your \l qmake \c
483 .pro file:
484
485 \snippet doc/src/snippets/code/doc_src_qtxml.qdoc 1
486
487 Further XML support is provided by the \l{Qt Solutions} group who
488 provide, for example, classes that support SOAP and MML with the
489 Qt XML classes.
490
491 This module is part of the \l{Qt Full Framework Edition} and the
492 \l{Open Source Versions of Qt}.
493*/
494
495/*!
496 \module QtXmlPatterns
497 \title QtXmlPatterns Module
498 \since 4.4
499 \contentspage All Qt Modules
500 \previouspage QtXml
501 \nextpage Phonon Module
502 \ingroup modules
503
504 \brief The QtXmlPatterns module provides support for XPath,
505 XQuery, XSLT and XML Schema validation.
506
507 To include the definitions of the module's classes, use the
508 following directive:
509
510 \snippet doc/src/snippets/code/doc_src_qtxmlpatterns.qdoc 0
511
512 To link against the module, add this line to your \l qmake \c
513 .pro file:
514
515 \snippet doc/src/snippets/code/doc_src_qtxmlpatterns.qdoc 1
516
517 This module is part of the \l{Qt Full Framework Edition} and the
518 \l{Open Source Versions of Qt}.
519
520 \section1 Further Links
521
522 General overviews of XQuery and XSchema can be found in the
523 \l{Using XML Technologies} document.
524
525 An introduction to the XQuery language can be found in \l{A Short Path to XQuery}.
526
527 \section1 License Information
528
529 The XML Schema implementation provided by this module contains the \c xml.xsd file
530 (located in \c{src/xmlpatterns/schema/schemas}) which is licensed under the terms
531 given below. This module is always built with XML Schema support enabled.
532
533 \legalese
534 W3C\copyright SOFTWARE NOTICE AND LICENSE
535
536 This license came from: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
537
538 This work (and included software, documentation such as READMEs, or other
539 related items) is being provided by the copyright holders under the following
540 license. By obtaining, using and/or copying this work, you (the licensee)
541 agree that you have read, understood, and will comply with the following
542 terms and conditions.
543
544 Permission to copy, modify, and distribute this software and its
545 documentation, with or without modification, for any purpose and without
546 fee or royalty is hereby granted, provided that you include the following on
547 ALL copies of the software and documentation or portions thereof, including
548 modifications:
549
550 1. The full text of this NOTICE in a location viewable to users of the
551 redistributed or derivative work.\br
552 2. Any pre-existing intellectual property disclaimers, notices, or terms
553 and conditions. If none exist, the W3C Software Short Notice should be
554 included (hypertext is preferred, text is permitted)
555 within the body of any redistributed or derivative code.\br
556 3. Notice of any changes or modifications to the files, including the date
557 changes were made. (We recommend you provide URIs to the location from
558 which the code is derived.)
559
560 THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
561 MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
562 LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
563 PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE
564 ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
565
566 COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
567 CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
568 DOCUMENTATION.
569
570 The name and trademarks of copyright holders may NOT be used in
571 advertising or publicity pertaining to the software without specific, written
572 prior permission. Title to copyright in this software and any associated
573 documentation will at all times remain with copyright holders.
574 \endlegalese
575*/
576
577/*!
578 \page phonon-module.html
579 \module Phonon
580 \title Phonon Module
581 \contentspage All Qt Modules
582 \previouspage QtXmlPatterns
583 \nextpage Qt3Support
584 \ingroup modules
585
586 \brief The Phonon module contains namespaces and classes for multimedia functionality.
587
588 \generatelist{classesbymodule Phonon}
589
590 Phonon is a cross-platform multimedia framework that enables the use of
591 audio and video content in Qt applications. The \l{Phonon Overview}
592 document provides an introduction to the architecture and features included
593 in Phonon. The \l{Phonon} namespace contains a list of all classes, functions
594 and namespaces provided by the module.
595
596 Applications that use Phonon's classes need to
597 be configured to be built against the Phonon module.
598 The following declaration in a \c qmake project file ensures that
599 an application is compiled and linked appropriately:
600
601 \snippet doc/src/snippets/code/doc_src_phonon.qdoc 1
602
603 The Phonon module is part of the \l{Qt Full Framework Edition} and the
604 \l{Open Source Versions of Qt}.
605
606 \section1 Qt Backends
607
608 Qt Backends are currently developed for Phonon version 4.1. The Phonon
609 project has moved on and introduced new features that the Qt Backends do not
610 implement. We have chosen not to document the part of Phonon that we do not
611 support. Any class or function not appearing in our documentation can be
612 considered unsupported.
613
614 \section1 License Information
615
616 Qt Commercial Edition licensees that wish to distribute applications that
617 use the Phonon module need to be aware of their obligations under the
618 GNU Lesser General Public License (LGPL).
619
620 Developers using the Open Source Edition can choose to redistribute
621 the module under the appropriate version of the GNU LGPL; version 2.1
622 for applications and libraries licensed under the GNU GPL version 2,
623 or version 3 for applications and libraries licensed under the GNU
624 GPL version 3.
625
626 \legalese
627 This file is part of the KDE project
628
629 Copyright (C) 2004-2009 Matthias Kretz <kretz@kde.org> \BR
630 Copyright (C) 2008 Ian Monroe <ian@monroe.nu> \BR
631 Copyright (C) 2007-2008 Trolltech ASA \BR
632 Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). \BR
633 Contact: Nokia Corporation (qt-info@nokia.com)
634
635 This library is free software; you can redistribute it and/or
636 modify it under the terms of the GNU Library General Public
637 License version 2 as published by the Free Software Foundation.
638
639 This library is distributed in the hope that it will be useful,
640 but WITHOUT ANY WARRANTY; without even the implied warranty of
641 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
642 Library General Public License for more details.
643
644 You should have received a copy of the GNU Library General Public License
645 along with this library; see the file COPYING.LIB. If not, write to
646 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
647 Boston, MA 02110-1301, USA.
648 \endlegalese
649*/
650
651/*!
652 \module Qt3Support
653 \title Qt3Support Module
654 \contentspage All Qt Modules
655 \previouspage Phonon Module
656 \nextpage QtDesigner
657 \ingroup modules
658
659 \keyword Qt3Support
660 \brief The Qt3Support module provides classes that ease porting
661 from Qt 3 to Qt 4.
662
663 \warning The classes in this module are intended to be used in
664 intermediate stages of a porting process and are not intended
665 to be used in production code.
666
667 To include the definitions of the module's classes, use the
668 following directive:
669
670 \snippet doc/src/snippets/code/doc_src_qt3support.qdoc 0
671
672 To link against the module, add this line to your \l qmake \c
673 .pro file:
674
675 \snippet doc/src/snippets/code/doc_src_qt3support.qdoc 1
676
677 \note Since this module provides compatibility classes for
678 diverse parts of the Qt 3 API, it has dependencies on the QtCore,
679 QtGui, QtNetwork, QtSql, and QtXml modules.
680
681 This module is part of the \l{Qt Full Framework Edition} and the
682 \l{Open Source Versions of Qt}. Most classes offered by this module are
683 also part of the \l{Qt GUI Framework Edition}.
684 Classes that are not available for \l{Qt GUI Framework Edition}
685 users are marked as such in the class documentation.
686
687 \sa {Porting to Qt 4}
688*/
689
690/*!
691 \module QtDesigner
692 \title QtDesigner Module
693 \contentspage All Qt Modules
694 \previouspage Qt3Support
695 \nextpage QtUiTools
696 \ingroup modules
697
698 \brief The QtDesigner module provides classes that allow you to
699 create your own custom widget plugins for Qt Designer, and classes
700 that enable you to access Qt Designer's components.
701
702 In addition, the QFormBuilder class provides the possibility of
703 constructing user interfaces from UI files at run-time.
704
705 To include the definitions of the module's classes, use the
706 following directive:
707
708 \snippet doc/src/snippets/code/doc_src_qtdesigner.qdoc 0
709
710 To link against the module, add this line to your \c qmake .pro
711 file:
712
713 \snippet doc/src/snippets/code/doc_src_qtdesigner.qdoc 1
714
715 \note These classes are part of the \l{Open Source Versions of Qt} and
716 \l{Qt Commercial Editions}{Qt Full Framework Edition} for commercial
717 users.
718*/
719
720/*!
721 \module QtUiTools
722 \title QtUiTools Module
723 \since 4.1
724 \contentspage All Qt Modules
725 \previouspage QtDesigner
726 \nextpage QtHelp
727 \ingroup modules
728
729 \brief The QtUiTools module provides classes to handle forms created
730 with Qt Designer.
731
732 These forms are processed at run-time to produce dynamically-generated
733 user interfaces. In order to generate a form at run-time, a resource
734 file containing a UI file is needed. Applications that use the
735 form handling classes need to be configured to be built against the
736 QtUiTools module. This is done by including the following declaration
737 in a \c qmake project file to ensure that the application is compiled
738 and linked appropriately.
739
740 \snippet doc/src/snippets/code/doc_src_qtuiloader.qdoc 0
741
742 A form loader object, provided by the QUiLoader class, is used to
743 construct the user interface. This user interface can
744 be retrieved from any QIODevice; for example, a QFile object can be
745 used to obtain a form stored in a project's resources. The
746 QUiLoader::load() function takes the user interface description
747 contained in the file and constructs the form widget.
748
749 To include the definitions of the module's classes, use the following
750 directive:
751
752 \snippet doc/src/snippets/code/doc_src_qtuiloader.qdoc 1
753
754 \note These classes are part of the \l{Open Source Versions of Qt} and
755 \l{Qt Commercial Editions}{Qt Full Framework Edition} for commercial
756 users.
757
758 \sa{Calculator Builder Example}, {World Time Clock Builder Example}
759*/
760
761/*!
762 \module QtHelp
763 \title QtHelp Module
764 \contentspage All Qt Modules
765 \previouspage QtUiTools
766 \nextpage QtTest
767 \ingroup modules
768
769 \brief The QtHelp module provides classes for integrating
770 online documentation in applications.
771
772 To include the definitions of the module's classes, use the
773 following directive:
774
775 \snippet doc/src/snippets/code/doc_src_qthelp.qdoc 0
776
777 To link against the module, add this line to your \l qmake \c
778 .pro file:
779
780 \snippet doc/src/snippets/code/doc_src_qthelp.qdoc 1
781
782 These classes are part of the \l{Open Source Versions of Qt} and
783 \l{Qt Commercial Editions}{Qt Full Framework Edition} for commercial
784 users.
785
786 \section1 License Information
787
788 The QtHelp module uses the CLucene indexing library to provide full-text
789 searching capabilities for Qt Assistant and applications that use the
790 features of QtHelp.
791
792 Qt Commercial Edition licensees that wish to distribute applications that
793 use these features of the QtHelp module need to be aware of their
794 obligations under the GNU Lesser General Public License (LGPL).
795
796 Developers using the Open Source Edition can choose to redistribute
797 the module under the appropriate version of the GNU LGPL; version 2.1
798 for applications and libraries licensed under the GNU GPL version 2,
799 or version 3 for applications and libraries licensed under the GNU
800 GPL version 3.
801
802 \legalese
803 Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team \BR
804 Changes are Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
805
806 This library is free software; you can redistribute it and/or
807 modify it under the terms of the GNU Lesser General Public
808 License as published by the Free Software Foundation; either
809 version 2.1 of the License, or (at your option) any later version.
810
811 This library is distributed in the hope that it will be useful,
812 but WITHOUT ANY WARRANTY; without even the implied warranty of
813 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
814 Lesser General Public License for more details.
815
816 You should have received a copy of the GNU Lesser General Public
817 License along with this library; if not, write to the Free Software
818 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
819 \endlegalese
820
821 \sa {The Qt Help Framework}
822*/
823
824/*!
825 \module QtTest
826 \title QtTest Module
827 \contentspage All Qt Modules
828 \previouspage QtHelp
829 \nextpage QAxContainer
830 \ingroup modules
831
832 \keyword QtTest
833
834 \brief The QtTest module provides classes for unit testing Qt applications and libraries.
835
836 Applications that use Qt's unit testing classes need to
837 be configured to be built against the QtTest module.
838 To include the definitions of the module's classes, use the
839 following directive:
840
841 \snippet doc/src/snippets/code/doc_src_qttest.qdoc 0
842
843 To link against the module, add this line to your \l qmake \c
844 .pro file:
845
846 \snippet doc/src/snippets/code/doc_src_qttest.qdoc 1
847
848 See the \l{QTestLib Manual} for a detailed introduction on how to use
849 Qt's unit testing features with your applications.
850
851 The QtTest module is part of all \l{Qt editions}.
852*/
853
854/*!
855 \module QAxContainer
856 \title QAxContainer Module
857 \contentspage All Qt Modules
858 \previouspage QtTest
859 \nextpage QAxServer
860 \ingroup modules
861
862 \brief The QAxContainer module is a Windows-only extension for
863 accessing ActiveX controls and COM objects.
864
865 QAxServer is part of the \l{ActiveQt Framework}.
866
867 \section1 License Information
868
869 The QAxContainer module is not covered by the \l{GNU General Public License (GPL)},
870 the \l{GNU Lesser General Public License (LGPL)}, or the
871 \l{Qt Commercial Editions}{Qt Commercial License}. Instead, it is distributed under
872 the following license.
873
874 \legalese
875 Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).\br
876 All rights reserved.
877
878 Contact: Nokia Corporation (qt-info@nokia.com)\br
879
880 You may use this file under the terms of the BSD license as follows:\br
881
882 "Redistribution and use in source and binary forms, with or without modification,
883 are permitted provided that the following conditions are met:
884
885 * Redistributions of source code must retain the above copyright notice, this list
886 of conditions and the following disclaimer.\br
887 * Redistributions in binary form must reproduce the above copyright notice, this
888 list of conditions and the following disclaimer in the documentation and/or other
889 materials provided with the distribution.\br
890 * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the names of
891 its contributors may be used to endorse or promote products derived from this
892 software without specific prior written permission.
893
894 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
895 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
896 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
897 SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
898 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
899 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
900 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
901 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
902 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
903 \endlegalese
904*/
905
906/*!
907 \module QAxServer
908 \title QAxServer Module
909 \contentspage All Qt Modules
910 \previouspage QAxContainer
911 \nextpage QtDBus module
912 \ingroup modules
913
914 \brief The QAxServer module is a Windows-only static library that
915 you can use to turn a standard Qt binary into a COM server.
916
917 QAxServer is part of the \l{ActiveQt Framework}.
918
919 \section1 License Information
920
921 The QAxContainer module is not covered by the \l{GNU General Public License (GPL)},
922 the \l{GNU Lesser General Public License (LGPL)}, or the
923 \l{Qt Commercial Editions}{Qt Commercial License}. Instead, it is distributed under
924 the following license.
925
926 \legalese
927 Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).\br
928 All rights reserved.
929
930 Contact: Nokia Corporation (qt-info@nokia.com)\br
931
932 You may use this file under the terms of the BSD license as follows:\br
933
934 "Redistribution and use in source and binary forms, with or without modification,
935 are permitted provided that the following conditions are met:
936
937 * Redistributions of source code must retain the above copyright notice, this list
938 of conditions and the following disclaimer.\br
939 * Redistributions in binary form must reproduce the above copyright notice, this
940 list of conditions and the following disclaimer in the documentation and/or other
941 materials provided with the distribution.\br
942 * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the names of
943 its contributors may be used to endorse or promote products derived from this
944 software without specific prior written permission.
945
946 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
947 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
948 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
949 SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
950 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
951 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
952 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
953 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
954 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
955 \endlegalese
956*/
957
958/*!
959 \module QtDBus
960 \title QtDBus module
961 \contentspage All Qt Modules
962 \previouspage QAxServer
963 \ingroup modules
964
965 \keyword QtDBus
966 \target The QDBus compiler
967
968 \brief The QtDBus module is a Unix-only library that you can use
969 to perform Inter-Process Communication using the \l{Introduction to
970 D-Bus}{D-Bus} protocol.
971
972 Applications using the QtDBus module can provide services to
973 other, remote applications by exporting objects, as well as use
974 services exported by those applications by placing calls and
975 accessing properties.
976
977 The QtDBus module provides an interface that extends the Qt \l
978 {signalsandslots.html}{Signals and Slots} mechanism, allowing one
979 to connect to a signal emitted remotely as well as to connect a
980 local signal to remote slot.
981
982 To use this module, use the following code in your application:
983
984 \snippet doc/src/snippets/code/doc_src_qtdbus.qdoc 0
985
986 If you're using qmake to build your application, you can add this
987 line to your .pro file to make it link against the QtDBus
988 libraries:
989
990 \snippet doc/src/snippets/code/doc_src_qtdbus.qdoc 1
991
992 \note The source code for this module is located in the \c{src/qdbus}
993 directory. When installing Qt from source, this module is built when Qt's
994 tools are built.
995
996 See the \l {Introduction to D-Bus} page for detailed information on
997 how to use this module.
998
999 This module is part of all \l{Qt editions}.
1000*/
1001
1002/*!
1003 \page qtmain.html
1004 \title The qtmain Library
1005 \ingroup licensing
1006 \ingroup platform-specific
1007 \brief Describes the use and license of the qtmain helper library.
1008
1009 qtmain is a helper library that enables the developer to write a
1010 cross-platform main() function on Windows and on the Symbian platform.
1011 If you do not use \l qmake or other build tools such as CMake, then you
1012 need to link against the \c qtmain library.
1013
1014 \section1 License Information
1015
1016 The QAxContainer module is not covered by the \l{GNU General Public License (GPL)},
1017 the \l{GNU Lesser General Public License (LGPL)}, or the
1018 \l{Qt Commercial Editions}{Qt Commercial License}. Instead, it is distributed under
1019 the following license.
1020
1021 \legalese
1022 Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).\br
1023 All rights reserved.
1024
1025 Contact: Nokia Corporation (qt-info@nokia.com)
1026
1027 You may use this file under the terms of the BSD license as follows:
1028
1029 "Redistribution and use in source and binary forms, with or without modification,
1030 are permitted provided that the following conditions are met:
1031
1032 * Redistributions of source code must retain the above copyright notice, this list
1033 of conditions and the following disclaimer.\br
1034 * Redistributions in binary form must reproduce the above copyright notice, this
1035 list of conditions and the following disclaimer in the documentation and/or other
1036 materials provided with the distribution.\br
1037 * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the names of
1038 its contributors may be used to endorse or promote products derived from this
1039 software without specific prior written permission.
1040
1041 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
1042 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1043 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
1044 SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
1045 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
1046 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
1047 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1048 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
1049 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
1050 \endlegalese
1051
1052 The contents of the \c{qts60main.cpp} and \c{qts60main_mcrt0.cpp} files,
1053 located in the \c{src/s60main} directory are not covered by the
1054 \l{GNU General Public License (GPL)}, the
1055 \l{GNU Lesser General Public License (LGPL)}, or the
1056 \l{Qt Commercial Editions}{Qt Commercial License}. Instead, they are
1057 distributed under the following license.
1058
1059 \legalese
1060 Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).\br
1061 All rights reserved.\br
1062 Contact: Nokia Corporation (qt-info@nokia.com)
1063
1064 This file is part of the Symbian application wrapper of the Qt Toolkit.
1065
1066 You may use this file under the terms of the BSD license as follows:
1067
1068 "Redistribution and use in source and binary forms, with or without
1069 modification, are permitted provided that the following conditions are
1070 met:\br
1071 * Redistributions of source code must retain the above copyright
1072 notice, this list of conditions and the following disclaimer.\br
1073 * Redistributions in binary form must reproduce the above copyright
1074 notice, this list of conditions and the following disclaimer in the
1075 documentation and/or other materials provided with the distribution.\br
1076 * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
1077 the names of its contributors may be used to endorse or promote
1078 products derived from this software without specific prior written
1079 permission.
1080
1081 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
1082 IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
1083 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1084 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
1085 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
1086 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
1087 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
1088 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
1089 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
1090 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1091 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
1092 \endlegalese
1093*/
1094
1095/*!
1096 \page qtassistant.html
1097 \title QtAssistant
1098
1099 This module is no longer needed. Use the QtHelp module to integrate documentation
1100 into your application.
1101
1102 \sa {QtHelp}
1103*/
Note: See TracBrowser for help on using the repository browser.