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