]> git.saurik.com Git - wxWidgets.git/blame - include/wx/defs.h
derive wxConfig classes from wxObject and add wxRTTI macros to them (patch 1587607)
[wxWidgets.git] / include / wx / defs.h
CommitLineData
cdd8d745
VZ
1/*
2 * Name: wx/defs.h
3 * Purpose: Declarations/definitions common to all wx source files
4 * Author: Julian Smart and others
5 * Modified by: Ryan Norton (Converted to C)
6 * Created: 01/02/97
7 * RCS-ID: $Id$
8 * Copyright: (c) Julian Smart
9 * Licence: wxWindows licence
10 */
34cbe514
RN
11
12/* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
c801d85f 13
34138703
JS
14#ifndef _WX_DEFS_H_
15#define _WX_DEFS_H_
c801d85f 16
34cbe514
RN
17/* ---------------------------------------------------------------------------- */
18/* compiler and OS identification */
19/* ---------------------------------------------------------------------------- */
c801d85f 20
78340847 21#include "wx/platform.h"
bb48ed2c 22
fa9982d7 23#ifdef __cplusplus
34cbe514 24/* Make sure the environment is set correctly */
fa9982d7
RN
25# if defined(__WXMSW__) && defined(__X__)
26# error "Target can't be both X and Windows"
4055ed82
WS
27# elif defined(__WXMSW__) && defined(__PALMOS__)
28# error "Target can't be both PalmOS and Windows"
21d09ecd
WS
29# elif !defined(__WXMOTIF__) && \
30 !defined(__WXMSW__) && \
4055ed82 31 !defined(__WXPALMOS__)&& \
21d09ecd
WS
32 !defined(__WXGTK__) && \
33 !defined(__WXPM__) && \
34 !defined(__WXMAC__) && \
35 !defined(__WXCOCOA__) && \
36 !defined(__X__) && \
37 !defined(__WXMGL__) && \
b3c86150 38 !defined(__WXDFB__) && \
21d09ecd
WS
39 !defined(__WXX11__) && \
40 wxUSE_GUI
fa9982d7
RN
41# ifdef __UNIX__
42# error "No Target! You should use wx-config program for compilation flags!"
43# else /* !Unix */
44# error "No Target! You should use supplied makefiles for compilation!"
45# endif /* Unix/!Unix */
46# endif
47#endif /*__cplusplus*/
886dd7d2
VZ
48
49#ifndef __WXWINDOWS__
50 #define __WXWINDOWS__ 1
51#endif
52
53#ifndef wxUSE_BASE
34cbe514 54 /* by default consider that this is a monolithic build */
886dd7d2 55 #define wxUSE_BASE 1
aaa63f66
VZ
56#endif
57
a6ab05be
VZ
58#if !wxUSE_GUI && !defined(__WXBASE__)
59 #define __WXBASE__
60#endif
61
34cbe514 62/* suppress some Visual C++ warnings */
3f4a0c5b 63#ifdef __VISUALC__
7a5cebca 64 /* the only "real" warning here is 4244 but there are just too many of them */
34cbe514 65 /* in our code... one day someone should go and fix them but until then... */
77df51f4 66# pragma warning(disable:4097) /* typedef used as class */
34cbe514
RN
67# pragma warning(disable:4201) /* nonstandard extension used: nameless struct/union */
68# pragma warning(disable:4244) /* conversion from double to float */
77df51f4 69# pragma warning(disable:4355) /* 'this' used in base member initializer list */
34cbe514
RN
70# pragma warning(disable:4511) /* copy ctor couldn't be generated */
71# pragma warning(disable:4512) /* operator=() couldn't be generated */
77df51f4 72# pragma warning(disable:4710) /* function not inlined */
16357053 73
8d7eaf91
MW
74 /* For VC++ 5.0 for release mode, the warning 'C4702: unreachable code */
75 /* is buggy, and occurs for code that does actually get executed */
76# if !defined __WXDEBUG__ && __VISUALC__ <= 1100
faa94f3e 77# pragma warning(disable:4702) /* unreachable code */
ac55e0a1
MW
78# endif
79 /* The VC++ 5.0 warning 'C4003: not enough actual parameters for macro'
80 * is incompatible with the wxWidgets headers since it is given when
81 * parameters are empty but not missing. */
82# if __VISUALC__ <= 1100
83# pragma warning(disable:4003) /* not enough actual parameters for macro */
8d7eaf91
MW
84# endif
85
4c820583
VZ
86 /*
87 VC++ 8 gives a warning when using standard functions such as sprintf,
88 localtime, ... -- stop this madness, unless the user had already done it
89 */
90 #if __VISUALC__ >= 1400
91 #ifndef _CRT_SECURE_NO_DEPRECATE
92 #define _CRT_SECURE_NO_DEPRECATE 1
93 #endif
94 #ifndef _CRT_NON_CONFORMING_SWPRINTFS
95 #define _CRT_NON_CONFORMING_SWPRINTFS 1
96 #endif
97 #endif /* VC++ 8 */
34cbe514 98#endif /* __VISUALC__ */
c801d85f 99
34cbe514 100/* suppress some Salford C++ warnings */
a3ef5bf5 101#ifdef __SALFORDC__
34cbe514
RN
102# pragma suppress 353 /* Possible nested comments */
103# pragma suppress 593 /* Define not used */
104# pragma suppress 61 /* enum has no name (doesn't suppress!) */
105# pragma suppress 106 /* unnamed, unused parameter */
106# pragma suppress 571 /* Virtual function hiding */
107#endif /* __SALFORDC__ */
108
109/* suppress some Borland C++ warnings */
4f6e963c 110#ifdef __BORLANDC__
34cbe514
RN
111# pragma warn -inl /* Functions containing reserved words and certain constructs are not expanded inline */
112#endif /* __BORLANDC__ */
4f6e963c 113
b47f1f95
VZ
114/*
115 g++ gives a warning when a class has private dtor if it has no friends but
116 this is a perfectly valid situation for a ref-counted class which destroys
117 itself when its ref count drops to 0, so provide a macro to suppress this
118 warning
119 */
120#ifdef __GNUG__
121# define wxSUPPRESS_GCC_PRIVATE_DTOR_WARNING(name) \
122 friend class wxDummyFriendFor ## name;
123#else /* !g++ */
124# define wxSUPPRESS_GCC_PRIVATE_DTOR_WARNING(name)
125#endif
126
34cbe514 127/* ---------------------------------------------------------------------------- */
77ffb593 128/* wxWidgets version and compatibility defines */
34cbe514 129/* ---------------------------------------------------------------------------- */
e90c1d2a 130
78340847
VZ
131#include "wx/version.h"
132
34cbe514
RN
133/* ============================================================================ */
134/* non portable C++ features */
135/* ============================================================================ */
57493f9f 136
34cbe514
RN
137/* ---------------------------------------------------------------------------- */
138/* compiler defects workarounds */
139/* ---------------------------------------------------------------------------- */
78340847 140
78340847
VZ
141/*
142 Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
143 so define it ourselves (newer versions do it for all files, though, and
144 don't allow it to be redefined)
145 */
4f89dbc4
RL
146#if defined(__DECCXX) && !defined(__VMS) && !defined(__cplusplus)
147#define __cplusplus
78340847
VZ
148#endif /* __DECCXX */
149
34cbe514 150/* Resolves linking problems under HP-UX when compiling with gcc/g++ */
78340847 151#if defined(__HPUX__) && defined(__GNUG__)
4f89dbc4 152#define va_list __gnuc_va_list
34cbe514 153#endif /* HP-UX */
78340847 154
34cbe514
RN
155/* ---------------------------------------------------------------------------- */
156/* check for native bool type and TRUE/FALSE constants */
157/* ---------------------------------------------------------------------------- */
57493f9f 158
34cbe514
RN
159/* Add more tests here for Windows compilers that already define bool */
160/* (under Unix, configure tests for this) */
57493f9f
VZ
161#ifndef HAVE_BOOL
162 #if defined( __MWERKS__ )
585ae8cb 163 #if (__MWERKS__ >= 0x1000) && __option(bool)
57493f9f
VZ
164 #define HAVE_BOOL
165 #endif
67087ab4 166 #elif defined(__APPLE__) && defined(__APPLE_CC__)
34cbe514 167 /* Apple bundled gcc supports bool */
67087ab4 168 #define HAVE_BOOL
57493f9f 169 #elif defined(__VISUALC__) && (__VISUALC__ == 1020)
34cbe514
RN
170 /* in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed) */
171 /* but not implemented, so we must #define it */
57493f9f 172 #define bool unsigned int
794005c0 173 #elif defined(__VISUALC__) && (__VISUALC__ == 1010)
34cbe514
RN
174 /* For VisualC++ 4.1, we need to define */
175 /* bool as something between 4.0 & 5.0... */
794005c0
JS
176 typedef unsigned int wxbool;
177 #define bool wxbool
178 #define HAVE_BOOL
57493f9f 179 #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
34cbe514 180 /* VC++ supports bool since 4.2 */
57493f9f
VZ
181 #define HAVE_BOOL
182 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)
34cbe514 183 /* Borland 5.0+ supports bool */
57493f9f 184 #define HAVE_BOOL
6d3d756a 185 #elif wxCHECK_WATCOM_VERSION(1,0)
34cbe514 186 /* Watcom 11+ supports bool */
57493f9f 187 #define HAVE_BOOL
4f6e963c 188 #elif defined(__DIGITALMARS__)
34cbe514 189 /* DigitalMars supports bool */
4ce1efe1 190 #define HAVE_BOOL
d66dcb60 191 #elif defined(__GNUWIN32__) || defined(__MINGW32__) || defined(__CYGWIN__)
34cbe514 192 /* Cygwin supports bool */
6776a0b2 193 #define HAVE_BOOL
1777b9bb 194 #elif defined(__VISAGECPP__)
51d7e4e7
DW
195 #if __IBMCPP__ < 400
196 typedef unsigned long bool;
b823f462
DW
197 #define true ((bool)1)
198 #define false ((bool)0)
51d7e4e7 199 #endif
1777b9bb 200 #define HAVE_BOOL
34cbe514
RN
201 #endif /* compilers */
202#endif /* HAVE_BOOL */
57493f9f 203
4403f256 204#if !defined(__MWERKS__) || !defined(true)
41b0a113 205#if !defined(HAVE_BOOL) && !defined(bool) && !defined(VMS)
34cbe514
RN
206 /* NB: of course, this doesn't replace the standard type, because, for */
207 /* example, overloading based on bool/int parameter doesn't work and */
208 /* so should be avoided in portable programs */
a2d541ca 209 typedef unsigned int bool;
34cbe514 210#endif /* bool */
c801d85f 211
34cbe514
RN
212/* deal with TRUE/true stuff: we assume that if the compiler supports bool, it */
213/* supports true/false as well and that, OTOH, if it does _not_ support bool, */
214/* it doesn't support these keywords (this is less sure, in particular VC++ */
215/* 4.x could be a problem here) */
90b1d65f
VZ
216#ifndef HAVE_BOOL
217 #define true ((bool)1)
218 #define false ((bool)0)
219#endif
4403f256 220#endif
90b1d65f 221
34cbe514
RN
222/* for backwards compatibility, also define TRUE and FALSE */
223/* */
224/* note that these definitions should work both in C++ and C code, so don't */
225/* use true/false below */
90b1d65f
VZ
226#ifndef TRUE
227 #define TRUE 1
228#endif
229
230#ifndef FALSE
231 #define FALSE 0
232#endif
a2d541ca 233
c801d85f 234typedef short int WXTYPE;
42e69d6b 235
34cbe514
RN
236/* special care should be taken with this type under Windows where the real */
237/* window id is unsigned, so we must always do the cast before comparing them */
1f319228 238/* (or else they would be always different!). Using wxGetWindowId() which does */
34cbe514
RN
239/* the cast itself is recommended. Note that this type can't be unsigned */
240/* because wxID_ANY == -1 is a valid (and largely used) value for window id. */
c801d85f
KB
241typedef int wxWindowID;
242
34cbe514
RN
243/* ---------------------------------------------------------------------------- */
244/* other feature tests */
245/* ---------------------------------------------------------------------------- */
0b9ab0bd 246
34cbe514
RN
247/* Every ride down a slippery slope begins with a single step.. */
248/* */
249/* Yes, using nested classes is indeed against our coding standards in */
250/* general, but there are places where you can use them to advantage */
251/* without totally breaking ports that cannot use them. If you do, then */
252/* wrap it in this guard, but such cases should still be relatively rare. */
3a5bcc4d 253#define wxUSE_NESTED_CLASSES 1
0b9ab0bd 254
34cbe514 255/* check for explicit keyword support */
986ecc86 256#ifndef HAVE_EXPLICIT
521196a2 257 #if defined(__VISUALC__) && (__VISUALC__ >= 1100)
34cbe514 258 /* VC++ 6.0 and 5.0 have explicit (what about earlier versions?) */
521196a2
MB
259 #define HAVE_EXPLICIT
260 #elif ( defined(__MINGW32__) || defined(__CYGWIN32__) ) \
261 && wxCHECK_GCC_VERSION(2, 95)
34cbe514 262 /* GCC 2.95 has explicit, what about earlier versions? */
cabf185c
VZ
263 #define HAVE_EXPLICIT
264 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x0520)
34cbe514 265 /* BC++ 4.52 doesn't support explicit, CBuilder 1 does */
74bdbc46 266 #define HAVE_EXPLICIT
74bdbc46 267 #elif defined(__MWERKS__) && (__MWERKS__ >= 0x2400)
34cbe514 268 /* Metrowerks CW6 or higher has explicit */
986ecc86 269 #define HAVE_EXPLICIT
0b3f29b3 270 #elif defined(__DIGITALMARS__)
76c71809 271 #define HAVE_EXPLICIT
986ecc86 272 #endif
34cbe514 273#endif /* !HAVE_EXPLICIT */
986ecc86
VZ
274
275#ifdef HAVE_EXPLICIT
276 #define wxEXPLICIT explicit
34cbe514 277#else /* !HAVE_EXPLICIT */
986ecc86 278 #define wxEXPLICIT
34cbe514 279#endif /* HAVE_EXPLICIT/!HAVE_EXPLICIT */
986ecc86 280
0613b80c
VZ
281/* check for static/const_cast<>() (we don't use the other ones for now) */
282#ifndef HAVE_CXX_CASTS
521196a2 283 #if defined(__VISUALC__) && (__VISUALC__ >= 1100)
34cbe514 284 /* VC++ 6.0 and 5.0 have C++ casts (what about earlier versions?) */
521196a2 285 #define HAVE_CXX_CASTS
f1f5039b
VZ
286 #elif defined(__MINGW32__) || defined(__CYGWIN32__)
287 #if wxCHECK_GCC_VERSION(2, 95)
288 /* GCC 2.95 has C++ casts, what about earlier versions? */
289 #define HAVE_CXX_CASTS
290 #endif
521196a2 291 #endif
0613b80c 292#endif /* !HAVE_CXX_CASTS */
521196a2
MB
293
294#ifdef HAVE_CXX_CASTS
295 #ifndef HAVE_CONST_CAST
296 #define HAVE_CONST_CAST
297 #endif
8c8d66c5
VZ
298 #ifndef HAVE_REINTERPRET_CAST
299 #define HAVE_REINTERPRET_CAST
300 #endif
0613b80c
VZ
301 #ifndef HAVE_STATIC_CAST
302 #define HAVE_STATIC_CAST
303 #endif
9f8d3f61
VZ
304 #ifndef HAVE_DYNAMIC_CAST
305 #define HAVE_DYNAMIC_CAST
306 #endif
34cbe514 307#endif /* HAVE_CXX_CASTS */
521196a2 308
f29fe169
VZ
309#ifdef HAVE_STATIC_CAST
310 #define wx_static_cast(t, x) static_cast<t>(x)
311#else
312 #define wx_static_cast(t, x) ((t)(x))
313#endif
314
0613b80c 315#ifdef HAVE_CONST_CAST
f29fe169 316 #define wx_const_cast(t, x) const_cast<t>(x)
0613b80c 317#else
f29fe169 318 #define wx_const_cast(t, x) ((t)(x))
0613b80c
VZ
319#endif
320
8c8d66c5
VZ
321#ifdef HAVE_REINTERPRET_CAST
322 #define wx_reinterpret_cast(t, x) reinterpret_cast<t>(x)
323#else
324 #define wx_reinterpret_cast(t, x) ((t)(x))
325#endif
326
c781c316
VZ
327/*
328 This one is a wx invention: like static cast but used when we intentionally
329 truncate from a larger to smaller type, static_cast<> can't be used for it
330 as it results in warnings when using some compilers (SGI mipspro for example)
331 */
17a1ebd1
VZ
332#if defined(__INTELC__) && defined(__cplusplus)
333 template <typename T, typename X>
334 inline T wx_truncate_cast_impl(X x)
335 {
336 #pragma warning(push)
e5d92e2b
MW
337 /* implicit conversion of a 64-bit integral type to a smaller integral type */
338 #pragma warning(disable: 1682)
339 /* conversion from "X" to "T" may lose significant bits */
340 #pragma warning(disable: 810)
17a1ebd1 341
e5d92e2b 342 return x;
17a1ebd1
VZ
343
344 #pragma warning(pop)
345 }
346
347 #define wx_truncate_cast(t, x) wx_truncate_cast_impl<t>(x)
c1b61782
MW
348
349#elif defined(__cplusplus) && defined(__VISUALC__) && __VISUALC__ >= 1310
350 template <typename T, typename X>
351 inline T wx_truncate_cast_impl(X x)
352 {
353 #pragma warning(push)
354 /* conversion from 'X' to 'T', possible loss of data */
355 #pragma warning(disable: 4267)
356
357 return x;
358
359 #pragma warning(pop)
360 }
361
362 #define wx_truncate_cast(t, x) wx_truncate_cast_impl<t>(x)
363#else
17a1ebd1 364 #define wx_truncate_cast(t, x) ((t)(x))
c1b61782 365#endif
c781c316 366
f29fe169
VZ
367/* for consistency with wxStatic/DynamicCast defined in wx/object.h */
368#define wxConstCast(obj, className) wx_const_cast(className *, obj)
369
e87b7833
MB
370#ifndef HAVE_STD_WSTRING
371 #if defined(__VISUALC__) && (__VISUALC__ >= 1100)
34cbe514 372 /* VC++ 6.0 and 5.0 have std::wstring (what about earlier versions?) */
e87b7833
MB
373 #define HAVE_STD_WSTRING
374 #elif ( defined(__MINGW32__) || defined(__CYGWIN32__) ) \
82972e92 375 && wxCHECK_GCC_VERSION(3, 3)
34cbe514 376 /* GCC 3.1 has std::wstring; 3.0 never was in MinGW, 2.95 hasn't it */
e87b7833
MB
377 #define HAVE_STD_WSTRING
378 #endif
379#endif
380
381#ifndef HAVE_STD_STRING_COMPARE
382 #if defined(__VISUALC__) && (__VISUALC__ >= 1100)
34cbe514
RN
383 /* VC++ 6.0 and 5.0 have std::string::compare */
384 /* (what about earlier versions?) */
e87b7833
MB
385 #define HAVE_STD_STRING_COMPARE
386 #elif ( defined(__MINGW32__) || defined(__CYGWIN32__) ) \
387 && wxCHECK_GCC_VERSION(3, 1)
34cbe514
RN
388 /* GCC 3.1 has std::string::compare; */
389 /* 3.0 never was in MinGW, 2.95 hasn't it */
e87b7833
MB
390 #define HAVE_STD_STRING_COMPARE
391 #endif
392#endif
393
d85cfb37
VZ
394/* provide replacement for C99 va_copy() if the compiler doesn't have it */
395
396/* could be already defined by configure or the user */
397#ifndef wxVaCopy
398 /* if va_copy is a macro or configure detected that we have it, use it */
399 #if defined(va_copy) || defined(HAVE_VA_COPY)
400 #define wxVaCopy va_copy
401 #else /* no va_copy, try to provide a replacement */
402 /*
403 configure tries to determine whether va_list is an array or struct
404 type, but it may not be used under Windows, so deal with a few
405 special cases.
406 */
407
408 #ifdef __WATCOMC__
409 /* Watcom uses array type for va_list except for PPC and Alpha */
410 #if !defined(__PPC__) && !defined(__AXP__)
411 #define VA_LIST_IS_ARRAY
412 #endif
413 #endif /* __WATCOMC__ */
414
415 #if defined(__PPC__) && (defined(_CALL_SYSV) || defined (_WIN32))
416 /*
417 PPC using SysV ABI and NT/PPC are special in that they use an
418 extra level of indirection.
419 */
420 #define VA_LIST_IS_POINTER
421 #endif /* SysV or Win32 on __PPC__ */
422
423 /*
424 note that we use memmove(), not memcpy(), in case anybody tries
425 to do wxVaCopy(ap, ap)
426 */
427 #if defined(VA_LIST_IS_POINTER)
428 #define wxVaCopy(d, s) memmove(*(d), *(s), sizeof(va_list))
429 #elif defined(VA_LIST_IS_ARRAY)
430 #define wxVaCopy(d, s) memmove((d), (s), sizeof(va_list))
431 #else /* we can only hope that va_lists are simple lvalues */
432 #define wxVaCopy(d, s) ((d) = (s))
433 #endif
434 #endif /* va_copy/!va_copy */
14778505 435#endif /* wxVaCopy */
d85cfb37
VZ
436
437
34cbe514
RN
438/* ---------------------------------------------------------------------------- */
439/* portable calling conventions macros */
440/* ---------------------------------------------------------------------------- */
0661ec39 441
34cbe514 442/* stdcall is used for all functions called by Windows under Windows */
b4da152e 443#if defined(__WINDOWS__)
1222db72 444 #if defined(__GNUWIN32__)
ba2d8605 445 #define wxSTDCALL __attribute__((stdcall))
0661ec39 446 #else
34cbe514 447 /* both VC++ and Borland understand this */
ba2d8605 448 #define wxSTDCALL _stdcall
0661ec39 449 #endif
ba2d8605 450
34cbe514
RN
451#else /* Win */
452 /* no such stupidness under Unix */
1222db72 453 #define wxSTDCALL
34cbe514 454#endif /* platform */
1222db72 455
34cbe514 456/* LINKAGEMODE mode is empty for everyting except OS/2 */
78340847
VZ
457#ifndef LINKAGEMODE
458 #define LINKAGEMODE
34cbe514 459#endif /* LINKAGEMODE */
78340847 460
34cbe514
RN
461/* wxCALLBACK should be used for the functions which are called back by */
462/* Windows (such as compare function for wxListCtrl) */
04ef50df 463#if defined(__WIN32__) && !defined(__WXMICROWIN__)
1222db72 464 #define wxCALLBACK wxSTDCALL
0661ec39 465#else
34cbe514 466 /* no stdcall under Unix nor Win16 */
0661ec39 467 #define wxCALLBACK
34cbe514 468#endif /* platform */
0661ec39 469
34cbe514 470/* generic calling convention for the extern "C" functions */
0661ec39
VZ
471
472#if defined(__VISUALC__)
90350682 473 #define wxC_CALLING_CONV _cdecl
0661ec39 474#elif defined(__VISAGECPP__)
90350682 475 #define wxC_CALLING_CONV _Optlink
34cbe514 476#else /* !Visual C++ */
90350682 477 #define wxC_CALLING_CONV
34cbe514 478#endif /* compiler */
0661ec39 479
34cbe514 480/* callling convention for the qsort(3) callback */
90350682
VZ
481#define wxCMPFUNC_CONV wxC_CALLING_CONV
482
34cbe514 483/* compatibility :-( */
0661ec39
VZ
484#define CMPFUNC_CONV wxCMPFUNC_CONV
485
34cbe514 486/* DLL import/export declarations */
0cc66b6c 487#include "wx/dlimpexp.h"
c801d85f 488
34cbe514
RN
489/* ---------------------------------------------------------------------------- */
490/* Very common macros */
491/* ---------------------------------------------------------------------------- */
f6bcfd97 492
34cbe514 493/* Printf-like attribute definitions to obtain warnings with GNU C/C++ */
54afeafe
RR
494#if defined(__GNUC__) && !wxUSE_UNICODE
495# ifndef ATTRIBUTE_PRINTF
496# define ATTRIBUTE_PRINTF(m, n) __attribute__ ((__format__ (__printf__, m, n)))
497# define ATTRIBUTE_PRINTF_1 ATTRIBUTE_PRINTF(1, 2)
498# define ATTRIBUTE_PRINTF_2 ATTRIBUTE_PRINTF(2, 3)
499# define ATTRIBUTE_PRINTF_3 ATTRIBUTE_PRINTF(3, 4)
500# define ATTRIBUTE_PRINTF_4 ATTRIBUTE_PRINTF(4, 5)
501# define ATTRIBUTE_PRINTF_5 ATTRIBUTE_PRINTF(5, 6)
502# endif /* ATTRIBUTE_PRINTF */
503#else
504# ifndef ATTRIBUTE_PRINTF
505# define ATTRIBUTE_PRINTF
506# define ATTRIBUTE_PRINTF_1
507# define ATTRIBUTE_PRINTF_2
508# define ATTRIBUTE_PRINTF_3
509# define ATTRIBUTE_PRINTF_4
510# define ATTRIBUTE_PRINTF_5
511# endif /* ATTRIBUTE_PRINTF */
512#endif
513
34cbe514 514/* Macro to issue warning when using deprecated functions with gcc3 or MSVC7: */
7071c928 515#if wxCHECK_GCC_VERSION(3, 1)
c75274f9
VS
516 #define wxDEPRECATED(x) x __attribute__ ((deprecated))
517#elif defined(__VISUALC__) && (__VISUALC__ >= 1300)
518 #define wxDEPRECATED(x) __declspec(deprecated) x
519#else
520 #define wxDEPRECATED(x) x
521#endif
522
34cbe514 523/* everybody gets the assert and other debug macros */
f6bcfd97
BP
524#include "wx/debug.h"
525
34cbe514
RN
526/* NULL declaration: it must be defined as 0 for C++ programs (in particular, */
527/* it must not be defined as "(void *)0" which is standard for C but completely */
528/* breaks C++ code) */
daeb8330 529#ifndef __HANDHELDPC__
aaa63f66 530#include <stddef.h>
daeb8330 531#endif
aaa63f66 532
34cbe514
RN
533/* delete pointer if it is not NULL and NULL it afterwards */
534/* (checking that it's !NULL before passing it to delete is just a */
535/* a question of style, because delete will do it itself anyhow, but it might */
536/* be considered as an error by some overzealous debugging implementations of */
537/* the library, so we do it ourselves) */
d8260b2f 538#define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
a3622daa 539
34cbe514 540/* delete an array and NULL it (see comments above) */
752b40b1 541#define wxDELETEA(p) if ( (p) ) { delete [] (p); p = NULL; }
c801d85f 542
34cbe514 543/* size of statically declared array */
c801d85f
KB
544#define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
545
34cbe514
RN
546/* symbolic constant used by all Find()-like functions returning positive */
547/* integer on success as failure indicator */
886dd7d2
VZ
548#define wxNOT_FOUND (-1)
549
34cbe514
RN
550/* ---------------------------------------------------------------------------- */
551/* macros to avoid compiler warnings */
552/* ---------------------------------------------------------------------------- */
0cc66b6c 553
34cbe514
RN
554/* Macro to cut down on compiler warnings. */
555#if 1 /* there should be no more any compilers needing the "#else" version */
0cc66b6c 556 #define WXUNUSED(identifier) /* identifier */
34cbe514 557#else /* stupid, broken compiler */
0cc66b6c
VZ
558 #define WXUNUSED(identifier) identifier
559#endif
560
34cbe514 561/* some arguments are only used in debug mode, but unused in release one */
0cc66b6c
VZ
562#ifdef __WXDEBUG__
563 #define WXUNUSED_UNLESS_DEBUG(param) param
564#else
565 #define WXUNUSED_UNLESS_DEBUG(param) WXUNUSED(param)
566#endif
567
7bea7b91
WS
568/* some arguments are not used in unicode mode */
569#if wxUSE_UNICODE
570 #define WXUNUSED_IN_UNICODE(param) WXUNUSED(param)
571#else
572 #define WXUNUSED_IN_UNICODE(param) param
573#endif
574
575/* some arguments are not used in WinCE build */
576#ifdef __WXWINCE__
577 #define WXUNUSED_IN_WINCE(param) WXUNUSED(param)
578#else
579 #define WXUNUSED_IN_WINCE(param) param
580#endif
581
9a6384ca
WS
582/* unused parameters in non stream builds */
583#if wxUSE_STREAMS
584 #define WXUNUSED_UNLESS_STREAMS(param) param
585#else
586 #define WXUNUSED_UNLESS_STREAMS(param) WXUNUSED(param)
587#endif
588
34cbe514
RN
589/* some compilers give warning about a possibly unused variable if it is */
590/* initialized in both branches of if/else and shut up if it is initialized */
591/* when declared, but other compilers then give warnings about unused variable */
592/* value -- this should satisfy both of them */
0cc66b6c
VZ
593#if defined(__VISUALC__)
594 #define wxDUMMY_INITIALIZE(val) = val
595#else
596 #define wxDUMMY_INITIALIZE(val)
597#endif
598
34cbe514
RN
599/* sometimes the value of a variable is *really* not used, to suppress the */
600/* resulting warning you may pass it to this function */
601#ifdef __cplusplus
602# ifdef __BORLANDC__
603# define wxUnusedVar(identifier) identifier
604# else
605 template <class T>
606 inline void wxUnusedVar(const T& WXUNUSED(t)) { }
607# endif
8703bc01 608#endif
0cc66b6c 609
34cbe514
RN
610/* ---------------------------------------------------------------------------- */
611/* compiler specific settings */
612/* ---------------------------------------------------------------------------- */
c801d85f 613
34cbe514
RN
614/* to allow compiling with warning level 4 under Microsoft Visual C++ some */
615/* warnings just must be disabled */
c801d85f 616#ifdef __VISUALC__
34cbe514 617 #pragma warning(disable: 4514) /* unreferenced inline func has been removed */
d4b67f95 618/*
c801d85f 619 you might be tempted to disable this one also: triggered by CHECK and FAIL
3f4a0c5b
VZ
620 macros in debug.h, but it's, overall, a rather useful one, so I leave it and
621 will try to find some way to disable this warning just for CHECK/FAIL. Anyone?
c801d85f 622*/
34cbe514
RN
623 #pragma warning(disable: 4127) /* conditional expression is constant */
624#endif /* VC++ */
c801d85f 625
3f4a0c5b
VZ
626#if defined(__MWERKS__)
627 #undef try
628 #undef except
629 #undef finally
630 #define except(x) catch(...)
34cbe514 631#endif /* Metrowerks */
8a60ae88 632
6d3d756a 633#if wxONLY_WATCOM_EARLIER_THAN(1,4)
18da7cf2
VZ
634 typedef short mode_t;
635#endif
636
34cbe514
RN
637/* where should i put this? we need to make sure of this as it breaks */
638/* the <iostream> code. */
ea57084d 639#if !wxUSE_IOSTREAMH && defined(__WXDEBUG__)
f6bcfd97 640# ifndef __MWERKS__
34cbe514 641/* #undef __WXDEBUG__ */
f6bcfd97
BP
642# ifdef wxUSE_DEBUG_NEW_ALWAYS
643# undef wxUSE_DEBUG_NEW_ALWAYS
644# define wxUSE_DEBUG_NEW_ALWAYS 0
645# endif
646# endif
518f33a4 647#endif
85ee3474 648
34cbe514 649/* ---------------------------------------------------------------------------- */
77ffb593 650/* standard wxWidgets types */
34cbe514 651/* ---------------------------------------------------------------------------- */
d716d967 652
34cbe514 653/* the type for screen and DC coordinates */
376a8ce2 654typedef int wxCoord;
72cdf4c9 655
1f319228 656enum { wxDefaultCoord = -1 };
d716d967 657
34cbe514
RN
658/* ---------------------------------------------------------------------------- */
659/* define fixed length types */
660/* ---------------------------------------------------------------------------- */
8fb37472 661
20bc5ad8
WS
662#if defined(__WXPALMOS__) || defined(__MINGW32__)
663 #include <sys/types.h>
664#endif
665
34cbe514
RN
666/* chars are always one byte (by definition), shorts are always two (in */
667/* practice) */
8fb37472 668
34cbe514 669/* 8bit */
8fb37472
VZ
670typedef signed char wxInt8;
671typedef unsigned char wxUint8;
672typedef wxUint8 wxByte;
673
674
34cbe514 675/* 16bit */
8fb37472
VZ
676#ifdef SIZEOF_SHORT
677 #if SIZEOF_SHORT != 2
77ffb593 678 #error "wxWidgets assumes sizeof(short) == 2, please fix the code"
8fb37472
VZ
679 #endif
680#else
681 #define SIZEOF_SHORT 2
682#endif
683
684typedef signed short wxInt16;
685typedef unsigned short wxUint16;
686
687typedef wxUint16 wxWord;
688
689/*
690 things are getting more interesting with ints, longs and pointers
691
692 there are several different standard data models described by this table:
693
694 +-----------+----------------------------+
695 |type\model | LP64 ILP64 LLP64 ILP32 LP32|
696 +-----------+----------------------------+
697 |char | 8 8 8 8 8 |
698 |short | 16 16 16 16 16 |
699 |int | 32 64 32 32 16 |
700 |long | 64 64 32 32 32 |
701 |long long | 64 |
702 |void * | 64 64 64 32 32 |
703 +-----------+----------------------------+
704
705 Win16 used LP32 (but we don't support it any longer), Win32 obviously used
706 ILP32 and Win64 uses LLP64 (a.k.a. P64)
d716d967 707
8fb37472
VZ
708 Under Unix LP64 is the most widely used (the only I've ever seen, in fact)
709 */
710
34cbe514 711/* 32bit */
4055ed82
WS
712#ifdef __PALMOS__
713 typedef int wxInt32;
714 typedef unsigned int wxUint32;
715 #define SIZEOF_INT 4
716 #define SIZEOF_LONG 4
717 #define SIZEOF_WCHAR_T 2
718 #define SIZEOF_SIZE_T 4
719 #define wxSIZE_T_IS_UINT
720 #define SIZEOF_VOID_P 4
721 #define SIZEOF_SIZE_T 4
722#elif defined(__WINDOWS__)
34cbe514
RN
723 /* Win64 uses LLP64 model and so ints and longs have the same size as in */
724 /* Win32 */
8fb37472
VZ
725 #if defined(__WIN32__)
726 typedef int wxInt32;
727 typedef unsigned int wxUint32;
728
d4808d76
RD
729 /* Assume that if SIZEOF_INT is defined that all the other ones except
730 SIZEOF_SIZE_T, are too. See next #if below. */
8fb37472
VZ
731 #ifndef SIZEOF_INT
732 #define SIZEOF_INT 4
733 #define SIZEOF_LONG 4
734 #define SIZEOF_WCHAR_T 2
735
a369f7c8
VZ
736 /*
737 under Win64 sizeof(size_t) == 8 and so it is neither unsigned
738 int nor unsigned long!
739 */
740 #ifdef __WIN64__
741 #define SIZEOF_SIZE_T 8
742
743 #undef wxSIZE_T_IS_UINT
744 #else /* Win32 */
745 #define SIZEOF_SIZE_T 4
746
747 #define wxSIZE_T_IS_UINT
748 #endif
8fb37472
VZ
749 #undef wxSIZE_T_IS_ULONG
750
751 #ifdef __WIN64__
a369f7c8 752 #define SIZEOF_VOID_P 8
34cbe514 753 #else /* Win32 */
a369f7c8 754 #define SIZEOF_VOID_P 4
34cbe514
RN
755 #endif /* Win64/32 */
756 #endif /* !defined(SIZEOF_INT) */
d4808d76
RD
757
758 /*
759 If Python.h was included first, it defines all of the SIZEOF's above
760 except for SIZEOF_SIZE_T, so we need to do it here to avoid
761 triggering the #error in the ssize_t typedefs below...
762 */
763 #ifndef SIZEOF_SIZE_T
764 #ifdef __WIN64__
765 #define SIZEOF_SIZE_T 8
766 #else /* Win32 */
767 #define SIZEOF_SIZE_T 4
768 #endif
769 #endif
988a8d44 770 #else
8fb37472 771 #error "Unsupported Windows version"
988a8d44 772 #endif
34cbe514
RN
773#else /* !Windows */
774 /* SIZEOF_XXX are normally defined by configure */
8fb37472
VZ
775 #ifdef SIZEOF_INT
776 #if SIZEOF_INT == 8
34cbe514
RN
777 /* must be ILP64 data model, there is normally a special 32 bit */
778 /* type in it but we don't know what it is... */
8fb37472
VZ
779 #error "No 32bit int type on this platform"
780 #elif SIZEOF_INT == 4
781 typedef int wxInt32;
782 typedef unsigned int wxUint32;
783 #elif SIZEOF_INT == 2
34cbe514 784 /* must be LP32 */
8fb37472
VZ
785 #if SIZEOF_LONG != 4
786 #error "No 32bit int type on this platform"
787 #endif
788
789 typedef long wxInt32;
790 typedef unsigned long wxUint32;
af79064d 791 #else
77ffb593 792 /* wxWidgets is not ready for 128bit systems yet... */
8fb37472
VZ
793 #error "Unknown sizeof(int) value, what are you compiling for?"
794 #endif
34cbe514 795 #else /* !defined(SIZEOF_INT) */
a369f7c8 796 /* assume default 32bit machine -- what else can we do? */
988a8d44 797 wxCOMPILE_TIME_ASSERT( sizeof(int) == 4, IntMustBeExactly4Bytes);
a369f7c8
VZ
798 wxCOMPILE_TIME_ASSERT( sizeof(size_t) == 4, SizeTMustBeExactly4Bytes);
799 wxCOMPILE_TIME_ASSERT( sizeof(void *) == 4, PtrMustBeExactly4Bytes);
988a8d44 800
8fb37472 801 #define SIZEOF_INT 4
a369f7c8
VZ
802 #define SIZEOF_SIZE_T 4
803 #define SIZEOF_VOID_P 4
8fb37472
VZ
804
805 typedef int wxInt32;
806 typedef unsigned int wxUint32;
807
68379eaf
WS
808 #if defined(__MACH__) && !defined(SIZEOF_WCHAR_T)
809 #define SIZEOF_WCHAR_T 4
810 #endif
97696279 811 #if wxUSE_WCHAR_T && !defined(SIZEOF_WCHAR_T)
34cbe514
RN
812 /* also assume that sizeof(wchar_t) == 2 (under Unix the most */
813 /* common case is 4 but there configure would have defined */
814 /* SIZEOF_WCHAR_T for us) */
815 /* the most common case */
97696279
VZ
816 wxCOMPILE_TIME_ASSERT( sizeof(wchar_t) == 2,
817 Wchar_tMustBeExactly2Bytes);
818
819 #define SIZEOF_WCHAR_T 2
34cbe514 820 #endif /* wxUSE_WCHAR_T */
988a8d44 821 #endif
34cbe514 822#endif /* Win/!Win */
d716d967 823
8fb37472
VZ
824typedef wxUint32 wxDword;
825
a369f7c8
VZ
826/*
827 Define an integral type big enough to contain all of long, size_t and void *.
828 */
829#if SIZEOF_LONG >= SIZEOF_VOID_P && SIZEOF_LONG >= SIZEOF_SIZE_T
830 /* normal case */
831 typedef unsigned long wxUIntPtr;
832#elif SIZEOF_SIZE_T >= SIZEOF_VOID_P
833 /* Win64 case */
834 typedef size_t wxUIntPtr;
835#else
836 /*
837 This should never happen for the current architectures but if you're
77ffb593 838 using one where it does, please contact wx-dev@lists.wxwidgets.org.
a369f7c8
VZ
839 */
840 #error "Pointers can't be stored inside integer types."
841#endif
8fb37472 842
d4c25daa 843#ifdef __cplusplus
dffd27ec
VZ
844/* And also define a couple of simple functions to cast pointer to/from it. */
845inline wxUIntPtr wxPtrToUInt(const void *p)
1695e285 846{
d4c25daa
WS
847 /*
848 VC++ 7.1 gives warnings about casts such as below even when they're
849 explicit with /Wp64 option, suppress them as we really know what we're
17a1ebd1 850 doing here. Same thing with icc with -Wall.
d4c25daa 851 */
8d7eaf91
MW
852#ifdef __VISUALC__
853 #if __VISUALC__ >= 1200
854 #pragma warning(push)
17a1ebd1 855 #endif
8d7eaf91
MW
856 /* pointer truncation from '' to '' */
857 #pragma warning(disable: 4311)
858#elif defined(__INTELC__)
859 #pragma warning(push)
860 /* conversion from pointer to same-sized integral type */
861 #pragma warning(disable: 1684)
1695e285
VZ
862#endif
863
864 return wx_reinterpret_cast(wxUIntPtr, p);
865
8d7eaf91 866#if (defined(__VISUALC__) && __VISUALC__ >= 1200) || defined(__INTELC__)
17a1ebd1 867 #pragma warning(pop)
1695e285
VZ
868#endif
869}
dffd27ec
VZ
870
871inline void *wxUIntToPtr(wxUIntPtr p)
872{
8d7eaf91
MW
873#ifdef __VISUALC__
874 #if __VISUALC__ >= 1200
875 #pragma warning(push)
17a1ebd1 876 #endif
8d7eaf91
MW
877 /* conversion to type of greater size */
878 #pragma warning(disable: 4312)
879#elif defined(__INTELC__)
880 #pragma warning(push)
881 /* invalid type conversion: "wxUIntPtr={unsigned long}" to "void *" */
882 #pragma warning(disable: 171)
7561181f
VZ
883#endif
884
dffd27ec 885 return wx_reinterpret_cast(void *, p);
7561181f 886
8d7eaf91 887#if (defined(__VISUALC__) && __VISUALC__ >= 1200) || defined(__INTELC__)
17a1ebd1 888 #pragma warning(pop)
7561181f 889#endif
dffd27ec 890}
d4c25daa 891#endif /*__cplusplus*/
1695e285
VZ
892
893
34cbe514 894/* 64 bit */
8fb37472 895
60582201 896/* NB: we #define and not typedef wxLongLong_t because we use "#ifdef */
34cbe514 897/* wxLongLong_t" in wx/longlong.h */
8fb37472 898
60582201
WS
899/* wxULongLong_t is set later (usually to unsigned wxLongLong_t) */
900
34cbe514
RN
901/* to avoid compilation problems on 64bit machines with ambiguous method calls */
902/* we will need to define this */
8fb37472
VZ
903#undef wxLongLongIsLong
904
edff6201
VZ
905/*
906 First check for specific compilers which have known 64 bit integer types,
907 this avoids clashes with SIZEOF_LONG[_LONG] being defined incorrectly for
908 e.g. MSVC builds (Python.h defines it as 8 even for MSVC).
909
910 Also notice that we check for "long long" before checking for 64 bit long as
911 we still want to use "long long" and not "long" for wxLongLong_t on 64 bit
912 architectures to be able to pass wxLongLong_t to the standard functions
913 prototyped as taking "long long" such as strtoll().
914 */
915#if (defined(__VISUALC__) && defined(__WIN32__))
8fb37472
VZ
916 #define wxLongLong_t __int64
917 #define wxLongLongSuffix i64
918 #define wxLongLongFmtSpec _T("I64")
919#elif defined(__BORLANDC__) && defined(__WIN32__) && (__BORLANDC__ >= 0x520)
920 #define wxLongLong_t __int64
921 #define wxLongLongSuffix i64
06eab902 922 #define wxLongLongFmtSpec _T("L")
0872eaf9 923#elif (defined(__WATCOMC__) && (defined(__WIN32__) || defined(__DOS__) || defined(__OS2__)))
e84c7178
CE
924 #define wxLongLong_t __int64
925 #define wxLongLongSuffix i64
06eab902 926 #define wxLongLongFmtSpec _T("L")
f29fe169 927#elif defined(__DIGITALMARS__)
641a7c45
CE
928 #define wxLongLong_t __int64
929 #define wxLongLongSuffix LL
930 #define wxLongLongFmtSpec _T("ll")
06eab902
VZ
931#elif defined(__MINGW32__)
932 #define wxLongLong_t long long
933 #define wxLongLongSuffix ll
934 #define wxLongLongFmtSpec _T("I64")
8fb37472
VZ
935#elif defined(__MWERKS__)
936 #if __option(longlong)
937 #define wxLongLong_t long long
938 #define wxLongLongSuffix ll
939 #define wxLongLongFmtSpec _T("ll")
940 #else
941 #error "The 64 bit integer support in CodeWarrior has been disabled."
942 #error "See the documentation on the 'longlong' pragma."
943 #endif
edff6201
VZ
944#elif defined(__WXPALMOS__)
945 #define wxLongLong_t int64_t
946 #define wxLongLongSuffix ll
947 #define wxLongLongFmtSpec _T("ll")
8fb37472
VZ
948#elif defined(__VISAGECPP__) && __IBMCPP__ >= 400
949 #define wxLongLong_t long long
edff6201
VZ
950#elif (defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG >= 8) || \
951 defined(__GNUC__) || \
952 defined(__CYGWIN__) || \
953 defined(__WXMICROWIN__) || \
954 (defined(__DJGPP__) && __DJGPP__ >= 2)
955 #define wxLongLong_t long long
956 #define wxLongLongSuffix ll
957 #define wxLongLongFmtSpec _T("ll")
89fd8148
VZ
958#elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 8)
959 #define wxLongLong_t long
960 #define wxLongLongSuffix l
961 #define wxLongLongFmtSpec _T("l")
962 #define wxLongLongIsLong
8fb37472
VZ
963#endif
964
965
966#ifdef wxLongLong_t
60582201
WS
967
968 #ifdef __WXPALMOS__
969 #define wxULongLong_t uint64_t
970 #else
971 #define wxULongLong_t unsigned wxLongLong_t
972 #endif
973
ea960ae8 974 /* these macros allow to define 64 bit constants in a portable way */
84ed77ef
VZ
975 #define wxLL(x) wxCONCAT(x, wxLongLongSuffix)
976 #define wxULL(x) wxCONCAT(x, wxCONCAT(u, wxLongLongSuffix))
977
8fb37472 978 typedef wxLongLong_t wxInt64;
60582201 979 typedef wxULongLong_t wxUint64;
216a72f3
VZ
980
981 #define wxHAS_INT64 1
982
983#elif wxUSE_LONGLONG
ea960ae8 984 /* these macros allow to define 64 bit constants in a portable way */
216a72f3
VZ
985 #define wxLL(x) wxLongLong(x)
986 #define wxULL(x) wxULongLong(x)
987
988 #define wxInt64 wxLongLong
989 #define wxUint64 wxULongLong
990
991 #define wxHAS_INT64 1
992
8e13c1ec 993#else /* !wxUSE_LONGLONG */
216a72f3
VZ
994
995 #define wxHAS_INT64 0
996
d716d967
RR
997#endif
998
d716d967 999
d51253e8
RL
1000/* Make sure ssize_t is defined (a signed type the same size as size_t) */
1001/* HAVE_SSIZE_T should be defined for compiliers that already have it */
954ec276 1002#ifdef __MINGW32__
954ec276
WS
1003 #if defined(_SSIZE_T_) && !defined(HAVE_SSIZE_T)
1004 #define HAVE_SSIZE_T
1005 #endif
1006#endif
f1b1ecf0
WS
1007#if defined(__PALMOS__) && !defined(HAVE_SSIZE_T)
1008 #define HAVE_SSIZE_T
1009#endif
6d3d756a 1010#if wxCHECK_WATCOM_VERSION(1,4)
c40158e4
WS
1011 #define HAVE_SSIZE_T
1012#endif
d51253e8
RL
1013#ifndef HAVE_SSIZE_T
1014 #if SIZEOF_SIZE_T == 4
1015 typedef wxInt32 ssize_t;
1016 #elif SIZEOF_SIZE_T == 8
f1b1ecf0 1017 typedef wxInt64 ssize_t;
d51253e8
RL
1018 #else
1019 #error "error defining ssize_t, size_t is not 4 or 8 bytes"
1020 #endif
1021#endif
1022
1023
34cbe514
RN
1024/* base floating point types */
1025/* wxFloat32: 32 bit IEEE float ( 1 sign, 8 exponent bits, 23 fraction bits */
1026/* wxFloat64: 64 bit IEEE float ( 1 sign, 11 exponent bits, 52 fraction bits */
1027/* wxDouble: native fastest representation that has at least wxFloat64 */
1028/* precision, so use the IEEE types for storage, and this for */
1029/* calculations */
7c74e7fe 1030
8fb37472 1031typedef float wxFloat32;
43225e09 1032#if (defined( __WXMAC__ ) || defined(__WXCOCOA__)) && defined (__MWERKS__)
f608bc67 1033 typedef short double wxFloat64;
7c74e7fe 1034#else
f608bc67 1035 typedef double wxFloat64;
7c74e7fe
SC
1036#endif
1037
43543d98 1038#if defined( __WXMAC__ ) && !defined( __POWERPC__ )
20d9661c 1039 typedef long double wxDouble;
7c74e7fe 1040#else
8fb37472 1041 typedef double wxDouble;
7c74e7fe
SC
1042#endif
1043
50531bd2
VZ
1044/*
1045 Some (non standard) compilers typedef wchar_t as an existing type instead
1046 of treating it as a real fundamental type, set wxWCHAR_T_IS_REAL_TYPE to 0
1047 for them and to 1 for all the others.
1048 */
1049#if wxUSE_WCHAR_T
1050 /*
1051 VC++ typedefs wchar_t as unsigned short by default, that is unless
1052 /Za or /Zc:wchar_t option is used in which case _WCHAR_T_DEFINED is
1053 defined.
1054 */
1055# if defined(__VISUALC__) && !defined(_NATIVE_WCHAR_T_DEFINED)
1056# define wxWCHAR_T_IS_REAL_TYPE 0
1057# else /* compiler having standard-conforming wchar_t */
1058# define wxWCHAR_T_IS_REAL_TYPE 1
1059# endif
1060#endif /* wxUSE_WCHAR_T */
1061
34cbe514
RN
1062/* ---------------------------------------------------------------------------- */
1063/* byte ordering related definition and macros */
1064/* ---------------------------------------------------------------------------- */
72cdf4c9 1065
34cbe514 1066/* byte sex */
d716d967
RR
1067
1068#define wxBIG_ENDIAN 4321
1069#define wxLITTLE_ENDIAN 1234
1070#define wxPDP_ENDIAN 3412
1071
1072#ifdef WORDS_BIGENDIAN
1073#define wxBYTE_ORDER wxBIG_ENDIAN
1074#else
1075#define wxBYTE_ORDER wxLITTLE_ENDIAN
1076#endif
1077
34cbe514 1078/* byte swapping */
d716d967 1079
7c74e7fe 1080#if defined (__MWERKS__) && ( (__MWERKS__ < 0x0900) || macintosh )
34cbe514 1081/* assembler versions for these */
7c74e7fe 1082#ifdef __POWERPC__
f608bc67 1083 inline wxUint16 wxUINT16_SWAP_ALWAYS( wxUint16 i )
8fb37472 1084 {return (__lhbrx( &i , 0 ) );}
f608bc67 1085 inline wxInt16 wxINT16_SWAP_ALWAYS( wxInt16 i )
8fb37472 1086 {return (__lhbrx( &i , 0 ) );}
f608bc67 1087 inline wxUint32 wxUINT32_SWAP_ALWAYS( wxUint32 i )
8fb37472 1088 {return (__lwbrx( &i , 0 ) );}
f608bc67 1089 inline wxInt32 wxINT32_SWAP_ALWAYS( wxInt32 i )
8fb37472 1090 {return (__lwbrx( &i , 0 ) );}
7c74e7fe 1091#else
f608bc67
VZ
1092 #pragma parameter __D0 wxUINT16_SWAP_ALWAYS(__D0)
1093 pascal wxUint16 wxUINT16_SWAP_ALWAYS(wxUint16 value)
1094 = { 0xE158 };
1095
1096 #pragma parameter __D0 wxINT16_SWAP_ALWAYS(__D0)
a02bb143 1097 pascal wxInt16 wxINT16_SWAP_ALWAYS(wxInt16 value)
f608bc67
VZ
1098 = { 0xE158 };
1099
1100 #pragma parameter __D0 wxUINT32_SWAP_ALWAYS (__D0)
1101 pascal wxUint32 wxUINT32_SWAP_ALWAYS(wxUint32 value)
1102 = { 0xE158, 0x4840, 0xE158 };
1103
1104 #pragma parameter __D0 wxINT32_SWAP_ALWAYS (__D0)
a02bb143 1105 pascal wxInt32 wxINT32_SWAP_ALWAYS(wxInt32 value)
f608bc67 1106 = { 0xE158, 0x4840, 0xE158 };
7c74e7fe
SC
1107
1108#endif
34cbe514 1109#else /* !MWERKS */
d716d967
RR
1110#define wxUINT16_SWAP_ALWAYS(val) \
1111 ((wxUint16) ( \
1112 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
1113 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
bac507e0 1114
d716d967
RR
1115#define wxINT16_SWAP_ALWAYS(val) \
1116 ((wxInt16) ( \
7e2c43b8
RR
1117 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
1118 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
bac507e0 1119
d716d967
RR
1120#define wxUINT32_SWAP_ALWAYS(val) \
1121 ((wxUint32) ( \
1122 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
1123 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
1124 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
1125 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
1126
1127#define wxINT32_SWAP_ALWAYS(val) \
1128 ((wxInt32) ( \
7e2c43b8
RR
1129 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
1130 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
1131 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
1132 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
7c74e7fe 1133#endif
34cbe514 1134/* machine specific byte swapping */
d716d967 1135
84ed77ef
VZ
1136#ifdef wxLongLong_t
1137 #define wxUINT64_SWAP_ALWAYS(val) \
1138 ((wxUint64) ( \
1139 (((wxUint64) (val) & (wxUint64) wxULL(0x00000000000000ff)) << 56) | \
1140 (((wxUint64) (val) & (wxUint64) wxULL(0x000000000000ff00)) << 40) | \
1141 (((wxUint64) (val) & (wxUint64) wxULL(0x0000000000ff0000)) << 24) | \
1142 (((wxUint64) (val) & (wxUint64) wxULL(0x00000000ff000000)) << 8) | \
1143 (((wxUint64) (val) & (wxUint64) wxULL(0x000000ff00000000)) >> 8) | \
1144 (((wxUint64) (val) & (wxUint64) wxULL(0x0000ff0000000000)) >> 24) | \
1145 (((wxUint64) (val) & (wxUint64) wxULL(0x00ff000000000000)) >> 40) | \
1146 (((wxUint64) (val) & (wxUint64) wxULL(0xff00000000000000)) >> 56)))
1147
1148 #define wxINT64_SWAP_ALWAYS(val) \
1149 ((wxInt64) ( \
1150 (((wxUint64) (val) & (wxUint64) wxULL(0x00000000000000ff)) << 56) | \
1151 (((wxUint64) (val) & (wxUint64) wxULL(0x000000000000ff00)) << 40) | \
1152 (((wxUint64) (val) & (wxUint64) wxULL(0x0000000000ff0000)) << 24) | \
1153 (((wxUint64) (val) & (wxUint64) wxULL(0x00000000ff000000)) << 8) | \
1154 (((wxUint64) (val) & (wxUint64) wxULL(0x000000ff00000000)) >> 8) | \
1155 (((wxUint64) (val) & (wxUint64) wxULL(0x0000ff0000000000)) >> 24) | \
1156 (((wxUint64) (val) & (wxUint64) wxULL(0x00ff000000000000)) >> 40) | \
1157 (((wxUint64) (val) & (wxUint64) wxULL(0xff00000000000000)) >> 56)))
216a72f3 1158#elif wxUSE_LONGLONG /* !wxLongLong_t */
84ed77ef
VZ
1159 #define wxUINT64_SWAP_ALWAYS(val) \
1160 ((wxUint64) ( \
1161 ((wxULongLong(val) & wxULongLong(0L, 0x000000ffU)) << 56) | \
1162 ((wxULongLong(val) & wxULongLong(0L, 0x0000ff00U)) << 40) | \
1163 ((wxULongLong(val) & wxULongLong(0L, 0x00ff0000U)) << 24) | \
1164 ((wxULongLong(val) & wxULongLong(0L, 0xff000000U)) << 8) | \
1165 ((wxULongLong(val) & wxULongLong(0x000000ffL, 0U)) >> 8) | \
1166 ((wxULongLong(val) & wxULongLong(0x0000ff00L, 0U)) >> 24) | \
1167 ((wxULongLong(val) & wxULongLong(0x00ff0000L, 0U)) >> 40) | \
1168 ((wxULongLong(val) & wxULongLong(0xff000000L, 0U)) >> 56)))
1169
1170 #define wxINT64_SWAP_ALWAYS(val) \
1171 ((wxInt64) ( \
1172 ((wxLongLong(val) & wxLongLong(0L, 0x000000ffU)) << 56) | \
1173 ((wxLongLong(val) & wxLongLong(0L, 0x0000ff00U)) << 40) | \
1174 ((wxLongLong(val) & wxLongLong(0L, 0x00ff0000U)) << 24) | \
1175 ((wxLongLong(val) & wxLongLong(0L, 0xff000000U)) << 8) | \
1176 ((wxLongLong(val) & wxLongLong(0x000000ffL, 0U)) >> 8) | \
1177 ((wxLongLong(val) & wxLongLong(0x0000ff00L, 0U)) >> 24) | \
1178 ((wxLongLong(val) & wxLongLong(0x00ff0000L, 0U)) >> 40) | \
1179 ((wxLongLong(val) & wxLongLong(0xff000000L, 0U)) >> 56)))
34cbe514 1180#endif /* wxLongLong_t/!wxLongLong_t */
41b0a113 1181
d716d967 1182#ifdef WORDS_BIGENDIAN
84ed77ef
VZ
1183 #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val)
1184 #define wxINT16_SWAP_ON_BE(val) wxINT16_SWAP_ALWAYS(val)
1185 #define wxUINT16_SWAP_ON_LE(val) (val)
1186 #define wxINT16_SWAP_ON_LE(val) (val)
1187 #define wxUINT32_SWAP_ON_BE(val) wxUINT32_SWAP_ALWAYS(val)
1188 #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val)
1189 #define wxUINT32_SWAP_ON_LE(val) (val)
1190 #define wxINT32_SWAP_ON_LE(val) (val)
216a72f3
VZ
1191 #if wxHAS_INT64
1192 #define wxUINT64_SWAP_ON_BE(val) wxUINT64_SWAP_ALWAYS(val)
1193 #define wxUINT64_SWAP_ON_LE(val) (val)
1194 #endif
d716d967 1195#else
84ed77ef
VZ
1196 #define wxUINT16_SWAP_ON_LE(val) wxUINT16_SWAP_ALWAYS(val)
1197 #define wxINT16_SWAP_ON_LE(val) wxINT16_SWAP_ALWAYS(val)
1198 #define wxUINT16_SWAP_ON_BE(val) (val)
1199 #define wxINT16_SWAP_ON_BE(val) (val)
1200 #define wxUINT32_SWAP_ON_LE(val) wxUINT32_SWAP_ALWAYS(val)
1201 #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val)
1202 #define wxUINT32_SWAP_ON_BE(val) (val)
1203 #define wxINT32_SWAP_ON_BE(val) (val)
216a72f3
VZ
1204 #if wxHAS_INT64
1205 #define wxUINT64_SWAP_ON_LE(val) wxUINT64_SWAP_ALWAYS(val)
1206 #define wxUINT64_SWAP_ON_BE(val) (val)
1207 #endif
d716d967
RR
1208#endif
1209
34cbe514
RN
1210/* ---------------------------------------------------------------------------- */
1211/* Geometric flags */
1212/* ---------------------------------------------------------------------------- */
d597fcb7
RR
1213
1214enum wxGeometryCentre
1215{
1216 wxCENTRE = 0x0001,
1217 wxCENTER = wxCENTRE
1218};
1219
34cbe514 1220/* centering into frame rather than screen (obsolete) */
d597fcb7 1221#define wxCENTER_FRAME 0x0000
34cbe514 1222/* centre on screen rather than parent */
d597fcb7
RR
1223#define wxCENTRE_ON_SCREEN 0x0002
1224#define wxCENTER_ON_SCREEN wxCENTRE_ON_SCREEN
1225
1226enum wxOrientation
1227{
17fce800 1228 /* don't change the values of these elements, they are used elsewhere */
d597fcb7
RR
1229 wxHORIZONTAL = 0x0004,
1230 wxVERTICAL = 0x0008,
2f78bd2c 1231
86745a19 1232 wxBOTH = wxVERTICAL | wxHORIZONTAL
d597fcb7
RR
1233};
1234
1235enum wxDirection
1236{
1237 wxLEFT = 0x0010,
1238 wxRIGHT = 0x0020,
1239 wxUP = 0x0040,
1240 wxDOWN = 0x0080,
2f78bd2c 1241
d597fcb7
RR
1242 wxTOP = wxUP,
1243 wxBOTTOM = wxDOWN,
2f78bd2c 1244
d597fcb7
RR
1245 wxNORTH = wxUP,
1246 wxSOUTH = wxDOWN,
1247 wxWEST = wxLEFT,
1248 wxEAST = wxRIGHT,
2f78bd2c 1249
d597fcb7
RR
1250 wxALL = (wxUP | wxDOWN | wxRIGHT | wxLEFT)
1251};
1252
1253enum wxAlignment
1254{
1255 wxALIGN_NOT = 0x0000,
be2577e4
RD
1256 wxALIGN_CENTER_HORIZONTAL = 0x0100,
1257 wxALIGN_CENTRE_HORIZONTAL = wxALIGN_CENTER_HORIZONTAL,
d597fcb7
RR
1258 wxALIGN_LEFT = wxALIGN_NOT,
1259 wxALIGN_TOP = wxALIGN_NOT,
1260 wxALIGN_RIGHT = 0x0200,
be2577e4
RD
1261 wxALIGN_BOTTOM = 0x0400,
1262 wxALIGN_CENTER_VERTICAL = 0x0800,
1263 wxALIGN_CENTRE_VERTICAL = wxALIGN_CENTER_VERTICAL,
1264
1265 wxALIGN_CENTER = (wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTER_VERTICAL),
1e6feb95
VZ
1266 wxALIGN_CENTRE = wxALIGN_CENTER,
1267
34cbe514 1268 /* a mask to extract alignment from the combination of flags */
1e6feb95 1269 wxALIGN_MASK = 0x0f00
d597fcb7
RR
1270};
1271
1272enum wxStretch
1273{
a757b4a7
VZ
1274 /* for compatibility only, default now, don't use explicitly any more */
1275#if WXWIN_COMPATIBILITY_2_6
1276 wxADJUST_MINSIZE = 0,
1277#endif
1278
d597fcb7
RR
1279 wxSTRETCH_NOT = 0x0000,
1280 wxSHRINK = 0x1000,
1281 wxGROW = 0x2000,
be2577e4 1282 wxEXPAND = wxGROW,
15ba5c27 1283 wxSHAPED = 0x4000,
f52e0cf4 1284 wxFIXED_MINSIZE = 0x8000,
a757b4a7 1285 wxTILE = 0xc000
1e6feb95
VZ
1286};
1287
34cbe514 1288/* border flags: the values are chosen for backwards compatibility */
1e6feb95
VZ
1289enum wxBorder
1290{
34cbe514
RN
1291 /* this is different from wxBORDER_NONE as by default the controls do have */
1292 /* border */
1e6feb95
VZ
1293 wxBORDER_DEFAULT = 0,
1294
1295 wxBORDER_NONE = 0x00200000,
1296 wxBORDER_STATIC = 0x01000000,
1297 wxBORDER_SIMPLE = 0x02000000,
1298 wxBORDER_RAISED = 0x04000000,
1299 wxBORDER_SUNKEN = 0x08000000,
1300 wxBORDER_DOUBLE = 0x10000000,
1301
34cbe514 1302 /* a mask to extract border style from the combination of flags */
1e6feb95 1303 wxBORDER_MASK = 0x1f200000
d597fcb7
RR
1304};
1305
0bbd4f0f
JS
1306/* This makes it easier to specify a 'normal' border for a control */
1307#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
1308#define wxDEFAULT_CONTROL_BORDER wxBORDER_SIMPLE
1309#else
1310#define wxDEFAULT_CONTROL_BORDER wxBORDER_SUNKEN
1311#endif
1312
34cbe514
RN
1313/* ---------------------------------------------------------------------------- */
1314/* Window style flags */
1315/* ---------------------------------------------------------------------------- */
d716d967 1316
c801d85f 1317/*
c801d85f
KB
1318 * Values are chosen so they can be |'ed in a bit list.
1319 * Some styles are used across more than one group,
1320 * so the values mustn't clash with others in the group.
1321 * Otherwise, numbers can be reused across groups.
1322 *
1323 * From version 1.66:
1324 * Window (cross-group) styles now take up the first half
1325 * of the flag, and control-specific styles the
1326 * second half.
d4b67f95 1327 *
c801d85f
KB
1328 */
1329
1330/*
1331 * Window (Frame/dialog/subwindow/panel item) style flags
1332 */
329e86bf
RR
1333#define wxVSCROLL 0x80000000
1334#define wxHSCROLL 0x40000000
1335#define wxCAPTION 0x20000000
c801d85f 1336
34cbe514 1337/* New styles (border styles are now in their own enum) */
1e6feb95
VZ
1338#define wxDOUBLE_BORDER wxBORDER_DOUBLE
1339#define wxSUNKEN_BORDER wxBORDER_SUNKEN
1340#define wxRAISED_BORDER wxBORDER_RAISED
1341#define wxBORDER wxBORDER_SIMPLE
1342#define wxSIMPLE_BORDER wxBORDER_SIMPLE
1343#define wxSTATIC_BORDER wxBORDER_STATIC
1344#define wxNO_BORDER wxBORDER_NONE
329e86bf 1345
34cbe514
RN
1346/* wxALWAYS_SHOW_SB: instead of hiding the scrollbar when it is not needed, */
1347/* disable it - but still show (see also wxLB_ALWAYS_SB style) */
1348/* */
1349/* NB: as this style is only supported by wxUniversal and wxMSW so far */
1e6feb95
VZ
1350#define wxALWAYS_SHOW_SB 0x00800000
1351
34cbe514
RN
1352/* Clip children when painting, which reduces flicker in e.g. frames and */
1353/* splitter windows, but can't be used in a panel where a static box must be */
1354/* 'transparent' (panel paints the background for it) */
329e86bf 1355#define wxCLIP_CHILDREN 0x00400000
1e6feb95 1356
34cbe514
RN
1357/* Note we're reusing the wxCAPTION style because we won't need captions */
1358/* for subwindows/controls */
d11bb14f 1359#define wxCLIP_SIBLINGS 0x20000000
c801d85f 1360
1e6feb95
VZ
1361#define wxTRANSPARENT_WINDOW 0x00100000
1362
34cbe514
RN
1363/* Add this style to a panel to get tab traversal working outside of dialogs */
1364/* (on by default for wxPanel, wxDialog, wxScrolledWindow) */
329e86bf 1365#define wxTAB_TRAVERSAL 0x00080000
c801d85f 1366
34cbe514
RN
1367/* Add this style if the control wants to get all keyboard messages (under */
1368/* Windows, it won't normally get the dialog navigation key events) */
329e86bf 1369#define wxWANTS_CHARS 0x00040000
9bf84618 1370
22c9005d
JS
1371/* Make window retained (Motif only, see src/generic/scrolwing.cpp)
1372 * This is non-zero only under wxMotif, to avoid a clash with wxPOPUP_WINDOW
1373 * on other platforms
1374 */
1375
1376#ifdef __WXMOTIF__
d9ea011f 1377#define wxRETAINED 0x00020000
22c9005d
JS
1378#else
1379#define wxRETAINED 0x00000000
1380#endif
329e86bf 1381#define wxBACKINGSTORE wxRETAINED
c801d85f 1382
34cbe514
RN
1383/* set this flag to create a special popup window: it will be always shown on */
1384/* top of other windows, will capture the mouse and will be dismissed when the */
1385/* mouse is clicked outside of it or if it loses focus in any other way */
1e6feb95
VZ
1386#define wxPOPUP_WINDOW 0x00020000
1387
34cbe514
RN
1388/* force a full repaint when the window is resized (instead of repainting just */
1389/* the invalidated area) */
e441e1f4
VZ
1390#define wxFULL_REPAINT_ON_RESIZE 0x00010000
1391
34cbe514
RN
1392/* obsolete: now this is the default behaviour */
1393/* */
1394/* don't invalidate the whole window (resulting in a PAINT event) when the */
1395/* window is resized (currently, makes sense for wxMSW only) */
e441e1f4 1396#define wxNO_FULL_REPAINT_ON_RESIZE 0
d80cd92a 1397
ec376c8f
VZ
1398/* A mask which can be used to filter (out) all wxWindow-specific styles.
1399 */
1400#define wxWINDOW_STYLE_MASK \
1401 (wxVSCROLL|wxHSCROLL|wxBORDER_MASK|wxALWAYS_SHOW_SB|wxCLIP_CHILDREN| \
1402 wxCLIP_SIBLINGS|wxTRANSPARENT_WINDOW|wxTAB_TRAVERSAL|wxWANTS_CHARS| \
1403 wxRETAINED|wxPOPUP_WINDOW|wxFULL_REPAINT_ON_RESIZE)
1404
d80cd92a
VZ
1405/*
1406 * Extra window style flags (use wxWS_EX prefix to make it clear that they
1407 * should be passed to wxWindow::SetExtraStyle(), not SetWindowStyle())
1408 */
1409
34cbe514
RN
1410/* by default, TransferDataTo/FromWindow() only work on direct children of the */
1411/* window (compatible behaviour), set this flag to make them recursively */
1412/* descend into all subwindows */
d80cd92a
VZ
1413#define wxWS_EX_VALIDATE_RECURSIVELY 0x00000001
1414
34cbe514
RN
1415/* wxCommandEvents and the objects of the derived classes are forwarded to the */
1416/* parent window and so on recursively by default. Using this flag for the */
1417/* given window allows to block this propagation at this window, i.e. prevent */
1418/* the events from being propagated further upwards. The dialogs have this */
1419/* flag on by default. */
e4b713a2
VZ
1420#define wxWS_EX_BLOCK_EVENTS 0x00000002
1421
34cbe514
RN
1422/* don't use this window as an implicit parent for the other windows: this must */
1423/* be used with transient windows as otherwise there is the risk of creating a */
1424/* dialog/frame with this window as a parent which would lead to a crash if the */
1425/* parent is destroyed before the child */
39cc7a0b
VZ
1426#define wxWS_EX_TRANSIENT 0x00000004
1427
34cbe514
RN
1428/* don't paint the window background, we'll assume it will */
1429/* be done by a theming engine. This is not yet used but could */
1430/* possibly be made to work in the future, at least on Windows */
85b43fbf
JS
1431#define wxWS_EX_THEMED_BACKGROUND 0x00000008
1432
34cbe514 1433/* this window should always process idle events */
e39af974
JS
1434#define wxWS_EX_PROCESS_IDLE 0x00000010
1435
34cbe514 1436/* this window should always process UI update events */
e39af974
JS
1437#define wxWS_EX_PROCESS_UI_UPDATES 0x00000020
1438
5bd78bbc
JS
1439/* Draw the window in a metal theme on Mac */
1440#define wxFRAME_EX_METAL 0x00000040
1441#define wxDIALOG_EX_METAL 0x00000040
1442
7ce6cc9b
VZ
1443/* Use this style to add a context-sensitive help to the window (currently for */
1444/* Win32 only and it doesn't work if wxMINIMIZE_BOX or wxMAXIMIZE_BOX are used) */
1445#define wxWS_EX_CONTEXTHELP 0x00000080
1446
1447/* synonyms for wxWS_EX_CONTEXTHELP for compatibility */
1448#define wxFRAME_EX_CONTEXTHELP wxWS_EX_CONTEXTHELP
1449#define wxDIALOG_EX_CONTEXTHELP wxWS_EX_CONTEXTHELP
1450
3e17bc3f 1451/* Create a window which is attachable to another top level window */
d4c25daa 1452#define wxFRAME_DRAWER 0x0020
3e17bc3f 1453
df61c009
JS
1454/*
1455 * MDI parent frame style flags
1456 * Can overlap with some of the above.
1457 */
1458
1459#define wxFRAME_NO_WINDOW_MENU 0x0100
c801d85f 1460
c801d85f 1461/*
3502e687 1462 * wxMenuBar style flags
c801d85f 1463 */
34cbe514 1464/* use native docking */
3502e687
RR
1465#define wxMB_DOCKABLE 0x0001
1466
ae53c98c
KB
1467/*
1468 * wxMenu style flags
1469 */
1470#define wxMENU_TEAROFF 0x0001
d4b67f95 1471
3502e687
RR
1472/*
1473 * Apply to all panel items
1474 */
c801d85f 1475#define wxCOLOURED 0x0800
c801d85f 1476#define wxFIXED_LENGTH 0x0400
c801d85f
KB
1477
1478/*
1479 * Styles for wxListBox
1480 */
c801d85f 1481#define wxLB_SORT 0x0010
9c331ded 1482#define wxLB_SINGLE 0x0020
c801d85f
KB
1483#define wxLB_MULTIPLE 0x0040
1484#define wxLB_EXTENDED 0x0080
34cbe514 1485/* wxLB_OWNERDRAW is Windows-only */
c801d85f 1486#define wxLB_OWNERDRAW 0x0100
9c331ded
JS
1487#define wxLB_NEEDED_SB 0x0200
1488#define wxLB_ALWAYS_SB 0x0400
c801d85f 1489#define wxLB_HSCROLL wxHSCROLL
34cbe514 1490/* always show an entire number of rows */
1e6feb95 1491#define wxLB_INT_HEIGHT 0x0800
1e6feb95 1492
8e13c1ec
WS
1493#if WXWIN_COMPATIBILITY_2_6
1494 /* deprecated synonyms */
1495 #define wxPROCESS_ENTER 0x0400 /* wxTE_PROCESS_ENTER */
1496 #define wxPASSWORD 0x0800 /* wxTE_PASSWORD */
1497#endif
c801d85f 1498
ef43e62e
VZ
1499/*
1500 * wxComboBox style flags
1501 */
1502#define wxCB_SIMPLE 0x0004
1503#define wxCB_SORT 0x0008
1504#define wxCB_READONLY 0x0010
1505#define wxCB_DROPDOWN 0x0020
ef43e62e 1506
c801d85f 1507/*
0544bc0a 1508 * wxRadioBox style flags
c801d85f 1509 */
34cbe514
RN
1510/* should we number the items from left to right or from top to bottom in a 2d */
1511/* radiobox? */
1e6feb95
VZ
1512#define wxRA_LEFTTORIGHT 0x0001
1513#define wxRA_TOPTOBOTTOM 0x0002
1514
34cbe514 1515/* New, more intuitive names to specify majorDim argument */
0544bc0a
RR
1516#define wxRA_SPECIFY_COLS wxHORIZONTAL
1517#define wxRA_SPECIFY_ROWS wxVERTICAL
1e6feb95 1518
34cbe514 1519/* Old names for compatibility */
c801d85f
KB
1520#define wxRA_HORIZONTAL wxHORIZONTAL
1521#define wxRA_VERTICAL wxVERTICAL
d79decb5 1522#define wxRA_USE_CHECKBOX 0x0010 /* alternative native subcontrols (wxPalmOS) */
9a727a3b 1523
0544bc0a
RR
1524/*
1525 * wxRadioButton style flag
1526 */
c801d85f 1527#define wxRB_GROUP 0x0004
2b5f62a0 1528#define wxRB_SINGLE 0x0008
d79decb5 1529#define wxRB_USE_CHECKBOX 0x0010 /* alternative native control (wxPalmOS) */
c801d85f 1530
c801d85f
KB
1531/*
1532 * wxScrollBar flags
1533 */
c801d85f
KB
1534#define wxSB_HORIZONTAL wxHORIZONTAL
1535#define wxSB_VERTICAL wxVERTICAL
1536
c801d85f 1537/*
dc1efb1d
JS
1538 * wxSpinButton flags.
1539 * Note that a wxSpinCtrl is sometimes defined as
1540 * a wxTextCtrl, and so the flags must be different
1541 * from wxTextCtrl's.
c801d85f 1542 */
34cbe514
RN
1543#define wxSP_HORIZONTAL wxHORIZONTAL /* 4 */
1544#define wxSP_VERTICAL wxVERTICAL /* 8 */
dc1efb1d
JS
1545#define wxSP_ARROW_KEYS 0x1000
1546#define wxSP_WRAP 0x2000
c801d85f 1547
b54e41c5
VZ
1548/*
1549 * wxTabCtrl flags
1550 */
1551#define wxTC_RIGHTJUSTIFY 0x0010
1552#define wxTC_FIXEDWIDTH 0x0020
34cbe514 1553#define wxTC_TOP 0x0000 /* default */
2b5f62a0
VZ
1554#define wxTC_LEFT 0x0020
1555#define wxTC_RIGHT 0x0040
1556#define wxTC_BOTTOM 0x0080
1e0e7f7d
VZ
1557#define wxTC_MULTILINE 0x0200 /* == wxNB_MULTILINE */
1558#define wxTC_OWNERDRAW 0x0400
b54e41c5 1559
c801d85f
KB
1560/*
1561 * wxStatusBar95 flags
1562 */
a3e7d24d 1563#define wxST_SIZEGRIP 0x0010
c801d85f 1564
185fa6bf
VZ
1565/*
1566 * wxStaticText flags
1567 */
1568#define wxST_NO_AUTORESIZE 0x0001
66bc84a9
SC
1569#define wxST_DOTS_MIDDLE 0x0002
1570#define wxST_DOTS_END 0x0004
185fa6bf 1571
1e6feb95
VZ
1572/*
1573 * wxStaticBitmap flags
1574 */
1575#define wxBI_EXPAND wxEXPAND
1576
b0351fc9
RR
1577/*
1578 * wxStaticLine flags
1579 */
329e86bf
RR
1580#define wxLI_HORIZONTAL wxHORIZONTAL
1581#define wxLI_VERTICAL wxVERTICAL
b0351fc9 1582
dabd1377 1583
c801d85f 1584/*
bac507e0 1585 * extended dialog specifiers. these values are stored in a different
329e86bf
RR
1586 * flag and thus do not overlap with other style flags. note that these
1587 * values do not correspond to the return values of the dialogs (for
bac507e0 1588 * those values, look at the wxID_XXX defines).
c801d85f 1589 */
d597fcb7 1590
34cbe514 1591/* wxCENTRE already defined as 0x00000001 */
a8141d3f 1592#define wxYES 0x00000002
d597fcb7 1593#define wxOK 0x00000004
a8141d3f
VZ
1594#define wxNO 0x00000008
1595#define wxYES_NO (wxYES | wxNO)
d597fcb7 1596#define wxCANCEL 0x00000010
a8141d3f 1597
34cbe514 1598#define wxYES_DEFAULT 0x00000000 /* has no effect (default) */
d597fcb7 1599#define wxNO_DEFAULT 0x00000080
329e86bf 1600
d597fcb7
RR
1601#define wxICON_EXCLAMATION 0x00000100
1602#define wxICON_HAND 0x00000200
ebea0891
KB
1603#define wxICON_WARNING wxICON_EXCLAMATION
1604#define wxICON_ERROR wxICON_HAND
d597fcb7
RR
1605#define wxICON_QUESTION 0x00000400
1606#define wxICON_INFORMATION 0x00000800
329e86bf
RR
1607#define wxICON_STOP wxICON_HAND
1608#define wxICON_ASTERISK wxICON_INFORMATION
d597fcb7 1609#define wxICON_MASK (0x00000100|0x00000200|0x00000400|0x00000800)
329e86bf 1610
d597fcb7
RR
1611#define wxFORWARD 0x00001000
1612#define wxBACKWARD 0x00002000
1613#define wxRESET 0x00004000
1614#define wxHELP 0x00008000
1615#define wxMORE 0x00010000
1616#define wxSETUP 0x00020000
329e86bf 1617
50c53860
JS
1618/*
1619 * Background styles. See wxWindow::SetBackgroundStyle
1620 */
1621
1622enum wxBackgroundStyle
1623{
1624 wxBG_STYLE_SYSTEM,
1625 wxBG_STYLE_COLOUR,
1626 wxBG_STYLE_CUSTOM
1627};
1628
34cbe514
RN
1629/* ---------------------------------------------------------------------------- */
1630/* standard IDs */
1631/* ---------------------------------------------------------------------------- */
329e86bf 1632
dadacffc 1633/* Standard menu IDs */
497dbbd3
VZ
1634enum
1635{
dadacffc
VZ
1636 /* no id matches this one when compared to it */
1637 wxID_NONE = -3,
497dbbd3 1638
dadacffc
VZ
1639 /* id for a separator line in the menu (invalid for normal item) */
1640 wxID_SEPARATOR = -2,
20d9661c 1641
dadacffc
VZ
1642 /* any id: means that we don't care about the id, whether when installing
1643 * an event handler or when creating a new window */
1644 wxID_ANY = -1,
1645
1646
1647 /* all predefined ids are between wxID_LOWEST and wxID_HIGHEST */
497dbbd3
VZ
1648 wxID_LOWEST = 4999,
1649
1650 wxID_OPEN,
1651 wxID_CLOSE,
1652 wxID_NEW,
1653 wxID_SAVE,
1654 wxID_SAVEAS,
1655 wxID_REVERT,
1656 wxID_EXIT,
1657 wxID_UNDO,
1658 wxID_REDO,
1659 wxID_HELP,
1660 wxID_PRINT,
1661 wxID_PRINT_SETUP,
e63f19ba 1662 wxID_PAGE_SETUP,
497dbbd3
VZ
1663 wxID_PREVIEW,
1664 wxID_ABOUT,
1665 wxID_HELP_CONTENTS,
40f51262
VZ
1666 wxID_HELP_INDEX,
1667 wxID_HELP_SEARCH,
497dbbd3
VZ
1668 wxID_HELP_COMMANDS,
1669 wxID_HELP_PROCEDURES,
1670 wxID_HELP_CONTEXT,
1671 wxID_CLOSE_ALL,
40f51262 1672 wxID_PREFERENCES,
497dbbd3 1673
ee0a94cf
RR
1674 wxID_EDIT = 5030,
1675 wxID_CUT,
497dbbd3
VZ
1676 wxID_COPY,
1677 wxID_PASTE,
1678 wxID_CLEAR,
1679 wxID_FIND,
1680 wxID_DUPLICATE,
1681 wxID_SELECTALL,
bf95a04f
JS
1682 wxID_DELETE,
1683 wxID_REPLACE,
1684 wxID_REPLACE_ALL,
1685 wxID_PROPERTIES,
1686
1687 wxID_VIEW_DETAILS,
1688 wxID_VIEW_LARGEICONS,
1689 wxID_VIEW_SMALLICONS,
1690 wxID_VIEW_LIST,
1691 wxID_VIEW_SORTDATE,
1692 wxID_VIEW_SORTNAME,
1693 wxID_VIEW_SORTSIZE,
1694 wxID_VIEW_SORTTYPE,
497dbbd3 1695
ee0a94cf
RR
1696 wxID_FILE = 5050,
1697 wxID_FILE1,
497dbbd3
VZ
1698 wxID_FILE2,
1699 wxID_FILE3,
1700 wxID_FILE4,
1701 wxID_FILE5,
1702 wxID_FILE6,
1703 wxID_FILE7,
1704 wxID_FILE8,
1705 wxID_FILE9,
1706
5f7bcb48 1707 /* Standard button and menu IDs */
497dbbd3
VZ
1708 wxID_OK = 5100,
1709 wxID_CANCEL,
1710 wxID_APPLY,
1711 wxID_YES,
1712 wxID_NO,
1713 wxID_STATIC,
1714 wxID_FORWARD,
1715 wxID_BACKWARD,
1716 wxID_DEFAULT,
1717 wxID_MORE,
1718 wxID_SETUP,
1719 wxID_RESET,
1720 wxID_CONTEXT_HELP,
1721 wxID_YESTOALL,
1722 wxID_NOTOALL,
1723 wxID_ABORT,
1724 wxID_RETRY,
1725 wxID_IGNORE,
5f7bcb48
VS
1726 wxID_ADD,
1727 wxID_REMOVE,
1728
1729 wxID_UP,
1730 wxID_DOWN,
1731 wxID_HOME,
1732 wxID_REFRESH,
1733 wxID_STOP,
1734 wxID_INDEX,
1735
1736 wxID_BOLD,
1737 wxID_ITALIC,
1738 wxID_JUSTIFY_CENTER,
1739 wxID_JUSTIFY_FILL,
1740 wxID_JUSTIFY_RIGHT,
1741 wxID_JUSTIFY_LEFT,
1742 wxID_UNDERLINE,
1743 wxID_INDENT,
1744 wxID_UNINDENT,
1745 wxID_ZOOM_100,
1746 wxID_ZOOM_FIT,
1747 wxID_ZOOM_IN,
1748 wxID_ZOOM_OUT,
1749 wxID_UNDELETE,
1750 wxID_REVERT_TO_SAVED,
497dbbd3 1751
34cbe514 1752 /* System menu IDs (used by wxUniv): */
497dbbd3
VZ
1753 wxID_SYSTEM_MENU = 5200,
1754 wxID_CLOSE_FRAME,
1755 wxID_MOVE_FRAME,
1756 wxID_RESIZE_FRAME,
1757 wxID_MAXIMIZE_FRAME,
1758 wxID_ICONIZE_FRAME,
1759 wxID_RESTORE_FRAME,
1760
34cbe514 1761 /* IDs used by generic file dialog (13 consecutive starting from this value) */
497dbbd3
VZ
1762 wxID_FILEDLGG = 5900,
1763
1764 wxID_HIGHEST = 5999
1765};
329e86bf 1766
34cbe514
RN
1767/* ---------------------------------------------------------------------------- */
1768/* other constants */
1769/* ---------------------------------------------------------------------------- */
1e6feb95 1770
34cbe514 1771/* menu and toolbar item kinds */
d65c269b
VZ
1772enum wxItemKind
1773{
546bfbea
VS
1774 wxITEM_SEPARATOR = -1,
1775 wxITEM_NORMAL,
1776 wxITEM_CHECK,
1777 wxITEM_RADIO,
1778 wxITEM_MAX
d65c269b
VZ
1779};
1780
34cbe514 1781/* hit test results */
1e6feb95
VZ
1782enum wxHitTest
1783{
1784 wxHT_NOWHERE,
1785
34cbe514 1786 /* scrollbar */
1e6feb95 1787 wxHT_SCROLLBAR_FIRST = wxHT_NOWHERE,
34cbe514
RN
1788 wxHT_SCROLLBAR_ARROW_LINE_1, /* left or upper arrow to scroll by line */
1789 wxHT_SCROLLBAR_ARROW_LINE_2, /* right or down */
1790 wxHT_SCROLLBAR_ARROW_PAGE_1, /* left or upper arrow to scroll by page */
1791 wxHT_SCROLLBAR_ARROW_PAGE_2, /* right or down */
1792 wxHT_SCROLLBAR_THUMB, /* on the thumb */
1793 wxHT_SCROLLBAR_BAR_1, /* bar to the left/above the thumb */
1794 wxHT_SCROLLBAR_BAR_2, /* bar to the right/below the thumb */
1e6feb95
VZ
1795 wxHT_SCROLLBAR_LAST,
1796
34cbe514
RN
1797 /* window */
1798 wxHT_WINDOW_OUTSIDE, /* not in this window at all */
1799 wxHT_WINDOW_INSIDE, /* in the client area */
1800 wxHT_WINDOW_VERT_SCROLLBAR, /* on the vertical scrollbar */
1801 wxHT_WINDOW_HORZ_SCROLLBAR, /* on the horizontal scrollbar */
1802 wxHT_WINDOW_CORNER, /* on the corner between 2 scrollbars */
1e6feb95
VZ
1803
1804 wxHT_MAX
1805};
1806
34cbe514
RN
1807/* ---------------------------------------------------------------------------- */
1808/* Possible SetSize flags */
1809/* ---------------------------------------------------------------------------- */
329e86bf 1810
34cbe514 1811/* Use internally-calculated width if -1 */
329e86bf 1812#define wxSIZE_AUTO_WIDTH 0x0001
34cbe514 1813/* Use internally-calculated height if -1 */
329e86bf 1814#define wxSIZE_AUTO_HEIGHT 0x0002
34cbe514 1815/* Use internally-calculated width and height if each is -1 */
329e86bf 1816#define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT)
34cbe514
RN
1817/* Ignore missing (-1) dimensions (use existing). */
1818/* For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code. */
329e86bf 1819#define wxSIZE_USE_EXISTING 0x0000
34cbe514 1820/* Allow -1 as a valid position */
329e86bf 1821#define wxSIZE_ALLOW_MINUS_ONE 0x0004
34cbe514 1822/* Don't do parent client adjustments (for implementation only) */
329e86bf 1823#define wxSIZE_NO_ADJUSTMENTS 0x0008
952f2aaa
VZ
1824/* Change the window position even if it seems to be already correct */
1825#define wxSIZE_FORCE 0x0010
952f2aaa 1826
34cbe514
RN
1827/* ---------------------------------------------------------------------------- */
1828/* GDI descriptions */
1829/* ---------------------------------------------------------------------------- */
c801d85f 1830
497dbbd3
VZ
1831enum
1832{
34cbe514 1833 /* Text font families */
497dbbd3
VZ
1834 wxDEFAULT = 70,
1835 wxDECORATIVE,
1836 wxROMAN,
1837 wxSCRIPT,
1838 wxSWISS,
1839 wxMODERN,
1840 wxTELETYPE, /* @@@@ */
1841
34cbe514 1842 /* Proportional or Fixed width fonts (not yet used) */
497dbbd3
VZ
1843 wxVARIABLE = 80,
1844 wxFIXED,
1845
1846 wxNORMAL = 90,
1847 wxLIGHT,
1848 wxBOLD,
34cbe514 1849 /* Also wxNORMAL for normal (non-italic text) */
497dbbd3
VZ
1850 wxITALIC,
1851 wxSLANT,
1852
34cbe514 1853 /* Pen styles */
497dbbd3
VZ
1854 wxSOLID = 100,
1855 wxDOT,
1856 wxLONG_DASH,
1857 wxSHORT_DASH,
1858 wxDOT_DASH,
1859 wxUSER_DASH,
1860
1861 wxTRANSPARENT,
1862
34cbe514
RN
1863 /* Brush & Pen Stippling. Note that a stippled pen cannot be dashed!! */
1864 /* Note also that stippling a Pen IS meaningfull, because a Line is */
1865 wxSTIPPLE_MASK_OPAQUE, /* mask is used for blitting monochrome using text fore and back ground colors */
1866 wxSTIPPLE_MASK, /* mask is used for masking areas in the stipple bitmap (TO DO) */
1867 /* drawn with a Pen, and without any Brush -- and it can be stippled. */
497dbbd3 1868 wxSTIPPLE = 110,
891479a2
WS
1869
1870 wxBDIAGONAL_HATCH, /* In wxWidgets < 2.6 use WX_HATCH macro */
1871 wxCROSSDIAG_HATCH, /* to verify these wx*_HATCH are in style */
1872 wxFDIAGONAL_HATCH, /* of wxBrush. In wxWidgets >= 2.6 use */
1873 wxCROSS_HATCH, /* wxBrush::IsHatch() instead. */
cb9d5bd0
WS
1874 wxHORIZONTAL_HATCH,
1875 wxVERTICAL_HATCH,
1876 wxFIRST_HATCH = wxBDIAGONAL_HATCH,
1877 wxLAST_HATCH = wxVERTICAL_HATCH,
497dbbd3
VZ
1878
1879 wxJOIN_BEVEL = 120,
1880 wxJOIN_MITER,
1881 wxJOIN_ROUND,
1882
1883 wxCAP_ROUND = 130,
1884 wxCAP_PROJECTING,
1885 wxCAP_BUTT
c801d85f
KB
1886};
1887
34cbe514 1888/* Logical ops */
3f4a0c5b 1889typedef enum
83624f79 1890{
ab9d0a8c
WS
1891 wxCLEAR, wxROP_BLACK = wxCLEAR, wxBLIT_BLACKNESS = wxCLEAR, /* 0 */
1892 wxXOR, wxROP_XORPEN = wxXOR, wxBLIT_SRCINVERT = wxXOR, /* src XOR dst */
1893 wxINVERT, wxROP_NOT = wxINVERT, wxBLIT_DSTINVERT = wxINVERT, /* NOT dst */
1894 wxOR_REVERSE, wxROP_MERGEPENNOT = wxOR_REVERSE, wxBLIT_00DD0228 = wxOR_REVERSE, /* src OR (NOT dst) */
1895 wxAND_REVERSE, wxROP_MASKPENNOT = wxAND_REVERSE, wxBLIT_SRCERASE = wxAND_REVERSE, /* src AND (NOT dst) */
1896 wxCOPY, wxROP_COPYPEN = wxCOPY, wxBLIT_SRCCOPY = wxCOPY, /* src */
1897 wxAND, wxROP_MASKPEN = wxAND, wxBLIT_SRCAND = wxAND, /* src AND dst */
1898 wxAND_INVERT, wxROP_MASKNOTPEN = wxAND_INVERT, wxBLIT_00220326 = wxAND_INVERT, /* (NOT src) AND dst */
1899 wxNO_OP, wxROP_NOP = wxNO_OP, wxBLIT_00AA0029 = wxNO_OP, /* dst */
1900 wxNOR, wxROP_NOTMERGEPEN = wxNOR, wxBLIT_NOTSRCERASE = wxNOR, /* (NOT src) AND (NOT dst) */
1901 wxEQUIV, wxROP_NOTXORPEN = wxEQUIV, wxBLIT_00990066 = wxEQUIV, /* (NOT src) XOR dst */
1902 wxSRC_INVERT, wxROP_NOTCOPYPEN = wxSRC_INVERT, wxBLIT_NOTSCRCOPY = wxSRC_INVERT, /* (NOT src) */
1903 wxOR_INVERT, wxROP_MERGENOTPEN = wxOR_INVERT, wxBLIT_MERGEPAINT = wxOR_INVERT, /* (NOT src) OR dst */
1904 wxNAND, wxROP_NOTMASKPEN = wxNAND, wxBLIT_007700E6 = wxNAND, /* (NOT src) OR (NOT dst) */
1905 wxOR, wxROP_MERGEPEN = wxOR, wxBLIT_SRCPAINT = wxOR, /* src OR dst */
1906 wxSET, wxROP_WHITE = wxSET, wxBLIT_WHITENESS = wxSET /* 1 */
c801d85f
KB
1907} form_ops_t;
1908
34cbe514 1909/* Flood styles */
497dbbd3
VZ
1910enum
1911{
1912 wxFLOOD_SURFACE = 1,
1913 wxFLOOD_BORDER
1914};
c801d85f 1915
34cbe514 1916/* Polygon filling mode */
497dbbd3
VZ
1917enum
1918{
1919 wxODDEVEN_RULE = 1,
1920 wxWINDING_RULE
1921};
c801d85f 1922
34cbe514 1923/* ToolPanel in wxFrame (VZ: unused?) */
497dbbd3
VZ
1924enum
1925{
1926 wxTOOL_TOP = 1,
1927 wxTOOL_BOTTOM,
1928 wxTOOL_LEFT,
1929 wxTOOL_RIGHT
1930};
c801d85f 1931
3103e8a9 1932/* the values of the format constants should be the same as corresponding */
34cbe514 1933/* CF_XXX constants in Windows API */
3f480da3 1934enum wxDataFormatId
e3e65dac 1935{
9e2896e5
VZ
1936 wxDF_INVALID = 0,
1937 wxDF_TEXT = 1, /* CF_TEXT */
1938 wxDF_BITMAP = 2, /* CF_BITMAP */
1939 wxDF_METAFILE = 3, /* CF_METAFILEPICT */
1940 wxDF_SYLK = 4,
1941 wxDF_DIF = 5,
1942 wxDF_TIFF = 6,
1943 wxDF_OEMTEXT = 7, /* CF_OEMTEXT */
1944 wxDF_DIB = 8, /* CF_DIB */
1945 wxDF_PALETTE = 9,
1946 wxDF_PENDATA = 10,
1947 wxDF_RIFF = 11,
1948 wxDF_WAVE = 12,
1949 wxDF_UNICODETEXT = 13,
1950 wxDF_ENHMETAFILE = 14,
1951 wxDF_FILENAME = 15, /* CF_HDROP */
1952 wxDF_LOCALE = 16,
1953 wxDF_PRIVATE = 20,
387ebd3e 1954 wxDF_HTML = 30, /* Note: does not correspond to CF_ constant */
9e2896e5 1955 wxDF_MAX
e3e65dac 1956};
c801d85f 1957
34cbe514 1958/* Virtual keycodes */
3f4a0c5b 1959enum wxKeyCode
83624f79 1960{
497dbbd3
VZ
1961 WXK_BACK = 8,
1962 WXK_TAB = 9,
1963 WXK_RETURN = 13,
1964 WXK_ESCAPE = 27,
1965 WXK_SPACE = 32,
1966 WXK_DELETE = 127,
1967
afafd942 1968 /* These are, by design, not compatible with unicode characters.
ca269f77
RN
1969 If you want to get a unicode character from a key event, use
1970 wxKeyEvent::GetUnicodeKey instead. */
ab9d0a8c 1971 WXK_START = 300,
497dbbd3
VZ
1972 WXK_LBUTTON,
1973 WXK_RBUTTON,
1974 WXK_CANCEL,
1975 WXK_MBUTTON,
1976 WXK_CLEAR,
1977 WXK_SHIFT,
1978 WXK_ALT,
1979 WXK_CONTROL,
1980 WXK_MENU,
1981 WXK_PAUSE,
1982 WXK_CAPITAL,
497dbbd3
VZ
1983 WXK_END,
1984 WXK_HOME,
1985 WXK_LEFT,
1986 WXK_UP,
1987 WXK_RIGHT,
1988 WXK_DOWN,
1989 WXK_SELECT,
1990 WXK_PRINT,
1991 WXK_EXECUTE,
1992 WXK_SNAPSHOT,
1993 WXK_INSERT,
1994 WXK_HELP,
1995 WXK_NUMPAD0,
1996 WXK_NUMPAD1,
1997 WXK_NUMPAD2,
1998 WXK_NUMPAD3,
1999 WXK_NUMPAD4,
2000 WXK_NUMPAD5,
2001 WXK_NUMPAD6,
2002 WXK_NUMPAD7,
2003 WXK_NUMPAD8,
2004 WXK_NUMPAD9,
2005 WXK_MULTIPLY,
2006 WXK_ADD,
2007 WXK_SEPARATOR,
2008 WXK_SUBTRACT,
2009 WXK_DECIMAL,
2010 WXK_DIVIDE,
2011 WXK_F1,
2012 WXK_F2,
2013 WXK_F3,
2014 WXK_F4,
2015 WXK_F5,
2016 WXK_F6,
2017 WXK_F7,
2018 WXK_F8,
2019 WXK_F9,
2020 WXK_F10,
2021 WXK_F11,
2022 WXK_F12,
2023 WXK_F13,
2024 WXK_F14,
2025 WXK_F15,
2026 WXK_F16,
2027 WXK_F17,
2028 WXK_F18,
2029 WXK_F19,
2030 WXK_F20,
2031 WXK_F21,
2032 WXK_F22,
2033 WXK_F23,
2034 WXK_F24,
2035 WXK_NUMLOCK,
2036 WXK_SCROLL,
2037 WXK_PAGEUP,
2038 WXK_PAGEDOWN,
faa94f3e 2039#if WXWIN_COMPATIBILITY_2_6
5bd24f72
RD
2040 WXK_PRIOR = WXK_PAGEUP,
2041 WXK_NEXT = WXK_PAGEDOWN,
faa94f3e 2042#endif
497dbbd3
VZ
2043
2044 WXK_NUMPAD_SPACE,
2045 WXK_NUMPAD_TAB,
2046 WXK_NUMPAD_ENTER,
2047 WXK_NUMPAD_F1,
2048 WXK_NUMPAD_F2,
2049 WXK_NUMPAD_F3,
2050 WXK_NUMPAD_F4,
2051 WXK_NUMPAD_HOME,
2052 WXK_NUMPAD_LEFT,
2053 WXK_NUMPAD_UP,
2054 WXK_NUMPAD_RIGHT,
2055 WXK_NUMPAD_DOWN,
497dbbd3 2056 WXK_NUMPAD_PAGEUP,
497dbbd3 2057 WXK_NUMPAD_PAGEDOWN,
faa94f3e 2058#if WXWIN_COMPATIBILITY_2_6
5bd24f72
RD
2059 WXK_NUMPAD_PRIOR = WXK_NUMPAD_PAGEUP,
2060 WXK_NUMPAD_NEXT = WXK_NUMPAD_PAGEDOWN,
faa94f3e 2061#endif
497dbbd3
VZ
2062 WXK_NUMPAD_END,
2063 WXK_NUMPAD_BEGIN,
2064 WXK_NUMPAD_INSERT,
2065 WXK_NUMPAD_DELETE,
2066 WXK_NUMPAD_EQUAL,
2067 WXK_NUMPAD_MULTIPLY,
2068 WXK_NUMPAD_ADD,
2069 WXK_NUMPAD_SEPARATOR,
2070 WXK_NUMPAD_SUBTRACT,
2071 WXK_NUMPAD_DECIMAL,
702c4208
VZ
2072 WXK_NUMPAD_DIVIDE,
2073
2074 WXK_WINDOWS_LEFT,
2075 WXK_WINDOWS_RIGHT,
43cfe46c 2076 WXK_WINDOWS_MENU ,
afafd942
JS
2077 WXK_COMMAND,
2078
6ca154fc 2079 /* Hardware-specific buttons */
afafd942
JS
2080 WXK_SPECIAL1 = 193,
2081 WXK_SPECIAL2,
2082 WXK_SPECIAL3,
2083 WXK_SPECIAL4,
2084 WXK_SPECIAL5,
2085 WXK_SPECIAL6,
2086 WXK_SPECIAL7,
2087 WXK_SPECIAL8,
2088 WXK_SPECIAL9,
2089 WXK_SPECIAL10,
2090 WXK_SPECIAL11,
2091 WXK_SPECIAL12,
2092 WXK_SPECIAL13,
2093 WXK_SPECIAL14,
2094 WXK_SPECIAL15,
2095 WXK_SPECIAL16,
2096 WXK_SPECIAL17,
2097 WXK_SPECIAL18,
2098 WXK_SPECIAL19,
2099 WXK_SPECIAL20
c801d85f
KB
2100};
2101
e7102772
VZ
2102/* This enum contains bit mask constants used in wxKeyEvent */
2103enum wxKeyModifier
5048c832 2104{
e7102772
VZ
2105 wxMOD_NONE = 0x0000,
2106 wxMOD_ALT = 0x0001,
2107 wxMOD_CONTROL = 0x0002,
2108 wxMOD_ALTGR = wxMOD_ALT | wxMOD_CONTROL,
2109 wxMOD_SHIFT = 0x0004,
2110 wxMOD_META = 0x0008,
2111 wxMOD_WIN = wxMOD_META,
2112#if defined(__WXMAC__) || defined(__WXCOCOA__)
2113 wxMOD_CMD = wxMOD_META,
2114#else
2115 wxMOD_CMD = wxMOD_CONTROL,
5048c832 2116#endif
e7102772
VZ
2117 wxMOD_ALL = 0xffff
2118};
5048c832 2119
34cbe514 2120/* Mapping modes (same values as used by Windows, don't change) */
497dbbd3
VZ
2121enum
2122{
2123 wxMM_TEXT = 1,
2124 wxMM_LOMETRIC,
2125 wxMM_HIMETRIC,
2126 wxMM_LOENGLISH,
2127 wxMM_HIENGLISH,
2128 wxMM_TWIPS,
2129 wxMM_ISOTROPIC,
2130 wxMM_ANISOTROPIC,
2131 wxMM_POINTS,
e4221628 2132 wxMM_METRIC
497dbbd3 2133};
e3065973 2134
83624f79 2135/* Shortcut for easier dialog-unit-to-pixel conversion */
387a3b02 2136#define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
fd71308f 2137
7bcb11d3 2138/* Paper types */
497dbbd3
VZ
2139typedef enum
2140{
34cbe514
RN
2141 wxPAPER_NONE, /* Use specific dimensions */
2142 wxPAPER_LETTER, /* Letter, 8 1/2 by 11 inches */
2143 wxPAPER_LEGAL, /* Legal, 8 1/2 by 14 inches */
2144 wxPAPER_A4, /* A4 Sheet, 210 by 297 millimeters */
2145 wxPAPER_CSHEET, /* C Sheet, 17 by 22 inches */
2146 wxPAPER_DSHEET, /* D Sheet, 22 by 34 inches */
2147 wxPAPER_ESHEET, /* E Sheet, 34 by 44 inches */
2148 wxPAPER_LETTERSMALL, /* Letter Small, 8 1/2 by 11 inches */
2149 wxPAPER_TABLOID, /* Tabloid, 11 by 17 inches */
2150 wxPAPER_LEDGER, /* Ledger, 17 by 11 inches */
2151 wxPAPER_STATEMENT, /* Statement, 5 1/2 by 8 1/2 inches */
2152 wxPAPER_EXECUTIVE, /* Executive, 7 1/4 by 10 1/2 inches */
2153 wxPAPER_A3, /* A3 sheet, 297 by 420 millimeters */
2154 wxPAPER_A4SMALL, /* A4 small sheet, 210 by 297 millimeters */
2155 wxPAPER_A5, /* A5 sheet, 148 by 210 millimeters */
2156 wxPAPER_B4, /* B4 sheet, 250 by 354 millimeters */
2157 wxPAPER_B5, /* B5 sheet, 182-by-257-millimeter paper */
2158 wxPAPER_FOLIO, /* Folio, 8-1/2-by-13-inch paper */
2159 wxPAPER_QUARTO, /* Quarto, 215-by-275-millimeter paper */
2160 wxPAPER_10X14, /* 10-by-14-inch sheet */
2161 wxPAPER_11X17, /* 11-by-17-inch sheet */
2162 wxPAPER_NOTE, /* Note, 8 1/2 by 11 inches */
2163 wxPAPER_ENV_9, /* #9 Envelope, 3 7/8 by 8 7/8 inches */
2164 wxPAPER_ENV_10, /* #10 Envelope, 4 1/8 by 9 1/2 inches */
2165 wxPAPER_ENV_11, /* #11 Envelope, 4 1/2 by 10 3/8 inches */
2166 wxPAPER_ENV_12, /* #12 Envelope, 4 3/4 by 11 inches */
2167 wxPAPER_ENV_14, /* #14 Envelope, 5 by 11 1/2 inches */
2168 wxPAPER_ENV_DL, /* DL Envelope, 110 by 220 millimeters */
2169 wxPAPER_ENV_C5, /* C5 Envelope, 162 by 229 millimeters */
2170 wxPAPER_ENV_C3, /* C3 Envelope, 324 by 458 millimeters */
2171 wxPAPER_ENV_C4, /* C4 Envelope, 229 by 324 millimeters */
2172 wxPAPER_ENV_C6, /* C6 Envelope, 114 by 162 millimeters */
2173 wxPAPER_ENV_C65, /* C65 Envelope, 114 by 229 millimeters */
2174 wxPAPER_ENV_B4, /* B4 Envelope, 250 by 353 millimeters */
2175 wxPAPER_ENV_B5, /* B5 Envelope, 176 by 250 millimeters */
2176 wxPAPER_ENV_B6, /* B6 Envelope, 176 by 125 millimeters */
2177 wxPAPER_ENV_ITALY, /* Italy Envelope, 110 by 230 millimeters */
2178 wxPAPER_ENV_MONARCH, /* Monarch Envelope, 3 7/8 by 7 1/2 inches */
2179 wxPAPER_ENV_PERSONAL, /* 6 3/4 Envelope, 3 5/8 by 6 1/2 inches */
2180 wxPAPER_FANFOLD_US, /* US Std Fanfold, 14 7/8 by 11 inches */
2181 wxPAPER_FANFOLD_STD_GERMAN, /* German Std Fanfold, 8 1/2 by 12 inches */
2182 wxPAPER_FANFOLD_LGL_GERMAN, /* German Legal Fanfold, 8 1/2 by 13 inches */
2183
2184 wxPAPER_ISO_B4, /* B4 (ISO) 250 x 353 mm */
2185 wxPAPER_JAPANESE_POSTCARD, /* Japanese Postcard 100 x 148 mm */
2186 wxPAPER_9X11, /* 9 x 11 in */
2187 wxPAPER_10X11, /* 10 x 11 in */
2188 wxPAPER_15X11, /* 15 x 11 in */
2189 wxPAPER_ENV_INVITE, /* Envelope Invite 220 x 220 mm */
2190 wxPAPER_LETTER_EXTRA, /* Letter Extra 9 \275 x 12 in */
2191 wxPAPER_LEGAL_EXTRA, /* Legal Extra 9 \275 x 15 in */
2192 wxPAPER_TABLOID_EXTRA, /* Tabloid Extra 11.69 x 18 in */
2193 wxPAPER_A4_EXTRA, /* A4 Extra 9.27 x 12.69 in */
2194 wxPAPER_LETTER_TRANSVERSE, /* Letter Transverse 8 \275 x 11 in */
2195 wxPAPER_A4_TRANSVERSE, /* A4 Transverse 210 x 297 mm */
2196 wxPAPER_LETTER_EXTRA_TRANSVERSE, /* Letter Extra Transverse 9\275 x 12 in */
2197 wxPAPER_A_PLUS, /* SuperA/SuperA/A4 227 x 356 mm */
2198 wxPAPER_B_PLUS, /* SuperB/SuperB/A3 305 x 487 mm */
2199 wxPAPER_LETTER_PLUS, /* Letter Plus 8.5 x 12.69 in */
2200 wxPAPER_A4_PLUS, /* A4 Plus 210 x 330 mm */
2201 wxPAPER_A5_TRANSVERSE, /* A5 Transverse 148 x 210 mm */
2202 wxPAPER_B5_TRANSVERSE, /* B5 (JIS) Transverse 182 x 257 mm */
2203 wxPAPER_A3_EXTRA, /* A3 Extra 322 x 445 mm */
2204 wxPAPER_A5_EXTRA, /* A5 Extra 174 x 235 mm */
2205 wxPAPER_B5_EXTRA, /* B5 (ISO) Extra 201 x 276 mm */
2206 wxPAPER_A2, /* A2 420 x 594 mm */
2207 wxPAPER_A3_TRANSVERSE, /* A3 Transverse 297 x 420 mm */
21c358b2
JS
2208 wxPAPER_A3_EXTRA_TRANSVERSE, /* A3 Extra Transverse 322 x 445 mm */
2209
2210 wxPAPER_DBL_JAPANESE_POSTCARD,/* Japanese Double Postcard 200 x 148 mm */
2211 wxPAPER_A6, /* A6 105 x 148 mm */
2212 wxPAPER_JENV_KAKU2, /* Japanese Envelope Kaku #2 */
2213 wxPAPER_JENV_KAKU3, /* Japanese Envelope Kaku #3 */
2214 wxPAPER_JENV_CHOU3, /* Japanese Envelope Chou #3 */
2215 wxPAPER_JENV_CHOU4, /* Japanese Envelope Chou #4 */
2216 wxPAPER_LETTER_ROTATED, /* Letter Rotated 11 x 8 1/2 in */
2217 wxPAPER_A3_ROTATED, /* A3 Rotated 420 x 297 mm */
2218 wxPAPER_A4_ROTATED, /* A4 Rotated 297 x 210 mm */
2219 wxPAPER_A5_ROTATED, /* A5 Rotated 210 x 148 mm */
2220 wxPAPER_B4_JIS_ROTATED, /* B4 (JIS) Rotated 364 x 257 mm */
2221 wxPAPER_B5_JIS_ROTATED, /* B5 (JIS) Rotated 257 x 182 mm */
2222 wxPAPER_JAPANESE_POSTCARD_ROTATED,/* Japanese Postcard Rotated 148 x 100 mm */
2223 wxPAPER_DBL_JAPANESE_POSTCARD_ROTATED,/* Double Japanese Postcard Rotated 148 x 200 mm */
2224 wxPAPER_A6_ROTATED, /* A6 Rotated 148 x 105 mm */
2225 wxPAPER_JENV_KAKU2_ROTATED, /* Japanese Envelope Kaku #2 Rotated */
2226 wxPAPER_JENV_KAKU3_ROTATED, /* Japanese Envelope Kaku #3 Rotated */
2227 wxPAPER_JENV_CHOU3_ROTATED, /* Japanese Envelope Chou #3 Rotated */
2228 wxPAPER_JENV_CHOU4_ROTATED, /* Japanese Envelope Chou #4 Rotated */
2229 wxPAPER_B6_JIS, /* B6 (JIS) 128 x 182 mm */
2230 wxPAPER_B6_JIS_ROTATED, /* B6 (JIS) Rotated 182 x 128 mm */
2231 wxPAPER_12X11, /* 12 x 11 in */
2232 wxPAPER_JENV_YOU4, /* Japanese Envelope You #4 */
2233 wxPAPER_JENV_YOU4_ROTATED, /* Japanese Envelope You #4 Rotated */
2234 wxPAPER_P16K, /* PRC 16K 146 x 215 mm */
2235 wxPAPER_P32K, /* PRC 32K 97 x 151 mm */
2236 wxPAPER_P32KBIG, /* PRC 32K(Big) 97 x 151 mm */
2237 wxPAPER_PENV_1, /* PRC Envelope #1 102 x 165 mm */
2238 wxPAPER_PENV_2, /* PRC Envelope #2 102 x 176 mm */
2239 wxPAPER_PENV_3, /* PRC Envelope #3 125 x 176 mm */
2240 wxPAPER_PENV_4, /* PRC Envelope #4 110 x 208 mm */
2241 wxPAPER_PENV_5, /* PRC Envelope #5 110 x 220 mm */
2242 wxPAPER_PENV_6, /* PRC Envelope #6 120 x 230 mm */
2243 wxPAPER_PENV_7, /* PRC Envelope #7 160 x 230 mm */
2244 wxPAPER_PENV_8, /* PRC Envelope #8 120 x 309 mm */
2245 wxPAPER_PENV_9, /* PRC Envelope #9 229 x 324 mm */
2246 wxPAPER_PENV_10, /* PRC Envelope #10 324 x 458 mm */
2247 wxPAPER_P16K_ROTATED, /* PRC 16K Rotated */
2248 wxPAPER_P32K_ROTATED, /* PRC 32K Rotated */
2249 wxPAPER_P32KBIG_ROTATED, /* PRC 32K(Big) Rotated */
2250 wxPAPER_PENV_1_ROTATED, /* PRC Envelope #1 Rotated 165 x 102 mm */
2251 wxPAPER_PENV_2_ROTATED, /* PRC Envelope #2 Rotated 176 x 102 mm */
2252 wxPAPER_PENV_3_ROTATED, /* PRC Envelope #3 Rotated 176 x 125 mm */
2253 wxPAPER_PENV_4_ROTATED, /* PRC Envelope #4 Rotated 208 x 110 mm */
2254 wxPAPER_PENV_5_ROTATED, /* PRC Envelope #5 Rotated 220 x 110 mm */
2255 wxPAPER_PENV_6_ROTATED, /* PRC Envelope #6 Rotated 230 x 120 mm */
2256 wxPAPER_PENV_7_ROTATED, /* PRC Envelope #7 Rotated 230 x 160 mm */
2257 wxPAPER_PENV_8_ROTATED, /* PRC Envelope #8 Rotated 309 x 120 mm */
2258 wxPAPER_PENV_9_ROTATED, /* PRC Envelope #9 Rotated 324 x 229 mm */
2259 wxPAPER_PENV_10_ROTATED /* PRC Envelope #10 Rotated 458 x 324 m */
497dbbd3 2260} wxPaperSize;
7bcb11d3
JS
2261
2262/* Printing orientation */
2263#ifndef wxPORTRAIT
2264#define wxPORTRAIT 1
2265#define wxLANDSCAPE 2
2266#endif
2267
2268/* Duplex printing modes
2269 */
2270
497dbbd3
VZ
2271enum wxDuplexMode
2272{
34cbe514 2273 wxDUPLEX_SIMPLEX, /* Non-duplex */
7bcb11d3
JS
2274 wxDUPLEX_HORIZONTAL,
2275 wxDUPLEX_VERTICAL
497dbbd3 2276};
7bcb11d3
JS
2277
2278/* Print quality.
2279 */
2280
2281#define wxPRINT_QUALITY_HIGH -1
2282#define wxPRINT_QUALITY_MEDIUM -2
2283#define wxPRINT_QUALITY_LOW -3
2284#define wxPRINT_QUALITY_DRAFT -4
2285
2286typedef int wxPrintQuality;
2287
2288/* Print mode (currently PostScript only)
2289 */
2290
497dbbd3
VZ
2291enum wxPrintMode
2292{
7bcb11d3 2293 wxPRINT_MODE_NONE = 0,
34cbe514
RN
2294 wxPRINT_MODE_PREVIEW = 1, /* Preview in external application */
2295 wxPRINT_MODE_FILE = 2, /* Print to file */
244e5e34
VZ
2296 wxPRINT_MODE_PRINTER = 3, /* Send to printer */
2297 wxPRINT_MODE_STREAM = 4 /* Send postscript data into a stream */
497dbbd3 2298};
7bcb11d3 2299
34cbe514
RN
2300/* ---------------------------------------------------------------------------- */
2301/* UpdateWindowUI flags */
2302/* ---------------------------------------------------------------------------- */
e39af974
JS
2303
2304enum wxUpdateUI
2305{
2306 wxUPDATE_UI_NONE = 0x0000,
2307 wxUPDATE_UI_RECURSE = 0x0001,
34cbe514 2308 wxUPDATE_UI_FROMIDLE = 0x0002 /* Invoked from On(Internal)Idle */
e39af974
JS
2309};
2310
34cbe514
RN
2311/* ---------------------------------------------------------------------------- */
2312/* miscellaneous */
2313/* ---------------------------------------------------------------------------- */
7826e2dd 2314
34cbe514 2315/* define this macro if font handling is done using the X font names */
db16cab4 2316#if (defined(__WXGTK__) && !defined(__WXGTK20__)) || defined(__X__)
7826e2dd
VZ
2317 #define _WX_X_FONTLIKE
2318#endif
2319
34cbe514 2320/* macro to specify "All Files" on different platforms */
60e2e6c0 2321#if defined(__WXMSW__) || defined(__WXPM__)
2b5f62a0 2322# define wxALL_FILES_PATTERN wxT("*.*")
01a46793 2323# define wxALL_FILES gettext_noop("All files (*.*)|*.*")
2c41c440 2324#else
2b5f62a0 2325# define wxALL_FILES_PATTERN wxT("*")
01a46793 2326# define wxALL_FILES gettext_noop("All files (*)|*")
2c41c440 2327#endif
7826e2dd 2328
8c02a70d 2329#if defined(__CYGWIN__) && defined(__WXMSW__)
9e07d399 2330# if wxUSE_STL || defined(wxUSE_STD_STRING)
17fce800
VZ
2331 /*
2332 NASTY HACK because the gethostname in sys/unistd.h which the gnu
2333 stl includes and wx builds with by default clash with each other
2334 (windows version 2nd param is int, sys/unistd.h version is unsigned
532d575b 2335 int).
17fce800 2336 */
9e07d399
RN
2337# define gethostname gethostnameHACK
2338# include <unistd.h>
2339# undef gethostname
2340# endif
1446dfdb 2341#endif
9e07d399 2342
34cbe514 2343/* --------------------------------------------------------------------------- */
77ffb593 2344/* macros that enable wxWidgets apps to be compiled in absence of the */
34cbe514
RN
2345/* sytem headers, although some platform specific types are used in the */
2346/* platform specific (implementation) parts of the headers */
2347/* --------------------------------------------------------------------------- */
7bcb11d3 2348
519cb848
SC
2349#ifdef __WXMAC__
2350
34a336ad
SC
2351#define WX_OPAQUE_TYPE( name ) struct wxOpaque##name
2352
f2c16a0b 2353typedef unsigned char WXCOLORREF[6];
20b69855 2354typedef void* WXCGIMAGEREF;
f2c16a0b 2355typedef void* WXHBITMAP;
8fb37472
VZ
2356typedef void* WXHCURSOR;
2357typedef void* WXHRGN;
2358typedef void* WXRECTPTR;
2359typedef void* WXPOINTPTR;
2360typedef void* WXHWND;
2361typedef void* WXEVENTREF;
2362typedef void* WXEVENTHANDLERREF;
2363typedef void* WXEVENTHANDLERCALLREF;
2364typedef void* WXAPPLEEVENTREF;
2365typedef void* WXHDC;
2366typedef void* WXHMENU;
f2c16a0b
SC
2367typedef unsigned int WXUINT;
2368typedef unsigned long WXDWORD;
2369typedef unsigned short WXWORD;
2370
20b69855
SC
2371typedef WX_OPAQUE_TYPE(CIconHandle ) * WXHICON ;
2372typedef WX_OPAQUE_TYPE(PicHandle ) * WXHMETAFILE ;
2373
34a336ad 2374
d4c25daa
WS
2375/* typedef void* WXWidget; */
2376/* typedef void* WXWindow; */
34a336ad
SC
2377typedef WX_OPAQUE_TYPE(ControlRef ) * WXWidget ;
2378typedef WX_OPAQUE_TYPE(WindowRef) * WXWindow ;
8fb37472 2379typedef void* WXDisplay;
4f5b1fc4
GD
2380
2381/* typedef WindowPtr WXHWND; */
2382/* typedef Handle WXHANDLE; */
2383/* typedef CIconHandle WXHICON; */
2384/* typedef unsigned long WXHFONT; */
2385/* typedef MenuHandle WXHMENU; */
34cbe514
RN
2386/* typedef unsigned long WXHPEN; */
2387/* typedef unsigned long WXHBRUSH; */
2388/* typedef unsigned long WXHPALETTE; */
4f5b1fc4
GD
2389/* typedef CursHandle WXHCURSOR; */
2390/* typedef RgnHandle WXHRGN; */
34cbe514
RN
2391/* typedef unsigned long WXHACCEL; */
2392/* typedef unsigned long WXHINSTANCE; */
2393/* typedef unsigned long WXHIMAGELIST; */
2394/* typedef unsigned long WXHGLOBAL; */
4f5b1fc4 2395/* typedef GrafPtr WXHDC; */
34cbe514
RN
2396/* typedef unsigned int WXWPARAM; */
2397/* typedef long WXLPARAM; */
2398/* typedef void * WXRGNDATA; */
2399/* typedef void * WXMSG; */
2400/* typedef unsigned long WXHCONV; */
2401/* typedef unsigned long WXHKEY; */
2402/* typedef void * WXDRAWITEMSTRUCT; */
2403/* typedef void * WXMEASUREITEMSTRUCT; */
2404/* typedef void * WXLPCREATESTRUCT; */
4f5b1fc4
GD
2405/* typedef int (*WXFARPROC)(); */
2406
2407/* typedef WindowPtr WXWindow; */
2408/* typedef ControlHandle WXWidget; */
519cb848 2409
519cb848
SC
2410#endif
2411
43225e09
DE
2412#ifdef __WXCOCOA__
2413
34cbe514 2414/* NOTE: This ought to work with other compilers too, but I'm being cautious */
3529fcc9 2415#if (defined(__GNUC__) && defined(__APPLE__)) || defined(__MWERKS__)
6444e22d
DE
2416/* It's desirable to have type safety for Objective-C(++) code as it does
2417at least catch typos of method names among other things. However, it
2418is not possible to declare an Objective-C class from plain old C or C++
2419code. Furthermore, because of C++ name mangling, the type name must
2420be the same for both C++ and Objective-C++ code. Therefore, we define
2421what should be a pointer to an Objective-C class as a pointer to a plain
2422old C struct with the same name. Unfortunately, because the compiler
2423does not see a struct as an Objective-C class we cannot declare it
2424as a struct in Objective-C(++) mode.
2425*/
2426#if defined(__OBJC__)
2427#define DECLARE_WXCOCOA_OBJC_CLASS(klass) \
2428@class klass; \
2429typedef klass *WX_##klass
34cbe514 2430#else /* not defined(__OBJC__) */
6444e22d
DE
2431#define DECLARE_WXCOCOA_OBJC_CLASS(klass) \
2432typedef struct klass *WX_##klass
34cbe514 2433#endif /* defined(__OBJC__) */
6444e22d 2434
34cbe514 2435#else /* not Apple's GNU or CodeWarrior */
6444e22d 2436#warning "Objective-C types will not be checked by the compiler."
34cbe514
RN
2437/* NOTE: typedef struct objc_object *id; */
2438/* IOW, we're declaring these using the id type without using that name, */
77ffb593
JS
2439/* since "id" is used extensively not only within wxWidgets itself, but */
2440/* also in wxWidgets application code. The following works fine when */
34cbe514 2441/* compiling C(++) code, and works without typesafety for Obj-C(++) code */
7875262d
DE
2442#define DECLARE_WXCOCOA_OBJC_CLASS(klass) \
2443typedef struct objc_object *WX_##klass
43225e09 2444
34cbe514 2445#endif /* (defined(__GNUC__) && defined(__APPLE__)) || defined(__MWERKS__) */
6444e22d 2446
43225e09 2447DECLARE_WXCOCOA_OBJC_CLASS(NSApplication);
c10ec9f5 2448DECLARE_WXCOCOA_OBJC_CLASS(NSBitmapImageRep);
43225e09
DE
2449DECLARE_WXCOCOA_OBJC_CLASS(NSBox);
2450DECLARE_WXCOCOA_OBJC_CLASS(NSButton);
d9b4ddf2 2451DECLARE_WXCOCOA_OBJC_CLASS(NSColor);
dcb68102 2452DECLARE_WXCOCOA_OBJC_CLASS(NSColorPanel);
43225e09 2453DECLARE_WXCOCOA_OBJC_CLASS(NSControl);
dcb68102 2454DECLARE_WXCOCOA_OBJC_CLASS(NSCursor);
b67d3706 2455DECLARE_WXCOCOA_OBJC_CLASS(NSEvent);
dcb68102 2456DECLARE_WXCOCOA_OBJC_CLASS(NSFontPanel);
69f2115d 2457DECLARE_WXCOCOA_OBJC_CLASS(NSImage);
82de126c 2458DECLARE_WXCOCOA_OBJC_CLASS(NSLayoutManager);
43225e09 2459DECLARE_WXCOCOA_OBJC_CLASS(NSMenu);
dcb68102 2460DECLARE_WXCOCOA_OBJC_CLASS(NSMenuExtra);
43225e09 2461DECLARE_WXCOCOA_OBJC_CLASS(NSMenuItem);
03fc8e97 2462DECLARE_WXCOCOA_OBJC_CLASS(NSMutableArray);
3099646e 2463DECLARE_WXCOCOA_OBJC_CLASS(NSNotification);
dcb68102 2464DECLARE_WXCOCOA_OBJC_CLASS(NSObject);
43225e09 2465DECLARE_WXCOCOA_OBJC_CLASS(NSPanel);
d25aa543 2466DECLARE_WXCOCOA_OBJC_CLASS(NSScrollView);
dcb68102
RN
2467DECLARE_WXCOCOA_OBJC_CLASS(NSSound);
2468DECLARE_WXCOCOA_OBJC_CLASS(NSStatusItem);
03fc8e97 2469DECLARE_WXCOCOA_OBJC_CLASS(NSTableColumn);
43225e09 2470DECLARE_WXCOCOA_OBJC_CLASS(NSTableView);
82de126c 2471DECLARE_WXCOCOA_OBJC_CLASS(NSTextContainer);
43225e09 2472DECLARE_WXCOCOA_OBJC_CLASS(NSTextField);
82de126c 2473DECLARE_WXCOCOA_OBJC_CLASS(NSTextStorage);
c818fe66 2474DECLARE_WXCOCOA_OBJC_CLASS(NSThread);
43225e09
DE
2475DECLARE_WXCOCOA_OBJC_CLASS(NSWindow);
2476DECLARE_WXCOCOA_OBJC_CLASS(NSView);
77ffb593 2477typedef WX_NSView WXWidget; /* wxWidgets BASE definition */
34cbe514 2478#endif /* __WXCOCOA__ */
43225e09 2479
324eeecb
WS
2480#if defined(__WXPALMOS__)
2481
20bc5ad8 2482typedef void * WXHWND;
324eeecb
WS
2483typedef void * WXHANDLE;
2484typedef void * WXHICON;
2485typedef void * WXHFONT;
2486typedef void * WXHMENU;
2487typedef void * WXHPEN;
2488typedef void * WXHBRUSH;
2489typedef void * WXHPALETTE;
2490typedef void * WXHCURSOR;
2491typedef void * WXHRGN;
2492typedef void * WXHACCEL;
2493typedef void * WXHINSTANCE;
2494typedef void * WXHBITMAP;
2495typedef void * WXHIMAGELIST;
2496typedef void * WXHGLOBAL;
2497typedef void * WXHDC;
2498typedef unsigned int WXUINT;
2499typedef unsigned long WXDWORD;
2500typedef unsigned short WXWORD;
2501
2502typedef unsigned long WXCOLORREF;
2503typedef struct tagMSG WXMSG;
2504
20bc5ad8 2505typedef WXHWND WXWINHANDLE; /* WinHandle of PalmOS */
324eeecb
WS
2506typedef WXWINHANDLE WXWidget;
2507
20bc5ad8
WS
2508typedef void * WXFORMPTR;
2509typedef void * WXEVENTPTR;
2510typedef void * WXRECTANGLEPTR;
2511
324eeecb
WS
2512#endif /* __WXPALMOS__ */
2513
2514
532d575b
WS
2515/* ABX: check __WIN32__ instead of __WXMSW__ for the same MSWBase in any Win32 port */
2516#if defined(__WIN32__)
f6bcfd97 2517
34cbe514 2518/* the keywords needed for WinMain() declaration */
3a5bcc4d 2519#ifndef WXFAR
f6bcfd97 2520# define WXFAR
3a5bcc4d 2521#endif
f6bcfd97 2522
ddefbe7f 2523/* Stand-ins for Windows types to avoid #including all of windows.h */
c140b7e7
JS
2524typedef void * WXHWND;
2525typedef void * WXHANDLE;
2526typedef void * WXHICON;
2527typedef void * WXHFONT;
2528typedef void * WXHMENU;
2529typedef void * WXHPEN;
2530typedef void * WXHBRUSH;
2531typedef void * WXHPALETTE;
2532typedef void * WXHCURSOR;
2533typedef void * WXHRGN;
2f059e30 2534typedef void * WXRECTPTR;
c140b7e7 2535typedef void * WXHACCEL;
f6bcfd97 2536typedef void WXFAR * WXHINSTANCE;
c140b7e7
JS
2537typedef void * WXHBITMAP;
2538typedef void * WXHIMAGELIST;
2539typedef void * WXHGLOBAL;
2540typedef void * WXHDC;
c801d85f
KB
2541typedef unsigned int WXUINT;
2542typedef unsigned long WXDWORD;
2543typedef unsigned short WXWORD;
4f89dbc4 2544
c801d85f 2545typedef unsigned long WXCOLORREF;
c801d85f 2546typedef void * WXRGNDATA;
2cc1424d 2547typedef struct tagMSG WXMSG;
c140b7e7
JS
2548typedef void * WXHCONV;
2549typedef void * WXHKEY;
2550typedef void * WXHTREEITEM;
a23fd0e1 2551
c801d85f
KB
2552typedef void * WXDRAWITEMSTRUCT;
2553typedef void * WXMEASUREITEMSTRUCT;
2554typedef void * WXLPCREATESTRUCT;
a23fd0e1 2555
4f89dbc4
RL
2556typedef WXHWND WXWidget;
2557
c140b7e7
JS
2558#ifdef __WIN64__
2559typedef unsigned __int64 WXWPARAM;
2560typedef __int64 WXLPARAM;
2561typedef __int64 WXLRESULT;
2562#else
4f89dbc4
RL
2563typedef unsigned int WXWPARAM;
2564typedef long WXLPARAM;
c140b7e7
JS
2565typedef long WXLRESULT;
2566#endif
4f89dbc4 2567
532d575b 2568#if defined(__GNUWIN32__) || defined(__WXMICROWIN__)
4f89dbc4
RL
2569typedef int (*WXFARPROC)();
2570#else
2571typedef int (__stdcall *WXFARPROC)();
2572#endif
532d575b 2573#endif /* __WIN32__ */
4f89dbc4
RL
2574
2575
55034339
WS
2576#if defined(__OS2__)
2577typedef unsigned long DWORD;
2578typedef unsigned short WORD;
2579#endif
2580
bd3b171d 2581#if defined(__WXPM__) || defined(__EMX__)
ddefbe7f
SN
2582#ifdef __WXPM__
2583/* Stand-ins for OS/2 types, to avoid #including all of os2.h */
2584typedef unsigned long WXHWND;
2585typedef unsigned long WXHANDLE;
2586typedef unsigned long WXHICON;
2587typedef unsigned long WXHFONT;
2588typedef unsigned long WXHMENU;
2589typedef unsigned long WXHPEN;
2590typedef unsigned long WXHBRUSH;
2591typedef unsigned long WXHPALETTE;
2592typedef unsigned long WXHCURSOR;
2593typedef unsigned long WXHRGN;
2594typedef unsigned long WXHACCEL;
2595typedef unsigned long WXHBITMAP;
2596typedef unsigned long WXHDC;
2597typedef unsigned int WXUINT;
2598typedef unsigned long WXDWORD;
2599typedef unsigned short WXWORD;
2600
2601typedef unsigned long WXCOLORREF;
2602typedef void * WXMSG;
2603typedef unsigned long WXHTREEITEM;
2604
2605typedef void * WXDRAWITEMSTRUCT;
2606typedef void * WXMEASUREITEMSTRUCT;
2607typedef void * WXLPCREATESTRUCT;
2608
2609typedef WXHWND WXWidget;
2610#endif
0fe5619d
SN
2611#ifdef __EMX__
2612/* Need a well-known type for WXFARPROC
2613 below. MPARAM is typedef'ed too late. */
2614#define WXWPARAM void *
2615#define WXLPARAM void *
2616#else
4f89dbc4
RL
2617#define WXWPARAM MPARAM
2618#define WXLPARAM MPARAM
0fe5619d 2619#endif
4f89dbc4
RL
2620#define RECT RECTL
2621#define LOGFONT FATTRS
2622#define LOWORD SHORT1FROMMP
2623#define HIWORD SHORT2FROMMP
2624
54da4255
DW
2625typedef unsigned long WXMPARAM;
2626typedef unsigned long WXMSGID;
2627typedef void* WXRESULT;
34cbe514
RN
2628/* typedef int (*WXFARPROC)(); */
2629/* some windows handles not defined by PM */
54da4255
DW
2630typedef unsigned long HANDLE;
2631typedef unsigned long HICON;
2632typedef unsigned long HFONT;
2633typedef unsigned long HMENU;
2634typedef unsigned long HPEN;
2635typedef unsigned long HBRUSH;
2636typedef unsigned long HPALETTE;
2637typedef unsigned long HCURSOR;
2638typedef unsigned long HINSTANCE;
2639typedef unsigned long HIMAGELIST;
2640typedef unsigned long HGLOBAL;
34cbe514 2641#endif /* WXPM || EMX */
43543d98 2642
bd3b171d 2643#if defined (__WXPM__)
34cbe514 2644/* WIN32 graphics types for OS/2 GPI */
43543d98 2645
34cbe514 2646/* RGB under OS2 is more like a PALETTEENTRY struct under Windows so we need a real RGB def */
19193a2c 2647#define OS2RGB(r,g,b) ((DWORD)((unsigned char)(b) | ((unsigned char)(g) << 8)) | ((unsigned char)(r) << 16))
43543d98
DW
2648
2649typedef unsigned long COLORREF;
28206ce8
SN
2650#define GetRValue(rgb) ((unsigned char)((rgb) >> 16))
2651#define GetGValue(rgb) ((unsigned char)(((unsigned short)(rgb)) >> 8))
2652#define GetBValue(rgb) ((unsigned char)(rgb))
43543d98
DW
2653#define PALETTEINDEX(i) ((COLORREF)(0x01000000 | (DWORD)(WORD)(i)))
2654#define PALETTERGB(r,g,b) (0x02000000 | OS2RGB(r,g,b))
34cbe514 2655/* OS2's RGB/RGB2 is backwards from this */
43543d98
DW
2656typedef struct tagPALETTEENTRY
2657{
2658 char bRed;
2659 char bGreen;
2660 char bBlue;
2661 char bFlags;
2662} PALETTEENTRY;
2663typedef struct tagLOGPALETTE
2664{
2665 WORD palVersion;
2666 WORD palNumentries;
2667 WORD PALETTEENTRY[1];
2668} LOGPALETTE;
54da4255 2669
4f89dbc4 2670#if (defined(__VISAGECPP__) && (__IBMCPP__ < 400)) || defined (__WATCOMC__)
34cbe514 2671 /* VA 3.0 for some reason needs base data types when typedefing a proc proto??? */
4f89dbc4 2672typedef void* (_System *WXFARPROC)(unsigned long, unsigned long, void*, void*);
1e6d9499 2673#else
463b12b8 2674#if defined(__EMX__) && !defined(_System)
0fe5619d
SN
2675#define _System
2676#endif
4f89dbc4 2677typedef WXRESULT (_System *WXFARPROC)(WXHWND, WXMSGID, WXWPARAM, WXLPARAM);
14b72bf5 2678#endif
c801d85f 2679
34cbe514 2680#endif /* __WXPM__ */
8fb3a512 2681
c801d85f 2682
83df96d6 2683#if defined(__WXMOTIF__) || defined(__WXX11__)
83624f79 2684/* Stand-ins for X/Xt/Motif types */
589f0e3e
JS
2685typedef void* WXWindow;
2686typedef void* WXWidget;
2687typedef void* WXAppContext;
46ccb510 2688typedef void* WXColormap;
3cd0b8c5 2689typedef void* WXColor;
589f0e3e
JS
2690typedef void WXDisplay;
2691typedef void WXEvent;
46ccb510 2692typedef void* WXCursor;
50414e24 2693typedef void* WXPixmap;
dfc54541
JS
2694typedef void* WXFontStructPtr;
2695typedef void* WXGC;
2696typedef void* WXRegion;
e97f20a0 2697typedef void* WXFont;
f97c9854 2698typedef void* WXImage;
f97c9854 2699typedef void* WXFontList;
996994c7 2700typedef void* WXFontSet;
da494b40
MB
2701typedef void* WXRendition;
2702typedef void* WXRenderTable;
2703typedef void* WXFontType; /* either a XmFontList or XmRenderTable */
2704typedef void* WXString;
da175b2c
RR
2705
2706typedef unsigned long Atom; /* this might fail on a few architectures */
3e0071d9 2707typedef long WXPixel; /* safety catch in src/motif/colour.cpp */
da175b2c 2708
34cbe514 2709#endif /* Motif */
589f0e3e 2710
83624f79 2711#ifdef __WXGTK__
9e691f46 2712
83624f79 2713/* Stand-ins for GLIB types */
f6bcfd97
BP
2714typedef char gchar;
2715typedef signed char gint8;
83624f79
RR
2716typedef int gint;
2717typedef unsigned guint;
2718typedef unsigned long gulong;
2719typedef void* gpointer;
953704c1 2720typedef struct _GSList GSList;
83624f79
RR
2721
2722/* Stand-ins for GDK types */
83624f79
RR
2723typedef struct _GdkColor GdkColor;
2724typedef struct _GdkColormap GdkColormap;
2725typedef struct _GdkFont GdkFont;
2726typedef struct _GdkGC GdkGC;
005f5d18 2727typedef struct _GdkVisual GdkVisual;
9e691f46 2728
10ca1c14 2729#ifdef __WXGTK20__
9e691f46 2730typedef struct _GdkAtom *GdkAtom;
4f89dbc4
RL
2731typedef struct _GdkDrawable GdkWindow;
2732typedef struct _GdkDrawable GdkBitmap;
2733typedef struct _GdkDrawable GdkPixmap;
34cbe514 2734#else /* GTK+ 1.2 */
9e691f46 2735typedef gulong GdkAtom;
4f89dbc4
RL
2736typedef struct _GdkWindow GdkWindow;
2737typedef struct _GdkWindow GdkBitmap;
2738typedef struct _GdkWindow GdkPixmap;
34cbe514 2739#endif /* GTK+ 1.2/2.0 */
9e691f46 2740
83624f79
RR
2741typedef struct _GdkCursor GdkCursor;
2742typedef struct _GdkRegion GdkRegion;
8a126fcc 2743typedef struct _GdkDragContext GdkDragContext;
9e691f46 2744
63081513
RR
2745#ifdef HAVE_XIM
2746typedef struct _GdkIC GdkIC;
2747typedef struct _GdkICAttr GdkICAttr;
2748#endif
83624f79
RR
2749
2750/* Stand-ins for GTK types */
8a126fcc 2751typedef struct _GtkWidget GtkWidget;
f40fdaa3 2752typedef struct _GtkRcStyle GtkRcStyle;
8a126fcc
RR
2753typedef struct _GtkAdjustment GtkAdjustment;
2754typedef struct _GtkList GtkList;
2755typedef struct _GtkToolbar GtkToolbar;
2756typedef struct _GtkTooltips GtkTooltips;
2757typedef struct _GtkNotebook GtkNotebook;
2758typedef struct _GtkNotebookPage GtkNotebookPage;
2759typedef struct _GtkAccelGroup GtkAccelGroup;
f608bc67
VZ
2760typedef struct _GtkItemFactory GtkItemFactory;
2761typedef struct _GtkSelectionData GtkSelectionData;
41b81aed 2762typedef struct _GtkTextBuffer GtkTextBuffer;
add7cadd 2763typedef struct _GtkRange GtkRange;
ad5c34f3 2764
f03fc89f 2765typedef GtkWidget *WXWidget;
e6ae7330
OK
2766
2767#ifndef __WXGTK20__
2768#define GTK_OBJECT_GET_CLASS(object) (GTK_OBJECT(object)->klass)
ff67d586 2769#define GTK_CLASS_TYPE(klass) ((klass)->type)
e6ae7330
OK
2770#endif
2771
34cbe514 2772#endif /* __WXGTK__ */
2b5f62a0
VZ
2773
2774#if defined(__WXGTK20__) || (defined(__WXX11__) && wxUSE_UNICODE)
2775#define wxUSE_PANGO 1
2776#else
2777#define wxUSE_PANGO 0
2778#endif
2779
2780#if wxUSE_PANGO
e6ae7330
OK
2781/* Stand-ins for Pango types */
2782typedef struct _PangoContext PangoContext;
2783typedef struct _PangoLayout PangoLayout;
2784typedef struct _PangoFontDescription PangoFontDescription;
2b5f62a0 2785#endif
ad5c34f3 2786
1e6feb95 2787#ifdef __WXMGL__
a9a8c02f 2788typedef struct window_t *WXWidget;
34cbe514 2789#endif /* MGL */
1e6feb95 2790
b3c86150
VS
2791#ifdef __WXDFB__
2792/* DirectFB doesn't have the concept of non-TLW window, so use
2793 something arbitrary */
2794typedef const void* WXWidget;
2795#endif /* DFB */
2796
34cbe514 2797/* This is required because of clashing macros in windows.h, which may be */
77ffb593
JS
2798/* included before or after wxWidgets classes, and therefore must be */
2799/* disabled here before any significant wxWidgets headers are included. */
ad5c34f3
JS
2800#ifdef __WXMSW__
2801#ifdef GetClassInfo
2802#undef GetClassInfo
2803#endif
2804
2805#ifdef GetClassName
2806#undef GetClassName
2807#endif
2808
2809#ifdef DrawText
2810#undef DrawText
2811#endif
2812
2813#ifdef GetCharWidth
2814#undef GetCharWidth
2815#endif
2816
2817#ifdef StartDoc
2818#undef StartDoc
2819#endif
2820
2821#ifdef FindWindow
2822#undef FindWindow
2823#endif
2824
2825#ifdef FindResource
2826#undef FindResource
2827#endif
83624f79 2828#endif
34cbe514 2829 /* __WXMSW__ */
83624f79 2830
c3a58b24
VS
2831
2832/* include the feature test macros */
2833#include "wx/features.h"
2834
34cbe514
RN
2835/* --------------------------------------------------------------------------- */
2836/* macro to define a class without copy ctor nor assignment operator */
2837/* --------------------------------------------------------------------------- */
a23fd0e1
VZ
2838
2839#define DECLARE_NO_COPY_CLASS(classname) \
2840 private: \
2841 classname(const classname&); \
1e6feb95 2842 classname& operator=(const classname&);
a23fd0e1 2843
a6cbc4db
VS
2844#define DECLARE_NO_ASSIGN_CLASS(classname) \
2845 private: \
2846 classname& operator=(const classname&);
2847
c8d58531
MW
2848/* --------------------------------------------------------------------------- */
2849/* If a manifest is being automatically generated, add common controls 6 to it */
2850/* --------------------------------------------------------------------------- */
2851
2852#if (!defined wxUSE_NO_MANIFEST || wxUSE_NO_MANIFEST == 0 ) && \
2853 ( defined _MSC_FULL_VER && _MSC_FULL_VER >= 140040130 )
2854
2855#define WX_CC_MANIFEST(cpu) \
2856 "/manifestdependency:\"type='win32' \
2857 name='Microsoft.Windows.Common-Controls' \
2858 version='6.0.0.0' \
2859 processorArchitecture='"cpu"' \
2860 publicKeyToken='6595b64144ccf1df' \
2861 language='*'\""
2862
2863#if defined _M_IX86
2864 #pragma comment(linker, WX_CC_MANIFEST("x86"))
2865#elif defined _M_X64
2866 #pragma comment(linker, WX_CC_MANIFEST("amd64"))
2867#elif defined _M_IA64
2868 #pragma comment(linker, WX_CC_MANIFEST("ia64"))
2869#else
2870 #pragma comment(linker, WX_CC_MANIFEST("*"))
2871#endif
2872
2873#endif /* !wxUSE_NO_MANIFEST && _MSC_FULL_VER >= 140040130 */
2874
c801d85f 2875#endif
34cbe514 2876 /* _WX_DEFS_H_ */