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