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