1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Declarations/definitions common to all wx source files
4 // Author: Julian Smart and others
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "defs.h"
19 // ----------------------------------------------------------------------------
20 // compiler and OS identification
21 // ----------------------------------------------------------------------------
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__)
32 // Helps SGI compilation, apparently
35 #define __need_wchar_t
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
43 #if defined(sun) || defined(__SUN__)
52 #define OS2EMX_PLAIN_CHAR
55 #if defined(__APPLE__)
64 #define PM_USE_SESSION_APIS 0
65 #include <Carbon/Carbon.h>
67 #elif defined(applec) || defined(THINK_C) || (defined(__MWERKS__) && !defined(__INTEL__))
69 #elif defined(__WXMAC__) && defined(__APPLE__)
80 #define PM_USE_SESSION_APIS 0
81 #include <Carbon/Carbon.h>
82 #elif defined(__OS2__)
83 #if defined(__IBMCPP__)
84 #define __VISAGEAVER__ __IBMCPP__
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
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__)
109 #elif defined(__WATCOMC__)
110 //#define __WATCOMC__
111 #elif defined(__SC__)
112 #define __SYMANTECC__
116 // LINKAGEMODE mode is empty for everyting except OS/2
119 #endif // LINKAGEMODE
121 // suppress some Visual C++ warnings
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
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
137 #endif // __VISUALC__
139 // suppress some Salford C++ warnings
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__
148 #if defined(__VISUALC__) && !defined(WIN32)
149 // VC1.5 does not have LPTSTR type
151 #define LPCTSTR LPCSTR
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)
158 #if !defined(__VMS) && !defined(__cplusplus)
163 // Resolves linking problems under HP-UX
164 #if defined(__HPUX__) && defined(__GNUG__)
165 #define va_list __gnuc_va_list
168 #if defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || defined( __CYGWIN__ )
169 #include "wx/msw/gccpriv.h"
172 //////////////////////////////////////////////////////////////////////////////////
173 // Currently Only MS-Windows/NT, XView and Motif are supported
175 #if defined(__HPUX__) && !defined(__WXGTK__)
178 #endif // __WXMOTIF__
181 #if defined(__WXMOTIF__)
187 #if defined(_WIN32) || defined(WIN32) || defined(__NT__)
209 #if !defined(__WIN95__) && (WINVER >= 0x0400)
213 #if defined(TWIN32) && !defined(__TWIN32__)
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__]"
228 // ----------------------------------------------------------------------------
230 // ----------------------------------------------------------------------------
234 #include "wx/setup.h"
236 // just in case they were defined in setup.h
245 // this has to be done after including setup.h which might
246 // define __HPUX__ 1 itself
247 #if defined(__hpux) && !defined(__HPUX__)
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__)
257 #include "wx/version.h"
259 // ----------------------------------------------------------------------------
260 // compatibility defines
261 // ----------------------------------------------------------------------------
263 // possibility to build non GUI apps is new, so don't burden ourselves with
264 // compatibility code
266 #undef WXWIN_COMPATIBILITY_2
267 #define WXWIN_COMPATIBILITY_2 0
270 // ============================================================================
271 // non portable C++ features
272 // ============================================================================
274 // ----------------------------------------------------------------------------
275 // check for native bool type and TRUE/FALSE constants
276 // ----------------------------------------------------------------------------
278 // define boolean constants if not done yet
287 // Add more tests here for Windows compilers that already define bool
288 // (under Unix, configure tests for this)
290 #if defined( __MWERKS__ )
291 #if (__MWERKS__ >= 0x1000) && __option(bool)
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
;
304 #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
305 // VC++ supports bool since 4.2
307 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)
308 // Borland 5.0+ supports bool
310 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
311 // Watcom 11+ supports bool
313 #elif defined(__GNUWIN32__)
314 // Cygwin supports bool
316 #elif defined(__VISAGECPP__)
318 typedef unsigned long bool;
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
329 typedef unsigned int bool;
333 typedef short int WXTYPE
;
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
;
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
349 // some arguments are only used in debug mode, but unused in release one
351 #define WXUNUSED_UNLESS_DEBUG(param) param
353 #define WXUNUSED_UNLESS_DEBUG(param) WXUNUSED(param)
356 // ----------------------------------------------------------------------------
357 // portable calling conventions macros
358 // ----------------------------------------------------------------------------
360 // stdcall is used for all functions called by Windows under Windows
362 #if defined(__GNUWIN32__)
363 #define wxSTDCALL __attribute__((stdcall))
365 // both VC++ and Borland understand this
366 #define wxSTDCALL _stdcall
370 // no such stupidness under Unix
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
379 // no stdcall under Unix nor Win16
383 // callling convention for the qsort(3) callback
385 #if defined(__VISUALC__)
386 #define wxCMPFUNC_CONV _cdecl
387 #elif defined(__VISAGECPP__)
388 #define wxCMPFUNC_CONV _Optlink
390 #define wxCMPFUNC_CONV
394 #define CMPFUNC_CONV wxCMPFUNC_CONV
396 // ----------------------------------------------------------------------------
397 // Making or using wxWindows as a Windows DLL
398 // ----------------------------------------------------------------------------
400 #if defined(__WXMSW__)
402 // __declspec works in BC++ 5 and later, as well as VC++ and gcc
403 #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__GNUC__)
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
414 # define WXDLLEXPORT_DATA(type) type
415 # define WXDLLEXPORT_CTORFN
419 # define WXDLLEXPORT_DATA(type) type
420 # define WXDLLEXPORT_CTORFN
423 #elif defined(__WXPM__)
425 # if (!(defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 )))
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
437 # define WXDLLEXPORT_DATA(type) type
438 # define WXDLLEXPORT_CTORFN
444 # define WXDLLEXPORT_DATA(type) type
445 # define WXDLLEXPORT_CTORFN
449 #else // !(MSW or OS2)
452 # define WXDLLEXPORT_DATA(type) type
453 # define WXDLLEXPORT_CTORFN
458 // For ostream, istream ofstream
459 #if defined(__BORLANDC__) && defined( _RTLDLL )
460 # define WXDLLIMPORT __import
465 class WXDLLEXPORT wxObject
;
466 class WXDLLEXPORT wxEvent
;
468 /** symbolic constant used by all Find()-like functions returning positive
469 integer on success as failure indicator */
470 #define wxNOT_FOUND (-1)
472 // ----------------------------------------------------------------------------
473 // Very common macros
474 // ----------------------------------------------------------------------------
476 // everybody gets the assert and other debug macros
477 #include "wx/debug.h"
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
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)
494 #define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; }
496 #define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
497 #endif /* __SGI__CC__ */
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; }
504 #define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; }
505 #endif /* __SGI__CC__ */
507 /// size of statically declared array
508 #define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
510 // ----------------------------------------------------------------------------
511 // compiler specific settings
512 // ----------------------------------------------------------------------------
514 // to allow compiling with warning level 4 under Microsoft Visual C++ some
515 // warnings just must be disabled
517 #pragma warning(disable: 4514) // unreferenced inline func has been removed
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?
523 #pragma warning(disable: 4127) // conditional expression is constant
526 #if defined(__MWERKS__)
530 #define except(x) catch(...)
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__)
537 // #undef __WXDEBUG__
538 # ifdef wxUSE_DEBUG_NEW_ALWAYS
539 # undef wxUSE_DEBUG_NEW_ALWAYS
540 # define wxUSE_DEBUG_NEW_ALWAYS 0
545 // Callback function type definition
546 typedef void (*wxFunction
) (wxObject
&, wxEvent
&);
548 // ----------------------------------------------------------------------------
549 // OS mnemonics -- Identify the running OS (useful for Windows)
550 // ----------------------------------------------------------------------------
552 // Not all platforms are currently available or supported
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
564 wxGTK_WIN32
, // GTK on Win32
565 wxGTK_OS2
, // GTK on OS/2
566 wxGTK_BEOS
, // GTK on BeOS
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
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
584 // ----------------------------------------------------------------------------
585 // standard wxWindows types
586 // ----------------------------------------------------------------------------
588 // the type for screen and DC coordinates
590 #if wxUSE_COMPATIBLE_COORD_TYPES
591 // to ensure compatibility with 2.0, we must use long
593 #else // !wxUSE_COMPATIBLE_COORD_TYPES
595 // under Win16, int is too small, so use long to allow for bigger
597 typedef long wxCoord
;
599 // other platforms we support have at least 32bit int - quite enough
601 #endif // Win16/!Win16
602 #endif // wxUSE_COMPATIBLE_COORD_TYPES/!wxUSE_COMPATIBLE_COORD_TYPES
604 // fixed length types
606 #define wxInt8 char signed
607 #define wxUint8 char unsigned
610 #define wxInt16 int signed
611 #define wxUint16 int unsigned
612 #define wxInt32 long signed
613 #define wxUint32 long unsigned
617 #define wxInt16 short signed
618 #define wxUint16 short unsigned
619 #define wxInt32 int signed
620 #define wxUint32 int unsigned
624 #define wxInt16 short signed
625 #define wxUint16 short unsigned
626 #define wxInt32 int signed
627 #define wxUint32 int unsigned
631 #define wxInt16 short signed
632 #define wxUint16 short unsigned
633 #define wxInt32 int signed
634 #define wxUint32 int unsigned
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
645 #define wxInt16 short signed
646 #define wxUint16 short unsigned
647 #define wxInt32 int signed
648 #define wxUint32 int unsigned
652 #define wxByte wxUint8
653 #define wxWord wxUint16
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
661 typedef float wxFloat32
;
662 #if defined( __WXMAC__ ) && defined (__MWERKS__)
663 typedef short double wxFloat64
;
665 typedef double wxFloat64
;
668 #if defined( __WXMAC__ ) && !defined( __POWERPC__ )
669 typedef long double wxDouble
;
671 typedef double wxDouble
;
674 // ----------------------------------------------------------------------------
675 // byte ordering related definition and macros
676 // ----------------------------------------------------------------------------
680 #define wxBIG_ENDIAN 4321
681 #define wxLITTLE_ENDIAN 1234
682 #define wxPDP_ENDIAN 3412
684 #ifdef WORDS_BIGENDIAN
685 #define wxBYTE_ORDER wxBIG_ENDIAN
687 #define wxBYTE_ORDER wxLITTLE_ENDIAN
692 #if defined (__MWERKS__) && ( (__MWERKS__ < 0x0900) || macintosh )
693 // assembler versions for these
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 ) ) ;}
704 #pragma parameter __D0 wxUINT16_SWAP_ALWAYS(__D0)
705 pascal wxUint16
wxUINT16_SWAP_ALWAYS(wxUint16 value
)
708 #pragma parameter __D0 wxINT16_SWAP_ALWAYS(__D0)
709 pascal wxInt16
wxINT16_SWAP_ALWAYS(wxInt16 value
)
712 #pragma parameter __D0 wxUINT32_SWAP_ALWAYS (__D0)
713 pascal wxUint32
wxUINT32_SWAP_ALWAYS(wxUint32 value
)
714 = { 0xE158, 0x4840, 0xE158 };
716 #pragma parameter __D0 wxINT32_SWAP_ALWAYS (__D0)
717 pascal wxInt32
wxINT32_SWAP_ALWAYS(wxInt32 value
)
718 = { 0xE158, 0x4840, 0xE158 };
722 #define wxUINT16_SWAP_ALWAYS(val) \
724 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
725 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
727 #define wxINT16_SWAP_ALWAYS(val) \
729 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
730 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
732 #define wxUINT32_SWAP_ALWAYS(val) \
734 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
735 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
736 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
737 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
739 #define wxINT32_SWAP_ALWAYS(val) \
741 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
742 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
743 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
744 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
746 // machine specific byte swapping
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)
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)
768 // ----------------------------------------------------------------------------
770 // ----------------------------------------------------------------------------
772 enum wxGeometryCentre
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
786 wxHORIZONTAL
= 0x0004,
789 wxBOTH
= (wxVERTICAL
| wxHORIZONTAL
)
807 wxALL
= (wxUP
| wxDOWN
| wxRIGHT
| wxLEFT
)
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
,
822 wxALIGN_CENTER
= (wxALIGN_CENTER_HORIZONTAL
| wxALIGN_CENTER_VERTICAL
),
823 wxALIGN_CENTRE
= wxALIGN_CENTER
828 wxSTRETCH_NOT
= 0x0000,
833 wxADJUST_MINSIZE
= 0x8000
836 // ----------------------------------------------------------------------------
837 // Window style flags
838 // ----------------------------------------------------------------------------
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.
847 * Window (cross-group) styles now take up the first half
848 * of the flag, and control-specific styles the
854 * Window (Frame/dialog/subwindow/panel item) style flags
856 #define wxVSCROLL 0x80000000
857 #define wxHSCROLL 0x40000000
858 #define wxCAPTION 0x20000000
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
870 // Override CTL3D etc. control colour processing to allow own background
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
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
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
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
893 // Make window retained (mostly Motif, I think)
894 #define wxRETAINED 0x00020000
895 #define wxBACKINGSTORE wxRETAINED
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
902 * Extra window style flags (use wxWS_EX prefix to make it clear that they
903 * should be passed to wxWindow::SetExtraStyle(), not SetWindowStyle())
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
912 * wxFrame/wxDialog style flags
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
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
930 // deprecated versions defined for compatibility reasons
931 #define wxRESIZE_BOX wxMAXIMIZE_BOX
932 #define wxTHICK_FRAME wxRESIZE_BORDER
934 // obsolete styles, unused any more
935 #define wxDIALOG_MODAL 0x0020
936 #define wxDIALOG_MODELESS 0x0000
938 // deprecated flag, don't use any more, defined for compatibility only
939 #define wxFRAME_FLOAT_ON_PARENT 0
941 // Context-sensitive help
942 #define wxFRAME_EX_CONTEXTHELP 0x00000004
943 #define wxDIALOG_EX_CONTEXTHELP 0x00000004
946 * MDI parent frame style flags
947 * Can overlap with some of the above.
950 #define wxFRAME_NO_WINDOW_MENU 0x0100
952 #if WXWIN_COMPATIBILITY
953 #define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE
956 #define wxDEFAULT_FRAME_STYLE \
957 (wxSYSTEM_MENU | wxRESIZE_BORDER | \
958 wxMINIMIZE_BOX | wxMAXIMIZE_BOX | \
959 wxCAPTION | wxCLIP_CHILDREN)
962 # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION)
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
970 * wxExtDialog style flags
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
977 #if defined(__WXMSW__) || defined(__WXMAC__)
978 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN)
980 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN|wxED_STATIC_LINE)
984 * wxToolBar style flags
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
995 * wxMenuBar style flags
997 // use native docking
998 #define wxMB_DOCKABLE 0x0001
1001 * wxMenu style flags
1003 #define wxMENU_TEAROFF 0x0001
1006 * Apply to all panel items
1008 #define wxCOLOURED 0x0800
1009 #define wxFIXED_LENGTH 0x0400
1012 * Styles for wxListBox
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
1025 * wxTextCtrl style flags
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
1044 * wxComboBox style flags
1046 #define wxCB_SIMPLE 0x0004
1047 #define wxCB_SORT 0x0008
1048 #define wxCB_READONLY 0x0010
1049 #define wxCB_DROPDOWN 0x0020
1052 * wxRadioBox style flags
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
1062 * wxRadioButton style flag
1064 #define wxRB_GROUP 0x0004
1069 #define wxGA_HORIZONTAL wxHORIZONTAL
1070 #define wxGA_VERTICAL wxVERTICAL
1071 #define wxGA_PROGRESSBAR 0x0010
1073 #define wxGA_SMOOTH 0x0020
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
1095 #define wxSB_HORIZONTAL wxHORIZONTAL
1096 #define wxSB_VERTICAL wxVERTICAL
1099 * wxButton flags (Win32 only)
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
1111 #define wxTR_HAS_BUTTONS 0x0004
1112 #define wxTR_EDIT_LABELS 0x0008
1113 #define wxTR_LINES_AT_ROOT 0x0010
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
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
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)
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
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.
1157 #define wxSP_HORIZONTAL wxHORIZONTAL // 4
1158 #define wxSP_VERTICAL wxVERTICAL // 8
1159 #define wxSP_ARROW_KEYS 0x1000
1160 #define wxSP_WRAP 0x2000
1163 * wxSplitterWindow flags
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)
1178 #define wxTC_MULTILINE 0x0000
1179 #define wxTC_RIGHTJUSTIFY 0x0010
1180 #define wxTC_FIXEDWIDTH 0x0020
1181 #define wxTC_OWNERDRAW 0x0040
1186 #define wxNB_FIXEDWIDTH 0x0010
1187 #define wxNB_LEFT 0x0020
1188 #define wxNB_RIGHT 0x0040
1189 #define wxNB_BOTTOM 0x0080
1192 * wxStatusBar95 flags
1194 #define wxST_SIZEGRIP 0x0010
1197 * wxStaticText flags
1199 #define wxST_NO_AUTORESIZE 0x0001
1202 * wxStaticLine flags
1204 #define wxLI_HORIZONTAL wxHORIZONTAL
1205 #define wxLI_VERTICAL wxVERTICAL
1208 * wxProgressDialog flags
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
1221 * wxHtmlWindow flags
1223 #define wxHW_SCROLLBAR_NEVER 0x0002
1224 #define wxHW_SCROLLBAR_AUTO 0x0004
1227 * wxCalendarCtrl flags
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
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).
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
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)
1261 #define wxFORWARD 0x00001000
1262 #define wxBACKWARD 0x00002000
1263 #define wxRESET 0x00004000
1264 #define wxHELP 0x00008000
1265 #define wxMORE 0x00010000
1266 #define wxSETUP 0x00020000
1268 // ----------------------------------------------------------------------------
1270 // ----------------------------------------------------------------------------
1272 // id for a separator line in the menu (invalid for normal item)
1273 #define wxID_SEPARATOR (-1)
1275 // Standard menu IDs
1276 #define wxID_LOWEST 4999
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
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
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
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
1335 // IDs used by generic file dialog (11 consecutive starting from this value)
1336 #define wxID_FILEDLGG 5900
1337 #define wxID_HIGHEST 5999
1339 // ----------------------------------------------------------------------------
1340 // Possible SetSize flags
1341 // ----------------------------------------------------------------------------
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
1357 // ----------------------------------------------------------------------------
1359 // ----------------------------------------------------------------------------
1362 // Text font families
1369 wxTELETYPE
, /* @@@@ */
1371 // Proportional or Fixed width fonts (not yet used)
1378 // Also wxNORMAL for normal (non-italic text)
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.
1404 #define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH)
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
1438 #define wxFLOOD_SURFACE 1
1439 #define wxFLOOD_BORDER 2
1441 /* Polygon filling mode */
1442 #define wxODDEVEN_RULE 1
1443 #define wxWINDING_RULE 2
1445 /* ToolPanel in wxFrame */
1446 #define wxTOOL_TOP 1
1447 #define wxTOOL_BOTTOM 2
1448 #define wxTOOL_LEFT 3
1449 #define wxTOOL_RIGHT 4
1451 // the values of the format constants should be the same as correspondign
1452 // CF_XXX constants in Windows API
1456 wxDF_TEXT
= 1, /* CF_TEXT */
1457 wxDF_BITMAP
= 2, /* CF_BITMAP */
1458 wxDF_METAFILE
= 3, /* CF_METAFILEPICT */
1462 wxDF_OEMTEXT
= 7, /* CF_OEMTEXT */
1463 wxDF_DIB
= 8, /* CF_DIB */
1468 wxDF_UNICODETEXT
= 13,
1469 wxDF_ENHMETAFILE
= 14,
1470 wxDF_FILENAME
= 15, /* CF_HDROP */
1476 /* Virtual keycodes */
1499 WXK_PRIOR
, /* Page up */
1500 WXK_NEXT
, /* Page down */
1573 WXK_NUMPAD_PAGEDOWN
,
1579 WXK_NUMPAD_MULTIPLY
,
1581 WXK_NUMPAD_SEPARATOR
,
1582 WXK_NUMPAD_SUBTRACT
,
1587 // Mapping modes (as per Windows)
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
1597 #define wxMM_POINTS 9
1598 #define wxMM_METRIC 10
1600 /* Shortcut for easier dialog-unit-to-pixel conversion */
1601 #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
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
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
1676 /* Printing orientation */
1678 #define wxPORTRAIT 1
1679 #define wxLANDSCAPE 2
1682 /* Duplex printing modes
1686 wxDUPLEX_SIMPLEX
, // Non-duplex
1687 wxDUPLEX_HORIZONTAL
,
1694 #define wxPRINT_QUALITY_HIGH -1
1695 #define wxPRINT_QUALITY_MEDIUM -2
1696 #define wxPRINT_QUALITY_LOW -3
1697 #define wxPRINT_QUALITY_DRAFT -4
1699 typedef int wxPrintQuality
;
1701 /* Print mode (currently PostScript only)
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
1711 // ----------------------------------------------------------------------------
1713 // ----------------------------------------------------------------------------
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
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 (*.*)|*.*")
1725 # define wxALL_FILES_PATTERN "*"
1726 # define wxALL_FILES gettext_noop("All files (*)|*")
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 // ---------------------------------------------------------------------------
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
)();
1768 typedef WindowPtr WXWindow
;
1769 typedef ControlHandle WXWidget
;
1773 #if defined(__WXMSW__) || defined(__WXPM__)
1775 // the keywords needed for WinMain() declaration
1778 # define WXFAR __far
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
;
1809 typedef unsigned int WXWPARAM
;
1810 typedef long WXLPARAM
;
1812 # define WXWPARAM MPARAM
1813 # define WXLPARAM MPARAM
1815 # define LOGFONT FATTRS
1816 # define LOWORD SHORT1FROMMP
1817 # define HIWORD SHORT2FROMMP
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
;
1826 typedef void * WXDRAWITEMSTRUCT
;
1827 typedef void * WXMEASUREITEMSTRUCT
;
1828 typedef void * WXLPCREATESTRUCT
;
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
;
1850 // WIN32 graphics types for OS/2 GPI
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)))
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
1869 typedef struct tagLOGPALETTE
1873 WORD PALETTEENTRY
[1];
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*);
1886 typedef WXRESULT (_System
*WXFARPROC
)(WXHWND
, WXMSGID
, WXWPARAM
, WXLPARAM
);
1889 typedef int (*WXFARPROC
)();
1892 typedef WXHWND WXWidget
;
1894 #if defined(__BORLANDC__) && !defined(__WIN32__)
1896 # define LPTSTR LPSTR
1899 # define LPCTSTR LPSTR
1903 #endif // MSW or OS2
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
;
1917 typedef void* WXRegion
;
1918 typedef void* WXFont
;
1919 typedef void* WXImage
;
1920 typedef void* WXCursor
;
1921 typedef void* WXFontList
;
1923 typedef unsigned long Atom
; /* this might fail on a few architectures */
1928 /* Stand-ins for GLIB types */
1930 typedef signed char gint8
;
1932 typedef unsigned guint
;
1933 typedef unsigned long gulong
;
1934 typedef void* gpointer
;
1935 typedef struct _GSList GSList
;
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
;
1944 typedef struct _GdkDrawable GdkWindow
;
1945 typedef struct _GdkDrawable GdkBitmap
;
1946 typedef struct _GdkDrawable GdkPixmap
;
1948 typedef struct _GdkWindow GdkWindow
;
1949 typedef struct _GdkWindow GdkBitmap
;
1950 typedef struct _GdkWindow GdkPixmap
;
1952 typedef struct _GdkCursor GdkCursor
;
1953 typedef struct _GdkRegion GdkRegion
;
1954 typedef struct _GdkDragContext GdkDragContext
;
1956 typedef struct _GdkIC GdkIC
;
1957 typedef struct _GdkICAttr GdkICAttr
;
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
;
1973 typedef GtkWidget
*WXWidget
;
1976 #define GTK_OBJECT_GET_CLASS(object) (GTK_OBJECT(object)->klass)
1977 #define GTK_CLASS_TYPE(klass) ((klass)->type)
1981 /* Stand-ins for Pango types */
1982 typedef struct _PangoContext PangoContext
;
1983 typedef struct _PangoLayout PangoLayout
;
1984 typedef struct _PangoFontDescription PangoFontDescription
;
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.
2022 // ---------------------------------------------------------------------------
2023 // macro to define a class without copy ctor nor assignment operator
2024 // ---------------------------------------------------------------------------
2026 #define DECLARE_NO_COPY_CLASS(classname) \
2028 classname(const classname&); \
2029 classname& operator=(const classname&)