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