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