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