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