]> git.saurik.com Git - wxWidgets.git/blame - include/wx/defs.h
Added userData to wxSizerItems and other things to make sizers more
[wxWidgets.git] / include / wx / defs.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: defs.h
3// Purpose: Declarations/definitions common to all wx source files
4// Author: Julian Smart and others
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c)
3f4a0c5b 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_DEFS_H_
13#define _WX_DEFS_H_
c801d85f
KB
14
15#ifdef __GNUG__
d22699b5 16 #pragma interface "defs.h"
c801d85f
KB
17#endif
18
3f4a0c5b
VZ
19// ----------------------------------------------------------------------------
20// compiler and OS identification
21// ----------------------------------------------------------------------------
c801d85f 22
3f4a0c5b 23// OS
5b34447b
VZ
24#if defined(__unix) || defined(__unix__) || defined(____SVR4____) || \
25 defined(__LINUX__) || defined(__sgi ) || \
91b8de8d
RR
26 defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
27 defined(__EMX__)
5b34447b 28
3fb98ddf 29 #define __UNIX_LIKE__
3f4a0c5b
VZ
30
31 // Helps SGI compilation, apparently
32 #ifdef __SGI__
33 #ifdef __GNUG__
34 #define __need_wchar_t
35 #else // !gcc
36 // Note I use the term __SGI_CC__ for both cc and CC, its not a good
37 // idea to mix gcc and cc/CC, the name mangling is different
38 #define __SGI_CC__
39 #endif // gcc/!gcc
40 #endif // SGI
41
42 #if defined(sun) || defined(__SUN__)
43 #ifndef __GNUG__
44 #ifndef __SUNCC__
45 #define __SUNCC__
46 #endif // Sun CC
47 #endif
48 #endif // Sun
5b34447b 49
508203b0 50 #if defined(__hpux) && !defined(__HPUX__)
5b34447b
VZ
51 #define __HPUX__
52 #endif // HP-UX
53
8be97d65 54#elif defined(applec) || defined(THINK_C) || ( defined( __MWERKS__ ) && !defined(__INTEL__) )
5b34447b 55 // MacOS
1777b9bb
DW
56#elif defined(__OS2__)
57 #if defined(__IBMCPP__)
58 #define __VISAGEAVER__ __IBMCPP__
59 #endif
60 #ifndef __WXOS2__
61 #define __WXOS2__
62 #endif
63 #ifndef __WXPM__
64 #define __WXPM__
65 #endif
d5d63453 66
1777b9bb 67 // Place other OS/2 compiler environment defines here
d5d63453 68 #define LINKAGEMODE _Optlink
3f4a0c5b
VZ
69#else // Windows
70 #ifndef __WINDOWS__
71 #define __WINDOWS__
72 #endif // Windows
73
74 // define another standard symbol for Microsoft Visual C++: the standard one
75 // (_MSC_VER) is also defined by Metrowerks compiler
76 #if defined(_MSC_VER) && !defined(__MWERKS__)
858f7d66 77 #define __VISUALC__ _MSC_VER
3f4a0c5b
VZ
78 #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
79 #define __BORLANDC__
80 #elif defined(__WATCOMC__)
81 //#define __WATCOMC__
82 #elif defined(__SC__)
83 #define __SYMANTECC__
84 #endif // compiler
85#endif // OS
5dcf05ae 86
d5d63453
VZ
87// LINKAGEMODE mode is empty for everyting except OS/2
88#ifndef LINKAGEMODE
89 #define LINKAGEMODE
90#endif // LINKAGEMODE
91
fd3f686c 92// suppress some Visual C++ warnings
3f4a0c5b 93#ifdef __VISUALC__
197dd9af 94# pragma warning(disable:4201) // nonstandard extension used: nameless struct/union
539dae52 95# pragma warning(disable:4244) // conversion from double to float
fd3f686c 96# pragma warning(disable:4100) // unreferenced formal parameter
a23fd0e1
VZ
97# pragma warning(disable:4511) // copy ctor couldn't be generated
98# pragma warning(disable:4512) // operator=() couldn't be generated
197dd9af 99# pragma warning(disable:4699) // Using precompiled header
27a9bd48 100# pragma warning(disable:4134) // conversion between pointers to members of same class
197dd9af 101#ifndef WIN32
27a9bd48
PA
102# pragma warning(disable:4135) // conversion between different integral types
103# pragma warning(disable:4769) // assignment of near pointer to long integer
197dd9af
PA
104// This one is really annoying, since it occurs for each cast to (HANDLE)...
105# pragma warning(disable:4305) // truncation of long to near ptr
27a9bd48 106#endif
539dae52 107#endif // __VISUALC__
c801d85f 108
a3ef5bf5
JS
109// suppress some Salford C++ warnings
110#ifdef __SALFORDC__
111# pragma suppress 353 // Possible nested comments
112# pragma suppress 593 // Define not used
113# pragma suppress 61 // enum has no name (doesn't suppress!)
114# pragma suppress 106 // unnamed, unused parameter
115# pragma suppress 571 // Virtual function hiding
539dae52
VZ
116#endif // __SALFORDC__
117
cc985fac
PA
118#ifdef __VISUALC__
119#ifndef WIN32
120// VC1.5 does not have LPTSTR type
121#define LPTSTR LPSTR
122#define LPCTSTR LPCSTR
123#endif
124#endif
125
539dae52 126// Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
e3f39499 127// so define it ourselves
539dae52
VZ
128#ifdef __DECCXX
129 #define __cplusplus
130#endif // __DECCXX
a3ef5bf5 131
e3f39499 132// Resolves linking problems under HP-UX
5b34447b 133#if defined(__HPUX__) && defined(__GNUG__)
e3f39499
VZ
134 #define va_list __gnuc_va_list
135#endif // HP-UX
2f78bd2c 136
65fd5cb0
RS
137// Mingw32 gcc-2.95 uses new windows headers which are more ms-like
138// we are setting this define because of the complex check
139// using NORLANDER as Cygwin may follow. (header author is Anders Norlander)
4b6f0b91 140#if defined(__MINGW32__) && ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95)))
65fd5cb0
RS
141# define wxUSE_NORLANDER_HEADERS 1
142#endif
143
e3f39499 144
c801d85f
KB
145//////////////////////////////////////////////////////////////////////////////////
146// Currently Only MS-Windows/NT, XView and Motif are supported
147//
508203b0 148#if defined(__HPUX__) && !defined(__WXGTK__)
3f480da3 149 #ifndef __WXMOTIF__
508203b0
VZ
150 #define __WXMOTIF__
151 #endif // __WXMOTIF__
c801d85f 152#endif
508203b0 153
2049ba38 154#if defined(__WXMOTIF__)
508203b0 155 #define __X__
c801d85f
KB
156#endif
157
16ee7f42 158#ifdef __WXMSW__
c801d85f 159// wxWindows checks for WIN32, not __WIN32__
34138703 160#if ((defined(WIN32) || defined(__NT__)) && !defined(__WIN32__) && !defined(__WXSTUBS__))
c801d85f
KB
161#define __WIN32__
162#endif
163
5ea105e0
RR
164#ifdef __WXWINE__
165 #ifndef __WIN32__
166 #define __WIN32__
167 #endif
168 #ifndef __WIN95__
169 #define __WIN95__
170 #endif
171 #ifndef STRICT
172 #define STRICT
173 #endif
174#endif
175
c801d85f
KB
176#ifndef __WIN32__
177#define __WIN16__
178#endif
179
180#if !defined(__WIN95__) && (WINVER >= 0x0400)
181#define __WIN95__
182#endif
183
57c208c5
JS
184#if defined(TWIN32) && !defined(__TWIN32__)
185#define __TWIN32__
186#endif
187
16ee7f42
VZ
188#endif // wxMSW
189
c801d85f 190// Make sure the environment is set correctly
2049ba38 191#if defined(__WXMSW__) && defined(__X__)
ba6f401d 192 #error "Target can't be both X and Windows"
1777b9bb 193#elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXPM__) && \
34138703 194 !defined(__WXMAC__) && !defined(__X__) && !defined(__WXQT__) && !defined(__WXSTUBS__)
1777b9bb 195 #error "No Target! Use -D[__WXMOTIF__|__WXGTK__|__WXMSW__|__WXMAC__|__WXQT__|__WXPM__|__WXSTUBS__]"
c801d85f
KB
196#endif
197
d22699b5
VZ
198// ----------------------------------------------------------------------------
199// wxWindows options
200// ----------------------------------------------------------------------------
201
202#include <stddef.h>
203
204#include "wx/setup.h"
205
206// just in case they were defined in setup.h
207#undef PACKAGE
208#undef VERSION
209
3fb98ddf
VZ
210// if we're on a Unixsystem but didn't use configure (so that setup.h didn't
211// define __UNIX__), do define __UNIX__ now
212#if !defined(__UNIX__) && defined(__UNIX_LIKE__)
213 #define __UNIX__
214#endif // Unix
215
d22699b5
VZ
216#include "wx/version.h"
217
57493f9f
VZ
218// ============================================================================
219// non portable C++ features
220// ============================================================================
221
222// ----------------------------------------------------------------------------
223// check for native bool type and TRUE/FALSE constants
224// ----------------------------------------------------------------------------
225
1777b9bb 226#if defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXQT__) || defined(__WXPM__) || defined(__WXSTUBS__)
ba6f401d
VZ
227 // Bool is now obsolete, use bool instead
228 // typedef int Bool;
c801d85f 229
ba6f401d
VZ
230 #ifndef TRUE
231 #define TRUE 1
232 #define FALSE 0
233 #define Bool_DEFINED
234 #endif
2049ba38 235#elif defined(__WXMSW__)
ba6f401d
VZ
236 #ifndef TRUE
237 #define TRUE 1
238 #define FALSE 0
239 #endif
240#endif // TRUE/FALSE
c801d85f 241
57493f9f
VZ
242// Add more tests here for Windows compilers that already define bool
243// (under Unix, configure tests for this)
244#ifndef HAVE_BOOL
245 #if defined( __MWERKS__ )
585ae8cb 246 #if (__MWERKS__ >= 0x1000) && __option(bool)
57493f9f
VZ
247 #define HAVE_BOOL
248 #endif
249 #elif defined(__VISUALC__) && (__VISUALC__ == 1020)
250 // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed)
251 // but not implemented, so we must #define it
252 #define bool unsigned int
794005c0
JS
253 #elif defined(__VISUALC__) && (__VISUALC__ == 1010)
254 // For VisualC++ 4.1, we need to define
255 // bool as something between 4.0 & 5.0...
256 typedef unsigned int wxbool;
257 #define bool wxbool
258 #define HAVE_BOOL
57493f9f
VZ
259 #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
260 // VC++ supports bool since 4.2
261 #define HAVE_BOOL
262 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)
263 // Borland 5.0+ supports bool
264 #define HAVE_BOOL
265 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
266 // Watcom 11+ supports bool
267 #define HAVE_BOOL
6776a0b2
JS
268 #elif defined(__GNUWIN32__)
269 // Cygwin supports bool
270 #define HAVE_BOOL
1777b9bb
DW
271 #elif defined(__VISAGECPP__)
272 typedef unsigned long bool;
273 #define HAVE_BOOL
57493f9f
VZ
274 #endif // compilers
275#endif // HAVE_BOOL
276
277#if !defined(HAVE_BOOL) && !defined(bool)
278 // NB: of course, this doesn't replace the standard type, because, for
279 // example, overloading based on bool/int parameter doesn't work and
280 // so should be avoided in portable programs
dc9e1e56 281 typedef unsigned int bool;
57493f9f 282#endif // bool
c801d85f
KB
283
284typedef short int WXTYPE;
42e69d6b
VZ
285
286// special care should be taken with this type under Windows where the real
287// window id is unsigned, so we must always do the cast before comparing them
288// (or else they would be always different!). Usign wxGetWindowId() which does
289// the cast itself is recommended. Note that this type can't be unsigned
290// because -1 is a valid (and largely used) value for window id.
c801d85f
KB
291typedef int wxWindowID;
292
293// Macro to cut down on compiler warnings.
294#if REMOVE_UNUSED_ARG
57493f9f 295 #define WXUNUSED(identifier) /* identifier */
c801d85f 296#else // stupid, broken compiler
57493f9f 297 #define WXUNUSED(identifier) identifier
c801d85f
KB
298#endif
299
300/*
301 * Making or using wxWindows as a Windows DLL
302 */
303
1777b9bb 304#if defined(__WXMSW__)
c801d85f 305
aed0ed3c
JS
306// _declspec works in BC++ 5 and later, as well as VC++
307#if defined(__VISUALC__) || defined(__BORLANDC__)
c801d85f
KB
308
309# ifdef WXMAKINGDLL
aed0ed3c
JS
310# define WXDLLEXPORT _declspec( dllexport )
311# define WXDLLEXPORT_DATA(type) _declspec( dllexport ) type
312# define WXDLLEXPORT_CTORFN
c801d85f 313# elif defined(WXUSINGDLL)
aed0ed3c
JS
314# define WXDLLEXPORT _declspec( dllimport )
315# define WXDLLEXPORT_DATA(type) _declspec( dllimport ) type
c801d85f
KB
316# define WXDLLEXPORT_CTORFN
317# else
318# define WXDLLEXPORT
319# define WXDLLEXPORT_DATA(type) type
320# define WXDLLEXPORT_CTORFN
321# endif
322
1777b9bb
DW
323#elif defined(__WXPM__)
324
325# ifdef WXMAKINGDLL
326# define WXDLLEXPORT _Export
327# define WXDLLEXPORT_DATA(type) _Export type
328# define WXDLLEXPORT_CTORFN
329# elif defined(WXUSINGDLL)
330# define WXDLLEXPORT _Export
331# define WXDLLEXPORT_DATA(type) _Export type
332# define WXDLLEXPORT_CTORFN
333# else
334# define WXDLLEXPORT
335# define WXDLLEXPORT_DATA(type) type
336# define WXDLLEXPORT_CTORFN
337# endif
338
aed0ed3c
JS
339#else
340# define WXDLLEXPORT
341# define WXDLLEXPORT_DATA(type) type
342# define WXDLLEXPORT_CTORFN
c801d85f
KB
343#endif
344
57493f9f 345#else // !Windows
c801d85f
KB
346# define WXDLLEXPORT
347# define WXDLLEXPORT_DATA(type) type
348# define WXDLLEXPORT_CTORFN
57493f9f 349#endif // Win/!Win
c801d85f
KB
350
351// For ostream, istream ofstream
352#if defined(__BORLANDC__) && defined( _RTLDLL )
353# define WXDLLIMPORT __import
354#else
355# define WXDLLIMPORT
356#endif
357
358class WXDLLEXPORT wxObject;
359class WXDLLEXPORT wxEvent;
360
c86f1403 361 /** symbolic constant used by all Find()-like functions returning positive
c801d85f 362 integer on success as failure indicator */
3c67202d 363#define wxNOT_FOUND (-1)
c801d85f 364
c801d85f
KB
365// ----------------------------------------------------------------------------
366/** @name Very common macros */
367// ----------------------------------------------------------------------------
368//@{
a3622daa
VZ
369/// delete pointer if it is not NULL and NULL it afterwards
370// (checking that it's !NULL before passing it to delete is just a
371// a question of style, because delete will do it itself anyhow, but it might
372// be considered as an error by some overzealous debugging implementations of
373// the library, so we do it ourselves)
c67daf87 374#if defined(__SGI_CC__)
d4b67f95 375// Okay this is bad styling, but the native SGI compiler is very picky, it
c67daf87 376// wont let you compare/assign between a NULL (void *) and another pointer
d4b67f95
RD
377// type. To be really clean we'd need to pass in another argument, the type
378// of p.
379// Also note the use of 0L, this would allow future possible 64bit support
380// (as yet untested) by ensuring that we zero all the bits in a pointer
381// (which is always the same length as a long (at least with the LP64 standard)
c67daf87 382// --- offer aug 98
d8260b2f 383#define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; }
c67daf87 384#else
d8260b2f 385#define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
c67daf87 386#endif /* __SGI__CC__ */
a3622daa
VZ
387
388// delete an array and NULL it (see comments above)
c67daf87
UR
389#if defined(__SGI_CC__)
390// see above comment.
391#define wxDELETEA(p) if ( (p) ) { delete [] (p); p = 0L; }
392#else
d8260b2f 393#define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; }
c67daf87 394#endif /* __SGI__CC__ */
c801d85f
KB
395
396/// size of statically declared array
397#define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
398
8cb50e4b
JS
399// Use of these suppresses some compiler warnings
400WXDLLEXPORT_DATA(extern const bool) wxTrue;
401WXDLLEXPORT_DATA(extern const bool) wxFalse;
402
c801d85f
KB
403// ----------------------------------------------------------------------------
404// compiler specific settings
405// ----------------------------------------------------------------------------
406
407// to allow compiling with warning level 4 under Microsoft Visual C++ some
408// warnings just must be disabled
409#ifdef __VISUALC__
410 #pragma warning(disable: 4514) // unreferenced inline func has been removed
d4b67f95 411/*
c801d85f 412 you might be tempted to disable this one also: triggered by CHECK and FAIL
3f4a0c5b
VZ
413 macros in debug.h, but it's, overall, a rather useful one, so I leave it and
414 will try to find some way to disable this warning just for CHECK/FAIL. Anyone?
c801d85f
KB
415*/
416 #pragma warning(disable: 4127) // conditional expression is constant
c801d85f
KB
417#endif // VC++
418
3f4a0c5b
VZ
419#if defined(__MWERKS__)
420 #undef try
421 #undef except
422 #undef finally
423 #define except(x) catch(...)
424#endif // Metrowerks
8a60ae88 425
85ee3474
UU
426// where should i put this? we need to make sure of this as it breaks
427// the <iostream> code.
ea57084d 428#if !wxUSE_IOSTREAMH && defined(__WXDEBUG__)
518f33a4 429#ifndef __MWERKS__
ea57084d 430#undef __WXDEBUG__
85ee3474 431#endif
518f33a4 432#endif
85ee3474 433
c801d85f
KB
434// Callback function type definition
435typedef void (*wxFunction) (wxObject&, wxEvent&);
436
329e86bf
RR
437// ----------------------------------------------------------------------------
438// OS mnemonics -- Identify the running OS (useful for Windows)
439// ----------------------------------------------------------------------------
440
441// Not all platforms are currently available or supported
442enum
443{
444 wxUNKNOWN_PLATFORM,
445 wxCURSES, // Text-only CURSES
446 wxXVIEW_X, // Sun's XView OpenLOOK toolkit
447 wxMOTIF_X, // OSF Motif 1.x.x
448 wxCOSE_X, // OSF Common Desktop Environment
449 wxNEXTSTEP, // NeXTStep
d597fcb7
RR
450 wxMACINTOSH, // Apple System 7 and 8
451 wxBEOS, // BeOS
329e86bf
RR
452 wxGTK, // GTK on X
453 wxGTK_WIN32, // GTK on Win32
454 wxGTK_OS2, // GTK on OS/2
455 wxGTK_BEOS, // GTK on BeOS
456 wxQT, // Qt
457 wxGEOS, // GEOS
458 wxOS2_PM, // OS/2 Workplace
459 wxWINDOWS, // Windows or WfW
460 wxPENWINDOWS, // Windows for Pen Computing
461 wxWINDOWS_NT, // Windows NT
462 wxWIN32S, // Windows 32S API
463 wxWIN95, // Windows 95
464 wxWIN386, // Watcom 32-bit supervisor modus
465 wxMGL_UNIX, // MGL with direct hardware access
bac507e0 466 wxMGL_X, // MGL on X
329e86bf 467 wxMGL_WIN32, // MGL on Win32
ebea0891 468 wxMGL_OS2 // MGL on OS/2
329e86bf
RR
469};
470
d716d967
RR
471// ----------------------------------------------------------------------------
472// machine specific settings
473// ----------------------------------------------------------------------------
474
475// fixed length types
476
56d7679d 477#define wxInt8 char signed
bac507e0 478#define wxUint8 char unsigned
d716d967
RR
479
480#ifdef __WIN16__
bac507e0
DW
481#define wxInt16 int signed
482#define wxUint16 int unsigned
483#define wxInt32 long signed
484#define wxUint32 long unsigned
d716d967
RR
485#endif
486
487#ifdef __WIN32__
bac507e0
DW
488#define wxInt16 short signed
489#define wxUint16 short unsigned
490#define wxInt32 int signed
491#define wxUint32 int unsigned
d716d967
RR
492#endif
493
494#ifdef __WXMAC__
bac507e0
DW
495#define wxInt16 short signed
496#define wxUint16 short unsigned
497#define wxInt32 int signed
498#define wxUint32 int unsigned
d716d967
RR
499#endif
500
501#ifdef __WXOS2__
bac507e0
DW
502#define wxInt16 short signed
503#define wxUint16 short unsigned
504#define wxInt32 int signed
505#define wxUint32 int unsigned
d716d967
RR
506#endif
507
508#if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXOS2__)
509 #if defined(SIZEOF_INT)
329e86bf 510 /* well, this shouldn't happen... */
bac507e0
DW
511 #define wxInt16 short signed
512 #define wxUint16 short unsigned
513 #define wxInt32 int signed
514 #define wxUint32 int unsigned
d716d967 515 #else
bac507e0
DW
516 #define wxInt16 short signed
517 #define wxUint16 short unsigned
518 #define wxInt32 int signed
519 #define wxUint32 int unsigned
d716d967
RR
520 #endif
521#endif
522
56d7679d 523#define wxByte wxUint8
bac507e0 524#define wxWord wxUint16
d716d967
RR
525
526// byte sex
527
528#define wxBIG_ENDIAN 4321
529#define wxLITTLE_ENDIAN 1234
530#define wxPDP_ENDIAN 3412
531
532#ifdef WORDS_BIGENDIAN
533#define wxBYTE_ORDER wxBIG_ENDIAN
534#else
535#define wxBYTE_ORDER wxLITTLE_ENDIAN
536#endif
537
538// byte swapping
539
540#define wxUINT16_SWAP_ALWAYS(val) \
541 ((wxUint16) ( \
542 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
543 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
bac507e0 544
d716d967
RR
545#define wxINT16_SWAP_ALWAYS(val) \
546 ((wxInt16) ( \
7e2c43b8
RR
547 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
548 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
bac507e0 549
d716d967
RR
550#define wxUINT32_SWAP_ALWAYS(val) \
551 ((wxUint32) ( \
552 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
553 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
554 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
555 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
556
557#define wxINT32_SWAP_ALWAYS(val) \
558 ((wxInt32) ( \
7e2c43b8
RR
559 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
560 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
561 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
562 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
d716d967
RR
563
564// machine specific byte swapping
565
566#ifdef WORDS_BIGENDIAN
7e2c43b8
RR
567 #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val)
568 #define wxINT16_SWAP_ON_BE(val) wxINT16_SWAP_ALWAYS(val)
569 #define wxUINT16_SWAP_ON_LE(val) (val)
570 #define wxINT16_SWAP_ON_LE(val) (val)
571 #define wxUINT32_SWAP_ON_BE(val) wxUINT32_SWAP_ALWAYS(val)
572 #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val)
573 #define wxUINT32_SWAP_ON_LE(val) (val)
574 #define wxINT32_SWAP_ON_LE(val) (val)
d716d967 575#else
7e2c43b8
RR
576 #define wxUINT16_SWAP_ON_LE(val) wxUINT16_SWAP_ALWAYS(val)
577 #define wxINT16_SWAP_ON_LE(val) wxINT16_SWAP_ALWAYS(val)
578 #define wxUINT16_SWAP_ON_BE(val) (val)
579 #define wxINT16_SWAP_ON_BE(val) (val)
580 #define wxUINT32_SWAP_ON_LE(val) wxUINT32_SWAP_ALWAYS(val)
581 #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val)
582 #define wxUINT32_SWAP_ON_BE(val) (val)
583 #define wxINT32_SWAP_ON_BE(val) (val)
d716d967
RR
584#endif
585
d597fcb7
RR
586// ----------------------------------------------------------------------------
587// Geometric flags
588// ----------------------------------------------------------------------------
589
590enum wxGeometryCentre
591{
592 wxCENTRE = 0x0001,
593 wxCENTER = wxCENTRE
594};
595
596// centering into frame rather than screen (obsolete)
597#define wxCENTER_FRAME 0x0000
598// centre on screen rather than parent
599#define wxCENTRE_ON_SCREEN 0x0002
600#define wxCENTER_ON_SCREEN wxCENTRE_ON_SCREEN
601
602enum wxOrientation
603{
604 wxHORIZONTAL = 0x0004,
605 wxVERTICAL = 0x0008,
2f78bd2c 606
d597fcb7
RR
607 wxBOTH = (wxVERTICAL | wxHORIZONTAL)
608};
609
610enum wxDirection
611{
612 wxLEFT = 0x0010,
613 wxRIGHT = 0x0020,
614 wxUP = 0x0040,
615 wxDOWN = 0x0080,
2f78bd2c 616
d597fcb7
RR
617 wxTOP = wxUP,
618 wxBOTTOM = wxDOWN,
2f78bd2c 619
d597fcb7
RR
620 wxNORTH = wxUP,
621 wxSOUTH = wxDOWN,
622 wxWEST = wxLEFT,
623 wxEAST = wxRIGHT,
2f78bd2c 624
d597fcb7
RR
625 wxALL = (wxUP | wxDOWN | wxRIGHT | wxLEFT)
626};
627
628enum wxAlignment
629{
630 wxALIGN_NOT = 0x0000,
631 wxALIGN_CENTER = 0x0100,
632 wxALIGN_CENTRE = wxALIGN_CENTER,
633 wxALIGN_LEFT = wxALIGN_NOT,
634 wxALIGN_TOP = wxALIGN_NOT,
635 wxALIGN_RIGHT = 0x0200,
636 wxALIGN_BOTTOM = 0x0400
637};
638
639enum wxStretch
640{
641 wxSTRETCH_NOT = 0x0000,
642 wxSHRINK = 0x1000,
643 wxGROW = 0x2000,
644 wxEXPAND = wxGROW
645};
646
d716d967
RR
647// ----------------------------------------------------------------------------
648// Window style flags
649// ----------------------------------------------------------------------------
650
c801d85f 651/*
c801d85f
KB
652 * Values are chosen so they can be |'ed in a bit list.
653 * Some styles are used across more than one group,
654 * so the values mustn't clash with others in the group.
655 * Otherwise, numbers can be reused across groups.
656 *
657 * From version 1.66:
658 * Window (cross-group) styles now take up the first half
659 * of the flag, and control-specific styles the
660 * second half.
d4b67f95 661 *
c801d85f
KB
662 */
663
664/*
665 * Window (Frame/dialog/subwindow/panel item) style flags
666 */
329e86bf
RR
667#define wxVSCROLL 0x80000000
668#define wxHSCROLL 0x40000000
669#define wxCAPTION 0x20000000
c801d85f
KB
670
671// New styles
329e86bf
RR
672#define wxDOUBLE_BORDER 0x10000000
673#define wxSUNKEN_BORDER 0x08000000
674#define wxRAISED_BORDER 0x04000000
675#define wxBORDER 0x02000000
676#define wxSIMPLE_BORDER wxBORDER
677#define wxSTATIC_BORDER 0x01000000
678#define wxTRANSPARENT_WINDOW 0x00100000
679#define wxNO_BORDER 0x00200000
680
681#define wxUSER_COLOURS 0x00800000
c801d85f
KB
682 // Override CTL3D etc. control colour processing to
683 // allow own background colour
64693098 684 // OBSOLETE - use wxNO_3D instead
329e86bf 685#define wxNO_3D 0x00800000
c801d85f 686 // Override CTL3D or native 3D styles for children
329e86bf 687#define wxCLIP_CHILDREN 0x00400000
565215b2
JS
688 // Clip children when painting, which reduces flicker in
689 // e.g. frames and splitter windows, but can't be used in
690 // a panel where a static box must be 'transparent' (panel
691 // paints the background for it)
c801d85f
KB
692
693// Add this style to a panel to get tab traversal working
694// outside of dialogs.
329e86bf 695#define wxTAB_TRAVERSAL 0x00080000
c801d85f 696
9bf84618
VZ
697// Add this style if the control wants to get all keyboard messages (under
698// Windows, it won't normally get the dialog navigation key events)
329e86bf 699#define wxWANTS_CHARS 0x00040000
9bf84618 700
329e86bf 701// Make window retained (mostly Motif, I think)
d9ea011f 702#define wxRETAINED 0x00020000
329e86bf 703#define wxBACKINGSTORE wxRETAINED
c801d85f 704
d9ea011f
VZ
705// don't invalidate the whole window (resulting in a PAINT event) when the
706// window is resized (currently, makes sense for wxMSW only)
193fe989 707#define wxNO_FULL_REPAINT_ON_RESIZE 0x00010000
c801d85f 708/*
329e86bf 709 * wxFrame/wxDialog style flags
c801d85f 710 */
3f4a0c5b
VZ
711#define wxSTAY_ON_TOP 0x8000
712#define wxICONIZE 0x4000
713#define wxMINIMIZE wxICONIZE
714#define wxMAXIMIZE 0x2000
715#define wxTHICK_FRAME 0x1000
3f480da3 716#define wxSYSTEM_MENU 0x0800
3f4a0c5b
VZ
717#define wxMINIMIZE_BOX 0x0400
718#define wxMAXIMIZE_BOX 0x0200
719#define wxTINY_CAPTION_HORIZ 0x0100
720#define wxTINY_CAPTION_VERT 0x0080
721#define wxRESIZE_BOX wxMAXIMIZE_BOX
722#define wxRESIZE_BORDER 0x0040
723#define wxDIALOG_MODAL 0x0020
724#define wxDIALOG_MODELESS 0x0000
329e86bf 725// Add for normal Windows frame behaviour
aeab10d0 726#define wxFRAME_FLOAT_ON_PARENT 0x0020
c801d85f 727
c801d85f
KB
728
729#if WXWIN_COMPATIBILITY
730#define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE
731#endif
732
329e86bf
RR
733#define wxDEFAULT_FRAME_STYLE \
734 (wxSYSTEM_MENU | wxRESIZE_BORDER | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME | wxSYSTEM_MENU | wxCAPTION | wxCLIP_CHILDREN)
aa64626e
KB
735
736#ifdef __WXMSW__
737# define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU|wxCAPTION|wxTHICK_FRAME)
738#else
739// Under Unix, the dialogs don't have a system menu. Specifying
740// wxSYSTEM_MENU here, will make a close button appear.
3f480da3 741# define wxDEFAULT_DIALOG_STYLE (wxCAPTION)
aa64626e
KB
742#endif
743
c801d85f 744/*
329e86bf 745 * wxExtDialog style flags
c801d85f 746 */
329e86bf
RR
747#define wxED_CLIENT_MARGIN 0x0004
748#define wxED_BUTTONS_BOTTOM 0x0000 // has no effect
749#define wxED_BUTTONS_RIGHT 0x0002
750#define wxED_STATIC_LINE 0x0001
751
752#if defined(__WXMSW__) || defined(__WXMAC__)
753# define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN)
754#else
755# define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN|wxED_STATIC_LINE)
756#endif
c801d85f
KB
757
758/*
759 * wxToolBar style flags
760 */
329e86bf
RR
761#define wxTB_3DBUTTONS 0x8000
762#define wxTB_HORIZONTAL 0x0002
763#define wxTB_VERTICAL 0x0004
858b5bdd 764// Flatbar/Coolbar under Win98/ GTK 1.2
329e86bf 765#define wxTB_FLAT 0x0008
858b5bdd 766// use native docking under GTK
329e86bf 767#define wxTB_DOCKABLE 0x0010
c801d85f
KB
768
769/*
3502e687 770 * wxMenuBar style flags
c801d85f 771 */
3502e687
RR
772// use native docking
773#define wxMB_DOCKABLE 0x0001
774
ae53c98c
KB
775/*
776 * wxMenu style flags
777 */
778#define wxMENU_TEAROFF 0x0001
d4b67f95 779
3502e687
RR
780/*
781 * Apply to all panel items
782 */
c801d85f 783#define wxCOLOURED 0x0800
c801d85f 784#define wxFIXED_LENGTH 0x0400
c801d85f
KB
785
786/*
787 * Styles for wxListBox
788 */
c801d85f 789#define wxLB_SORT 0x0010
9c331ded 790#define wxLB_SINGLE 0x0020
c801d85f
KB
791#define wxLB_MULTIPLE 0x0040
792#define wxLB_EXTENDED 0x0080
793// wxLB_OWNERDRAW is Windows-only
794#define wxLB_OWNERDRAW 0x0100
9c331ded
JS
795#define wxLB_NEEDED_SB 0x0200
796#define wxLB_ALWAYS_SB 0x0400
c801d85f
KB
797#define wxLB_HSCROLL wxHSCROLL
798
799/*
800 * wxTextCtrl style flags
801 */
802#define wxPROCESS_ENTER 0x0004
803#define wxPASSWORD 0x0008
804#define wxTE_PROCESS_ENTER wxPROCESS_ENTER
805#define wxTE_PASSWORD wxPASSWORD
806#define wxTE_READONLY 0x0010
807#define wxTE_MULTILINE 0x0020
2004484f 808#define wxTE_PROCESS_TAB 0x0040
c49245f8
VZ
809// this style means to use RICHEDIT control and does something only under wxMSW
810// and Win32 and is silently ignored under all other platforms
811#define wxTE_RICH 0x0080
b70ababc 812#define wxTE_NO_VSCROLL 0x0100
7682a175 813#define wxTE_AUTO_SCROLL 0x0200
c801d85f
KB
814
815/*
816 * wxComboBox style flags
817 */
818#define wxCB_SIMPLE 0x0004
c801d85f 819#define wxCB_SORT 0x0008
9c331ded
JS
820#define wxCB_READONLY 0x0010
821#define wxCB_DROPDOWN 0x0020
c801d85f
KB
822
823/*
0544bc0a 824 * wxRadioBox style flags
c801d85f 825 */
fa18b757 826// New, more intuitive names to specify majorDim argument
0544bc0a
RR
827#define wxRA_SPECIFY_COLS wxHORIZONTAL
828#define wxRA_SPECIFY_ROWS wxVERTICAL
fa18b757 829// Old names for compatibility
c801d85f
KB
830#define wxRA_HORIZONTAL wxHORIZONTAL
831#define wxRA_VERTICAL wxVERTICAL
0544bc0a
RR
832
833/*
834 * wxRadioButton style flag
835 */
c801d85f
KB
836#define wxRB_GROUP 0x0004
837
838/*
839 * wxGauge flags
840 */
841#define wxGA_PROGRESSBAR 0x0004
842#define wxGA_HORIZONTAL wxHORIZONTAL
843#define wxGA_VERTICAL wxVERTICAL
329e86bf 844// Windows only
24126cdd 845#define wxGA_SMOOTH 0x0010
c801d85f
KB
846
847/*
848 * wxSlider flags
849 */
2f78bd2c
RD
850#define wxSL_HORIZONTAL wxHORIZONTAL // 4
851#define wxSL_VERTICAL wxVERTICAL // 8
c801d85f
KB
852// The next one is obsolete - use scroll events instead
853#define wxSL_NOTIFY_DRAG 0x0000
2f78bd2c 854#define wxSL_AUTOTICKS 0x0010
c801d85f
KB
855// #define wxSL_MANUALTICKS 0x0010
856#define wxSL_LABELS 0x0020
857#define wxSL_LEFT 0x0040
858#define wxSL_TOP 0x0080
859#define wxSL_RIGHT 0x0100
860#define wxSL_BOTTOM 0x0200
861#define wxSL_BOTH 0x0400
862#define wxSL_SELRANGE 0x0800
863
864/*
865 * wxScrollBar flags
866 */
c801d85f
KB
867#define wxSB_HORIZONTAL wxHORIZONTAL
868#define wxSB_VERTICAL wxVERTICAL
869
870/*
b0351fc9 871 * wxButton flags (Win32 only)
c801d85f 872 */
c801d85f
KB
873#define wxBU_AUTODRAW 0x0004
874#define wxBU_NOAUTODRAW 0x0000
875
876/*
877 * wxTreeCtrl flags
878 */
c801d85f
KB
879#define wxTR_HAS_BUTTONS 0x0004
880#define wxTR_EDIT_LABELS 0x0008
64693098 881#define wxTR_LINES_AT_ROOT 0x0010
c801d85f 882
c25ccf85
RR
883#define wxTR_SINGLE 0x0000
884#define wxTR_MULTIPLE 0x0020
885#define wxTR_EXTENDED 0x0040
5ea47806 886#define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080
c25ccf85 887
c801d85f
KB
888/*
889 * wxListCtrl flags
890 */
c801d85f
KB
891#define wxLC_ICON 0x0004
892#define wxLC_SMALL_ICON 0x0008
893#define wxLC_LIST 0x0010
894#define wxLC_REPORT 0x0020
895#define wxLC_ALIGN_TOP 0x0040
896#define wxLC_ALIGN_LEFT 0x0080
897#define wxLC_AUTOARRANGE 0x0100
898#define wxLC_USER_TEXT 0x0200
899#define wxLC_EDIT_LABELS 0x0400
900#define wxLC_NO_HEADER 0x0800
901#define wxLC_NO_SORT_HEADER 0x1000
902#define wxLC_SINGLE_SEL 0x2000
903#define wxLC_SORT_ASCENDING 0x4000
904#define wxLC_SORT_DESCENDING 0x8000
905
906#define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT)
907#define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT)
908#define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING)
909
910// Omitted because (a) too much detail (b) not enough style flags
911// #define wxLC_NO_SCROLL
912// #define wxLC_NO_LABEL_WRAP
913// #define wxLC_OWNERDRAW_FIXED
914// #define wxLC_SHOW_SEL_ALWAYS
915
916/*
917 * wxSpinButton flags
918 */
c801d85f
KB
919#define wxSP_VERTICAL 0x0004
920#define wxSP_HORIZONTAL 0x0008
921#define wxSP_ARROW_KEYS 0x0010
922#define wxSP_WRAP 0x0020
923
924/*
cd2df130 925 * wxSplitterWindow flags
c801d85f 926 */
c801d85f
KB
927#define wxSP_NOBORDER 0x0000
928#define wxSP_3D 0x0004
929#define wxSP_BORDER 0x0008
86434d71 930#define wxSP_PERMIT_UNSPLIT 0x0010
72195a0f 931#define wxSP_LIVE_UPDATE 0x0020
c801d85f 932
cd2df130
JS
933/*
934 * wxFrame extra flags
935 */
cd2df130
JS
936// No title on taskbar
937#define wxFRAME_TOOL_WINDOW 0x0004
938
c801d85f
KB
939/*
940 * wxTabCtrl flags
941 */
329e86bf
RR
942#define wxTC_MULTILINE 0x0000
943#define wxTC_RIGHTJUSTIFY 0x0004
944#define wxTC_FIXEDWIDTH 0x0008
945#define wxTC_OWNERDRAW 0x0010
10b959e3 946
58a8ab88
JS
947/*
948 * wxNotebook flags
949 */
329e86bf 950#define wxNB_FIXEDWIDTH 0x0008
58a8ab88 951
c801d85f
KB
952/*
953 * wxStatusBar95 flags
954 */
329e86bf 955#define wxST_SIZEGRIP 0x0002
c801d85f 956
b0351fc9
RR
957/*
958 * wxStaticLine flags
959 */
329e86bf
RR
960#define wxLI_HORIZONTAL wxHORIZONTAL
961#define wxLI_VERTICAL wxVERTICAL
b0351fc9 962
9726da4f
VZ
963/*
964 * wxProgressDialog flags
965 */
329e86bf
RR
966#define wxPD_CAN_ABORT 0x0001
967#define wxPD_APP_MODAL 0x0002
968#define wxPD_AUTO_HIDE 0x0004
969#define wxPD_ELAPSED_TIME 0x0008
970#define wxPD_ESTIMATED_TIME 0x0010
971#define wxPD_REMAINING_TIME 0x0020
b0351fc9 972
ea8fe90e
VS
973/*
974 * wxHtmlWindow flags
975 */
976#define wxHW_SCROLLBAR_NEVER 0x0002
977#define wxHW_SCROLLBAR_AUTO 0x0004
978
c801d85f 979/*
bac507e0 980 * extended dialog specifiers. these values are stored in a different
329e86bf
RR
981 * flag and thus do not overlap with other style flags. note that these
982 * values do not correspond to the return values of the dialogs (for
bac507e0 983 * those values, look at the wxID_XXX defines).
c801d85f 984 */
d597fcb7
RR
985
986// wxCENTRE already defined as 0x00000001
987#define wxOK 0x00000004
988#define wxYES_NO 0x00000008
989#define wxCANCEL 0x00000010
990#define wxYES 0x00000020
991#define wxNO 0x00000040
992#define wxNO_DEFAULT 0x00000080
329e86bf
RR
993#define wxYES_DEFAULT 0x00000000 // has no effect
994
d597fcb7
RR
995#define wxICON_EXCLAMATION 0x00000100
996#define wxICON_HAND 0x00000200
ebea0891
KB
997#define wxICON_WARNING wxICON_EXCLAMATION
998#define wxICON_ERROR wxICON_HAND
d597fcb7
RR
999#define wxICON_QUESTION 0x00000400
1000#define wxICON_INFORMATION 0x00000800
329e86bf
RR
1001#define wxICON_STOP wxICON_HAND
1002#define wxICON_ASTERISK wxICON_INFORMATION
d597fcb7 1003#define wxICON_MASK (0x00000100|0x00000200|0x00000400|0x00000800)
329e86bf 1004
d597fcb7
RR
1005#define wxFORWARD 0x00001000
1006#define wxBACKWARD 0x00002000
1007#define wxRESET 0x00004000
1008#define wxHELP 0x00008000
1009#define wxMORE 0x00010000
1010#define wxSETUP 0x00020000
329e86bf
RR
1011
1012// ----------------------------------------------------------------------------
1013// standard IDs
1014// ----------------------------------------------------------------------------
1015
1016// Standard menu IDs
1017#define wxID_LOWEST 4999
1018
1019#define wxID_OPEN 5000
1020#define wxID_CLOSE 5001
1021#define wxID_NEW 5002
1022#define wxID_SAVE 5003
1023#define wxID_SAVEAS 5004
1024#define wxID_REVERT 5005
1025#define wxID_EXIT 5006
1026#define wxID_UNDO 5007
1027#define wxID_REDO 5008
1028#define wxID_HELP 5009
1029#define wxID_PRINT 5010
1030#define wxID_PRINT_SETUP 5011
1031#define wxID_PREVIEW 5012
1032#define wxID_ABOUT 5013
1033#define wxID_HELP_CONTENTS 5014
1034#define wxID_HELP_COMMANDS 5015
1035#define wxID_HELP_PROCEDURES 5016
1036#define wxID_HELP_CONTEXT 5017
1037
1038#define wxID_CUT 5030
1039#define wxID_COPY 5031
1040#define wxID_PASTE 5032
1041#define wxID_CLEAR 5033
1042#define wxID_FIND 5034
1043#define wxID_DUPLICATE 5035
1044#define wxID_SELECTALL 5036
1045
1046#define wxID_FILE1 5050
1047#define wxID_FILE2 5051
1048#define wxID_FILE3 5052
1049#define wxID_FILE4 5053
1050#define wxID_FILE5 5054
1051#define wxID_FILE6 5055
1052#define wxID_FILE7 5056
1053#define wxID_FILE8 5057
1054#define wxID_FILE9 5058
1055
1056// Standard button IDs
1057#define wxID_OK 5100
1058#define wxID_CANCEL 5101
1059#define wxID_APPLY 5102
1060#define wxID_YES 5103
1061#define wxID_NO 5104
1062#define wxID_STATIC 5105
1063#define wxID_FORWARD 5106
1064#define wxID_BACKWARD 5107
1065#define wxID_DEFAULT 5108
1066#define wxID_MORE 5109
1067#define wxID_SETUP 5110
1068#define wxID_RESET 5111
1069
a16d3c04
KB
1070// IDs used by generic file dialog (11 consecutive starting from this value)
1071#define wxID_FILEDLGG 5900
329e86bf
RR
1072#define wxID_HIGHEST 5999
1073
329e86bf
RR
1074// ----------------------------------------------------------------------------
1075// Possible SetSize flags
1076// ----------------------------------------------------------------------------
1077
1078// Use internally-calculated width if -1
1079#define wxSIZE_AUTO_WIDTH 0x0001
1080// Use internally-calculated height if -1
1081#define wxSIZE_AUTO_HEIGHT 0x0002
1082// Use internally-calculated width and height if each is -1
1083#define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT)
1084// Ignore missing (-1) dimensions (use existing).
1085// For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code.
1086#define wxSIZE_USE_EXISTING 0x0000
1087// Allow -1 as a valid position
1088#define wxSIZE_ALLOW_MINUS_ONE 0x0004
1089// Don't do parent client adjustments (for implementation only)
1090#define wxSIZE_NO_ADJUSTMENTS 0x0008
1091
1092// ----------------------------------------------------------------------------
1093// GDI descriptions
1094// ----------------------------------------------------------------------------
c801d85f
KB
1095
1096enum {
1097// Text font families
1098 wxDEFAULT = 70,
1099 wxDECORATIVE,
1100 wxROMAN,
1101 wxSCRIPT,
1102 wxSWISS,
1103 wxMODERN,
1104 wxTELETYPE, /* @@@@ */
1105
1106// Proportional or Fixed width fonts (not yet used)
1107 wxVARIABLE = 80,
1108 wxFIXED,
1109
1110 wxNORMAL = 90,
1111 wxLIGHT,
1112 wxBOLD,
1113// Also wxNORMAL for normal (non-italic text)
1114 wxITALIC,
1115 wxSLANT,
1116
1117// Pen styles
1118 wxSOLID = 100,
1119 wxDOT,
1120 wxLONG_DASH,
1121 wxSHORT_DASH,
1122 wxDOT_DASH,
1123 wxUSER_DASH,
1124
1125 wxTRANSPARENT,
1126
1127// Brush & Pen Stippling. Note that a stippled pen cannot be dashed!!
1128// Note also that stippling a Pen IS meaningfull, because a Line is
1129// drawn with a Pen, and without any Brush -- and it can be stippled.
1130 wxSTIPPLE = 110,
1131 wxBDIAGONAL_HATCH,
1132 wxCROSSDIAG_HATCH,
1133 wxFDIAGONAL_HATCH,
1134 wxCROSS_HATCH,
1135 wxHORIZONTAL_HATCH,
1136 wxVERTICAL_HATCH,
3f4a0c5b 1137#define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH)
c801d85f
KB
1138
1139 wxJOIN_BEVEL = 120,
1140 wxJOIN_MITER,
1141 wxJOIN_ROUND,
1142
1143 wxCAP_ROUND = 130,
1144 wxCAP_PROJECTING,
1145 wxCAP_BUTT
1146};
1147
1148
1149// Logical ops
3f4a0c5b 1150typedef enum
83624f79 1151{
c801d85f
KB
1152 wxCLEAR, // 0
1153 wxXOR, // src XOR dst
1154 wxINVERT, // NOT dst
1155 wxOR_REVERSE, // src OR (NOT dst)
1156 wxAND_REVERSE,// src AND (NOT dst)
1157 wxCOPY, // src
1158 wxAND, // src AND dst
1159 wxAND_INVERT, // (NOT src) AND dst
1160 wxNO_OP, // dst
1161 wxNOR, // (NOT src) AND (NOT dst)
1162 wxEQUIV, // (NOT src) XOR dst
1163 wxSRC_INVERT, // (NOT src)
1164 wxOR_INVERT, // (NOT src) OR dst
1165 wxNAND, // (NOT src) OR (NOT dst)
1166 wxOR, // src OR dst
1167 wxSET, // 1
1168 wxSRC_OR, // source _bitmap_ OR destination
1169 wxSRC_AND // source _bitmap_ AND destination
1170} form_ops_t;
1171
329e86bf 1172/* Flood styles */
c801d85f
KB
1173#define wxFLOOD_SURFACE 1
1174#define wxFLOOD_BORDER 2
1175
329e86bf 1176/* Polygon filling mode */
c801d85f
KB
1177#define wxODDEVEN_RULE 1
1178#define wxWINDING_RULE 2
1179
329e86bf 1180/* ToolPanel in wxFrame */
3f4a0c5b
VZ
1181#define wxTOOL_TOP 1
1182#define wxTOOL_BOTTOM 2
1183#define wxTOOL_LEFT 3
1184#define wxTOOL_RIGHT 4
c801d85f 1185
c801d85f 1186
3f480da3 1187enum wxDataFormatId
e3e65dac 1188{
06e43511 1189 wxDF_INVALID = 0,
e3e65dac
RR
1190 wxDF_TEXT = 1, /* CF_TEXT */
1191 wxDF_BITMAP = 2, /* CF_BITMAP */
1192 wxDF_METAFILE = 3, /* CF_METAFILEPICT */
06e43511
JS
1193 wxDF_SYLK = 4,
1194 wxDF_DIF = 5,
1195 wxDF_TIFF = 6,
e3e65dac 1196 wxDF_OEMTEXT = 7, /* CF_OEMTEXT */
06e43511
JS
1197 wxDF_DIB = 8, /* CF_DIB */
1198 wxDF_PALETTE = 9,
1199 wxDF_PENDATA = 10,
1200 wxDF_RIFF = 11,
1201 wxDF_WAVE = 12,
1202 wxDF_UNICODETEXT = 13,
1203 wxDF_ENHMETAFILE = 14,
8b53e5a2 1204 wxDF_FILENAME = 15, /* CF_HDROP */
06e43511 1205 wxDF_LOCALE = 16,
3f480da3
VZ
1206 wxDF_PRIVATE = 20,
1207 wxDF_MAX
e3e65dac 1208};
c801d85f 1209
83624f79 1210/* Virtual keycodes */
e3e65dac 1211
3f4a0c5b 1212enum wxKeyCode
83624f79 1213{
adde8c98
RR
1214 WXK_BACK = 8,
1215 WXK_TAB = 9,
1216 WXK_RETURN = 13,
1217 WXK_ESCAPE = 27,
1218 WXK_SPACE = 32,
1219 WXK_DELETE = 127,
1220
1221 WXK_START = 300,
1222 WXK_LBUTTON,
1223 WXK_RBUTTON,
1224 WXK_CANCEL,
1225 WXK_MBUTTON,
1226 WXK_CLEAR,
1227 WXK_SHIFT,
861ccde4 1228 WXK_ALT,
adde8c98
RR
1229 WXK_CONTROL,
1230 WXK_MENU,
1231 WXK_PAUSE,
1232 WXK_CAPITAL,
1233 WXK_PRIOR, /* Page up */
1234 WXK_NEXT, /* Page down */
1235 WXK_END,
1236 WXK_HOME,
1237 WXK_LEFT,
1238 WXK_UP,
1239 WXK_RIGHT,
1240 WXK_DOWN,
1241 WXK_SELECT,
1242 WXK_PRINT,
1243 WXK_EXECUTE,
1244 WXK_SNAPSHOT,
1245 WXK_INSERT,
1246 WXK_HELP,
1247 WXK_NUMPAD0,
1248 WXK_NUMPAD1,
1249 WXK_NUMPAD2,
1250 WXK_NUMPAD3,
1251 WXK_NUMPAD4,
1252 WXK_NUMPAD5,
1253 WXK_NUMPAD6,
1254 WXK_NUMPAD7,
1255 WXK_NUMPAD8,
1256 WXK_NUMPAD9,
1257 WXK_MULTIPLY,
1258 WXK_ADD,
1259 WXK_SEPARATOR,
1260 WXK_SUBTRACT,
1261 WXK_DECIMAL,
1262 WXK_DIVIDE,
1263 WXK_F1,
1264 WXK_F2,
1265 WXK_F3,
1266 WXK_F4,
1267 WXK_F5,
1268 WXK_F6,
1269 WXK_F7,
1270 WXK_F8,
1271 WXK_F9,
1272 WXK_F10,
1273 WXK_F11,
1274 WXK_F12,
1275 WXK_F13,
1276 WXK_F14,
1277 WXK_F15,
1278 WXK_F16,
1279 WXK_F17,
1280 WXK_F18,
1281 WXK_F19,
1282 WXK_F20,
1283 WXK_F21,
1284 WXK_F22,
1285 WXK_F23,
1286 WXK_F24,
1287 WXK_NUMLOCK,
1288 WXK_SCROLL,
1289 WXK_PAGEUP,
1290 WXK_PAGEDOWN,
3f480da3 1291
adde8c98
RR
1292 WXK_NUMPAD_SPACE,
1293 WXK_NUMPAD_TAB,
1294 WXK_NUMPAD_ENTER,
1295 WXK_NUMPAD_F1,
1296 WXK_NUMPAD_F2,
1297 WXK_NUMPAD_F3,
1298 WXK_NUMPAD_F4,
1299 WXK_NUMPAD_HOME,
1300 WXK_NUMPAD_LEFT,
1301 WXK_NUMPAD_UP,
1302 WXK_NUMPAD_RIGHT,
1303 WXK_NUMPAD_DOWN,
1304 WXK_NUMPAD_PRIOR,
1305 WXK_NUMPAD_PAGEUP,
b78cd60d 1306 WXK_NUMPAD_NEXT,
adde8c98
RR
1307 WXK_NUMPAD_PAGEDOWN,
1308 WXK_NUMPAD_END,
1309 WXK_NUMPAD_BEGIN,
1310 WXK_NUMPAD_INSERT,
1311 WXK_NUMPAD_DELETE,
1312 WXK_NUMPAD_EQUAL,
1313 WXK_NUMPAD_MULTIPLY,
1314 WXK_NUMPAD_ADD,
1315 WXK_NUMPAD_SEPARATOR,
1316 WXK_NUMPAD_SUBTRACT,
1317 WXK_NUMPAD_DECIMAL,
1318 WXK_NUMPAD_DIVIDE
c801d85f
KB
1319};
1320
e3065973
JS
1321// Mapping modes (as per Windows)
1322#define wxMM_TEXT 1
1323#define wxMM_LOMETRIC 2
1324#define wxMM_HIMETRIC 3
1325#define wxMM_LOENGLISH 4
1326#define wxMM_HIENGLISH 5
1327#define wxMM_TWIPS 6
1328#define wxMM_ISOTROPIC 7
1329#define wxMM_ANISOTROPIC 8
1330
1331#define wxMM_POINTS 9
1332#define wxMM_METRIC 10
1333
83624f79 1334/* Shortcut for easier dialog-unit-to-pixel conversion */
387a3b02 1335#define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
fd71308f 1336
7bcb11d3
JS
1337/* Paper types */
1338typedef enum {
1339 wxPAPER_NONE, // Use specific dimensions
1340 wxPAPER_LETTER, // Letter, 8 1/2 by 11 inches
1341 wxPAPER_LEGAL, // Legal, 8 1/2 by 14 inches
1342 wxPAPER_A4, // A4 Sheet, 210 by 297 millimeters
1343 wxPAPER_CSHEET, // C Sheet, 17 by 22 inches
1344 wxPAPER_DSHEET, // D Sheet, 22 by 34 inches
1345 wxPAPER_ESHEET, // E Sheet, 34 by 44 inches
1346 wxPAPER_LETTERSMALL, // Letter Small, 8 1/2 by 11 inches
1347 wxPAPER_TABLOID, // Tabloid, 11 by 17 inches
1348 wxPAPER_LEDGER, // Ledger, 17 by 11 inches
1349 wxPAPER_STATEMENT, // Statement, 5 1/2 by 8 1/2 inches
1350 wxPAPER_EXECUTIVE, // Executive, 7 1/4 by 10 1/2 inches
1351 wxPAPER_A3, // A3 sheet, 297 by 420 millimeters
1352 wxPAPER_A4SMALL, // A4 small sheet, 210 by 297 millimeters
1353 wxPAPER_A5, // A5 sheet, 148 by 210 millimeters
1354 wxPAPER_B4, // B4 sheet, 250 by 354 millimeters
1355 wxPAPER_B5, // B5 sheet, 182-by-257-millimeter paper
1356 wxPAPER_FOLIO, // Folio, 8-1/2-by-13-inch paper
1357 wxPAPER_QUARTO, // Quarto, 215-by-275-millimeter paper
1358 wxPAPER_10X14, // 10-by-14-inch sheet
1359 wxPAPER_11X17, // 11-by-17-inch sheet
1360 wxPAPER_NOTE, // Note, 8 1/2 by 11 inches
1361 wxPAPER_ENV_9, // #9 Envelope, 3 7/8 by 8 7/8 inches
1362 wxPAPER_ENV_10, // #10 Envelope, 4 1/8 by 9 1/2 inches
1363 wxPAPER_ENV_11, // #11 Envelope, 4 1/2 by 10 3/8 inches
1364 wxPAPER_ENV_12, // #12 Envelope, 4 3/4 by 11 inches
1365 wxPAPER_ENV_14, // #14 Envelope, 5 by 11 1/2 inches
1366 wxPAPER_ENV_DL, // DL Envelope, 110 by 220 millimeters
1367 wxPAPER_ENV_C5, // C5 Envelope, 162 by 229 millimeters
1368 wxPAPER_ENV_C3, // C3 Envelope, 324 by 458 millimeters
1369 wxPAPER_ENV_C4, // C4 Envelope, 229 by 324 millimeters
1370 wxPAPER_ENV_C6, // C6 Envelope, 114 by 162 millimeters
1371 wxPAPER_ENV_C65, // C65 Envelope, 114 by 229 millimeters
1372 wxPAPER_ENV_B4, // B4 Envelope, 250 by 353 millimeters
1373 wxPAPER_ENV_B5, // B5 Envelope, 176 by 250 millimeters
1374 wxPAPER_ENV_B6, // B6 Envelope, 176 by 125 millimeters
1375 wxPAPER_ENV_ITALY, // Italy Envelope, 110 by 230 millimeters
1376 wxPAPER_ENV_MONARCH, // Monarch Envelope, 3 7/8 by 7 1/2 inches
1377 wxPAPER_ENV_PERSONAL, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
1378 wxPAPER_FANFOLD_US, // US Std Fanfold, 14 7/8 by 11 inches
1379 wxPAPER_FANFOLD_STD_GERMAN, // German Std Fanfold, 8 1/2 by 12 inches
1380 wxPAPER_FANFOLD_LGL_GERMAN, // German Legal Fanfold, 8 1/2 by 13 inches
1381
1382 wxPAPER_ISO_B4, // B4 (ISO) 250 x 353 mm
1383 wxPAPER_JAPANESE_POSTCARD, // Japanese Postcard 100 x 148 mm
1384 wxPAPER_9X11, // 9 x 11 in
1385 wxPAPER_10X11, // 10 x 11 in
1386 wxPAPER_15X11, // 15 x 11 in
1387 wxPAPER_ENV_INVITE, // Envelope Invite 220 x 220 mm
1388 wxPAPER_LETTER_EXTRA, // Letter Extra 9 \275 x 12 in
1389 wxPAPER_LEGAL_EXTRA, // Legal Extra 9 \275 x 15 in
1390 wxPAPER_TABLOID_EXTRA, // Tabloid Extra 11.69 x 18 in
1391 wxPAPER_A4_EXTRA, // A4 Extra 9.27 x 12.69 in
1392 wxPAPER_LETTER_TRANSVERSE, // Letter Transverse 8 \275 x 11 in
1393 wxPAPER_A4_TRANSVERSE, // A4 Transverse 210 x 297 mm
1394 wxPAPER_LETTER_EXTRA_TRANSVERSE, // Letter Extra Transverse 9\275 x 12 in
1395 wxPAPER_A_PLUS, // SuperA/SuperA/A4 227 x 356 mm
1396 wxPAPER_B_PLUS, // SuperB/SuperB/A3 305 x 487 mm
1397 wxPAPER_LETTER_PLUS, // Letter Plus 8.5 x 12.69 in
1398 wxPAPER_A4_PLUS, // A4 Plus 210 x 330 mm
1399 wxPAPER_A5_TRANSVERSE, // A5 Transverse 148 x 210 mm
1400 wxPAPER_B5_TRANSVERSE, // B5 (JIS) Transverse 182 x 257 mm
1401 wxPAPER_A3_EXTRA, // A3 Extra 322 x 445 mm
1402 wxPAPER_A5_EXTRA, // A5 Extra 174 x 235 mm
1403 wxPAPER_B5_EXTRA, // B5 (ISO) Extra 201 x 276 mm
1404 wxPAPER_A2, // A2 420 x 594 mm
1405 wxPAPER_A3_TRANSVERSE, // A3 Transverse 297 x 420 mm
1406 wxPAPER_A3_EXTRA_TRANSVERSE // A3 Extra Transverse 322 x 445 mm
1407
1408} wxPaperSize ;
1409
1410/* Printing orientation */
1411#ifndef wxPORTRAIT
1412#define wxPORTRAIT 1
1413#define wxLANDSCAPE 2
1414#endif
1415
1416/* Duplex printing modes
1417 */
1418
1419typedef enum {
1420 wxDUPLEX_SIMPLEX, // Non-duplex
1421 wxDUPLEX_HORIZONTAL,
1422 wxDUPLEX_VERTICAL
1423} wxDuplexMode;
1424
1425/* Print quality.
1426 */
1427
1428#define wxPRINT_QUALITY_HIGH -1
1429#define wxPRINT_QUALITY_MEDIUM -2
1430#define wxPRINT_QUALITY_LOW -3
1431#define wxPRINT_QUALITY_DRAFT -4
1432
1433typedef int wxPrintQuality;
1434
1435/* Print mode (currently PostScript only)
1436 */
1437
1438typedef enum {
1439 wxPRINT_MODE_NONE = 0,
1440 wxPRINT_MODE_PREVIEW = 1, // Preview in external application
1441 wxPRINT_MODE_FILE = 2, // Print to file
1442 wxPRINT_MODE_PRINTER = 3 // Send to printer
1443} wxPrintMode;
1444
329e86bf
RR
1445// ---------------------------------------------------------------------------
1446// macros that enable wxWindows apps to be compiled in absence of the
1447// sytem headers, although some platform specific types are used in the
1448// platform specific (implementation) parts of the headers
1449// ---------------------------------------------------------------------------
7bcb11d3 1450
bac507e0
DW
1451#if defined(__WXMSW__) || defined(__WXPM__)
1452// Stand-ins for Windows types or OS/2, to avoid #including all of windows.h or os2.h
c801d85f
KB
1453typedef unsigned long WXHWND;
1454typedef unsigned long WXHANDLE;
1455typedef unsigned long WXHICON;
1456typedef unsigned long WXHFONT;
1457typedef unsigned long WXHMENU;
1458typedef unsigned long WXHPEN;
1459typedef unsigned long WXHBRUSH;
1460typedef unsigned long WXHPALETTE;
1461typedef unsigned long WXHCURSOR;
1462typedef unsigned long WXHRGN;
57a7b7c1 1463typedef unsigned long WXHACCEL;
c801d85f
KB
1464typedef unsigned long WXHINSTANCE;
1465typedef unsigned long WXHBITMAP;
1466typedef unsigned long WXHIMAGELIST;
1467typedef unsigned long WXHGLOBAL;
1468typedef unsigned long WXHDC;
1469typedef unsigned int WXUINT;
1470typedef unsigned long WXDWORD;
1471typedef unsigned short WXWORD;
1472typedef unsigned int WXWPARAM;
1473typedef long WXLPARAM;
1474typedef unsigned long WXCOLORREF;
c801d85f
KB
1475typedef void * WXRGNDATA;
1476typedef void * WXMSG;
1477typedef unsigned long WXHCONV;
0d8d91a9 1478typedef unsigned long WXHKEY;
ef366d32 1479typedef unsigned long WXHTREEITEM;
a23fd0e1 1480
c801d85f
KB
1481typedef void * WXDRAWITEMSTRUCT;
1482typedef void * WXMEASUREITEMSTRUCT;
1483typedef void * WXLPCREATESTRUCT;
a23fd0e1 1484
54da4255
DW
1485#if defined(__WXPM__)
1486typedef unsigned long WXMPARAM;
1487typedef unsigned long WXMSGID;
1488typedef void* WXRESULT;
1489typedef int (*WXFARPROC)();
1490// some windows handles not defined by PM
1491typedef unsigned long HANDLE;
1492typedef unsigned long HICON;
1493typedef unsigned long HFONT;
1494typedef unsigned long HMENU;
1495typedef unsigned long HPEN;
1496typedef unsigned long HBRUSH;
1497typedef unsigned long HPALETTE;
1498typedef unsigned long HCURSOR;
1499typedef unsigned long HINSTANCE;
1500typedef unsigned long HIMAGELIST;
1501typedef unsigned long HGLOBAL;
1502typedef unsigned long DWORD;
1503typedef unsigned short WORD;
1504#endif
1505
5ea105e0 1506#if defined(__GNUWIN32__) || defined(__WXWINE__)
a23fd0e1 1507 typedef int (*WXFARPROC)();
1e6d9499 1508#elif defined(__WIN32__)
a23fd0e1 1509 typedef int (__stdcall *WXFARPROC)();
1e6d9499 1510#else
a23fd0e1 1511 typedef int (*WXFARPROC)();
14b72bf5 1512#endif
c801d85f 1513
f03fc89f
VZ
1514typedef WXHWND WXWidget;
1515#endif // MSW
c801d85f 1516
589f0e3e 1517#ifdef __WXMOTIF__
83624f79 1518/* Stand-ins for X/Xt/Motif types */
589f0e3e
JS
1519typedef void* WXWindow;
1520typedef void* WXWidget;
1521typedef void* WXAppContext;
46ccb510 1522typedef void* WXColormap;
589f0e3e
JS
1523typedef void WXDisplay;
1524typedef void WXEvent;
46ccb510 1525typedef void* WXCursor;
50414e24 1526typedef void* WXPixmap;
dfc54541
JS
1527typedef void* WXFontStructPtr;
1528typedef void* WXGC;
1529typedef void* WXRegion;
e97f20a0 1530typedef void* WXFont;
f97c9854
JS
1531typedef void* WXImage;
1532typedef void* WXCursor;
1533typedef void* WXFontList;
da175b2c
RR
1534
1535typedef unsigned long Atom; /* this might fail on a few architectures */
1536
f03fc89f 1537#endif // Motif
589f0e3e 1538
83624f79
RR
1539#ifdef __WXGTK__
1540/* Stand-ins for GLIB types */
1541typedef int gint;
1542typedef unsigned guint;
1543typedef unsigned long gulong;
1544typedef void* gpointer;
953704c1 1545typedef struct _GSList GSList;
83624f79
RR
1546
1547/* Stand-ins for GDK types */
1548typedef gulong GdkAtom;
1549typedef struct _GdkColor GdkColor;
1550typedef struct _GdkColormap GdkColormap;
1551typedef struct _GdkFont GdkFont;
1552typedef struct _GdkGC GdkGC;
1553typedef struct _GdkWindow GdkWindow;
1554typedef struct _GdkWindow GdkBitmap;
1555typedef struct _GdkWindow GdkPixmap;
1556typedef struct _GdkCursor GdkCursor;
1557typedef struct _GdkRegion GdkRegion;
8a126fcc 1558typedef struct _GdkDragContext GdkDragContext;
83624f79
RR
1559
1560/* Stand-ins for GTK types */
8a126fcc
RR
1561typedef struct _GtkWidget GtkWidget;
1562typedef struct _GtkStyle GtkStyle;
1563typedef struct _GtkAdjustment GtkAdjustment;
1564typedef struct _GtkList GtkList;
1565typedef struct _GtkToolbar GtkToolbar;
1566typedef struct _GtkTooltips GtkTooltips;
1567typedef struct _GtkNotebook GtkNotebook;
1568typedef struct _GtkNotebookPage GtkNotebookPage;
1569typedef struct _GtkAccelGroup GtkAccelGroup;
1570typedef struct _GtkItemFactory GtkItemFactory;
1571typedef struct _GtkSelectionData GtkSelectionData;
ad5c34f3 1572
f03fc89f
VZ
1573typedef GtkWidget *WXWidget;
1574#endif // GTK
ad5c34f3
JS
1575
1576// This is required because of clashing macros in windows.h, which may be
1577// included before or after wxWindows classes, and therefore must be
1578// disabled here before any significant wxWindows headers are included.
1579#ifdef __WXMSW__
1580#ifdef GetClassInfo
1581#undef GetClassInfo
1582#endif
1583
1584#ifdef GetClassName
1585#undef GetClassName
1586#endif
1587
1588#ifdef DrawText
1589#undef DrawText
1590#endif
1591
1592#ifdef GetCharWidth
1593#undef GetCharWidth
1594#endif
1595
1596#ifdef StartDoc
1597#undef StartDoc
1598#endif
1599
1600#ifdef FindWindow
1601#undef FindWindow
1602#endif
1603
1604#ifdef FindResource
1605#undef FindResource
1606#endif
83624f79 1607#endif
ad5c34f3 1608 // __WXMSW__
83624f79 1609
a23fd0e1
VZ
1610// ---------------------------------------------------------------------------
1611// macro to define a class without copy ctor nor assignment operator
1612// ---------------------------------------------------------------------------
1613
1614#define DECLARE_NO_COPY_CLASS(classname) \
1615 private: \
1616 classname(const classname&); \
1617 classname& operator=(const classname&)
1618
c801d85f 1619#endif
34138703 1620 // _WX_DEFS_H_