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) || \
69 (defined(__MWERKS__) && !defined(__INTEL__))
71 #elif defined(__WXMAC__) && defined(__APPLE__)
82 #define PM_USE_SESSION_APIS 0
83 #include <Carbon/Carbon.h>
84 #elif defined(__OS2__)
85 #if defined(__IBMCPP__)
86 #define __VISAGEAVER__ __IBMCPP__
95 // Place other OS/2 compiler environment defines here
96 #if defined(__VISAGECPP__)
97 // VisualAge is the only thing that understands _Optlink
98 #define LINKAGEMODE _Optlink
105 // define another standard symbol for Microsoft Visual C++: the standard one
106 // (_MSC_VER) is also defined by Metrowerks compiler
107 #if defined(_MSC_VER) && !defined(__MWERKS__)
108 #define __VISUALC__ _MSC_VER
109 #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
111 #elif defined(__WATCOMC__)
112 //#define __WATCOMC__
113 #elif defined(__SC__)
114 #define __SYMANTECC__
118 // LINKAGEMODE mode is empty for everyting except OS/2
121 #endif // LINKAGEMODE
123 // suppress some Visual C++ warnings
125 # pragma warning(disable:4201) // nonstandard extension used: nameless struct/union
126 # pragma warning(disable:4244) // conversion from double to float
127 # pragma warning(disable:4100) // unreferenced formal parameter
128 # pragma warning(disable:4511) // copy ctor couldn't be generated
129 # pragma warning(disable:4512) // operator=() couldn't be generated
130 # pragma warning(disable:4699) // using precompiled header
131 # pragma warning(disable:4134) // conversion between pointers to members of same class
132 # pragma warning(disable:4710) // function not inlined
134 # pragma warning(disable:4135) // conversion between different integral types
135 # pragma warning(disable:4769) // assignment of near pointer to long integer
136 // This one is really annoying, since it occurs for each cast to (HANDLE)...
137 # pragma warning(disable:4305) // truncation of long to near ptr
139 #endif // __VISUALC__
141 // suppress some Salford C++ warnings
143 # pragma suppress 353 // Possible nested comments
144 # pragma suppress 593 // Define not used
145 # pragma suppress 61 // enum has no name (doesn't suppress!)
146 # pragma suppress 106 // unnamed, unused parameter
147 # pragma suppress 571 // Virtual function hiding
148 #endif // __SALFORDC__
150 #if defined(__VISUALC__) && !defined(WIN32)
151 // VC1.5 does not have LPTSTR type
153 #define LPCTSTR LPCSTR
156 // Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
157 // so define it ourselves (newer versions do it for all files, though, and
158 // don't allow it to be redefined)
160 #if !defined(__VMS) && !defined(__cplusplus)
165 // Resolves linking problems under HP-UX
166 #if defined(__HPUX__) && defined(__GNUG__)
167 #define va_list __gnuc_va_list
170 #if defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || defined( __CYGWIN__ )
171 #include "wx/msw/gccpriv.h"
173 #undef wxCHECK_W32API_VERSION
174 #define wxCHECK_W32API_VERSION(maj, min) (0)
177 //////////////////////////////////////////////////////////////////////////////////
178 // Currently Only MS-Windows/NT, XView and Motif are supported
180 #if defined(__HPUX__) && !defined(__WXGTK__)
183 #endif // __WXMOTIF__
186 #if defined(__WXMOTIF__)
192 #if defined(_WIN32) || defined(WIN32) || defined(__NT__)
214 #if !defined(__WIN95__) && (WINVER >= 0x0400)
218 #if defined(TWIN32) && !defined(__TWIN32__)
224 // Make sure the environment is set correctly
225 #if defined(__WXMSW__) && defined(__X__)
226 #error "Target can't be both X and Windows"
227 #elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && \
228 !defined(__WXPM__) && !defined(__WXMAC__) && !defined(__X__) && \
229 !defined(__WXQT__) && !defined(__WXSTUBS__) && wxUSE_GUI
230 #error "No Target! Use -D[__WXMOTIF__|__WXGTK__|__WXMSW__|__WXMAC__|__WXQT__|__WXPM__|__WXSTUBS__]"
233 // ----------------------------------------------------------------------------
235 // ----------------------------------------------------------------------------
239 #include "wx/setup.h"
241 // just in case they were defined in setup.h
250 // this has to be done after including setup.h which might
251 // define __HPUX__ 1 itself
252 #if defined(__hpux) && !defined(__HPUX__)
256 // if we're on a Unix system but didn't use configure (so that setup.h didn't
257 // define __UNIX__), do define __UNIX__ now
258 #if !defined(__UNIX__) && defined(__UNIX_LIKE__)
262 #include "wx/version.h"
264 // ----------------------------------------------------------------------------
265 // compatibility defines
266 // ----------------------------------------------------------------------------
268 // possibility to build non GUI apps is new, so don't burden ourselves with
269 // compatibility code
271 #undef WXWIN_COMPATIBILITY_2
272 #define WXWIN_COMPATIBILITY_2 0
275 // ============================================================================
276 // non portable C++ features
277 // ============================================================================
279 // ----------------------------------------------------------------------------
280 // check for native bool type and TRUE/FALSE constants
281 // ----------------------------------------------------------------------------
283 // define boolean constants if not done yet
292 // Add more tests here for Windows compilers that already define bool
293 // (under Unix, configure tests for this)
295 #if defined( __MWERKS__ )
296 #if (__MWERKS__ >= 0x1000) && __option(bool)
299 #elif defined(__VISUALC__) && (__VISUALC__ == 1020)
300 // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed)
301 // but not implemented, so we must #define it
302 #define bool unsigned int
303 #elif defined(__VISUALC__) && (__VISUALC__ == 1010)
304 // For VisualC++ 4.1, we need to define
305 // bool as something between 4.0 & 5.0...
306 typedef unsigned int wxbool
;
309 #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
310 // VC++ supports bool since 4.2
312 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)
313 // Borland 5.0+ supports bool
315 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
316 // Watcom 11+ supports bool
318 #elif defined(__GNUWIN32__)
319 // Cygwin supports bool
321 #elif defined(__VISAGECPP__)
323 typedef unsigned long bool;
329 #if !defined(HAVE_BOOL) && !defined(bool)
330 // NB: of course, this doesn't replace the standard type, because, for
331 // example, overloading based on bool/int parameter doesn't work and
332 // so should be avoided in portable programs
334 typedef unsigned int bool;
338 typedef short int WXTYPE
;
340 // special care should be taken with this type under Windows where the real
341 // window id is unsigned, so we must always do the cast before comparing them
342 // (or else they would be always different!). Usign wxGetWindowId() which does
343 // the cast itself is recommended. Note that this type can't be unsigned
344 // because -1 is a valid (and largely used) value for window id.
345 typedef int wxWindowID
;
347 // Macro to cut down on compiler warnings.
348 #if REMOVE_UNUSED_ARG
349 #define WXUNUSED(identifier) /* identifier */
350 #else // stupid, broken compiler
351 #define WXUNUSED(identifier) identifier
354 // some arguments are only used in debug mode, but unused in release one
356 #define WXUNUSED_UNLESS_DEBUG(param) param
358 #define WXUNUSED_UNLESS_DEBUG(param) WXUNUSED(param)
361 // ----------------------------------------------------------------------------
362 // portable calling conventions macros
363 // ----------------------------------------------------------------------------
365 // stdcall is used for all functions called by Windows under Windows
367 #if defined(__GNUWIN32__)
368 #define wxSTDCALL __attribute__((stdcall))
370 // both VC++ and Borland understand this
371 #define wxSTDCALL _stdcall
375 // no such stupidness under Unix
379 // wxCALLBACK should be used for the functions which are called back by
380 // Windows (such as compare function for wxListCtrl)
381 #if defined(__WIN32__)
382 #define wxCALLBACK wxSTDCALL
384 // no stdcall under Unix nor Win16
388 // callling convention for the qsort(3) callback
390 #if defined(__VISUALC__)
391 #define wxCMPFUNC_CONV _cdecl
392 #elif defined(__VISAGECPP__)
393 #define wxCMPFUNC_CONV _Optlink
395 #define wxCMPFUNC_CONV
399 #define CMPFUNC_CONV wxCMPFUNC_CONV
401 // ----------------------------------------------------------------------------
402 // Making or using wxWindows as a Windows DLL
403 // ----------------------------------------------------------------------------
405 #if defined(__WXMSW__)
407 // __declspec works in BC++ 5 and later, as well as VC++ and gcc
408 #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__GNUC__)
410 # define WXDLLEXPORT __declspec( dllexport )
411 # define WXDLLEXPORT_DATA(type) __declspec( dllexport ) type
412 # define WXDLLEXPORT_CTORFN
413 # elif defined(WXUSINGDLL)
414 # define WXDLLEXPORT __declspec( dllimport )
415 # define WXDLLEXPORT_DATA(type) __declspec( dllimport ) type
416 # define WXDLLEXPORT_CTORFN
419 # define WXDLLEXPORT_DATA(type) type
420 # define WXDLLEXPORT_CTORFN
424 # define WXDLLEXPORT_DATA(type) type
425 # define WXDLLEXPORT_CTORFN
428 #elif defined(__WXPM__)
430 # if (!(defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 )))
433 # define WXDLLEXPORT _Export
434 # define WXDLLEXPORT_DATA(type) _Export type
435 # define WXDLLEXPORT_CTORFN
436 # elif defined(WXUSINGDLL)
437 # define WXDLLEXPORT _Export
438 # define WXDLLEXPORT_DATA(type) _Export type
439 # define WXDLLEXPORT_CTORFN
442 # define WXDLLEXPORT_DATA(type) type
443 # define WXDLLEXPORT_CTORFN
449 # define WXDLLEXPORT_DATA(type) type
450 # define WXDLLEXPORT_CTORFN
454 #else // !(MSW or OS2)
457 # define WXDLLEXPORT_DATA(type) type
458 # define WXDLLEXPORT_CTORFN
463 // For ostream, istream ofstream
464 #if defined(__BORLANDC__) && defined( _RTLDLL )
465 # define WXDLLIMPORT __import
470 class WXDLLEXPORT wxObject
;
471 class WXDLLEXPORT wxEvent
;
473 /** symbolic constant used by all Find()-like functions returning positive
474 integer on success as failure indicator */
475 #define wxNOT_FOUND (-1)
477 // ----------------------------------------------------------------------------
478 // Very common macros
479 // ----------------------------------------------------------------------------
481 // everybody gets the assert and other debug macros
482 #include "wx/debug.h"
485 /// delete pointer if it is not NULL and NULL it afterwards
486 // (checking that it's !NULL before passing it to delete is just a
487 // a question of style, because delete will do it itself anyhow, but it might
488 // be considered as an error by some overzealous debugging implementations of
489 // the library, so we do it ourselves)
490 #if defined(__SGI_CC__)
491 // Okay this is bad styling, but the native SGI compiler is very picky, it
492 // wont let you compare/assign between a NULL (void *) and another pointer
493 // type. To be really clean we'd need to pass in another argument, the type
495 // Also note the use of 0L, this would allow future possible 64bit support
496 // (as yet untested) by ensuring that we zero all the bits in a pointer
497 // (which is always the same length as a long (at least with the LP64 standard)
499 #define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; }
501 #define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
502 #endif /* __SGI__CC__ */
504 // delete an array and NULL it (see comments above)
505 #if defined(__SGI_CC__)
506 // see above comment.
507 #define wxDELETEA(p) if ( (p) ) { delete [] (p); p = 0L; }
509 #define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; }
510 #endif /* __SGI__CC__ */
512 /// size of statically declared array
513 #define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
515 // ----------------------------------------------------------------------------
516 // compiler specific settings
517 // ----------------------------------------------------------------------------
519 // to allow compiling with warning level 4 under Microsoft Visual C++ some
520 // warnings just must be disabled
522 #pragma warning(disable: 4514) // unreferenced inline func has been removed
524 you might be tempted to disable this one also: triggered by CHECK and FAIL
525 macros in debug.h, but it's, overall, a rather useful one, so I leave it and
526 will try to find some way to disable this warning just for CHECK/FAIL. Anyone?
528 #pragma warning(disable: 4127) // conditional expression is constant
531 #if defined(__MWERKS__)
535 #define except(x) catch(...)
538 // where should i put this? we need to make sure of this as it breaks
539 // the <iostream> code.
540 #if !wxUSE_IOSTREAMH && defined(__WXDEBUG__)
542 // #undef __WXDEBUG__
543 # ifdef wxUSE_DEBUG_NEW_ALWAYS
544 # undef wxUSE_DEBUG_NEW_ALWAYS
545 # define wxUSE_DEBUG_NEW_ALWAYS 0
550 // Callback function type definition
551 typedef void (*wxFunction
) (wxObject
&, wxEvent
&);
553 // ----------------------------------------------------------------------------
554 // OS mnemonics -- Identify the running OS (useful for Windows)
555 // ----------------------------------------------------------------------------
557 // Not all platforms are currently available or supported
561 wxCURSES
, // Text-only CURSES
562 wxXVIEW_X
, // Sun's XView OpenLOOK toolkit
563 wxMOTIF_X
, // OSF Motif 1.x.x
564 wxCOSE_X
, // OSF Common Desktop Environment
565 wxNEXTSTEP
, // NeXTStep
566 wxMACINTOSH
, // Apple System 7 and 8
569 wxGTK_WIN32
, // GTK on Win32
570 wxGTK_OS2
, // GTK on OS/2
571 wxGTK_BEOS
, // GTK on BeOS
574 wxOS2_PM
, // OS/2 Workplace
575 wxWINDOWS
, // Windows or WfW
576 wxPENWINDOWS
, // Windows for Pen Computing
577 wxWINDOWS_NT
, // Windows NT
578 wxWIN32S
, // Windows 32S API
579 wxWIN95
, // Windows 95
580 wxWIN386
, // Watcom 32-bit supervisor modus
581 wxMGL_UNIX
, // MGL with direct hardware access
583 wxMGL_WIN32
, // MGL on Win32
584 wxMGL_OS2
, // MGL on OS/2
585 wxWINDOWS_OS2
, // Native OS/2 PM
586 wxUNIX
// wxBase under Unix
589 // ----------------------------------------------------------------------------
590 // standard wxWindows types
591 // ----------------------------------------------------------------------------
593 // the type for screen and DC coordinates
595 #if wxUSE_COMPATIBLE_COORD_TYPES
596 // to ensure compatibility with 2.0, we must use long
598 #else // !wxUSE_COMPATIBLE_COORD_TYPES
600 // under Win16, int is too small, so use long to allow for bigger
602 typedef long wxCoord
;
604 // other platforms we support have at least 32bit int - quite enough
606 #endif // Win16/!Win16
607 #endif // wxUSE_COMPATIBLE_COORD_TYPES/!wxUSE_COMPATIBLE_COORD_TYPES
609 // fixed length types
611 #define wxInt8 char signed
612 #define wxUint8 char unsigned
615 #define wxInt16 int signed
616 #define wxUint16 int unsigned
617 #define wxInt32 long signed
618 #define wxUint32 long unsigned
622 #define wxInt16 short signed
623 #define wxUint16 short unsigned
624 #define wxInt32 int signed
625 #define wxUint32 int unsigned
629 #define wxInt16 short signed
630 #define wxUint16 short unsigned
631 #define wxInt32 int signed
632 #define wxUint32 int unsigned
636 #define wxInt16 short signed
637 #define wxUint16 short unsigned
638 #define wxInt32 int signed
639 #define wxUint32 int unsigned
642 #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXOS2__)
643 #if defined(SIZEOF_INT)
644 /* well, this shouldn't happen... */
645 #define wxInt16 short signed
646 #define wxUint16 short unsigned
647 #define wxInt32 int signed
648 #define wxUint32 int unsigned
650 #define wxInt16 short signed
651 #define wxUint16 short unsigned
652 #define wxInt32 int signed
653 #define wxUint32 int unsigned
657 #define wxByte wxUint8
658 #define wxWord wxUint16
660 // base floating point types
661 // wxFloat32 : 32 bit IEEE float ( 1 sign , 8 exponent bits , 23 fraction bits
662 // wxFloat64 : 64 bit IEEE float ( 1 sign , 11 exponent bits , 52 fraction bits
663 // wxDouble : native fastest representation that has at least wxFloat64
664 // precision, so use the IEEE types for storage , and this for calculations
666 typedef float wxFloat32
;
667 #if defined( __WXMAC__ ) && defined (__MWERKS__)
668 typedef short double wxFloat64
;
670 typedef double wxFloat64
;
673 #if defined( __WXMAC__ ) && !defined( __POWERPC__ )
674 typedef long double wxDouble
;
676 typedef double wxDouble
;
679 // ----------------------------------------------------------------------------
680 // byte ordering related definition and macros
681 // ----------------------------------------------------------------------------
685 #define wxBIG_ENDIAN 4321
686 #define wxLITTLE_ENDIAN 1234
687 #define wxPDP_ENDIAN 3412
689 #ifdef WORDS_BIGENDIAN
690 #define wxBYTE_ORDER wxBIG_ENDIAN
692 #define wxBYTE_ORDER wxLITTLE_ENDIAN
697 #if defined (__MWERKS__) && ( (__MWERKS__ < 0x0900) || macintosh )
698 // assembler versions for these
700 inline wxUint16
wxUINT16_SWAP_ALWAYS( wxUint16 i
)
701 {return (__lhbrx( &i
, 0 ) ) ;}
702 inline wxInt16
wxINT16_SWAP_ALWAYS( wxInt16 i
)
703 {return (__lhbrx( &i
, 0 ) ) ;}
704 inline wxUint32
wxUINT32_SWAP_ALWAYS( wxUint32 i
)
705 {return (__lwbrx( &i
, 0 ) ) ;}
706 inline wxInt32
wxINT32_SWAP_ALWAYS( wxInt32 i
)
707 {return (__lwbrx( &i
, 0 ) ) ;}
709 #pragma parameter __D0 wxUINT16_SWAP_ALWAYS(__D0)
710 pascal wxUint16
wxUINT16_SWAP_ALWAYS(wxUint16 value
)
713 #pragma parameter __D0 wxINT16_SWAP_ALWAYS(__D0)
714 pascal wxInt16
wxINT16_SWAP_ALWAYS(wxInt16 value
)
717 #pragma parameter __D0 wxUINT32_SWAP_ALWAYS (__D0)
718 pascal wxUint32
wxUINT32_SWAP_ALWAYS(wxUint32 value
)
719 = { 0xE158, 0x4840, 0xE158 };
721 #pragma parameter __D0 wxINT32_SWAP_ALWAYS (__D0)
722 pascal wxInt32
wxINT32_SWAP_ALWAYS(wxInt32 value
)
723 = { 0xE158, 0x4840, 0xE158 };
727 #define wxUINT16_SWAP_ALWAYS(val) \
729 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
730 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
732 #define wxINT16_SWAP_ALWAYS(val) \
734 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
735 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
737 #define wxUINT32_SWAP_ALWAYS(val) \
739 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
740 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
741 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
742 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
744 #define wxINT32_SWAP_ALWAYS(val) \
746 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
747 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
748 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
749 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
751 // machine specific byte swapping
753 #ifdef WORDS_BIGENDIAN
754 #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val)
755 #define wxINT16_SWAP_ON_BE(val) wxINT16_SWAP_ALWAYS(val)
756 #define wxUINT16_SWAP_ON_LE(val) (val)
757 #define wxINT16_SWAP_ON_LE(val) (val)
758 #define wxUINT32_SWAP_ON_BE(val) wxUINT32_SWAP_ALWAYS(val)
759 #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val)
760 #define wxUINT32_SWAP_ON_LE(val) (val)
761 #define wxINT32_SWAP_ON_LE(val) (val)
763 #define wxUINT16_SWAP_ON_LE(val) wxUINT16_SWAP_ALWAYS(val)
764 #define wxINT16_SWAP_ON_LE(val) wxINT16_SWAP_ALWAYS(val)
765 #define wxUINT16_SWAP_ON_BE(val) (val)
766 #define wxINT16_SWAP_ON_BE(val) (val)
767 #define wxUINT32_SWAP_ON_LE(val) wxUINT32_SWAP_ALWAYS(val)
768 #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val)
769 #define wxUINT32_SWAP_ON_BE(val) (val)
770 #define wxINT32_SWAP_ON_BE(val) (val)
773 // ----------------------------------------------------------------------------
775 // ----------------------------------------------------------------------------
777 enum wxGeometryCentre
783 // centering into frame rather than screen (obsolete)
784 #define wxCENTER_FRAME 0x0000
785 // centre on screen rather than parent
786 #define wxCENTRE_ON_SCREEN 0x0002
787 #define wxCENTER_ON_SCREEN wxCENTRE_ON_SCREEN
791 wxHORIZONTAL
= 0x0004,
794 wxBOTH
= (wxVERTICAL
| wxHORIZONTAL
)
812 wxALL
= (wxUP
| wxDOWN
| wxRIGHT
| wxLEFT
)
817 wxALIGN_NOT
= 0x0000,
818 wxALIGN_CENTER_HORIZONTAL
= 0x0100,
819 wxALIGN_CENTRE_HORIZONTAL
= wxALIGN_CENTER_HORIZONTAL
,
820 wxALIGN_LEFT
= wxALIGN_NOT
,
821 wxALIGN_TOP
= wxALIGN_NOT
,
822 wxALIGN_RIGHT
= 0x0200,
823 wxALIGN_BOTTOM
= 0x0400,
824 wxALIGN_CENTER_VERTICAL
= 0x0800,
825 wxALIGN_CENTRE_VERTICAL
= wxALIGN_CENTER_VERTICAL
,
827 wxALIGN_CENTER
= (wxALIGN_CENTER_HORIZONTAL
| wxALIGN_CENTER_VERTICAL
),
828 wxALIGN_CENTRE
= wxALIGN_CENTER
833 wxSTRETCH_NOT
= 0x0000,
838 wxADJUST_MINSIZE
= 0x8000
841 // ----------------------------------------------------------------------------
842 // Window style flags
843 // ----------------------------------------------------------------------------
846 * Values are chosen so they can be |'ed in a bit list.
847 * Some styles are used across more than one group,
848 * so the values mustn't clash with others in the group.
849 * Otherwise, numbers can be reused across groups.
852 * Window (cross-group) styles now take up the first half
853 * of the flag, and control-specific styles the
859 * Window (Frame/dialog/subwindow/panel item) style flags
861 #define wxVSCROLL 0x80000000
862 #define wxHSCROLL 0x40000000
863 #define wxCAPTION 0x20000000
866 #define wxDOUBLE_BORDER 0x10000000
867 #define wxSUNKEN_BORDER 0x08000000
868 #define wxRAISED_BORDER 0x04000000
869 #define wxBORDER 0x02000000
870 #define wxSIMPLE_BORDER wxBORDER
871 #define wxSTATIC_BORDER 0x01000000
872 #define wxTRANSPARENT_WINDOW 0x00100000
873 #define wxNO_BORDER 0x00200000
875 // Override CTL3D etc. control colour processing to allow own background
877 // OBSOLETE - use wxNO_3D instead
878 #define wxUSER_COLOURS 0x00800000
879 // Override CTL3D or native 3D styles for children
880 #define wxNO_3D 0x00800000
882 // Clip children when painting, which reduces flicker in e.g. frames and
883 // splitter windows, but can't be used in a panel where a static box must be
884 // 'transparent' (panel paints the background for it)
885 #define wxCLIP_CHILDREN 0x00400000
886 // Note we're reusing the wxCAPTION style because we won't need captions
887 // for subwindows/controls
888 #define wxCLIP_SIBLINGS 0x20000000
890 // Add this style to a panel to get tab traversal working outside of dialogs
891 // (on by default for wxPanel, wxDialog, wxScrolledWindow)
892 #define wxTAB_TRAVERSAL 0x00080000
894 // Add this style if the control wants to get all keyboard messages (under
895 // Windows, it won't normally get the dialog navigation key events)
896 #define wxWANTS_CHARS 0x00040000
898 // Make window retained (mostly Motif, I think)
899 #define wxRETAINED 0x00020000
900 #define wxBACKINGSTORE wxRETAINED
902 // don't invalidate the whole window (resulting in a PAINT event) when the
903 // window is resized (currently, makes sense for wxMSW only)
904 #define wxNO_FULL_REPAINT_ON_RESIZE 0x00010000
907 * Extra window style flags (use wxWS_EX prefix to make it clear that they
908 * should be passed to wxWindow::SetExtraStyle(), not SetWindowStyle())
911 // by default, TransferDataTo/FromWindow() only work on direct children of the
912 // window (compatible behaviour), set this flag to make them recursively
913 // descend into all subwindows
914 #define wxWS_EX_VALIDATE_RECURSIVELY 0x00000001
917 * wxFrame/wxDialog style flags
919 #define wxSTAY_ON_TOP 0x8000
920 #define wxICONIZE 0x4000
921 #define wxMINIMIZE wxICONIZE
922 #define wxMAXIMIZE 0x2000
923 // free value: 0x1000
924 #define wxSYSTEM_MENU 0x0800
925 #define wxMINIMIZE_BOX 0x0400
926 #define wxMAXIMIZE_BOX 0x0200
927 #define wxTINY_CAPTION_HORIZ 0x0100
928 #define wxTINY_CAPTION_VERT 0x0080
929 #define wxRESIZE_BORDER 0x0040
931 #define wxDIALOG_NO_PARENT 0x0001 // Don't make owned by apps top window
932 #define wxFRAME_NO_TASKBAR 0x0002 // No taskbar button (MSW only)
933 #define wxFRAME_TOOL_WINDOW 0x0004 // No taskbar button, no system menu
935 // deprecated versions defined for compatibility reasons
936 #define wxRESIZE_BOX wxMAXIMIZE_BOX
937 #define wxTHICK_FRAME wxRESIZE_BORDER
939 // obsolete styles, unused any more
940 #define wxDIALOG_MODAL 0x0020
941 #define wxDIALOG_MODELESS 0x0000
943 // deprecated flag, don't use any more, defined for compatibility only
944 #define wxFRAME_FLOAT_ON_PARENT 0
946 // Context-sensitive help
947 #define wxFRAME_EX_CONTEXTHELP 0x00000004
948 #define wxDIALOG_EX_CONTEXTHELP 0x00000004
951 * MDI parent frame style flags
952 * Can overlap with some of the above.
955 #define wxFRAME_NO_WINDOW_MENU 0x0100
957 #if WXWIN_COMPATIBILITY
958 #define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE
961 #define wxDEFAULT_FRAME_STYLE \
962 (wxSYSTEM_MENU | wxRESIZE_BORDER | \
963 wxMINIMIZE_BOX | wxMAXIMIZE_BOX | \
964 wxCAPTION | wxCLIP_CHILDREN)
967 # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION)
969 // Under Unix, the dialogs don't have a system menu. Specifying wxSYSTEM_MENU
970 // here will make a close button appear.
971 # define wxDEFAULT_DIALOG_STYLE wxCAPTION
975 * wxExtDialog style flags
977 #define wxED_CLIENT_MARGIN 0x0004
978 #define wxED_BUTTONS_BOTTOM 0x0000 // has no effect
979 #define wxED_BUTTONS_RIGHT 0x0002
980 #define wxED_STATIC_LINE 0x0001
982 #if defined(__WXMSW__) || defined(__WXMAC__)
983 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN)
985 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN|wxED_STATIC_LINE)
989 * wxToolBar style flags
991 #define wxTB_HORIZONTAL wxHORIZONTAL
992 #define wxTB_VERTICAL wxVERTICAL
993 #define wxTB_3DBUTTONS 0x0010
994 // Flatbar/Coolbar under Win98/ GTK 1.2
995 #define wxTB_FLAT 0x0020
996 // use native docking under GTK
997 #define wxTB_DOCKABLE 0x0040
1000 * wxMenuBar style flags
1002 // use native docking
1003 #define wxMB_DOCKABLE 0x0001
1006 * wxMenu style flags
1008 #define wxMENU_TEAROFF 0x0001
1011 * Apply to all panel items
1013 #define wxCOLOURED 0x0800
1014 #define wxFIXED_LENGTH 0x0400
1017 * Styles for wxListBox
1019 #define wxLB_SORT 0x0010
1020 #define wxLB_SINGLE 0x0020
1021 #define wxLB_MULTIPLE 0x0040
1022 #define wxLB_EXTENDED 0x0080
1023 // wxLB_OWNERDRAW is Windows-only
1024 #define wxLB_OWNERDRAW 0x0100
1025 #define wxLB_NEEDED_SB 0x0200
1026 #define wxLB_ALWAYS_SB 0x0400
1027 #define wxLB_HSCROLL wxHSCROLL
1030 * wxTextCtrl style flags
1032 // the flag bits 0x0001, 2, 4 and 8 are free but should be used only for the
1033 // things which don't make sense for a text control used by wxTextEntryDialog
1034 // because they would otherwise conflict with wxOK, wxCANCEL, wxCENTRE
1035 #define wxTE_READONLY 0x0010
1036 #define wxTE_MULTILINE 0x0020
1037 #define wxTE_PROCESS_TAB 0x0040
1038 // this style means to use RICHEDIT control and does something only under wxMSW
1039 // and Win32 and is silently ignored under all other platforms
1040 #define wxTE_RICH 0x0080
1041 #define wxTE_NO_VSCROLL 0x0100
1042 #define wxTE_AUTO_SCROLL 0x0200
1043 #define wxPROCESS_ENTER 0x0400
1044 #define wxPASSWORD 0x0800
1045 #define wxTE_PROCESS_ENTER wxPROCESS_ENTER
1046 #define wxTE_PASSWORD wxPASSWORD
1049 * wxComboBox style flags
1051 #define wxCB_SIMPLE 0x0004
1052 #define wxCB_SORT 0x0008
1053 #define wxCB_READONLY 0x0010
1054 #define wxCB_DROPDOWN 0x0020
1057 * wxRadioBox style flags
1059 // New, more intuitive names to specify majorDim argument
1060 #define wxRA_SPECIFY_COLS wxHORIZONTAL
1061 #define wxRA_SPECIFY_ROWS wxVERTICAL
1062 // Old names for compatibility
1063 #define wxRA_HORIZONTAL wxHORIZONTAL
1064 #define wxRA_VERTICAL wxVERTICAL
1067 * wxRadioButton style flag
1069 #define wxRB_GROUP 0x0004
1074 #define wxGA_HORIZONTAL wxHORIZONTAL
1075 #define wxGA_VERTICAL wxVERTICAL
1076 #define wxGA_PROGRESSBAR 0x0010
1078 #define wxGA_SMOOTH 0x0020
1083 #define wxSL_HORIZONTAL wxHORIZONTAL // 4
1084 #define wxSL_VERTICAL wxVERTICAL // 8
1085 // The next one is obsolete - use scroll events instead
1086 #define wxSL_NOTIFY_DRAG 0x0000
1087 #define wxSL_AUTOTICKS 0x0010
1088 // #define wxSL_MANUALTICKS 0x0010
1089 #define wxSL_LABELS 0x0020
1090 #define wxSL_LEFT 0x0040
1091 #define wxSL_TOP 0x0080
1092 #define wxSL_RIGHT 0x0100
1093 #define wxSL_BOTTOM 0x0200
1094 #define wxSL_BOTH 0x0400
1095 #define wxSL_SELRANGE 0x0800
1100 #define wxSB_HORIZONTAL wxHORIZONTAL
1101 #define wxSB_VERTICAL wxVERTICAL
1104 * wxButton flags (Win32 only)
1106 #define wxBU_AUTODRAW 0x0004
1107 #define wxBU_NOAUTODRAW 0x0000
1108 #define wxBU_LEFT 0x0040
1109 #define wxBU_TOP 0x0080
1110 #define wxBU_RIGHT 0x0100
1111 #define wxBU_BOTTOM 0x0200
1116 #define wxTR_HAS_BUTTONS 0x0004
1117 #define wxTR_EDIT_LABELS 0x0008
1118 #define wxTR_LINES_AT_ROOT 0x0010
1120 #define wxTR_SINGLE 0x0000
1121 #define wxTR_MULTIPLE 0x0020
1122 #define wxTR_EXTENDED 0x0040
1123 #define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080
1124 #define wxTR_NO_LINES 0x0100
1129 #define wxLC_VRULES 0x0001
1130 #define wxLC_HRULES 0x0002
1131 #define wxLC_ICON 0x0004
1132 #define wxLC_SMALL_ICON 0x0008
1133 #define wxLC_LIST 0x0010
1134 #define wxLC_REPORT 0x0020
1135 #define wxLC_ALIGN_TOP 0x0040
1136 #define wxLC_ALIGN_LEFT 0x0080
1137 #define wxLC_AUTOARRANGE 0x0100
1138 #define wxLC_USER_TEXT 0x0200
1139 #define wxLC_EDIT_LABELS 0x0400
1140 #define wxLC_NO_HEADER 0x0800
1141 #define wxLC_NO_SORT_HEADER 0x1000
1142 #define wxLC_SINGLE_SEL 0x2000
1143 #define wxLC_SORT_ASCENDING 0x4000
1144 #define wxLC_SORT_DESCENDING 0x8000
1146 #define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT)
1147 #define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT)
1148 #define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING)
1150 // Omitted because (a) too much detail (b) not enough style flags
1151 // #define wxLC_NO_SCROLL
1152 // #define wxLC_NO_LABEL_WRAP
1153 // #define wxLC_OWNERDRAW_FIXED
1154 // #define wxLC_SHOW_SEL_ALWAYS
1157 * wxSpinButton flags.
1158 * Note that a wxSpinCtrl is sometimes defined as
1159 * a wxTextCtrl, and so the flags must be different
1160 * from wxTextCtrl's.
1162 #define wxSP_HORIZONTAL wxHORIZONTAL // 4
1163 #define wxSP_VERTICAL wxVERTICAL // 8
1164 #define wxSP_ARROW_KEYS 0x1000
1165 #define wxSP_WRAP 0x2000
1168 * wxSplitterWindow flags
1170 #define wxSP_NOBORDER 0x0000
1171 #define wxSP_NOSASH 0x0010
1172 #define wxSP_BORDER 0x0020
1173 #define wxSP_PERMIT_UNSPLIT 0x0040
1174 #define wxSP_LIVE_UPDATE 0x0080
1175 #define wxSP_3DSASH 0x0100
1176 #define wxSP_3DBORDER 0x0200
1177 #define wxSP_FULLSASH 0x0400
1178 #define wxSP_3D (wxSP_3DBORDER | wxSP_3DSASH)
1183 #define wxTC_MULTILINE 0x0000
1184 #define wxTC_RIGHTJUSTIFY 0x0010
1185 #define wxTC_FIXEDWIDTH 0x0020
1186 #define wxTC_OWNERDRAW 0x0040
1191 #define wxNB_FIXEDWIDTH 0x0010
1192 #define wxNB_LEFT 0x0020
1193 #define wxNB_RIGHT 0x0040
1194 #define wxNB_BOTTOM 0x0080
1197 * wxStatusBar95 flags
1199 #define wxST_SIZEGRIP 0x0010
1202 * wxStaticText flags
1204 #define wxST_NO_AUTORESIZE 0x0001
1207 * wxStaticLine flags
1209 #define wxLI_HORIZONTAL wxHORIZONTAL
1210 #define wxLI_VERTICAL wxVERTICAL
1213 * wxProgressDialog flags
1215 #define wxPD_CAN_ABORT 0x0001
1216 #define wxPD_APP_MODAL 0x0002
1217 #define wxPD_AUTO_HIDE 0x0004
1218 #define wxPD_ELAPSED_TIME 0x0008
1219 #define wxPD_ESTIMATED_TIME 0x0010
1220 // wxGA_SMOOTH = 0x0020 may also be used with wxProgressDialog
1221 // NO!!! This is wxDIALOG_MODAL and will cause the progress dialog to
1222 // be modal. No progress will then be made at all.
1223 #define wxPD_REMAINING_TIME 0x0040
1226 * wxHtmlWindow flags
1228 #define wxHW_SCROLLBAR_NEVER 0x0002
1229 #define wxHW_SCROLLBAR_AUTO 0x0004
1232 * wxCalendarCtrl flags
1234 #define wxCAL_SUNDAY_FIRST 0x0000
1235 #define wxCAL_MONDAY_FIRST 0x0001
1236 #define wxCAL_SHOW_HOLIDAYS 0x0002
1237 #define wxCAL_NO_YEAR_CHANGE 0x0004
1238 #define wxCAL_NO_MONTH_CHANGE 0x000c // no month change => no year change
1241 * extended dialog specifiers. these values are stored in a different
1242 * flag and thus do not overlap with other style flags. note that these
1243 * values do not correspond to the return values of the dialogs (for
1244 * those values, look at the wxID_XXX defines).
1247 // wxCENTRE already defined as 0x00000001
1248 #define wxOK 0x00000004
1249 #define wxYES_NO 0x00000008
1250 #define wxCANCEL 0x00000010
1251 #define wxYES 0x00000020
1252 #define wxNO 0x00000040
1253 #define wxNO_DEFAULT 0x00000080
1254 #define wxYES_DEFAULT 0x00000000 // has no effect
1256 #define wxICON_EXCLAMATION 0x00000100
1257 #define wxICON_HAND 0x00000200
1258 #define wxICON_WARNING wxICON_EXCLAMATION
1259 #define wxICON_ERROR wxICON_HAND
1260 #define wxICON_QUESTION 0x00000400
1261 #define wxICON_INFORMATION 0x00000800
1262 #define wxICON_STOP wxICON_HAND
1263 #define wxICON_ASTERISK wxICON_INFORMATION
1264 #define wxICON_MASK (0x00000100|0x00000200|0x00000400|0x00000800)
1266 #define wxFORWARD 0x00001000
1267 #define wxBACKWARD 0x00002000
1268 #define wxRESET 0x00004000
1269 #define wxHELP 0x00008000
1270 #define wxMORE 0x00010000
1271 #define wxSETUP 0x00020000
1273 // ----------------------------------------------------------------------------
1275 // ----------------------------------------------------------------------------
1277 // id for a separator line in the menu (invalid for normal item)
1278 #define wxID_SEPARATOR (-1)
1280 // Standard menu IDs
1281 #define wxID_LOWEST 4999
1283 #define wxID_OPEN 5000
1284 #define wxID_CLOSE 5001
1285 #define wxID_NEW 5002
1286 #define wxID_SAVE 5003
1287 #define wxID_SAVEAS 5004
1288 #define wxID_REVERT 5005
1289 #define wxID_EXIT 5006
1290 #define wxID_UNDO 5007
1291 #define wxID_REDO 5008
1292 #define wxID_HELP 5009
1293 #define wxID_PRINT 5010
1294 #define wxID_PRINT_SETUP 5011
1295 #define wxID_PREVIEW 5012
1296 #define wxID_ABOUT 5013
1297 #define wxID_HELP_CONTENTS 5014
1298 #define wxID_HELP_COMMANDS 5015
1299 #define wxID_HELP_PROCEDURES 5016
1300 #define wxID_HELP_CONTEXT 5017
1302 #define wxID_CUT 5030
1303 #define wxID_COPY 5031
1304 #define wxID_PASTE 5032
1305 #define wxID_CLEAR 5033
1306 #define wxID_FIND 5034
1307 #define wxID_DUPLICATE 5035
1308 #define wxID_SELECTALL 5036
1310 #define wxID_FILE1 5050
1311 #define wxID_FILE2 5051
1312 #define wxID_FILE3 5052
1313 #define wxID_FILE4 5053
1314 #define wxID_FILE5 5054
1315 #define wxID_FILE6 5055
1316 #define wxID_FILE7 5056
1317 #define wxID_FILE8 5057
1318 #define wxID_FILE9 5058
1320 // Standard button IDs
1321 #define wxID_OK 5100
1322 #define wxID_CANCEL 5101
1323 #define wxID_APPLY 5102
1324 #define wxID_YES 5103
1325 #define wxID_NO 5104
1326 #define wxID_STATIC 5105
1327 #define wxID_FORWARD 5106
1328 #define wxID_BACKWARD 5107
1329 #define wxID_DEFAULT 5108
1330 #define wxID_MORE 5109
1331 #define wxID_SETUP 5110
1332 #define wxID_RESET 5111
1333 #define wxID_CONTEXT_HELP 5112
1334 #define wxID_YESTOALL 5113
1335 #define wxID_NOTOALL 5114
1336 #define wxID_ABORT 5115
1337 #define wxID_RETRY 5116
1338 #define wxID_IGNORE 5117
1340 // IDs used by generic file dialog (11 consecutive starting from this value)
1341 #define wxID_FILEDLGG 5900
1342 #define wxID_HIGHEST 5999
1344 // ----------------------------------------------------------------------------
1345 // Possible SetSize flags
1346 // ----------------------------------------------------------------------------
1348 // Use internally-calculated width if -1
1349 #define wxSIZE_AUTO_WIDTH 0x0001
1350 // Use internally-calculated height if -1
1351 #define wxSIZE_AUTO_HEIGHT 0x0002
1352 // Use internally-calculated width and height if each is -1
1353 #define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT)
1354 // Ignore missing (-1) dimensions (use existing).
1355 // For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code.
1356 #define wxSIZE_USE_EXISTING 0x0000
1357 // Allow -1 as a valid position
1358 #define wxSIZE_ALLOW_MINUS_ONE 0x0004
1359 // Don't do parent client adjustments (for implementation only)
1360 #define wxSIZE_NO_ADJUSTMENTS 0x0008
1362 // ----------------------------------------------------------------------------
1364 // ----------------------------------------------------------------------------
1367 // Text font families
1374 wxTELETYPE
, /* @@@@ */
1376 // Proportional or Fixed width fonts (not yet used)
1383 // Also wxNORMAL for normal (non-italic text)
1397 // Brush & Pen Stippling. Note that a stippled pen cannot be dashed!!
1398 // Note also that stippling a Pen IS meaningfull, because a Line is
1399 wxSTIPPLE_MASK_OPAQUE
, //mask is used for blitting monochrome using text fore and back ground colors
1400 wxSTIPPLE_MASK
, //mask is used for masking areas in the stipple bitmap (TO DO)
1401 // drawn with a Pen, and without any Brush -- and it can be stippled.
1409 #define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH)
1424 wxCLEAR
, wxROP_BLACK
= wxCLEAR
, wxBLIT_BLACKNESS
= wxCLEAR
, // 0
1425 wxXOR
, wxROP_XORPEN
= wxXOR
, wxBLIT_SRCINVERT
= wxXOR
, // src XOR dst
1426 wxINVERT
, wxROP_NOT
= wxINVERT
, wxBLIT_DSTINVERT
= wxINVERT
, // NOT dst
1427 wxOR_REVERSE
, wxROP_MERGEPENNOT
= wxOR_REVERSE
, wxBLIT_00DD0228
= wxOR_REVERSE
, // src OR (NOT dst)
1428 wxAND_REVERSE
, wxROP_MASKPENNOT
= wxAND_REVERSE
, wxBLIT_SRCERASE
= wxAND_REVERSE
, // src AND (NOT dst)
1429 wxCOPY
, wxROP_COPYPEN
= wxCOPY
, wxBLIT_SRCCOPY
= wxCOPY
, // src
1430 wxAND
, wxROP_MASKPEN
= wxAND
, wxBLIT_SRCAND
= wxAND
, // src AND dst
1431 wxAND_INVERT
, wxROP_MASKNOTPEN
= wxAND_INVERT
, wxBLIT_00220326
= wxAND_INVERT
, // (NOT src) AND dst
1432 wxNO_OP
, wxROP_NOP
= wxNO_OP
, wxBLIT_00AA0029
= wxNO_OP
, // dst
1433 wxNOR
, wxROP_NOTMERGEPEN
= wxNOR
, wxBLIT_NOTSRCERASE
= wxNOR
, // (NOT src) AND (NOT dst)
1434 wxEQUIV
, wxROP_NOTXORPEN
= wxEQUIV
, wxBLIT_00990066
= wxEQUIV
, // (NOT src) XOR dst
1435 wxSRC_INVERT
, wxROP_NOTCOPYPEN
= wxSRC_INVERT
, wxBLIT_NOTSCRCOPY
= wxSRC_INVERT
, // (NOT src)
1436 wxOR_INVERT
, wxROP_MERGENOTPEN
= wxOR_INVERT
, wxBLIT_MERGEPAINT
= wxOR_INVERT
, // (NOT src) OR dst
1437 wxNAND
, wxROP_NOTMASKPEN
= wxNAND
, wxBLIT_007700E6
= wxNAND
, // (NOT src) OR (NOT dst)
1438 wxOR
, wxROP_MERGEPEN
= wxOR
, wxBLIT_SRCPAINT
= wxOR
, // src OR dst
1439 wxSET
, wxROP_WHITE
= wxSET
, wxBLIT_WHITENESS
= wxSET
// 1
1443 #define wxFLOOD_SURFACE 1
1444 #define wxFLOOD_BORDER 2
1446 /* Polygon filling mode */
1447 #define wxODDEVEN_RULE 1
1448 #define wxWINDING_RULE 2
1450 /* ToolPanel in wxFrame */
1451 #define wxTOOL_TOP 1
1452 #define wxTOOL_BOTTOM 2
1453 #define wxTOOL_LEFT 3
1454 #define wxTOOL_RIGHT 4
1456 // the values of the format constants should be the same as correspondign
1457 // CF_XXX constants in Windows API
1461 wxDF_TEXT
= 1, /* CF_TEXT */
1462 wxDF_BITMAP
= 2, /* CF_BITMAP */
1463 wxDF_METAFILE
= 3, /* CF_METAFILEPICT */
1467 wxDF_OEMTEXT
= 7, /* CF_OEMTEXT */
1468 wxDF_DIB
= 8, /* CF_DIB */
1473 wxDF_UNICODETEXT
= 13,
1474 wxDF_ENHMETAFILE
= 14,
1475 wxDF_FILENAME
= 15, /* CF_HDROP */
1481 /* Virtual keycodes */
1504 WXK_PRIOR
, /* Page up */
1505 WXK_NEXT
, /* Page down */
1578 WXK_NUMPAD_PAGEDOWN
,
1584 WXK_NUMPAD_MULTIPLY
,
1586 WXK_NUMPAD_SEPARATOR
,
1587 WXK_NUMPAD_SUBTRACT
,
1592 // Mapping modes (as per Windows)
1594 #define wxMM_LOMETRIC 2
1595 #define wxMM_HIMETRIC 3
1596 #define wxMM_LOENGLISH 4
1597 #define wxMM_HIENGLISH 5
1598 #define wxMM_TWIPS 6
1599 #define wxMM_ISOTROPIC 7
1600 #define wxMM_ANISOTROPIC 8
1602 #define wxMM_POINTS 9
1603 #define wxMM_METRIC 10
1605 /* Shortcut for easier dialog-unit-to-pixel conversion */
1606 #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
1610 wxPAPER_NONE
, // Use specific dimensions
1611 wxPAPER_LETTER
, // Letter, 8 1/2 by 11 inches
1612 wxPAPER_LEGAL
, // Legal, 8 1/2 by 14 inches
1613 wxPAPER_A4
, // A4 Sheet, 210 by 297 millimeters
1614 wxPAPER_CSHEET
, // C Sheet, 17 by 22 inches
1615 wxPAPER_DSHEET
, // D Sheet, 22 by 34 inches
1616 wxPAPER_ESHEET
, // E Sheet, 34 by 44 inches
1617 wxPAPER_LETTERSMALL
, // Letter Small, 8 1/2 by 11 inches
1618 wxPAPER_TABLOID
, // Tabloid, 11 by 17 inches
1619 wxPAPER_LEDGER
, // Ledger, 17 by 11 inches
1620 wxPAPER_STATEMENT
, // Statement, 5 1/2 by 8 1/2 inches
1621 wxPAPER_EXECUTIVE
, // Executive, 7 1/4 by 10 1/2 inches
1622 wxPAPER_A3
, // A3 sheet, 297 by 420 millimeters
1623 wxPAPER_A4SMALL
, // A4 small sheet, 210 by 297 millimeters
1624 wxPAPER_A5
, // A5 sheet, 148 by 210 millimeters
1625 wxPAPER_B4
, // B4 sheet, 250 by 354 millimeters
1626 wxPAPER_B5
, // B5 sheet, 182-by-257-millimeter paper
1627 wxPAPER_FOLIO
, // Folio, 8-1/2-by-13-inch paper
1628 wxPAPER_QUARTO
, // Quarto, 215-by-275-millimeter paper
1629 wxPAPER_10X14
, // 10-by-14-inch sheet
1630 wxPAPER_11X17
, // 11-by-17-inch sheet
1631 wxPAPER_NOTE
, // Note, 8 1/2 by 11 inches
1632 wxPAPER_ENV_9
, // #9 Envelope, 3 7/8 by 8 7/8 inches
1633 wxPAPER_ENV_10
, // #10 Envelope, 4 1/8 by 9 1/2 inches
1634 wxPAPER_ENV_11
, // #11 Envelope, 4 1/2 by 10 3/8 inches
1635 wxPAPER_ENV_12
, // #12 Envelope, 4 3/4 by 11 inches
1636 wxPAPER_ENV_14
, // #14 Envelope, 5 by 11 1/2 inches
1637 wxPAPER_ENV_DL
, // DL Envelope, 110 by 220 millimeters
1638 wxPAPER_ENV_C5
, // C5 Envelope, 162 by 229 millimeters
1639 wxPAPER_ENV_C3
, // C3 Envelope, 324 by 458 millimeters
1640 wxPAPER_ENV_C4
, // C4 Envelope, 229 by 324 millimeters
1641 wxPAPER_ENV_C6
, // C6 Envelope, 114 by 162 millimeters
1642 wxPAPER_ENV_C65
, // C65 Envelope, 114 by 229 millimeters
1643 wxPAPER_ENV_B4
, // B4 Envelope, 250 by 353 millimeters
1644 wxPAPER_ENV_B5
, // B5 Envelope, 176 by 250 millimeters
1645 wxPAPER_ENV_B6
, // B6 Envelope, 176 by 125 millimeters
1646 wxPAPER_ENV_ITALY
, // Italy Envelope, 110 by 230 millimeters
1647 wxPAPER_ENV_MONARCH
, // Monarch Envelope, 3 7/8 by 7 1/2 inches
1648 wxPAPER_ENV_PERSONAL
, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
1649 wxPAPER_FANFOLD_US
, // US Std Fanfold, 14 7/8 by 11 inches
1650 wxPAPER_FANFOLD_STD_GERMAN
, // German Std Fanfold, 8 1/2 by 12 inches
1651 wxPAPER_FANFOLD_LGL_GERMAN
, // German Legal Fanfold, 8 1/2 by 13 inches
1653 wxPAPER_ISO_B4
, // B4 (ISO) 250 x 353 mm
1654 wxPAPER_JAPANESE_POSTCARD
, // Japanese Postcard 100 x 148 mm
1655 wxPAPER_9X11
, // 9 x 11 in
1656 wxPAPER_10X11
, // 10 x 11 in
1657 wxPAPER_15X11
, // 15 x 11 in
1658 wxPAPER_ENV_INVITE
, // Envelope Invite 220 x 220 mm
1659 wxPAPER_LETTER_EXTRA
, // Letter Extra 9 \275 x 12 in
1660 wxPAPER_LEGAL_EXTRA
, // Legal Extra 9 \275 x 15 in
1661 wxPAPER_TABLOID_EXTRA
, // Tabloid Extra 11.69 x 18 in
1662 wxPAPER_A4_EXTRA
, // A4 Extra 9.27 x 12.69 in
1663 wxPAPER_LETTER_TRANSVERSE
, // Letter Transverse 8 \275 x 11 in
1664 wxPAPER_A4_TRANSVERSE
, // A4 Transverse 210 x 297 mm
1665 wxPAPER_LETTER_EXTRA_TRANSVERSE
, // Letter Extra Transverse 9\275 x 12 in
1666 wxPAPER_A_PLUS
, // SuperA/SuperA/A4 227 x 356 mm
1667 wxPAPER_B_PLUS
, // SuperB/SuperB/A3 305 x 487 mm
1668 wxPAPER_LETTER_PLUS
, // Letter Plus 8.5 x 12.69 in
1669 wxPAPER_A4_PLUS
, // A4 Plus 210 x 330 mm
1670 wxPAPER_A5_TRANSVERSE
, // A5 Transverse 148 x 210 mm
1671 wxPAPER_B5_TRANSVERSE
, // B5 (JIS) Transverse 182 x 257 mm
1672 wxPAPER_A3_EXTRA
, // A3 Extra 322 x 445 mm
1673 wxPAPER_A5_EXTRA
, // A5 Extra 174 x 235 mm
1674 wxPAPER_B5_EXTRA
, // B5 (ISO) Extra 201 x 276 mm
1675 wxPAPER_A2
, // A2 420 x 594 mm
1676 wxPAPER_A3_TRANSVERSE
, // A3 Transverse 297 x 420 mm
1677 wxPAPER_A3_EXTRA_TRANSVERSE
// A3 Extra Transverse 322 x 445 mm
1681 /* Printing orientation */
1683 #define wxPORTRAIT 1
1684 #define wxLANDSCAPE 2
1687 /* Duplex printing modes
1691 wxDUPLEX_SIMPLEX
, // Non-duplex
1692 wxDUPLEX_HORIZONTAL
,
1699 #define wxPRINT_QUALITY_HIGH -1
1700 #define wxPRINT_QUALITY_MEDIUM -2
1701 #define wxPRINT_QUALITY_LOW -3
1702 #define wxPRINT_QUALITY_DRAFT -4
1704 typedef int wxPrintQuality
;
1706 /* Print mode (currently PostScript only)
1710 wxPRINT_MODE_NONE
= 0,
1711 wxPRINT_MODE_PREVIEW
= 1, // Preview in external application
1712 wxPRINT_MODE_FILE
= 2, // Print to file
1713 wxPRINT_MODE_PRINTER
= 3 // Send to printer
1716 // ----------------------------------------------------------------------------
1718 // ----------------------------------------------------------------------------
1720 // define this macro if font handling is done using the X font names
1721 #if defined(__WXGTK__) || defined(__X__)
1722 #define _WX_X_FONTLIKE
1725 // macro to specify "All Files" on different platforms
1726 #if defined(__WXMSW__)
1727 # define wxALL_FILES_PATTERN "*.*"
1728 # define wxALL_FILES gettext_noop("All files (*.*)|*.*")
1730 # define wxALL_FILES_PATTERN "*"
1731 # define wxALL_FILES gettext_noop("All files (*)|*")
1734 // ---------------------------------------------------------------------------
1735 // macros that enable wxWindows apps to be compiled in absence of the
1736 // sytem headers, although some platform specific types are used in the
1737 // platform specific (implementation) parts of the headers
1738 // ---------------------------------------------------------------------------
1742 typedef WindowPtr WXHWND
;
1743 typedef Handle WXHANDLE
;
1744 typedef CIconHandle WXHICON
;
1745 //typedef unsigned long WXHFONT;
1746 typedef MenuHandle WXHMENU
;
1747 //typedef unsigned long WXHPEN;
1748 //typedef unsigned long WXHBRUSH;
1749 //typedef unsigned long WXHPALETTE;
1750 typedef CursHandle WXHCURSOR
;
1751 typedef RgnHandle WXHRGN
;
1752 //typedef unsigned long WXHACCEL;
1753 //typedef unsigned long WXHINSTANCE;
1754 typedef GWorldPtr WXHBITMAP
;
1755 //typedef unsigned long WXHIMAGELIST;
1756 //typedef unsigned long WXHGLOBAL;
1757 typedef GrafPtr WXHDC
;
1758 typedef unsigned int WXUINT
;
1759 typedef unsigned long WXDWORD
;
1760 typedef unsigned short WXWORD
;
1761 //typedef unsigned int WXWPARAM;
1762 //typedef long WXLPARAM;
1763 typedef RGBColor WXCOLORREF
;
1764 //typedef void * WXRGNDATA;
1765 //typedef void * WXMSG;
1766 //typedef unsigned long WXHCONV;
1767 //typedef unsigned long WXHKEY;
1768 //typedef void * WXDRAWITEMSTRUCT;
1769 //typedef void * WXMEASUREITEMSTRUCT;
1770 //typedef void * WXLPCREATESTRUCT;
1771 typedef int (*WXFARPROC
)();
1773 typedef WindowPtr WXWindow
;
1774 typedef ControlHandle WXWidget
;
1778 #if defined(__WXMSW__) || defined(__WXPM__)
1780 // the keywords needed for WinMain() declaration
1783 # define WXFAR __far
1793 // Stand-ins for Windows types or OS/2, to avoid #including all of windows.h or os2.h
1794 typedef unsigned long WXHWND
;
1795 typedef unsigned long WXHANDLE
;
1796 typedef unsigned long WXHICON
;
1797 typedef unsigned long WXHFONT
;
1798 typedef unsigned long WXHMENU
;
1799 typedef unsigned long WXHPEN
;
1800 typedef unsigned long WXHBRUSH
;
1801 typedef unsigned long WXHPALETTE
;
1802 typedef unsigned long WXHCURSOR
;
1803 typedef unsigned long WXHRGN
;
1804 typedef unsigned long WXHACCEL
;
1805 typedef void WXFAR
* WXHINSTANCE
;
1806 typedef unsigned long WXHBITMAP
;
1807 typedef unsigned long WXHIMAGELIST
;
1808 typedef unsigned long WXHGLOBAL
;
1809 typedef unsigned long WXHDC
;
1810 typedef unsigned int WXUINT
;
1811 typedef unsigned long WXDWORD
;
1812 typedef unsigned short WXWORD
;
1814 typedef unsigned int WXWPARAM
;
1815 typedef long WXLPARAM
;
1817 # define WXWPARAM MPARAM
1818 # define WXLPARAM MPARAM
1820 # define LOGFONT FATTRS
1821 # define LOWORD SHORT1FROMMP
1822 # define HIWORD SHORT2FROMMP
1824 typedef unsigned long WXCOLORREF
;
1825 typedef void * WXRGNDATA
;
1826 typedef void * WXMSG
;
1827 typedef unsigned long WXHCONV
;
1828 typedef unsigned long WXHKEY
;
1829 typedef unsigned long WXHTREEITEM
;
1831 typedef void * WXDRAWITEMSTRUCT
;
1832 typedef void * WXMEASUREITEMSTRUCT
;
1833 typedef void * WXLPCREATESTRUCT
;
1835 #if defined(__WXPM__)
1836 typedef unsigned long WXMPARAM
;
1837 typedef unsigned long WXMSGID
;
1838 typedef void* WXRESULT
;
1839 //typedef int (*WXFARPROC)();
1840 // some windows handles not defined by PM
1841 typedef unsigned long HANDLE
;
1842 typedef unsigned long HICON
;
1843 typedef unsigned long HFONT
;
1844 typedef unsigned long HMENU
;
1845 typedef unsigned long HPEN
;
1846 typedef unsigned long HBRUSH
;
1847 typedef unsigned long HPALETTE
;
1848 typedef unsigned long HCURSOR
;
1849 typedef unsigned long HINSTANCE
;
1850 typedef unsigned long HIMAGELIST
;
1851 typedef unsigned long HGLOBAL
;
1852 typedef unsigned long DWORD
;
1853 typedef unsigned short WORD
;
1855 // WIN32 graphics types for OS/2 GPI
1857 // RGB under OS2 is more like a PALETTEENTRY struct under Windows so we need a real RGB def
1858 #define OS2RGB(r,g,b) ((DWORD ((BYTE) (b) | ((WORD) (g) << 8)) | (((DWORD)(BYTE)(r)) << 16)))
1860 typedef unsigned long COLORREF
;
1861 #define GetBValue(rgb) ((BYTE)((rgb) >> 16))
1862 #define GetGValue(rgb) ((BYTE)(((WORD)(rgb)) >> 8))
1863 #define GetRValue(rgb) ((BYTE)(rgb))
1864 #define PALETTEINDEX(i) ((COLORREF)(0x01000000 | (DWORD)(WORD)(i)))
1865 #define PALETTERGB(r,g,b) (0x02000000 | OS2RGB(r,g,b))
1866 // OS2's RGB/RGB2 is backwards from this
1867 typedef struct tagPALETTEENTRY
1874 typedef struct tagLOGPALETTE
1878 WORD PALETTEENTRY
[1];
1882 #if defined(__GNUWIN32__) || defined(__WXWINE__)
1883 typedef int (*WXFARPROC
)();
1884 #elif defined(__WIN32__)
1885 typedef int (__stdcall
*WXFARPROC
)();
1886 #elif defined(__WXPM__)
1887 # if defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 )
1888 // VA 3.0 for some reason needs base data types when typedefing a proc proto???
1889 typedef void* (_System
*WXFARPROC
)(unsigned long, unsigned long, void*, void*);
1891 typedef WXRESULT (_System
*WXFARPROC
)(WXHWND
, WXMSGID
, WXWPARAM
, WXLPARAM
);
1894 typedef int (*WXFARPROC
)();
1897 typedef WXHWND WXWidget
;
1899 #if defined(__BORLANDC__) && !defined(__WIN32__)
1901 # define LPTSTR LPSTR
1904 # define LPCTSTR LPSTR
1908 #endif // MSW or OS2
1911 /* Stand-ins for X/Xt/Motif types */
1912 typedef void* WXWindow
;
1913 typedef void* WXWidget
;
1914 typedef void* WXAppContext
;
1915 typedef void* WXColormap
;
1916 typedef void WXDisplay
;
1917 typedef void WXEvent
;
1918 typedef void* WXCursor
;
1919 typedef void* WXPixmap
;
1920 typedef void* WXFontStructPtr
;
1922 typedef void* WXRegion
;
1923 typedef void* WXFont
;
1924 typedef void* WXImage
;
1925 typedef void* WXCursor
;
1926 typedef void* WXFontList
;
1928 typedef unsigned long Atom
; /* this might fail on a few architectures */
1933 /* Stand-ins for GLIB types */
1935 typedef signed char gint8
;
1937 typedef unsigned guint
;
1938 typedef unsigned long gulong
;
1939 typedef void* gpointer
;
1940 typedef struct _GSList GSList
;
1942 /* Stand-ins for GDK types */
1943 typedef gulong GdkAtom
;
1944 typedef struct _GdkColor GdkColor
;
1945 typedef struct _GdkColormap GdkColormap
;
1946 typedef struct _GdkFont GdkFont
;
1947 typedef struct _GdkGC GdkGC
;
1949 typedef struct _GdkDrawable GdkWindow
;
1950 typedef struct _GdkDrawable GdkBitmap
;
1951 typedef struct _GdkDrawable GdkPixmap
;
1953 typedef struct _GdkWindow GdkWindow
;
1954 typedef struct _GdkWindow GdkBitmap
;
1955 typedef struct _GdkWindow GdkPixmap
;
1957 typedef struct _GdkCursor GdkCursor
;
1958 typedef struct _GdkRegion GdkRegion
;
1959 typedef struct _GdkDragContext GdkDragContext
;
1961 typedef struct _GdkIC GdkIC
;
1962 typedef struct _GdkICAttr GdkICAttr
;
1965 /* Stand-ins for GTK types */
1966 typedef struct _GtkWidget GtkWidget
;
1967 typedef struct _GtkStyle GtkStyle
;
1968 typedef struct _GtkAdjustment GtkAdjustment
;
1969 typedef struct _GtkList GtkList
;
1970 typedef struct _GtkToolbar GtkToolbar
;
1971 typedef struct _GtkTooltips GtkTooltips
;
1972 typedef struct _GtkNotebook GtkNotebook
;
1973 typedef struct _GtkNotebookPage GtkNotebookPage
;
1974 typedef struct _GtkAccelGroup GtkAccelGroup
;
1975 typedef struct _GtkItemFactory GtkItemFactory
;
1976 typedef struct _GtkSelectionData GtkSelectionData
;
1978 typedef GtkWidget
*WXWidget
;
1981 #define GTK_OBJECT_GET_CLASS(object) (GTK_OBJECT(object)->klass)
1982 #define GTK_CLASS_TYPE(klass) ((klass)->type)
1986 /* Stand-ins for Pango types */
1987 typedef struct _PangoContext PangoContext
;
1988 typedef struct _PangoLayout PangoLayout
;
1989 typedef struct _PangoFontDescription PangoFontDescription
;
1993 // This is required because of clashing macros in windows.h, which may be
1994 // included before or after wxWindows classes, and therefore must be
1995 // disabled here before any significant wxWindows headers are included.
2027 // ---------------------------------------------------------------------------
2028 // macro to define a class without copy ctor nor assignment operator
2029 // ---------------------------------------------------------------------------
2031 #define DECLARE_NO_COPY_CLASS(classname) \
2033 classname(const classname&); \
2034 classname& operator=(const classname&)