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