summaryrefslogtreecommitdiff
path: root/qmake/include/qglobal.h
Unidiff
Diffstat (limited to 'qmake/include/qglobal.h') (more/less context) (ignore whitespace changes)
-rw-r--r--qmake/include/qglobal.h165
1 files changed, 104 insertions, 61 deletions
diff --git a/qmake/include/qglobal.h b/qmake/include/qglobal.h
index 94e5607..b7e919d 100644
--- a/qmake/include/qglobal.h
+++ b/qmake/include/qglobal.h
@@ -1,480 +1,505 @@
1/**************************************************************************** 1/****************************************************************************
2** $Id$ 2**
3** 3**
4** Global type declarations and definitions 4** Global type declarations and definitions
5** 5**
6** Created : 920529 6** Created : 920529
7** 7**
8** Copyright (C) 1992-2002 Trolltech AS. All rights reserved. 8** Copyright (C) 1992-2003 Trolltech AS. All rights reserved.
9** 9**
10** This file is part of the tools module of the Qt GUI Toolkit. 10** This file is part of the tools module of the Qt GUI Toolkit.
11** 11**
12** This file may be distributed under the terms of the Q Public License 12** This file may be distributed under the terms of the Q Public License
13** as defined by Trolltech AS of Norway and appearing in the file 13** as defined by Trolltech AS of Norway and appearing in the file
14** LICENSE.QPL included in the packaging of this file. 14** LICENSE.QPL included in the packaging of this file.
15** 15**
16** This file may be distributed and/or modified under the terms of the 16** This file may be distributed and/or modified under the terms of the
17** GNU General Public License version 2 as published by the Free Software 17** GNU General Public License version 2 as published by the Free Software
18** Foundation and appearing in the file LICENSE.GPL included in the 18** Foundation and appearing in the file LICENSE.GPL included in the
19** packaging of this file. 19** packaging of this file.
20** 20**
21** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition 21** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
22** licenses may use this file in accordance with the Qt Commercial License 22** licenses may use this file in accordance with the Qt Commercial License
23** Agreement provided with the Software. 23** Agreement provided with the Software.
24** 24**
25** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 25** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
26** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 26** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
27** 27**
28** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for 28** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
29** information about Qt Commercial License Agreements. 29** information about Qt Commercial License Agreements.
30** See http://www.trolltech.com/qpl/ for QPL licensing information. 30** See http://www.trolltech.com/qpl/ for QPL licensing information.
31** See http://www.trolltech.com/gpl/ for GPL licensing information. 31** See http://www.trolltech.com/gpl/ for GPL licensing information.
32** 32**
33** Contact info@trolltech.com if any conditions of this licensing are 33** Contact info@trolltech.com if any conditions of this licensing are
34** not clear to you. 34** not clear to you.
35** 35**
36**********************************************************************/ 36**********************************************************************/
37 37
38#ifndef QGLOBAL_H 38#ifndef QGLOBAL_H
39#define QGLOBAL_H 39#define QGLOBAL_H
40 40
41#define QT_VERSION_STR "3.1.2" 41#define QT_VERSION_STR "3.3.2"
42/* 42/*
43 QT_VERSION is (major << 16) + (minor << 8) + patch. 43 QT_VERSION is (major << 16) + (minor << 8) + patch.
44 */ 44 */
45#define QT_VERSION 0x030102 45#define QT_VERSION 0x030302
46 46
47/* 47/*
48 The operating system, must be one of: (Q_OS_x) 48 The operating system, must be one of: (Q_OS_x)
49 49
50 MACX- Mac OS X 50 MACX- Mac OS X
51 MAC9- Mac OS 9 51 MAC9- Mac OS 9
52 DARWIN - Darwin OS (Without Mac OS X)
52 MSDOS- MS-DOS and Windows 53 MSDOS- MS-DOS and Windows
53 OS2- OS/2 54 OS2- OS/2
54 OS2EMX- XFree86 on OS/2 (not PM) 55 OS2EMX- XFree86 on OS/2 (not PM)
55 WIN32- Win32 (Windows 95/98/ME and Windows NT/2000/XP) 56 WIN32- Win32 (Windows 95/98/ME and Windows NT/2000/XP)
56 CYGWIN- Cygwin 57 CYGWIN- Cygwin
57 SOLARIS- Sun Solaris 58 SOLARIS- Sun Solaris
58 HPUX- HP-UX 59 HPUX- HP-UX
59 ULTRIX- DEC Ultrix 60 ULTRIX- DEC Ultrix
60 LINUX- Linux 61 LINUX- Linux
61 FREEBSD- FreeBSD 62 FREEBSD- FreeBSD
62 NETBSD- NetBSD 63 NETBSD- NetBSD
63 OPENBSD- OpenBSD 64 OPENBSD- OpenBSD
64 BSDI- BSD/OS 65 BSDI- BSD/OS
65 IRIX- SGI Irix 66 IRIX- SGI Irix
66 OSF- HP Tru64 UNIX 67 OSF- HP Tru64 UNIX
67 SCO- SCO OpenServer 5 68 SCO- SCO OpenServer 5
68 UNIXWARE- UnixWare 7, Open UNIX 8 69 UNIXWARE- UnixWare 7, Open UNIX 8
69 AIX- AIX 70 AIX- AIX
70 HURD- GNU Hurd 71 HURD- GNU Hurd
71 DGUX- DG/UX 72 DGUX- DG/UX
72 RELIANT- Reliant UNIX 73 RELIANT- Reliant UNIX
73 DYNIX- DYNIX/ptx 74 DYNIX- DYNIX/ptx
74 QNX- QNX 75 QNX- QNX
75 QNX6- QNX RTP 6.1 76 QNX6- QNX RTP 6.1
76 LYNX- LynxOS 77 LYNX- LynxOS
77 BSD4- Any BSD 4.4 system 78 BSD4- Any BSD 4.4 system
78 UNIX- Any UNIX BSD/SYSV system 79 UNIX- Any UNIX BSD/SYSV system
79*/ 80*/
80 81
81#if defined(__APPLE__) && defined(__GNUC__) 82#if defined(__DARWIN_X11__)
83# define Q_OS_DARWIN
84#elif defined(__APPLE__) && defined(__GNUC__)
82# define Q_OS_MACX 85# define Q_OS_MACX
83#elif defined(__MACOSX__) 86#elif defined(__MACOSX__)
84# define Q_OS_MACX 87# define Q_OS_MACX
85#elif defined(macintosh) 88#elif defined(macintosh)
86# define Q_OS_MAC9 89# define Q_OS_MAC9
87#elif defined(__CYGWIN__) 90#elif defined(__CYGWIN__)
88# define Q_OS_CYGWIN 91# define Q_OS_CYGWIN
89#elif defined(MSDOS) || defined(_MSDOS) 92#elif defined(MSDOS) || defined(_MSDOS)
90# define Q_OS_MSDOS 93# define Q_OS_MSDOS
91#elif defined(__OS2__) 94#elif defined(__OS2__)
92# if defined(__EMX__) 95# if defined(__EMX__)
93# define Q_OS_OS2EMX 96# define Q_OS_OS2EMX
94# else 97# else
95# define Q_OS_OS2 98# define Q_OS_OS2
96# endif 99# endif
97#elif !defined(SAG_COM) && (defined(WIN64) || defined(_WIN64) || defined(__WIN64__)) 100#elif !defined(SAG_COM) && (defined(WIN64) || defined(_WIN64) || defined(__WIN64__))
98# define Q_OS_WIN32 101# define Q_OS_WIN32
99# define Q_OS_WIN64 102# define Q_OS_WIN64
100#elif !defined(SAG_COM) && (defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)) 103#elif !defined(SAG_COM) && (defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__))
101# define Q_OS_WIN32 104# define Q_OS_WIN32
102#elif defined(__MWERKS__) && defined(__INTEL__) 105#elif defined(__MWERKS__) && defined(__INTEL__)
103# define Q_OS_WIN32 106# define Q_OS_WIN32
104#elif defined(__sun) || defined(sun) 107#elif defined(__sun) || defined(sun)
105# define Q_OS_SOLARIS 108# define Q_OS_SOLARIS
106#elif defined(hpux) || defined(__hpux) 109#elif defined(hpux) || defined(__hpux)
107# define Q_OS_HPUX 110# define Q_OS_HPUX
108#elif defined(__ultrix) || defined(ultrix) 111#elif defined(__ultrix) || defined(ultrix)
109# define Q_OS_ULTRIX 112# define Q_OS_ULTRIX
110#elif defined(sinix) 113#elif defined(sinix)
111# define Q_OS_RELIANT 114# define Q_OS_RELIANT
112#elif defined(__linux__) || defined(__linux) 115#elif defined(__linux__) || defined(__linux)
113# define Q_OS_LINUX 116# define Q_OS_LINUX
114#elif defined(__FreeBSD__) 117#elif defined(__FreeBSD__) || defined(__DragonFly__)
115# define Q_OS_FREEBSD 118# define Q_OS_FREEBSD
116# define Q_OS_BSD4 119# define Q_OS_BSD4
117#elif defined(__NetBSD__) 120#elif defined(__NetBSD__)
118# define Q_OS_NETBSD 121# define Q_OS_NETBSD
119# define Q_OS_BSD4 122# define Q_OS_BSD4
120#elif defined(__OpenBSD__) 123#elif defined(__OpenBSD__)
121# define Q_OS_OPENBSD 124# define Q_OS_OPENBSD
122# define Q_OS_BSD4 125# define Q_OS_BSD4
123#elif defined(__bsdi__) 126#elif defined(__bsdi__)
124# define Q_OS_BSDI 127# define Q_OS_BSDI
125# define Q_OS_BSD4 128# define Q_OS_BSD4
126#elif defined(__sgi) 129#elif defined(__sgi)
127# define Q_OS_IRIX 130# define Q_OS_IRIX
128#elif defined(__osf__) 131#elif defined(__osf__)
129# define Q_OS_OSF 132# define Q_OS_OSF
130#elif defined(_AIX) 133#elif defined(_AIX)
131# define Q_OS_AIX 134# define Q_OS_AIX
132#elif defined(__Lynx__) 135#elif defined(__Lynx__)
133# define Q_OS_LYNX 136# define Q_OS_LYNX
134#elif defined(__GNU_HURD__) 137#elif defined(__GNU_HURD__)
135# define Q_OS_HURD 138# define Q_OS_HURD
136#elif defined(__DGUX__) 139#elif defined(__DGUX__)
137# define Q_OS_DGUX 140# define Q_OS_DGUX
138#elif defined(__QNXNTO__) 141#elif defined(__QNXNTO__)
139# define Q_OS_QNX6 142# define Q_OS_QNX6
140#elif defined(__QNX__) 143#elif defined(__QNX__)
141# define Q_OS_QNX 144# define Q_OS_QNX
142#elif defined(_SEQUENT_) 145#elif defined(_SEQUENT_)
143# define Q_OS_DYNIX 146# define Q_OS_DYNIX
144#elif defined(_SCO_DS) /* SCO OpenServer 5 + GCC */ 147#elif defined(_SCO_DS) /* SCO OpenServer 5 + GCC */
145# define Q_OS_SCO 148# define Q_OS_SCO
146#elif defined(__USLC__) /* all SCO platforms + UDK or OUDK */ 149#elif defined(__USLC__) /* all SCO platforms + UDK or OUDK */
147# define Q_OS_UNIXWARE 150# define Q_OS_UNIXWARE
148# define Q_OS_UNIXWARE7 151# define Q_OS_UNIXWARE7
149#elif defined(__svr4__) && defined(i386) /* Open UNIX 8 + GCC */ 152#elif defined(__svr4__) && defined(i386) /* Open UNIX 8 + GCC */
150# define Q_OS_UNIXWARE 153# define Q_OS_UNIXWARE
151# define Q_OS_UNIXWARE7 154# define Q_OS_UNIXWARE7
155#elif defined(__MAKEDEPEND__)
152#else 156#else
153# error "Qt has not been ported to this OS - talk to qt-bugs@trolltech.com" 157# error "Qt has not been ported to this OS - talk to qt-bugs@trolltech.com"
154#endif 158#endif
155 159
160#if defined(Q_OS_WIN32) || defined(Q_OS_WIN64)
161# define Q_OS_WIN
162#endif
163
156#if defined(Q_OS_MAC9) || defined(Q_OS_MACX) 164#if defined(Q_OS_MAC9) || defined(Q_OS_MACX)
157/* This hack forces the generater to compile qmake not for maxosx native. It is 165# define Q_OS_MAC
158 * compiled for Linux and generates usual makefiles..
159 * Does anyone has a better solution for this ? (eilers)
160 */
161// # define Q_OS_MAC
162#define Q_OS_LINUX
163#warning "boeser Hack !! (se)"
164#undef Q_OS_MACX
165#endif 166#endif
166 167
167#if defined(Q_OS_MAC9) || defined(Q_OS_MSDOS) || defined(Q_OS_OS2) || defined(Q_OS_WIN32) || defined(Q_OS_WIN64) 168#if defined(Q_OS_MAC9) || defined(Q_OS_MSDOS) || defined(Q_OS_OS2) || defined(Q_OS_WIN)
168# undef Q_OS_UNIX 169# undef Q_OS_UNIX
169#elif !defined(Q_OS_UNIX) 170#elif !defined(Q_OS_UNIX)
170# define Q_OS_UNIX 171# define Q_OS_UNIX
171#endif 172#endif
172 173
173 174
174/* 175/*
175 The compiler, must be one of: (Q_CC_x) 176 The compiler, must be one of: (Q_CC_x)
176 177
177 SYM- Symantec C++ for both PC and Macintosh 178 SYM- Symantec C++ for both PC and Macintosh
178 MPW- MPW C++ 179 MPW- MPW C++
179 MWERKS- Metrowerks CodeWarrior 180 MWERKS- Metrowerks CodeWarrior
180 MSVC- Microsoft Visual C/C++ 181 MSVC- Microsoft Visual C/C++, Intel C++ for Windows
181 BOR- Borland/Turbo C++ 182 BOR- Borland/Turbo C++
182 WAT- Watcom C++ 183 WAT- Watcom C++
183 GNU- GNU C++ 184 GNU- GNU C++
184 COMEAU- Comeau C++ 185 COMEAU- Comeau C++
185 EDG- Edison Design Group C++ 186 EDG- Edison Design Group C++
186 OC - CenterLine C++ 187 OC - CenterLine C++
187 SUN- Sun WorkShop, Forte Developer, or Sun ONE Studio C++ 188 SUN- Sun WorkShop, Forte Developer, or Sun ONE Studio C++
188 MIPS- MIPSpro C++ 189 MIPS- MIPSpro C++
189 DEC- DEC C++ 190 DEC- DEC C++
190 HP - HPUX C++ 191 HP - HPUX C++
191 HPACC- HPUX ANSI C++ 192 HPACC- HPUX ANSI C++
192 USLC- SCO OUDK, UDK, and UnixWare 2.X C++ 193 USLC- SCO OUDK, UDK, and UnixWare 2.X C++
193 CDS- Reliant C++ 194 CDS- Reliant C++
194 KAI- KAI C++ 195 KAI- KAI C++
195 INTEL- Intel C++ 196 INTEL- Intel C++ for Linux, Intel C++ for Windows
196 HIGHC- MetaWare High C/C++ 197 HIGHC- MetaWare High C/C++
197 PGI- Portland Group C++ 198 PGI- Portland Group C++
198 GHS- Green Hills Optimizing C++ Compilers 199 GHS- Green Hills Optimizing C++ Compilers
199 200
200 Should be sorted most to least authoritative. 201 Should be sorted most to least authoritative.
201*/ 202*/
202 203
203/* Symantec C++ is now Digital Mars */ 204/* Symantec C++ is now Digital Mars */
204#if defined(__DMC__) || defined(__SC__) 205#if defined(__DMC__) || defined(__SC__)
205# define Q_CC_SYM 206# define Q_CC_SYM
206/* "explicit" semantics implemented in 8.1e but keyword recognized since 7.5 */ 207/* "explicit" semantics implemented in 8.1e but keyword recognized since 7.5 */
207# if defined(__SC__) && __SC__ < 0x750 208# if defined(__SC__) && __SC__ < 0x750
208# define Q_NO_EXPLICIT_KEYWORD 209# define Q_NO_EXPLICIT_KEYWORD
209# endif 210# endif
210# define Q_NO_USING_KEYWORD 211# define Q_NO_USING_KEYWORD
211# if !defined(_CPPUNWIND) 212# if !defined(_CPPUNWIND)
212# define Q_NO_EXCEPTIONS 213# define Q_NO_EXCEPTIONS
213# endif 214# endif
214 215
215#elif defined(applec) 216#elif defined(applec)
216# define Q_CC_MPW 217# define Q_CC_MPW
217# define Q_NO_BOOL_TYPE 218# define Q_NO_BOOL_TYPE
218# define Q_NO_EXPLICIT_KEYWORD 219# define Q_NO_EXPLICIT_KEYWORD
219# define Q_NO_USING_KEYWORD 220# define Q_NO_USING_KEYWORD
220 221
221#elif defined(__MWERKS__) 222#elif defined(__MWERKS__)
222# define Q_CC_MWERKS 223# define Q_CC_MWERKS
223/* "explicit" recognized since 4.0d1 */ 224/* "explicit" recognized since 4.0d1 */
224# define QMAC_PASCAL pascal 225# define QMAC_PASCAL pascal
225# define Q_NO_USING_KEYWORD /* ### check "using" status */
226 226
227#elif defined(_MSC_VER) 227#elif defined(_MSC_VER)
228# define Q_CC_MSVC 228# define Q_CC_MSVC
229/* proper support of bool for _MSC_VER >= 1100 */ 229/* proper support of bool for _MSC_VER >= 1100 */
230# define Q_CANNOT_DELETE_CONSTANT 230# define Q_CANNOT_DELETE_CONSTANT
231# define Q_INLINE_TEMPLATES inline 231# define Q_INLINE_TEMPLATES inline
232/* Visual C++.Net issues for _MSC_VER >= 1300 */ 232/* Visual C++.Net issues for _MSC_VER >= 1300 */
233# if _MSC_VER >= 1300 233# if _MSC_VER >= 1300
234# define Q_CC_MSVC_NET 234# define Q_CC_MSVC_NET
235# if _MSC_VER < 1310 235# if _MSC_VER < 1310 || defined(Q_OS_WIN64)
236# define Q_TYPENAME 236# define Q_TYPENAME
237# endif 237# endif
238# endif 238# endif
239# define Q_NO_USING_KEYWORD /* ### check "using" status */ 239/* Intel C++ disguising as Visual C++: the `using' keyword avoids warnings */
240# if defined(__INTEL_COMPILER)
241# define Q_CC_INTEL
242# if !defined(__EXCEPTIONS)
243# define Q_NO_EXCEPTIONS
244# endif
245# else
246# define Q_NO_USING_KEYWORD /* ### check "using" status */
247# endif
240 248
241#elif defined(__BORLANDC__) || defined(__TURBOC__) 249#elif defined(__BORLANDC__) || defined(__TURBOC__)
242# define Q_CC_BOR 250# define Q_CC_BOR
243# if __BORLANDC__ < 0x502 251# if __BORLANDC__ < 0x502
244# define Q_NO_BOOL_TYPE 252# define Q_NO_BOOL_TYPE
245# define Q_NO_EXPLICIT_KEYWORD 253# define Q_NO_EXPLICIT_KEYWORD
246# endif 254# endif
247# define Q_NO_USING_KEYWORD /* ### check "using" status */ 255# define Q_NO_USING_KEYWORD /* ### check "using" status */
248 256
249#elif defined(__WATCOMC__) 257#elif defined(__WATCOMC__)
250# define Q_CC_WAT 258# define Q_CC_WAT
251# if defined(Q_OS_QNX4) 259# if defined(Q_OS_QNX4)
252/* compiler flags */ 260/* compiler flags */
253# define Q_TYPENAME 261# define Q_TYPENAME
254# define Q_NO_BOOL_TYPE 262# define Q_NO_BOOL_TYPE
255# define Q_CANNOT_DELETE_CONSTANT 263# define Q_CANNOT_DELETE_CONSTANT
256# define mutable 264# define mutable
257/* ??? */ 265/* ??? */
258# define Q_BROKEN_TEMPLATE_SPECIALIZATION 266# define Q_BROKEN_TEMPLATE_SPECIALIZATION
259/* no template classes in QVariant */ 267/* no template classes in QVariant */
260# define QT_NO_TEMPLATE_VARIANT 268# define QT_NO_TEMPLATE_VARIANT
261/* Wcc does not fill in functions needed by valuelists, maps, and 269/* Wcc does not fill in functions needed by valuelists, maps, and
262 valuestacks implicitly */ 270 valuestacks implicitly */
263# define Q_FULL_TEMPLATE_INSTANTIATION 271# define Q_FULL_TEMPLATE_INSTANTIATION
264/* can we just compare the structures? */ 272/* can we just compare the structures? */
265# define Q_FULL_TEMPLATE_INSTANTIATION_MEMCMP 273# define Q_FULL_TEMPLATE_INSTANTIATION_MEMCMP
266/* these are not useful to our customers */ 274/* these are not useful to our customers */
267# define QT_QWS_NO_SHM 275# define QT_QWS_NO_SHM
268# define QT_NO_QWS_MULTIPROCESS 276# define QT_NO_QWS_MULTIPROCESS
269# define QT_NO_SQL 277# define QT_NO_SQL
270# define QT_NO_QWS_CURSOR 278# define QT_NO_QWS_CURSOR
271# endif 279# endif
272 280
273#elif defined(__GNUC__) 281#elif defined(__GNUC__)
274# define Q_CC_GNU 282# define Q_CC_GNU
275# define Q_C_CALLBACKS 283# define Q_C_CALLBACKS
276# if __GNUC__ == 2 && __GNUC_MINOR__ <= 7 284# if __GNUC__ == 2 && __GNUC_MINOR__ <= 7
277# define Q_FULL_TEMPLATE_INSTANTIATION 285# define Q_FULL_TEMPLATE_INSTANTIATION
278# endif 286# endif
279/* GCC 2.95 knows "using" but does not support it correctly */ 287/* GCC 2.95 knows "using" but does not support it correctly */
280# if __GNUC__ == 2 && __GNUC_MINOR__ <= 95 288# if __GNUC__ == 2 && __GNUC_MINOR__ <= 95
281# define Q_NO_USING_KEYWORD 289# define Q_NO_USING_KEYWORD
282# endif 290# endif
283/* GCC 3.1 and GCC 3.2 wrongly define _SB_CTYPE_MACROS on HP-UX */ 291/* GCC 3.1 and GCC 3.2 wrongly define _SB_CTYPE_MACROS on HP-UX */
284# if defined(Q_OS_HPUX) && __GNUC__ == 3 && __GNUC_MINOR__ >= 1 292# if defined(Q_OS_HPUX) && __GNUC__ == 3 && __GNUC_MINOR__ >= 1
285# define Q_WRONG_SB_CTYPE_MACROS 293# define Q_WRONG_SB_CTYPE_MACROS
286# endif 294# endif
295
296/* ARM gcc pads structs to 32 bits, even when they contain a single
297 char, or short. We tell gcc to pack QChars to 16 bits, to avoid
298 QString bloat. However, gcc 3.4 doesn't allow us to create references to
299 members of a packed struct. (Pointers are OK, because then you
300 supposedly know what you are doing.) */
287# if (defined(__arm__) || defined(__ARMEL__)) && !defined(QT_MOC_CPP) 301# if (defined(__arm__) || defined(__ARMEL__)) && !defined(QT_MOC_CPP)
288# define Q_PACKED __attribute__ ((packed)) 302# define Q_PACKED __attribute__ ((packed))
303# if __GNUC__ == 3 && __GNUC_MINOR__ >= 4
304# define Q_NO_PACKED_REFERENCE
305# endif
289# endif 306# endif
290# if !defined(__EXCEPTIONS) 307# if !defined(__EXCEPTIONS)
291# define Q_NO_EXCEPTIONS 308# define Q_NO_EXCEPTIONS
292# endif 309# endif
293 310
294/* IBM compiler versions are a bit messy. There are actually two products: 311/* IBM compiler versions are a bit messy. There are actually two products:
295 the C product, and the C++ product. The C++ compiler is always packaged 312 the C product, and the C++ product. The C++ compiler is always packaged
296 with the latest version of the C compiler. Version numbers do not always 313 with the latest version of the C compiler. Version numbers do not always
297 match. This little table (I'm not sure it's accurate) should be helpful: 314 match. This little table (I'm not sure it's accurate) should be helpful:
298 315
299 C++ product C product 316 C++ product C product
300 317
301 C Set 3.1 C Compiler 3.0 318 C Set 3.1 C Compiler 3.0
302 ... ... 319 ... ...
303 C++ Compiler 3.6.6 C Compiler 4.3 320 C++ Compiler 3.6.6 C Compiler 4.3
304 ... ... 321 ... ...
305 Visual Age C++ 4.0 ... 322 Visual Age C++ 4.0 ...
306 ... ... 323 ... ...
307 Visual Age C++ 5.0 C Compiler 5.0 324 Visual Age C++ 5.0 C Compiler 5.0
325 ... ...
326 Visual Age C++ 6.0 C Compiler 6.0
308 327
309 Now: 328 Now:
310 __xlC__ is the version of the C compiler in hexadecimal notation 329 __xlC__ is the version of the C compiler in hexadecimal notation
311 is only an approximation of the C++ compiler version 330 is only an approximation of the C++ compiler version
312 __IBMCPP__ is the version of the C++ compiler in decimal notation 331 __IBMCPP__ is the version of the C++ compiler in decimal notation
313 but it is not defined on older compilers like C Set 3.1 */ 332 but it is not defined on older compilers like C Set 3.1 */
314#elif defined(__xlC__) 333#elif defined(__xlC__)
315# define Q_CC_XLC 334# define Q_CC_XLC
316# define Q_FULL_TEMPLATE_INSTANTIATION 335# define Q_FULL_TEMPLATE_INSTANTIATION
317# if __xlC__ < 0x400 336# if __xlC__ < 0x400
318# define Q_NO_BOOL_TYPE 337# define Q_NO_BOOL_TYPE
319# define Q_NO_EXPLICIT_KEYWORD 338# define Q_NO_EXPLICIT_KEYWORD
320# define Q_NO_USING_KEYWORD 339# define Q_NO_USING_KEYWORD
321# define Q_TYPENAME 340# define Q_TYPENAME
322# define Q_INLINE_TEMPLATES inline 341# define Q_INLINE_TEMPLATES inline
323# define Q_BROKEN_TEMPLATE_SPECIALIZATION 342# define Q_BROKEN_TEMPLATE_SPECIALIZATION
324# define Q_CANNOT_DELETE_CONSTANT 343# define Q_CANNOT_DELETE_CONSTANT
325# endif 344# endif
326 345
327/* Older versions of DEC C++ do not define __EDG__ or __EDG - observed 346/* Older versions of DEC C++ do not define __EDG__ or __EDG - observed
328 on DEC C++ V5.5-004. New versions do define __EDG__ - observed on 347 on DEC C++ V5.5-004. New versions do define __EDG__ - observed on
329 Compaq C++ V6.3-002. 348 Compaq C++ V6.3-002.
330 This compiler is different enough from other EDG compilers to handle 349 This compiler is different enough from other EDG compilers to handle
331 it separately anyway. */ 350 it separately anyway. */
332#elif defined(__DECCXX) 351#elif defined(__DECCXX) || defined(__DECC)
333# define Q_CC_DEC 352# define Q_CC_DEC
334/* Compaq C++ V6 compilers are EDG-based but I'm not sure about older 353/* Compaq C++ V6 compilers are EDG-based but I'm not sure about older
335 DEC C++ V5 compilers. */ 354 DEC C++ V5 compilers. */
336# if defined(__EDG__) 355# if defined(__EDG__)
337# define Q_CC_EDG 356# define Q_CC_EDG
338# endif 357# endif
339/* Compaq have disabled EDG's _BOOL macro and use _BOOL_EXISTS instead 358/* Compaq have disabled EDG's _BOOL macro and use _BOOL_EXISTS instead
340 - observed on Compaq C++ V6.3-002. 359 - observed on Compaq C++ V6.3-002.
341 In any case versions prior to Compaq C++ V6.0-005 do not have bool. */ 360 In any case versions prior to Compaq C++ V6.0-005 do not have bool. */
342# if !defined(_BOOL_EXISTS) 361# if !defined(_BOOL_EXISTS)
343# define Q_NO_BOOL_TYPE 362# define Q_NO_BOOL_TYPE
344# endif 363# endif
345/* Spurious (?) error messages observed on Compaq C++ V6.5-014. */ 364/* Spurious (?) error messages observed on Compaq C++ V6.5-014. */
346# define Q_NO_USING_KEYWORD 365# define Q_NO_USING_KEYWORD
347/* Apply to all versions prior to Compaq C++ V6.0-000 - observed on 366/* Apply to all versions prior to Compaq C++ V6.0-000 - observed on
348 DEC C++ V5.5-004. */ 367 DEC C++ V5.5-004. */
349# if __DECCXX_VER < 60060000 368# if __DECCXX_VER < 60060000
350# define Q_TYPENAME 369# define Q_TYPENAME
351# define Q_BROKEN_TEMPLATE_SPECIALIZATION 370# define Q_BROKEN_TEMPLATE_SPECIALIZATION
352# define Q_CANNOT_DELETE_CONSTANT 371# define Q_CANNOT_DELETE_CONSTANT
353# endif 372# endif
354/* avoid undefined symbol problems with out-of-line template members */ 373/* avoid undefined symbol problems with out-of-line template members */
355# define Q_INLINE_TEMPLATES inline 374# define Q_INLINE_TEMPLATES inline
356 375
357/* Compilers with EDG front end are similar. To detect them we test: 376/* Compilers with EDG front end are similar. To detect them we test:
358 __EDG documented by SGI, observed on MIPSpro 7.3.1.1 and KAI C++ 4.0b 377 __EDG documented by SGI, observed on MIPSpro 7.3.1.1 and KAI C++ 4.0b
359 __EDG__ documented in EDG online docs, observed on Compaq C++ V6.3-002 */ 378 __EDG__ documented in EDG online docs, observed on Compaq C++ V6.3-002 */
360#elif defined(__EDG) || defined(__EDG__) 379#elif defined(__EDG) || defined(__EDG__)
361# define Q_CC_EDG 380# define Q_CC_EDG
362/* From the EDG documentation (does not seem to apply to Compaq C++): 381/* From the EDG documentation (does not seem to apply to Compaq C++):
363 _BOOL 382 _BOOL
364 Defined in C++ mode when bool is a keyword. The name of this 383 Defined in C++ mode when bool is a keyword. The name of this
365 predefined macro is specified by a configuration flag. _BOOL 384 predefined macro is specified by a configuration flag. _BOOL
366 is the default. 385 is the default.
367 __BOOL_DEFINED 386 __BOOL_DEFINED
368 Defined in Microsoft C++ mode when bool is a keyword. */ 387 Defined in Microsoft C++ mode when bool is a keyword. */
369# if !defined(_BOOL) && !defined(__BOOL_DEFINED) 388# if !defined(_BOOL) && !defined(__BOOL_DEFINED)
370# define Q_NO_BOOL_TYPE 389# define Q_NO_BOOL_TYPE
371# endif 390# endif
372 391
373/* The Portland Group compiler is based on EDG and does define __EDG__ */ 392/* The Comeau compiler is based on EDG and does define __EDG__ */
374# if defined(__COMO__) 393# if defined(__COMO__)
375# define Q_CC_COMEAU 394# define Q_CC_COMEAU
376# define Q_C_CALLBACKS 395# define Q_C_CALLBACKS
377 396
378/* Using the `using' keyword avoids KAI C++ warnings */ 397/* The `using' keyword was introduced to avoid KAI C++ warnings
398 but it's now causing KAI C++ errors instead. The standard is
399 unclear about the use of this keyword, and in practice every
400 compiler is using its own set of rules. Forget it. */
379# elif defined(__KCC) 401# elif defined(__KCC)
380# define Q_CC_KAI 402# define Q_CC_KAI
381# if !defined(_EXCEPTIONS) 403# if !defined(_EXCEPTIONS)
382# define Q_NO_EXCEPTIONS 404# define Q_NO_EXCEPTIONS
383# endif 405# endif
406# define Q_NO_USING_KEYWORD
384 407
385/* Using the `using' keyword avoids Intel C++ warnings */ 408/* Using the `using' keyword avoids Intel C++ for Linux warnings */
386# elif defined(__INTEL_COMPILER) 409# elif defined(__INTEL_COMPILER)
387# define Q_CC_INTEL 410# define Q_CC_INTEL
388# if !defined(__EXCEPTIONS) 411# if !defined(__EXCEPTIONS)
389# define Q_NO_EXCEPTIONS 412# define Q_NO_EXCEPTIONS
390# endif 413# endif
391 414
392/* The Portland Group compiler is based on EDG and does define __EDG__ */ 415/* The Portland Group compiler is based on EDG and does define __EDG__ */
393# elif defined(__PGI) 416# elif defined(__PGI)
394# define Q_CC_PGI 417# define Q_CC_PGI
395# if !defined(__EXCEPTIONS) 418# if !defined(__EXCEPTIONS)
396# define Q_NO_EXCEPTIONS 419# define Q_NO_EXCEPTIONS
397# endif 420# endif
398 421
399/* Never tested! */ 422/* Never tested! */
400# elif defined(__ghs) 423# elif defined(__ghs)
401# define Q_CC_GHS 424# define Q_CC_GHS
402 425
403/* The UnixWare 7 UDK compiler is based on EDG and does define __EDG__ */ 426/* The UnixWare 7 UDK compiler is based on EDG and does define __EDG__ */
404# elif defined(__USLC__) && defined(__SCO_VERSION__) 427# elif defined(__USLC__) && defined(__SCO_VERSION__)
405# define Q_CC_USLC 428# define Q_CC_USLC
406/* The latest UDK 7.1.1b does not need this, but previous versions do */ 429/* The latest UDK 7.1.1b does not need this, but previous versions do */
407# if !defined(__SCO_VERSION__) || (__SCO_VERSION__ < 302200010) 430# if !defined(__SCO_VERSION__) || (__SCO_VERSION__ < 302200010)
408# define Q_INLINE_TEMPLATES inline 431# define Q_INLINE_TEMPLATES inline
409# endif 432# endif
410# define Q_NO_USING_KEYWORD /* ### check "using" status */ 433# define Q_NO_USING_KEYWORD /* ### check "using" status */
411 434
412/* Never tested! */ 435/* Never tested! */
413# elif defined(CENTERLINE_CLPP) || defined(OBJECTCENTER) 436# elif defined(CENTERLINE_CLPP) || defined(OBJECTCENTER)
414# define Q_CC_OC 437# define Q_CC_OC
415# define Q_NO_USING_KEYWORD 438# define Q_NO_USING_KEYWORD
416 439
417/* CDS++ defines __EDG__ although this is not documented in the Reliant 440/* CDS++ defines __EDG__ although this is not documented in the Reliant
418 documentation. It also follows conventions like _BOOL and this documented */ 441 documentation. It also follows conventions like _BOOL and this documented */
419# elif defined(sinix) 442# elif defined(sinix)
420# define Q_CC_CDS 443# define Q_CC_CDS
421# define Q_NO_USING_KEYWORD 444# define Q_NO_USING_KEYWORD
422# if defined(__cplusplus) && (__cplusplus < 2) /* Cfront C++ mode */ 445# if defined(__cplusplus) && (__cplusplus < 2) /* Cfront C++ mode */
423# define Q_NO_EXCEPTIONS 446# define Q_NO_EXCEPTIONS
424# endif 447# endif
425 448
426/* The MIPSpro compiler in o32 mode is based on EDG but disables features 449/* The MIPSpro compiler in o32 mode is based on EDG but disables features
427 such as template specialization nevertheless */ 450 such as template specialization nevertheless */
428# elif defined(__sgi) 451# elif defined(__sgi)
429# define Q_CC_MIPS 452# define Q_CC_MIPS
430# if defined(_MIPS_SIM) && (_MIPS_SIM == _ABIO32) /* o32 ABI */ 453# if defined(_MIPS_SIM) && (_MIPS_SIM == _ABIO32) /* o32 ABI */
431# define Q_TYPENAME 454# define Q_TYPENAME
432# define Q_BROKEN_TEMPLATE_SPECIALIZATION 455# define Q_BROKEN_TEMPLATE_SPECIALIZATION
433# define Q_STRICT_INLINING_RULES
434# define Q_NO_EXPLICIT_KEYWORD 456# define Q_NO_EXPLICIT_KEYWORD
435# define Q_INLINE_TEMPLATES inline 457# define Q_INLINE_TEMPLATES inline
436# elif defined(_COMPILER_VERSION) && (_COMPILER_VERSION < 730) /* 7.2 */ 458# elif defined(_COMPILER_VERSION) && (_COMPILER_VERSION < 730) /* 7.2 */
437# define Q_TYPENAME 459# define Q_TYPENAME
438# define Q_BROKEN_TEMPLATE_SPECIALIZATION 460# define Q_BROKEN_TEMPLATE_SPECIALIZATION
439# endif 461# endif
440# define Q_NO_USING_KEYWORD /* ### check "using" status */ 462# define Q_NO_USING_KEYWORD /* ### check "using" status */
463# if defined(_COMPILER_VERSION) && (_COMPILER_VERSION >= 740)
464# pragma set woff 3624,3625, 3649 /* turn off some harmless warnings */
465# endif
441# endif 466# endif
442 467
443/* The older UnixWare 2.X compiler? */ 468/* The older UnixWare 2.X compiler? */
444#elif defined(__USLC__) 469#elif defined(__USLC__)
445# define Q_CC_USLC 470# define Q_CC_USLC
446# define Q_TYPENAME 471# define Q_TYPENAME
447# define Q_NO_BOOL_TYPE 472# define Q_NO_BOOL_TYPE
448# define Q_NO_EXPLICIT_KEYWORD 473# define Q_NO_EXPLICIT_KEYWORD
449# define Q_NO_USING_KEYWORD 474# define Q_NO_USING_KEYWORD
450# define Q_INLINE_TEMPLATES inline 475# define Q_INLINE_TEMPLATES inline
451 476
452/* Never tested! */ 477/* Never tested! */
453#elif defined(__HIGHC__) 478#elif defined(__HIGHC__)
454# define Q_CC_HIGHC 479# define Q_CC_HIGHC
455 480
456#elif defined(__SUNPRO_CC) 481#elif defined(__SUNPRO_CC) || defined(__SUNPRO_C)
457# define Q_CC_SUN 482# define Q_CC_SUN
458/* 5.0 compiler or better 483/* 5.0 compiler or better
459 'bool' is enabled by default but can be disabled using -features=nobool 484 'bool' is enabled by default but can be disabled using -features=nobool
460 in which case _BOOL is not defined 485 in which case _BOOL is not defined
461 this is the default in 4.2 compatibility mode triggered by -compat=4 */ 486 this is the default in 4.2 compatibility mode triggered by -compat=4 */
462# if __SUNPRO_CC >= 0x500 487# if __SUNPRO_CC >= 0x500
463# if !defined(_BOOL) 488# if !defined(_BOOL)
464# define Q_NO_BOOL_TYPE 489# define Q_NO_BOOL_TYPE
465# endif 490# endif
466# if defined(__SUNPRO_CC_COMPAT) && (__SUNPRO_CC_COMPAT <= 4) 491# if defined(__SUNPRO_CC_COMPAT) && (__SUNPRO_CC_COMPAT <= 4)
467# define Q_NO_USING_KEYWORD 492# define Q_NO_USING_KEYWORD
468# endif 493# endif
469# define Q_C_CALLBACKS 494# define Q_C_CALLBACKS
470/* 4.2 compiler or older */ 495/* 4.2 compiler or older */
471# else 496# else
472# define Q_NO_BOOL_TYPE 497# define Q_NO_BOOL_TYPE
473# define Q_NO_EXPLICIT_KEYWORD 498# define Q_NO_EXPLICIT_KEYWORD
474# define Q_NO_USING_KEYWORD 499# define Q_NO_USING_KEYWORD
475# endif 500# endif
476 501
477/* CDS++ does not seem to define __EDG__ or __EDG according to Reliant 502/* CDS++ does not seem to define __EDG__ or __EDG according to Reliant
478 documentation but nevertheless uses EDG conventions like _BOOL */ 503 documentation but nevertheless uses EDG conventions like _BOOL */
479#elif defined(sinix) 504#elif defined(sinix)
480# define Q_CC_EDG 505# define Q_CC_EDG
@@ -584,48 +609,55 @@ typedef int bool;
584typedef unsigned char uchar; 609typedef unsigned char uchar;
585typedef unsigned short ushort; 610typedef unsigned short ushort;
586 typedef unsigneduint; 611 typedef unsigneduint;
587typedef unsigned long ulong; 612typedef unsigned long ulong;
588 typedef char *pchar; 613 typedef char *pchar;
589 typedef uchar *puchar; 614 typedef uchar *puchar;
590typedef const char *pcchar; 615typedef const char *pcchar;
591 616
592 617
593// 618//
594// Constant bool values 619// Constant bool values
595// 620//
596 621
597#ifndef TRUE 622#ifndef TRUE
598const bool FALSE = 0; 623const bool FALSE = 0;
599const bool TRUE = !0; 624const bool TRUE = !0;
600#endif 625#endif
601#if defined(__WATCOMC__) 626#if defined(__WATCOMC__)
602# if defined(Q_OS_QNX4) 627# if defined(Q_OS_QNX4)
603const bool false = FALSE; 628const bool false = FALSE;
604const bool true = TRUE; 629const bool true = TRUE;
605# endif 630# endif
606#endif 631#endif
607 632
633//
634// Proper for-scoping
635// ### turn on in 4.0
636
637#if 0 && defined(Q_CC_MSVC) && !defined(Q_CC_MSVC_NET)
638# define for if(0){}else for
639#endif
608 640
609// 641//
610// Use the "explicit" keyword on platforms that support it. 642// Use the "explicit" keyword on platforms that support it.
611// 643//
612 644
613#if !defined(Q_NO_EXPLICIT_KEYWORD) 645#if !defined(Q_NO_EXPLICIT_KEYWORD)
614# define Q_EXPLICIT explicit 646# define Q_EXPLICIT explicit
615#else 647#else
616# define Q_EXPLICIT 648# define Q_EXPLICIT
617#endif 649#endif
618 650
619 651
620// 652//
621// Workaround for static const members on MSVC++. 653// Workaround for static const members on MSVC++.
622// 654//
623 655
624#if defined(Q_CC_MSVC) 656#if defined(Q_CC_MSVC)
625# define QT_STATIC_CONST static 657# define QT_STATIC_CONST static
626# define QT_STATIC_CONST_IMPL 658# define QT_STATIC_CONST_IMPL
627#else 659#else
628# define QT_STATIC_CONST static const 660# define QT_STATIC_CONST static const
629# define QT_STATIC_CONST_IMPL const 661# define QT_STATIC_CONST_IMPL const
630#endif 662#endif
631 663
@@ -644,112 +676,120 @@ inline int qRound( double d )
644} 676}
645 677
646 678
647// 679//
648// Size-dependent types (architechture-dependent byte order) 680// Size-dependent types (architechture-dependent byte order)
649// 681//
650 682
651#if !defined(QT_CLEAN_NAMESPACE) 683#if !defined(QT_CLEAN_NAMESPACE)
652// source compatibility with Qt 1.x 684// source compatibility with Qt 1.x
653 typedef signed char INT8; // 8 bit signed 685 typedef signed char INT8; // 8 bit signed
654 typedef unsigned char UINT8; // 8 bit unsigned 686 typedef unsigned char UINT8; // 8 bit unsigned
655 typedef short INT16; // 16 bit signed 687 typedef short INT16; // 16 bit signed
656 typedef unsigned short UINT16; // 16 bit unsigned 688 typedef unsigned short UINT16; // 16 bit unsigned
657 typedef int INT32; // 32 bit signed 689 typedef int INT32; // 32 bit signed
658 typedef unsigned int UINT32; // 32 bit unsigned 690 typedef unsigned int UINT32; // 32 bit unsigned
659#endif 691#endif
660 692
661 typedef signed char Q_INT8; // 8 bit signed 693 typedef signed char Q_INT8; // 8 bit signed
662 typedef unsigned char Q_UINT8;// 8 bit unsigned 694 typedef unsigned char Q_UINT8;// 8 bit unsigned
663 typedef short Q_INT16;// 16 bit signed 695 typedef short Q_INT16;// 16 bit signed
664 typedef unsigned short Q_UINT16;// 16 bit unsigned 696 typedef unsigned short Q_UINT16;// 16 bit unsigned
665 typedef int Q_INT32;// 32 bit signed 697 typedef int Q_INT32;// 32 bit signed
666 typedef unsigned int Q_UINT32;// 32 bit unsigned 698 typedef unsigned int Q_UINT32;// 32 bit unsigned
667#if defined(Q_OS_WIN64) 699#if defined(Q_OS_WIN64)
668// LLP64 64-bit model on Windows
669 typedef __int64 Q_LONG; // word up to 64 bit signed 700 typedef __int64 Q_LONG; // word up to 64 bit signed
670 typedef unsigned __int64 Q_ULONG;// word up to 64 bit unsigned 701 typedef unsigned __int64 Q_ULONG;// word up to 64 bit unsigned
671#else 702#else
672// LP64 64-bit model on Linux 703 typedef long Q_LONG; // word up to 64 bit signed
673 typedef long Q_LONG; 704 typedef unsigned long Q_ULONG;// word up to 64 bit unsigned
674 typedef unsigned long Q_ULONG;
675#endif 705#endif
676 706#if defined(Q_OS_WIN) && !defined(Q_CC_GNU)
677#if !defined(QT_CLEAN_NAMESPACE) 707 # define Q_INT64_C(c) c ## i64// signed 64 bit constant
678// mininum size of 64 bits is not guaranteed 708 # define Q_UINT64_C(c) c ## ui64// unsigned 64 bit constant
679 #define Q_INT64 Q_LONG 709 typedef __int64 Q_INT64;// 64 bit signed
680 #define Q_UINT64 Q_ULONG 710 typedef unsigned __int64 Q_UINT64;// 64 bit unsigned
711#else
712 # define Q_INT64_C(c) c ## LL // signed 64 bit constant
713 # define Q_UINT64_C(c) c ## ULL// unsigned 64 bit constant
714 typedef long long Q_INT64;// 64 bit signed
715 typedef unsigned long long Q_UINT64;// 64 bit unsigned
681#endif 716#endif
717 typedef Q_INT64 Q_LLONG;// signed long long
718 typedef Q_UINT64 Q_ULLONG;// unsigned long long
682 719
683#if defined(Q_OS_MACX) && !defined(QT_LARGEFILE_SUPPORT) 720#if defined(Q_OS_MACX) && !defined(QT_LARGEFILE_SUPPORT)
684# define QT_LARGEFILE_SUPPORT 64 721# define QT_LARGEFILE_SUPPORT 64
685#endif 722#endif
686#if defined(QT_LARGEFILE_SUPPORT) 723#if defined(QT_LARGEFILE_SUPPORT)
687 typedef unsigned long long QtOffset; 724 typedef Q_ULLONG QtOffset;
688#else 725#else
689 typedef Q_ULONG QtOffset; 726 typedef Q_ULONG QtOffset;
690#endif 727#endif
691 728
692 729
693// 730//
694// Data stream functions is provided by many classes (defined in qdatastream.h) 731// Data stream functions is provided by many classes (defined in qdatastream.h)
695// 732//
696 733
697class QDataStream; 734class QDataStream;
698 735
699 736
700// 737//
701// Feature subsetting 738// Feature subsetting
702// 739//
703// Note that disabling some features will produce a libqt that is not 740// Note that disabling some features will produce a libqt that is not
704// compatible with other libqt builds. Such modifications are only 741// compatible with other libqt builds. Such modifications are only
705// supported on Qt/Embedded where reducing the library size is important 742// supported on Qt/Embedded where reducing the library size is important
706// and where the application-suite is often a fixed set. 743// and where the application-suite is often a fixed set.
707// 744//
708 745
709#if !defined(QT_MOC) 746#if !defined(QT_MOC)
710#if defined(QCONFIG_LOCAL) 747#if defined(QCONFIG_LOCAL)
711#include <qconfig-local.h> 748#include "qconfig-local.h"
712#elif defined(QCONFIG_MINIMAL) 749#elif defined(QCONFIG_MINIMAL)
713#include <qconfig-minimal.h> 750#include "qconfig-minimal.h"
714#elif defined(QCONFIG_SMALL) 751#elif defined(QCONFIG_SMALL)
715#include <qconfig-small.h> 752#include "qconfig-small.h"
716#elif defined(QCONFIG_MEDIUM) 753#elif defined(QCONFIG_MEDIUM)
717#include <qconfig-medium.h> 754#include "qconfig-medium.h"
718#elif defined(QCONFIG_LARGE) 755#elif defined(QCONFIG_LARGE)
719#include <qconfig-large.h> 756#include "qconfig-large.h"
720#else // everything... 757#else // everything...
721#include <qconfig.h> 758#include "qconfig.h"
722#endif 759#endif
723#endif 760#endif
724 761
725 762
726#ifndef QT_BUILD_KEY 763#ifndef QT_BUILD_KEY
727#define QT_BUILD_KEY "unspecified" 764#define QT_BUILD_KEY "unspecified"
728#endif 765#endif
729 766
730// prune to local config 767// prune to local config
731#include "qmodules.h" 768#include "qmodules.h"
769#ifndef QT_MODULE_DIALOGS
770# define QT_NO_DIALOG
771#endif
732#ifndef QT_MODULE_ICONVIEW 772#ifndef QT_MODULE_ICONVIEW
733# define QT_NO_ICONVIEW 773# define QT_NO_ICONVIEW
734#endif 774#endif
735#ifndef QT_MODULE_WORKSPACE 775#ifndef QT_MODULE_WORKSPACE
736# define QT_NO_WORKSPACE 776# define QT_NO_WORKSPACE
737#endif 777#endif
738#ifndef QT_MODULE_NETWORK 778#ifndef QT_MODULE_NETWORK
739#define QT_NO_NETWORK 779#define QT_NO_NETWORK
740#endif 780#endif
741#ifndef QT_MODULE_CANVAS 781#ifndef QT_MODULE_CANVAS
742# define QT_NO_CANVAS 782# define QT_NO_CANVAS
743#endif 783#endif
744#ifndef QT_MODULE_TABLE 784#ifndef QT_MODULE_TABLE
745#define QT_NO_TABLE 785#define QT_NO_TABLE
746#endif 786#endif
747#ifndef QT_MODULE_XML 787#ifndef QT_MODULE_XML
748# define QT_NO_XML 788# define QT_NO_XML
749#endif 789#endif
750#ifndef QT_MODULE_OPENGL 790#ifndef QT_MODULE_OPENGL
751# define QT_NO_OPENGL 791# define QT_NO_OPENGL
752#endif 792#endif
753#if !defined(QT_MODULE_SQL) 793#if !defined(QT_MODULE_SQL)
754# define QT_NO_SQL 794# define QT_NO_SQL
755#endif 795#endif
@@ -760,58 +800,58 @@ class QDataStream;
760# define QMAC_QMENUBAR_NO_MERGE 800# define QMAC_QMENUBAR_NO_MERGE
761# endif 801# endif
762//Mac9 does not use quartz 802//Mac9 does not use quartz
763# ifndef QMAC_NO_QUARTZ 803# ifndef QMAC_NO_QUARTZ
764# define QMAC_NO_QUARTZ 804# define QMAC_NO_QUARTZ
765# endif 805# endif
766# ifndef QMAC_QMENUBAR_NO_EVENT 806# ifndef QMAC_QMENUBAR_NO_EVENT
767# define QMAC_QMENUBAR_NO_EVENT 807# define QMAC_QMENUBAR_NO_EVENT
768# endif 808# endif
769#endif 809#endif
770#if defined(Q_WS_MACX) //for no nobody uses quartz, just putting in first level hooks 810#if defined(Q_WS_MACX) //for no nobody uses quartz, just putting in first level hooks
771# ifndef QMAC_NO_QUARTZ 811# ifndef QMAC_NO_QUARTZ
772# define QMAC_NO_QUARTZ 812# define QMAC_NO_QUARTZ
773# endif 813# endif
774# ifndef QMAC_QMENUBAR_NO_EVENT 814# ifndef QMAC_QMENUBAR_NO_EVENT
775# define QMAC_QMENUBAR_NO_EVENT 815# define QMAC_QMENUBAR_NO_EVENT
776# endif 816# endif
777#endif 817#endif
778 818
779#if !defined(Q_WS_QWS) && !defined(QT_NO_COP) 819#if !defined(Q_WS_QWS) && !defined(QT_NO_COP)
780# define QT_NO_COP 820# define QT_NO_COP
781#endif 821#endif
782 822
783#ifndef QT_H 823#ifndef QT_H
784#include <qfeatures.h> 824#include "qfeatures.h"
785#endif // QT_H 825#endif /* QT_H */
786 826
787 827
788// 828//
789// Create Qt DLL if QT_DLL is defined (Windows only) 829// Create Qt DLL if QT_DLL is defined (Windows only)
790// or QT_SHARED is defined (Kylix only) 830// or QT_SHARED is defined (Kylix only)
791// 831//
792 832
793#if defined(Q_OS_WIN32) || defined(Q_OS_WIN64) 833#if defined(Q_OS_WIN)
794# if defined(QT_NODLL) 834# if defined(QT_NODLL)
795# undef QT_MAKEDLL 835# undef QT_MAKEDLL
796# undef QT_DLL 836# undef QT_DLL
797 # elif defined(QT_MAKEDLL)/* create a Qt DLL library */ 837 # elif defined(QT_MAKEDLL)/* create a Qt DLL library */
798# if defined(QT_DLL) 838# if defined(QT_DLL)
799# undef QT_DLL 839# undef QT_DLL
800# endif 840# endif
801# define Q_EXPORT __declspec(dllexport) 841# define Q_EXPORT __declspec(dllexport)
802# define Q_TEMPLATEDLL 842# define Q_TEMPLATEDLL
803# define Q_TEMPLATE_EXTERN 843# define Q_TEMPLATE_EXTERN
804 # undef Q_DISABLE_COPY/* avoid unresolved externals */ 844 # undef Q_DISABLE_COPY/* avoid unresolved externals */
805 # elif defined(QT_DLL) /* use a Qt DLL library */ 845 # elif defined(QT_DLL) /* use a Qt DLL library */
806# define Q_EXPORT __declspec(dllimport) 846# define Q_EXPORT __declspec(dllimport)
807# define Q_TEMPLATEDLL 847# define Q_TEMPLATEDLL
808# ifndef Q_TEMPLATE_EXTERN 848# ifndef Q_TEMPLATE_EXTERN
809# if defined(Q_CC_MSVC_NET) 849# if defined(Q_CC_MSVC_NET)
810# define Q_TEMPLATE_EXTERN extern 850# define Q_TEMPLATE_EXTERN extern
811# else 851# else
812# define Q_TEMPLATE_EXTERN 852# define Q_TEMPLATE_EXTERN
813# endif 853# endif
814# endif 854# endif
815 # undef Q_DISABLE_COPY/* avoid unresolved externals */ 855 # undef Q_DISABLE_COPY/* avoid unresolved externals */
816# endif 856# endif
817#elif defined(Q_OS_LINUX) && defined(Q_CC_BOR) 857#elif defined(Q_OS_LINUX) && defined(Q_CC_BOR)
@@ -829,82 +869,82 @@ class QDataStream;
829 # undef QT_MAKEDLL /* ignore these for other platforms */ 869 # undef QT_MAKEDLL /* ignore these for other platforms */
830# undef QT_DLL 870# undef QT_DLL
831#endif 871#endif
832 872
833#ifndef Q_EXPORT 873#ifndef Q_EXPORT
834# define Q_EXPORT 874# define Q_EXPORT
835#endif 875#endif
836 876
837 877
838// 878//
839// Some platform specific stuff 879// Some platform specific stuff
840// 880//
841 881
842#if defined(Q_WS_WIN) 882#if defined(Q_WS_WIN)
843extern Q_EXPORT bool qt_winunicode; 883extern Q_EXPORT bool qt_winunicode;
844#endif 884#endif
845 885
846 886
847// 887//
848// System information 888// System information
849// 889//
850 890
851Q_EXPORT const char *qVersion(); 891Q_EXPORT const char *qVersion();
852Q_EXPORT bool qSysInfo( int *wordSize, bool *bigEndian ); 892Q_EXPORT bool qSysInfo( int *wordSize, bool *bigEndian );
893Q_EXPORT bool qSharedBuild();
853#if defined(Q_OS_MAC) 894#if defined(Q_OS_MAC)
854int qMacVersion(); 895int qMacVersion();
855#elif defined(Q_WS_WIN) 896#elif defined(Q_WS_WIN)
856Q_EXPORT int qWinVersion(); 897Q_EXPORT int qWinVersion();
857#if defined(UNICODE) 898#if defined(UNICODE)
858#define QT_WA( uni, ansi ) if ( qt_winunicode ) { uni } else { ansi } 899#define QT_WA( uni, ansi ) if ( qt_winunicode ) { uni } else { ansi }
859#define QT_WA_INLINE( uni, ansi ) ( qt_winunicode ? uni : ansi ) 900#define QT_WA_INLINE( uni, ansi ) ( qt_winunicode ? uni : ansi )
860#else 901#else
861#define QT_WA( uni, ansi ) ansi 902#define QT_WA( uni, ansi ) ansi
862#define QT_WA_INLINE( uni, ansi ) ansi 903#define QT_WA_INLINE( uni, ansi ) ansi
863#endif 904#endif
864#endif 905#endif
865 906
866#ifdef Q_OS_TEMP 907#ifdef Q_OS_TEMP
867#ifdef QT_WA 908#ifdef QT_WA
868#undef QT_WA 909#undef QT_WA
869#undef QT_WA_INLINE 910#undef QT_WA_INLINE
870#endif 911#endif
871#define QT_WA( uni, ansi ) uni 912#define QT_WA( uni, ansi ) uni
872#define QT_WA_INLINE( uni, ansi ) ( uni ) 913#define QT_WA_INLINE( uni, ansi ) ( uni )
873#endif 914#endif
874 915
875#ifndef Q_INLINE_TEMPLATES 916#ifndef Q_INLINE_TEMPLATES
876# define Q_INLINE_TEMPLATES 917# define Q_INLINE_TEMPLATES
877#endif 918#endif
878 919
879#ifndef Q_TYPENAME 920#ifndef Q_TYPENAME
880# define Q_TYPENAME typename 921# define Q_TYPENAME typename
881#endif 922#endif
882 923
883// 924//
884// Use to avoid "unused parameter" warnings 925// Use to avoid "unused parameter" warnings
885// 926//
886
887#define Q_UNUSED(x) (void)x; 927#define Q_UNUSED(x) (void)x;
888 928
889// 929//
890// Debugging and error handling 930// Debugging and error handling
891// 931//
892 932
893#if !defined(QT_NO_CHECK) 933#if !defined(QT_NO_CHECK)
894 # define QT_CHECK_STATE // check state of objects etc. 934 # define QT_CHECK_STATE // check state of objects etc.
895 # define QT_CHECK_RANGE // check range of indexes etc. 935 # define QT_CHECK_RANGE // check range of indexes etc.
896 # define QT_CHECK_NULL // check null pointers 936 # define QT_CHECK_NULL // check null pointers
897 # define QT_CHECK_MATH // check math functions 937 # define QT_CHECK_MATH // check math functions
898#endif 938#endif
899 939
900#if !defined(QT_NO_DEBUG) && !defined(QT_DEBUG) 940#if !defined(QT_NO_DEBUG) && !defined(QT_DEBUG)
901 # define QT_DEBUG // display debug messages 941 # define QT_DEBUG // display debug messages
902 # if !defined(QT_NO_COMPAT) // compatibility with Qt 2 942 # if !defined(QT_NO_COMPAT) // compatibility with Qt 2
903# if !defined(NO_DEBUG) && !defined(DEBUG) 943# if !defined(NO_DEBUG) && !defined(DEBUG)
904 # if !defined(Q_OS_MACX) // clash with MacOS X headers 944 # if !defined(Q_OS_MACX) // clash with MacOS X headers
905# define DEBUG 945# define DEBUG
906# endif 946# endif
907# endif 947# endif
908# endif 948# endif
909#endif 949#endif
910 950
@@ -994,79 +1034,82 @@ Q_EXPORT QtMsgHandler qInstallMsgHandler( QtMsgHandler );
994 1034
995 #if !defined(QT_NO_COMPAT) // compatibility with Qt 2 1035 #if !defined(QT_NO_COMPAT) // compatibility with Qt 2
996typedef QtMsgHandler msg_handler; 1036typedef QtMsgHandler msg_handler;
997#endif // QT_NO_COMPAT 1037#endif // QT_NO_COMPAT
998 1038
999Q_EXPORT void qSuppressObsoleteWarnings( bool = TRUE ); 1039Q_EXPORT void qSuppressObsoleteWarnings( bool = TRUE );
1000 1040
1001Q_EXPORT void qObsolete( const char *obj, const char *oldfunc, 1041Q_EXPORT void qObsolete( const char *obj, const char *oldfunc,
1002 const char *newfunc ); 1042 const char *newfunc );
1003Q_EXPORT void qObsolete( const char *obj, const char *oldfunc ); 1043Q_EXPORT void qObsolete( const char *obj, const char *oldfunc );
1004Q_EXPORT void qObsolete( const char *message ); 1044Q_EXPORT void qObsolete( const char *message );
1005 1045
1006 1046
1007// 1047//
1008// Install paths from configure 1048// Install paths from configure
1009// 1049//
1010 1050
1011Q_EXPORT const char *qInstallPath(); 1051Q_EXPORT const char *qInstallPath();
1012Q_EXPORT const char *qInstallPathDocs(); 1052Q_EXPORT const char *qInstallPathDocs();
1013Q_EXPORT const char *qInstallPathHeaders(); 1053Q_EXPORT const char *qInstallPathHeaders();
1014Q_EXPORT const char *qInstallPathLibs(); 1054Q_EXPORT const char *qInstallPathLibs();
1015Q_EXPORT const char *qInstallPathBins(); 1055Q_EXPORT const char *qInstallPathBins();
1016Q_EXPORT const char *qInstallPathPlugins(); 1056Q_EXPORT const char *qInstallPathPlugins();
1017Q_EXPORT const char *qInstallPathData(); 1057Q_EXPORT const char *qInstallPathData();
1058Q_EXPORT const char *qInstallPathTranslations();
1059Q_EXPORT const char *qInstallPathSysconf();
1018 1060
1019#endif // __cplusplus 1061#endif /* __cplusplus */
1020 1062
1021// compilers which follow outdated template instantiation rules 1063/*
1022// require a class to have a comparison operator to exist when 1064 compilers which follow outdated template instantiation rules
1023// a QValueList of this type is instantiated. It's not actually 1065 require a class to have a comparison operator to exist when
1024// used in the list, though. Hence the dummy implementation. 1066 a QValueList of this type is instantiated. It's not actually
1025// Just in case other code relies on it we better trigger a warning 1067 used in the list, though. Hence the dummy implementation.
1026// mandating a real implementation. 1068 Just in case other code relies on it we better trigger a warning
1069 mandating a real implementation.
1070*/
1027#ifdef Q_FULL_TEMPLATE_INSTANTIATION 1071#ifdef Q_FULL_TEMPLATE_INSTANTIATION
1028# define Q_DUMMY_COMPARISON_OPERATOR(C) \ 1072# define Q_DUMMY_COMPARISON_OPERATOR(C) \
1029 bool operator==( const C& ) const { \ 1073 bool operator==( const C& ) const { \
1030 qWarning( #C"::operator==( const "#C"& ) got called." ); \ 1074 qWarning( #C"::operator==( const "#C"& ) got called." ); \
1031 return FALSE; \ 1075 return FALSE; \
1032 } 1076 }
1033#else 1077#else
1034# define Q_DUMMY_COMPARISON_OPERATOR(C) 1078# define Q_DUMMY_COMPARISON_OPERATOR(C)
1035#endif 1079#endif
1036 1080
1037#endif // QGLOBAL_H 1081#endif /* QGLOBAL_H */
1038 1082
1039// 1083/*
1040// Avoid some particularly useless warnings from some stupid compilers. 1084 Avoid some particularly useless warnings from some stupid compilers.
1041// To get ALL C++ compiler warnings, define QT_CC_WARNINGS or comment out 1085 To get ALL C++ compiler warnings, define QT_CC_WARNINGS or comment out
1042// the line "#define QT_NO_WARNINGS" 1086 the line "#define QT_NO_WARNINGS"
1043// 1087*/
1044 1088
1045#if !defined(QT_CC_WARNINGS) 1089#if !defined(QT_CC_WARNINGS)
1046# define QT_NO_WARNINGS 1090# define QT_NO_WARNINGS
1047#endif 1091#endif
1048#if defined(QT_NO_WARNINGS) 1092#if defined(QT_NO_WARNINGS)
1049# if defined(Q_CC_MSVC) 1093# if defined(Q_CC_MSVC)
1050# pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data 1094# pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
1051# pragma warning(disable: 4275) // non - DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier' 1095# pragma warning(disable: 4275) // non - DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier'
1052# pragma warning(disable: 4514) // unreferenced inline/local function has been removed 1096# pragma warning(disable: 4514) // unreferenced inline/local function has been removed
1053# pragma warning(disable: 4800) // 'type' : forcing value to bool 'true' or 'false' (performance warning) 1097# pragma warning(disable: 4800) // 'type' : forcing value to bool 'true' or 'false' (performance warning)
1054# pragma warning(disable: 4097) // typedef-name 'identifier1' used as synonym for class-name 'identifier2' 1098# pragma warning(disable: 4097) // typedef-name 'identifier1' used as synonym for class-name 'identifier2'
1055# pragma warning(disable: 4706) // assignment within conditional expression 1099# pragma warning(disable: 4706) // assignment within conditional expression
1056# pragma warning(disable: 4786) // truncating debug info after 255 characters 1100# pragma warning(disable: 4786) // truncating debug info after 255 characters
1057# pragma warning(disable: 4660) // template-class specialization 'identifier' is already instantiated 1101# pragma warning(disable: 4660) // template-class specialization 'identifier' is already instantiated
1058# pragma warning(disable: 4355) // 'this' : used in base member initializer list 1102# pragma warning(disable: 4355) // 'this' : used in base member initializer list
1059# pragma warning(disable: 4231) // nonstandard extension used : 'extern' before template explicit instantiation 1103# pragma warning(disable: 4231) // nonstandard extension used : 'extern' before template explicit instantiation
1060# pragma warning(disable: 4710) // function not inlined 1104# pragma warning(disable: 4710) // function not inlined
1061# elif defined(Q_CC_BOR) 1105# elif defined(Q_CC_BOR)
1062# pragma option -w-inl 1106# pragma option -w-inl
1063# pragma option -w-aus 1107# pragma option -w-aus
1064# pragma warn -inl 1108# pragma warn -inl
1065# pragma warn -pia 1109# pragma warn -pia
1066# pragma warn -ccc 1110# pragma warn -ccc
1067# pragma warn -rch 1111# pragma warn -rch
1068# pragma warn -sig 1112# pragma warn -sig
1069# elif defined(Q_CC_MWERKS)
1070# pragma warn_possunwant off
1071# endif 1113# endif
1072#endif 1114#endif
1115