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