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"
20 // needed to handle strings with xgettext:
22 # define gettext_noop(x) x
25 // ----------------------------------------------------------------------------
26 // compiler and OS identification
27 // ----------------------------------------------------------------------------
30 #if defined(__unix) || defined(__unix__) || defined(____SVR4____) || \
31 defined(__LINUX__) || defined(__sgi ) || \
32 defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
33 defined(__EMX__) || defined( __VMS )
37 // Helps SGI compilation, apparently
40 #define __need_wchar_t
42 // Note I use the term __SGI_CC__ for both cc and CC, its not a good
43 // idea to mix gcc and cc/CC, the name mangling is different
48 #if defined(sun) || defined(__SUN__)
56 #elif defined(applec) || defined(THINK_C) || ( defined( __MWERKS__ ) && !defined(__INTEL__) )
58 #elif defined(__OS2__)
59 #if defined(__IBMCPP__)
60 #define __VISAGEAVER__ __IBMCPP__
69 // Place other OS/2 compiler environment defines here
70 #define LINKAGEMODE _Optlink
76 // define another standard symbol for Microsoft Visual C++: the standard one
77 // (_MSC_VER) is also defined by Metrowerks compiler
78 #if defined(_MSC_VER) && !defined(__MWERKS__)
79 #define __VISUALC__ _MSC_VER
80 #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
82 #elif defined(__WATCOMC__)
89 // LINKAGEMODE mode is empty for everyting except OS/2
94 // suppress some Visual C++ warnings
96 # pragma warning(disable:4201) // nonstandard extension used: nameless struct/union
97 # pragma warning(disable:4244) // conversion from double to float
98 # pragma warning(disable:4100) // unreferenced formal parameter
99 # pragma warning(disable:4511) // copy ctor couldn't be generated
100 # pragma warning(disable:4512) // operator=() couldn't be generated
101 # pragma warning(disable:4699) // Using precompiled header
102 # pragma warning(disable:4134) // conversion between pointers to members of same class
104 # pragma warning(disable:4135) // conversion between different integral types
105 # pragma warning(disable:4769) // assignment of near pointer to long integer
106 // This one is really annoying, since it occurs for each cast to (HANDLE)...
107 # pragma warning(disable:4305) // truncation of long to near ptr
109 #endif // __VISUALC__
111 // suppress some Salford C++ warnings
113 # pragma suppress 353 // Possible nested comments
114 # pragma suppress 593 // Define not used
115 # pragma suppress 61 // enum has no name (doesn't suppress!)
116 # pragma suppress 106 // unnamed, unused parameter
117 # pragma suppress 571 // Virtual function hiding
118 #endif // __SALFORDC__
120 #if defined(__VISUALC__) && !defined(WIN32)
121 // VC1.5 does not have LPTSTR type
123 #define LPCTSTR LPCSTR
126 // Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
127 // so define it ourselves
134 // Resolves linking problems under HP-UX
135 #if defined(__HPUX__) && defined(__GNUG__)
136 #define va_list __gnuc_va_list
139 // Mingw32 gcc-2.95 uses new windows headers which are more ms-like
140 // we are setting this define because of the complex check
141 // using NORLANDER as Cygwin may follow. (header author is Anders Norlander)
142 #if defined(__MINGW32__) && ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95)))
143 #ifndef wxUSE_NORLANDER_HEADERS
144 # define wxUSE_NORLANDER_HEADERS 1
148 // "old" GNUWIN32 is the one without Norlander's headers: it lacks the standard
149 // Win32 headers and we define the used stuff ourselves for it in
150 // wx/msw/gnuwin32/extra.h
151 #if defined(__MINGW32__) && !wxUSE_NORLANDER_HEADERS
152 #define __GNUWIN32_OLD__
155 //////////////////////////////////////////////////////////////////////////////////
156 // Currently Only MS-Windows/NT, XView and Motif are supported
158 #if defined(__HPUX__) && !defined(__WXGTK__)
161 #endif // __WXMOTIF__
164 #if defined(__WXMOTIF__)
169 // wxWindows checks for WIN32, not __WIN32__
170 #if ((defined(WIN32) || defined(__NT__)) && !defined(__WIN32__) && !defined(__WXSTUBS__))
190 #if !defined(__WIN95__) && (WINVER >= 0x0400)
194 #if defined(TWIN32) && !defined(__TWIN32__)
200 // Make sure the environment is set correctly
201 #if defined(__WXMSW__) && defined(__X__)
202 #error "Target can't be both X and Windows"
203 #elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && \
204 !defined(__WXPM__) && !defined(__WXMAC__) && !defined(__X__) && \
205 !defined(__WXQT__) && !defined(__WXSTUBS__) && wxUSE_GUI
206 #error "No Target! Use -D[__WXMOTIF__|__WXGTK__|__WXMSW__|__WXMAC__|__WXQT__|__WXPM__|__WXSTUBS__]"
209 // ----------------------------------------------------------------------------
211 // ----------------------------------------------------------------------------
215 #include "wx/setup.h"
217 // just in case they were defined in setup.h
221 // this has to be done after including setup.h which might
222 // define __HPUX__ 1 itself
223 #if defined(__hpux) && !defined(__HPUX__)
227 // if we're on a Unixsystem but didn't use configure (so that setup.h didn't
228 // define __UNIX__), do define __UNIX__ now
229 #if !defined(__UNIX__) && defined(__UNIX_LIKE__)
233 #include "wx/version.h"
235 // ----------------------------------------------------------------------------
236 // compatibility defines
237 // ----------------------------------------------------------------------------
239 // possibility to build non GUI apps is new, so don't burden ourselves with
240 // compatibility code
242 #undef WXWIN_COMPATIBILITY_2
243 #define WXWIN_COMPATIBILITY_2 0
246 // ============================================================================
247 // non portable C++ features
248 // ============================================================================
250 // ----------------------------------------------------------------------------
251 // check for native bool type and TRUE/FALSE constants
252 // ----------------------------------------------------------------------------
254 // define boolean constants if not done yet
263 // Add more tests here for Windows compilers that already define bool
264 // (under Unix, configure tests for this)
266 #if defined( __MWERKS__ )
267 #if (__MWERKS__ >= 0x1000) && __option(bool)
270 #elif defined(__VISUALC__) && (__VISUALC__ == 1020)
271 // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed)
272 // but not implemented, so we must #define it
273 #define bool unsigned int
274 #elif defined(__VISUALC__) && (__VISUALC__ == 1010)
275 // For VisualC++ 4.1, we need to define
276 // bool as something between 4.0 & 5.0...
277 typedef unsigned int wxbool
;
280 #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
281 // VC++ supports bool since 4.2
283 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)
284 // Borland 5.0+ supports bool
286 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
287 // Watcom 11+ supports bool
289 #elif defined(__GNUWIN32__)
290 // Cygwin supports bool
292 #elif defined(__VISAGECPP__)
294 typedef unsigned long bool;
300 #if !defined(HAVE_BOOL) && !defined(bool)
301 // NB: of course, this doesn't replace the standard type, because, for
302 // example, overloading based on bool/int parameter doesn't work and
303 // so should be avoided in portable programs
305 typedef unsigned int bool;
309 typedef short int WXTYPE
;
311 // special care should be taken with this type under Windows where the real
312 // window id is unsigned, so we must always do the cast before comparing them
313 // (or else they would be always different!). Usign wxGetWindowId() which does
314 // the cast itself is recommended. Note that this type can't be unsigned
315 // because -1 is a valid (and largely used) value for window id.
316 typedef int wxWindowID
;
318 // Macro to cut down on compiler warnings.
319 #if REMOVE_UNUSED_ARG
320 #define WXUNUSED(identifier) /* identifier */
321 #else // stupid, broken compiler
322 #define WXUNUSED(identifier) identifier
325 // ----------------------------------------------------------------------------
326 // portable calling conventions macros
327 // ----------------------------------------------------------------------------
329 // wxCALLBACK should be used for the functions which are called back by
330 // Windows (such as compare function for wxListCtrl)
331 #if defined(__WXMSW__)
332 #if defined(__MINGW32__) || defined(__GNUWIN32__)
333 #define wxCALLBACK __attribute__((stdcall))
335 // both VC++ and Borland understand this
336 #define wxCALLBACK _stdcall
339 // no stdcall under Unix
343 // callling convention for the qsort(3) callback
345 #if defined(__VISUALC__)
346 #define wxCMPFUNC_CONV _cdecl
347 #elif defined(__VISAGECPP__)
348 #define wxCMPFUNC_CONV _Optlink
350 #define wxCMPFUNC_CONV
354 #define CMPFUNC_CONV wxCMPFUNC_CONV
356 // ----------------------------------------------------------------------------
357 // Making or using wxWindows as a Windows DLL
358 // ----------------------------------------------------------------------------
360 #if defined(__WXMSW__)
362 // _declspec works in BC++ 5 and later, as well as VC++
363 #if defined(__VISUALC__) || defined(__BORLANDC__)
366 # define WXDLLEXPORT _declspec( dllexport )
367 # define WXDLLEXPORT_DATA(type) _declspec( dllexport ) type
368 # define WXDLLEXPORT_CTORFN
369 # elif defined(WXUSINGDLL)
370 # define WXDLLEXPORT _declspec( dllimport )
371 # define WXDLLEXPORT_DATA(type) _declspec( dllimport ) type
372 # define WXDLLEXPORT_CTORFN
375 # define WXDLLEXPORT_DATA(type) type
376 # define WXDLLEXPORT_CTORFN
379 #elif defined(__WXPM__)
382 # define WXDLLEXPORT _Export
383 # define WXDLLEXPORT_DATA(type) _Export type
384 # define WXDLLEXPORT_CTORFN
385 # elif defined(WXUSINGDLL)
386 # define WXDLLEXPORT _Export
387 # define WXDLLEXPORT_DATA(type) _Export type
388 # define WXDLLEXPORT_CTORFN
391 # define WXDLLEXPORT_DATA(type) type
392 # define WXDLLEXPORT_CTORFN
397 # define WXDLLEXPORT_DATA(type) type
398 # define WXDLLEXPORT_CTORFN
403 # define WXDLLEXPORT_DATA(type) type
404 # define WXDLLEXPORT_CTORFN
407 // For ostream, istream ofstream
408 #if defined(__BORLANDC__) && defined( _RTLDLL )
409 # define WXDLLIMPORT __import
414 class WXDLLEXPORT wxObject
;
415 class WXDLLEXPORT wxEvent
;
417 /** symbolic constant used by all Find()-like functions returning positive
418 integer on success as failure indicator */
419 #define wxNOT_FOUND (-1)
421 // ----------------------------------------------------------------------------
422 /** @name Very common macros */
423 // ----------------------------------------------------------------------------
425 /// delete pointer if it is not NULL and NULL it afterwards
426 // (checking that it's !NULL before passing it to delete is just a
427 // a question of style, because delete will do it itself anyhow, but it might
428 // be considered as an error by some overzealous debugging implementations of
429 // the library, so we do it ourselves)
430 #if defined(__SGI_CC__)
431 // Okay this is bad styling, but the native SGI compiler is very picky, it
432 // wont let you compare/assign between a NULL (void *) and another pointer
433 // type. To be really clean we'd need to pass in another argument, the type
435 // Also note the use of 0L, this would allow future possible 64bit support
436 // (as yet untested) by ensuring that we zero all the bits in a pointer
437 // (which is always the same length as a long (at least with the LP64 standard)
439 #define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; }
441 #define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
442 #endif /* __SGI__CC__ */
444 // delete an array and NULL it (see comments above)
445 #if defined(__SGI_CC__)
446 // see above comment.
447 #define wxDELETEA(p) if ( (p) ) { delete [] (p); p = 0L; }
449 #define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; }
450 #endif /* __SGI__CC__ */
452 /// size of statically declared array
453 #define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
455 // Use of these suppresses some compiler warnings
456 WXDLLEXPORT_DATA(extern const bool) wxTrue
;
457 WXDLLEXPORT_DATA(extern const bool) wxFalse
;
459 // ----------------------------------------------------------------------------
460 // compiler specific settings
461 // ----------------------------------------------------------------------------
463 // to allow compiling with warning level 4 under Microsoft Visual C++ some
464 // warnings just must be disabled
466 #pragma warning(disable: 4514) // unreferenced inline func has been removed
468 you might be tempted to disable this one also: triggered by CHECK and FAIL
469 macros in debug.h, but it's, overall, a rather useful one, so I leave it and
470 will try to find some way to disable this warning just for CHECK/FAIL. Anyone?
472 #pragma warning(disable: 4127) // conditional expression is constant
475 #if defined(__MWERKS__)
479 #define except(x) catch(...)
482 // where should i put this? we need to make sure of this as it breaks
483 // the <iostream> code.
484 #if !wxUSE_IOSTREAMH && defined(__WXDEBUG__)
490 // Callback function type definition
491 typedef void (*wxFunction
) (wxObject
&, wxEvent
&);
493 // ----------------------------------------------------------------------------
494 // OS mnemonics -- Identify the running OS (useful for Windows)
495 // ----------------------------------------------------------------------------
497 // Not all platforms are currently available or supported
501 wxCURSES
, // Text-only CURSES
502 wxXVIEW_X
, // Sun's XView OpenLOOK toolkit
503 wxMOTIF_X
, // OSF Motif 1.x.x
504 wxCOSE_X
, // OSF Common Desktop Environment
505 wxNEXTSTEP
, // NeXTStep
506 wxMACINTOSH
, // Apple System 7 and 8
509 wxGTK_WIN32
, // GTK on Win32
510 wxGTK_OS2
, // GTK on OS/2
511 wxGTK_BEOS
, // GTK on BeOS
514 wxOS2_PM
, // OS/2 Workplace
515 wxWINDOWS
, // Windows or WfW
516 wxPENWINDOWS
, // Windows for Pen Computing
517 wxWINDOWS_NT
, // Windows NT
518 wxWIN32S
, // Windows 32S API
519 wxWIN95
, // Windows 95
520 wxWIN386
, // Watcom 32-bit supervisor modus
521 wxMGL_UNIX
, // MGL with direct hardware access
523 wxMGL_WIN32
, // MGL on Win32
524 wxMGL_OS2
, // MGL on OS/2
525 wxWINDOWS_OS2
// Native OS/2 PM
528 // ----------------------------------------------------------------------------
529 // standard wxWindows types
530 // ----------------------------------------------------------------------------
532 // the type for screen and DC coordinates
534 #if wxUSE_COMPATIBLE_COORD_TYPES
535 // to ensure compatibility with 2.0, we must use long
537 #else // !wxUSE_COMPATIBLE_COORD_TYPES
539 // under Win16, int is too small, so use long to allow for bigger
541 typedef long wxCoord
;
543 // other platforms we support have at least 32bit int - quite enough
545 #endif // Win16/!Win16
546 #endif // wxUSE_COMPATIBLE_COORD_TYPES/!wxUSE_COMPATIBLE_COORD_TYPES
548 // fixed length types
550 #define wxInt8 char signed
551 #define wxUint8 char unsigned
554 #define wxInt16 int signed
555 #define wxUint16 int unsigned
556 #define wxInt32 long signed
557 #define wxUint32 long unsigned
561 #define wxInt16 short signed
562 #define wxUint16 short unsigned
563 #define wxInt32 int signed
564 #define wxUint32 int unsigned
568 #define wxInt16 short signed
569 #define wxUint16 short unsigned
570 #define wxInt32 int signed
571 #define wxUint32 int unsigned
575 #define wxInt16 short signed
576 #define wxUint16 short unsigned
577 #define wxInt32 int signed
578 #define wxUint32 int unsigned
581 #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXOS2__)
582 #if defined(SIZEOF_INT)
583 /* well, this shouldn't happen... */
584 #define wxInt16 short signed
585 #define wxUint16 short unsigned
586 #define wxInt32 int signed
587 #define wxUint32 int unsigned
589 #define wxInt16 short signed
590 #define wxUint16 short unsigned
591 #define wxInt32 int signed
592 #define wxUint32 int unsigned
596 #define wxByte wxUint8
597 #define wxWord wxUint16
599 // base floating point types
600 // wxFloat32 : 32 bit IEEE float ( 1 sign , 8 exponent bits , 23 fraction bits
601 // wxFloat64 : 64 bit IEEE float ( 1 sign , 11 exponent bits , 52 fraction bits
602 // wxDouble : native fastest representation that has at least wxFloat64
603 // precision, so use the IEEE types for storage , and this for calculations
605 typedef float wxFloat32
;
606 #if defined( __WXMAC__ ) && defined (__MWERKS__)
607 typedef short double wxFloat64
;
609 typedef double wxFloat64
;
612 #if defined( __WXMAC__ ) && !defined( __POWERPC__ )
613 typedef long double wxDouble
;
615 typedef double wxDouble
;
618 // ----------------------------------------------------------------------------
619 // byte ordering related definition and macros
620 // ----------------------------------------------------------------------------
624 #define wxBIG_ENDIAN 4321
625 #define wxLITTLE_ENDIAN 1234
626 #define wxPDP_ENDIAN 3412
628 #ifdef WORDS_BIGENDIAN
629 #define wxBYTE_ORDER wxBIG_ENDIAN
631 #define wxBYTE_ORDER wxLITTLE_ENDIAN
636 #if defined (__MWERKS__) && ( (__MWERKS__ < 0x0900) || macintosh )
637 // assembler versions for these
639 inline wxUint16
wxUINT16_SWAP_ALWAYS( wxUint16 i
)
640 {return (__lhbrx( &i
, 0 ) ) ;}
641 inline wxInt16
wxINT16_SWAP_ALWAYS( wxInt16 i
)
642 {return (__lhbrx( &i
, 0 ) ) ;}
643 inline wxUint32
wxUINT32_SWAP_ALWAYS( wxUint32 i
)
644 {return (__lwbrx( &i
, 0 ) ) ;}
645 inline wxInt32
wxINT32_SWAP_ALWAYS( wxInt32 i
)
646 {return (__lwbrx( &i
, 0 ) ) ;}
648 #pragma parameter __D0 wxUINT16_SWAP_ALWAYS(__D0)
649 pascal wxUint16
wxUINT16_SWAP_ALWAYS(wxUint16 value
)
652 #pragma parameter __D0 wxINT16_SWAP_ALWAYS(__D0)
653 pascal wxInt16
wxUINT16_SWAP_ALWAYS(wxInt16 value
)
656 #pragma parameter __D0 wxUINT32_SWAP_ALWAYS (__D0)
657 pascal wxUint32
wxUINT32_SWAP_ALWAYS(wxUint32 value
)
658 = { 0xE158, 0x4840, 0xE158 };
660 #pragma parameter __D0 wxINT32_SWAP_ALWAYS (__D0)
661 pascal wxInt32
wxUINT32_SWAP_ALWAYS(wxInt32 value
)
662 = { 0xE158, 0x4840, 0xE158 };
666 #define wxUINT16_SWAP_ALWAYS(val) \
668 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
669 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
671 #define wxINT16_SWAP_ALWAYS(val) \
673 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
674 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
676 #define wxUINT32_SWAP_ALWAYS(val) \
678 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
679 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
680 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
681 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
683 #define wxINT32_SWAP_ALWAYS(val) \
685 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
686 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
687 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
688 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
690 // machine specific byte swapping
692 #ifdef WORDS_BIGENDIAN
693 #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val)
694 #define wxINT16_SWAP_ON_BE(val) wxINT16_SWAP_ALWAYS(val)
695 #define wxUINT16_SWAP_ON_LE(val) (val)
696 #define wxINT16_SWAP_ON_LE(val) (val)
697 #define wxUINT32_SWAP_ON_BE(val) wxUINT32_SWAP_ALWAYS(val)
698 #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val)
699 #define wxUINT32_SWAP_ON_LE(val) (val)
700 #define wxINT32_SWAP_ON_LE(val) (val)
702 #define wxUINT16_SWAP_ON_LE(val) wxUINT16_SWAP_ALWAYS(val)
703 #define wxINT16_SWAP_ON_LE(val) wxINT16_SWAP_ALWAYS(val)
704 #define wxUINT16_SWAP_ON_BE(val) (val)
705 #define wxINT16_SWAP_ON_BE(val) (val)
706 #define wxUINT32_SWAP_ON_LE(val) wxUINT32_SWAP_ALWAYS(val)
707 #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val)
708 #define wxUINT32_SWAP_ON_BE(val) (val)
709 #define wxINT32_SWAP_ON_BE(val) (val)
712 // ----------------------------------------------------------------------------
714 // ----------------------------------------------------------------------------
716 enum wxGeometryCentre
722 // centering into frame rather than screen (obsolete)
723 #define wxCENTER_FRAME 0x0000
724 // centre on screen rather than parent
725 #define wxCENTRE_ON_SCREEN 0x0002
726 #define wxCENTER_ON_SCREEN wxCENTRE_ON_SCREEN
730 wxHORIZONTAL
= 0x0004,
733 wxBOTH
= (wxVERTICAL
| wxHORIZONTAL
)
751 wxALL
= (wxUP
| wxDOWN
| wxRIGHT
| wxLEFT
)
756 wxALIGN_NOT
= 0x0000,
757 wxALIGN_CENTER_HORIZONTAL
= 0x0100,
758 wxALIGN_CENTRE_HORIZONTAL
= wxALIGN_CENTER_HORIZONTAL
,
759 wxALIGN_LEFT
= wxALIGN_NOT
,
760 wxALIGN_TOP
= wxALIGN_NOT
,
761 wxALIGN_RIGHT
= 0x0200,
762 wxALIGN_BOTTOM
= 0x0400,
763 wxALIGN_CENTER_VERTICAL
= 0x0800,
764 wxALIGN_CENTRE_VERTICAL
= wxALIGN_CENTER_VERTICAL
,
766 wxALIGN_CENTER
= (wxALIGN_CENTER_HORIZONTAL
| wxALIGN_CENTER_VERTICAL
),
767 wxALIGN_CENTRE
= wxALIGN_CENTER
772 wxSTRETCH_NOT
= 0x0000,
779 // ----------------------------------------------------------------------------
780 // Window style flags
781 // ----------------------------------------------------------------------------
784 * Values are chosen so they can be |'ed in a bit list.
785 * Some styles are used across more than one group,
786 * so the values mustn't clash with others in the group.
787 * Otherwise, numbers can be reused across groups.
790 * Window (cross-group) styles now take up the first half
791 * of the flag, and control-specific styles the
797 * Window (Frame/dialog/subwindow/panel item) style flags
799 #define wxVSCROLL 0x80000000
800 #define wxHSCROLL 0x40000000
801 #define wxCAPTION 0x20000000
804 #define wxDOUBLE_BORDER 0x10000000
805 #define wxSUNKEN_BORDER 0x08000000
806 #define wxRAISED_BORDER 0x04000000
807 #define wxBORDER 0x02000000
808 #define wxSIMPLE_BORDER wxBORDER
809 #define wxSTATIC_BORDER 0x01000000
810 #define wxTRANSPARENT_WINDOW 0x00100000
811 #define wxNO_BORDER 0x00200000
813 #define wxUSER_COLOURS 0x00800000
814 // Override CTL3D etc. control colour processing to
815 // allow own background colour
816 // OBSOLETE - use wxNO_3D instead
817 #define wxNO_3D 0x00800000
818 // Override CTL3D or native 3D styles for children
819 #define wxCLIP_CHILDREN 0x00400000
820 // Clip children when painting, which reduces flicker in
821 // e.g. frames and splitter windows, but can't be used in
822 // a panel where a static box must be 'transparent' (panel
823 // paints the background for it)
825 // Add this style to a panel to get tab traversal working
826 // outside of dialogs.
827 #define wxTAB_TRAVERSAL 0x00080000
829 // Add this style if the control wants to get all keyboard messages (under
830 // Windows, it won't normally get the dialog navigation key events)
831 #define wxWANTS_CHARS 0x00040000
833 // Make window retained (mostly Motif, I think)
834 #define wxRETAINED 0x00020000
835 #define wxBACKINGSTORE wxRETAINED
837 // don't invalidate the whole window (resulting in a PAINT event) when the
838 // window is resized (currently, makes sense for wxMSW only)
839 #define wxNO_FULL_REPAINT_ON_RESIZE 0x00010000
841 * wxFrame/wxDialog style flags
843 #define wxSTAY_ON_TOP 0x8000
844 #define wxICONIZE 0x4000
845 #define wxMINIMIZE wxICONIZE
846 #define wxMAXIMIZE 0x2000
847 #define wxTHICK_FRAME 0x1000
848 #define wxSYSTEM_MENU 0x0800
849 #define wxMINIMIZE_BOX 0x0400
850 #define wxMAXIMIZE_BOX 0x0200
851 #define wxTINY_CAPTION_HORIZ 0x0100
852 #define wxTINY_CAPTION_VERT 0x0080
853 #define wxRESIZE_BOX wxMAXIMIZE_BOX
854 #define wxRESIZE_BORDER 0x0040
855 #define wxDIALOG_MODAL 0x0020
856 #define wxDIALOG_MODELESS 0x0000
857 // Add for normal Windows frame behaviour
858 #define wxFRAME_FLOAT_ON_PARENT 0x0020
861 #if WXWIN_COMPATIBILITY
862 #define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE
865 #define wxDEFAULT_FRAME_STYLE \
866 (wxSYSTEM_MENU | wxRESIZE_BORDER | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME | wxSYSTEM_MENU | wxCAPTION | wxCLIP_CHILDREN)
869 # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU|wxCAPTION|wxTHICK_FRAME)
871 // Under Unix, the dialogs don't have a system menu. Specifying
872 // wxSYSTEM_MENU here, will make a close button appear.
873 # define wxDEFAULT_DIALOG_STYLE (wxCAPTION|wxTHICK_FRAME)
877 * wxExtDialog style flags
879 #define wxED_CLIENT_MARGIN 0x0004
880 #define wxED_BUTTONS_BOTTOM 0x0000 // has no effect
881 #define wxED_BUTTONS_RIGHT 0x0002
882 #define wxED_STATIC_LINE 0x0001
884 #if defined(__WXMSW__) || defined(__WXMAC__)
885 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN)
887 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN|wxED_STATIC_LINE)
891 * wxToolBar style flags
893 #define wxTB_3DBUTTONS 0x8000
894 #define wxTB_HORIZONTAL 0x0002
895 #define wxTB_VERTICAL 0x0004
896 // Flatbar/Coolbar under Win98/ GTK 1.2
897 #define wxTB_FLAT 0x0008
898 // use native docking under GTK
899 #define wxTB_DOCKABLE 0x0010
902 * wxMenuBar style flags
904 // use native docking
905 #define wxMB_DOCKABLE 0x0001
910 #define wxMENU_TEAROFF 0x0001
913 * Apply to all panel items
915 #define wxCOLOURED 0x0800
916 #define wxFIXED_LENGTH 0x0400
919 * Styles for wxListBox
921 #define wxLB_SORT 0x0010
922 #define wxLB_SINGLE 0x0020
923 #define wxLB_MULTIPLE 0x0040
924 #define wxLB_EXTENDED 0x0080
925 // wxLB_OWNERDRAW is Windows-only
926 #define wxLB_OWNERDRAW 0x0100
927 #define wxLB_NEEDED_SB 0x0200
928 #define wxLB_ALWAYS_SB 0x0400
929 #define wxLB_HSCROLL wxHSCROLL
932 * wxTextCtrl style flags
934 #define wxPROCESS_ENTER 0x0004
935 #define wxPASSWORD 0x0008
936 #define wxTE_PROCESS_ENTER wxPROCESS_ENTER
937 #define wxTE_PASSWORD wxPASSWORD
938 #define wxTE_READONLY 0x0010
939 #define wxTE_MULTILINE 0x0020
940 #define wxTE_PROCESS_TAB 0x0040
941 // this style means to use RICHEDIT control and does something only under wxMSW
942 // and Win32 and is silently ignored under all other platforms
943 #define wxTE_RICH 0x0080
944 #define wxTE_NO_VSCROLL 0x0100
945 #define wxTE_AUTO_SCROLL 0x0200
948 * wxComboBox style flags
950 #define wxCB_SIMPLE 0x0004
951 #define wxCB_SORT 0x0008
952 #define wxCB_READONLY 0x0010
953 #define wxCB_DROPDOWN 0x0020
956 * wxRadioBox style flags
958 // New, more intuitive names to specify majorDim argument
959 #define wxRA_SPECIFY_COLS wxHORIZONTAL
960 #define wxRA_SPECIFY_ROWS wxVERTICAL
961 // Old names for compatibility
962 #define wxRA_HORIZONTAL wxHORIZONTAL
963 #define wxRA_VERTICAL wxVERTICAL
966 * wxRadioButton style flag
968 #define wxRB_GROUP 0x0004
973 #define wxGA_HORIZONTAL wxHORIZONTAL
974 #define wxGA_VERTICAL wxVERTICAL
975 #define wxGA_PROGRESSBAR 0x0010
977 #define wxGA_SMOOTH 0x0020
982 #define wxSL_HORIZONTAL wxHORIZONTAL // 4
983 #define wxSL_VERTICAL wxVERTICAL // 8
984 // The next one is obsolete - use scroll events instead
985 #define wxSL_NOTIFY_DRAG 0x0000
986 #define wxSL_AUTOTICKS 0x0010
987 // #define wxSL_MANUALTICKS 0x0010
988 #define wxSL_LABELS 0x0020
989 #define wxSL_LEFT 0x0040
990 #define wxSL_TOP 0x0080
991 #define wxSL_RIGHT 0x0100
992 #define wxSL_BOTTOM 0x0200
993 #define wxSL_BOTH 0x0400
994 #define wxSL_SELRANGE 0x0800
999 #define wxSB_HORIZONTAL wxHORIZONTAL
1000 #define wxSB_VERTICAL wxVERTICAL
1003 * wxButton flags (Win32 only)
1005 #define wxBU_AUTODRAW 0x0004
1006 #define wxBU_NOAUTODRAW 0x0000
1011 #define wxTR_HAS_BUTTONS 0x0004
1012 #define wxTR_EDIT_LABELS 0x0008
1013 #define wxTR_LINES_AT_ROOT 0x0010
1015 #define wxTR_SINGLE 0x0000
1016 #define wxTR_MULTIPLE 0x0020
1017 #define wxTR_EXTENDED 0x0040
1018 #define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080
1023 #define wxLC_ICON 0x0004
1024 #define wxLC_SMALL_ICON 0x0008
1025 #define wxLC_LIST 0x0010
1026 #define wxLC_REPORT 0x0020
1027 #define wxLC_ALIGN_TOP 0x0040
1028 #define wxLC_ALIGN_LEFT 0x0080
1029 #define wxLC_AUTOARRANGE 0x0100
1030 #define wxLC_USER_TEXT 0x0200
1031 #define wxLC_EDIT_LABELS 0x0400
1032 #define wxLC_NO_HEADER 0x0800
1033 #define wxLC_NO_SORT_HEADER 0x1000
1034 #define wxLC_SINGLE_SEL 0x2000
1035 #define wxLC_SORT_ASCENDING 0x4000
1036 #define wxLC_SORT_DESCENDING 0x8000
1038 #define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT)
1039 #define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT)
1040 #define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING)
1042 // Omitted because (a) too much detail (b) not enough style flags
1043 // #define wxLC_NO_SCROLL
1044 // #define wxLC_NO_LABEL_WRAP
1045 // #define wxLC_OWNERDRAW_FIXED
1046 // #define wxLC_SHOW_SEL_ALWAYS
1049 * wxSpinButton flags
1051 #define wxSP_HORIZONTAL wxHORIZONTAL // 4
1052 #define wxSP_VERTICAL wxVERTICAL // 8
1053 #define wxSP_ARROW_KEYS 0x0010
1054 #define wxSP_WRAP 0x0020
1057 * wxSplitterWindow flags
1059 #define wxSP_NOBORDER 0x0000
1060 #define wxSP_3D 0x0010
1061 #define wxSP_BORDER 0x0020
1062 #define wxSP_PERMIT_UNSPLIT 0x0040
1063 #define wxSP_LIVE_UPDATE 0x0080
1066 * wxFrame extra flags
1068 // No title on taskbar
1069 #define wxFRAME_TOOL_WINDOW 0x0004
1074 #define wxTC_MULTILINE 0x0000
1075 #define wxTC_RIGHTJUSTIFY 0x0010
1076 #define wxTC_FIXEDWIDTH 0x0020
1077 #define wxTC_OWNERDRAW 0x0040
1082 #define wxNB_FIXEDWIDTH 0x0010
1083 #define wxNB_LEFT 0x0020
1084 #define wxNB_RIGHT 0x0040
1085 #define wxNB_BOTTOM 0x0080
1088 * wxStatusBar95 flags
1090 #define wxST_SIZEGRIP 0x0010
1093 * wxStaticText flags
1095 #define wxST_NO_AUTORESIZE 0x0001
1098 * wxStaticLine flags
1100 #define wxLI_HORIZONTAL wxHORIZONTAL
1101 #define wxLI_VERTICAL wxVERTICAL
1104 * wxProgressDialog flags
1106 #define wxPD_CAN_ABORT 0x0001
1107 #define wxPD_APP_MODAL 0x0002
1108 #define wxPD_AUTO_HIDE 0x0004
1109 #define wxPD_ELAPSED_TIME 0x0008
1110 #define wxPD_ESTIMATED_TIME 0x0010
1111 #define wxPD_REMAINING_TIME 0x0020
1114 * wxHtmlWindow flags
1116 #define wxHW_SCROLLBAR_NEVER 0x0002
1117 #define wxHW_SCROLLBAR_AUTO 0x0004
1120 * extended dialog specifiers. these values are stored in a different
1121 * flag and thus do not overlap with other style flags. note that these
1122 * values do not correspond to the return values of the dialogs (for
1123 * those values, look at the wxID_XXX defines).
1126 // wxCENTRE already defined as 0x00000001
1127 #define wxOK 0x00000004
1128 #define wxYES_NO 0x00000008
1129 #define wxCANCEL 0x00000010
1130 #define wxYES 0x00000020
1131 #define wxNO 0x00000040
1132 #define wxNO_DEFAULT 0x00000080
1133 #define wxYES_DEFAULT 0x00000000 // has no effect
1135 #define wxICON_EXCLAMATION 0x00000100
1136 #define wxICON_HAND 0x00000200
1137 #define wxICON_WARNING wxICON_EXCLAMATION
1138 #define wxICON_ERROR wxICON_HAND
1139 #define wxICON_QUESTION 0x00000400
1140 #define wxICON_INFORMATION 0x00000800
1141 #define wxICON_STOP wxICON_HAND
1142 #define wxICON_ASTERISK wxICON_INFORMATION
1143 #define wxICON_MASK (0x00000100|0x00000200|0x00000400|0x00000800)
1145 #define wxFORWARD 0x00001000
1146 #define wxBACKWARD 0x00002000
1147 #define wxRESET 0x00004000
1148 #define wxHELP 0x00008000
1149 #define wxMORE 0x00010000
1150 #define wxSETUP 0x00020000
1152 // ----------------------------------------------------------------------------
1154 // ----------------------------------------------------------------------------
1156 // Standard menu IDs
1157 #define wxID_LOWEST 4999
1159 #define wxID_OPEN 5000
1160 #define wxID_CLOSE 5001
1161 #define wxID_NEW 5002
1162 #define wxID_SAVE 5003
1163 #define wxID_SAVEAS 5004
1164 #define wxID_REVERT 5005
1165 #define wxID_EXIT 5006
1166 #define wxID_UNDO 5007
1167 #define wxID_REDO 5008
1168 #define wxID_HELP 5009
1169 #define wxID_PRINT 5010
1170 #define wxID_PRINT_SETUP 5011
1171 #define wxID_PREVIEW 5012
1172 #define wxID_ABOUT 5013
1173 #define wxID_HELP_CONTENTS 5014
1174 #define wxID_HELP_COMMANDS 5015
1175 #define wxID_HELP_PROCEDURES 5016
1176 #define wxID_HELP_CONTEXT 5017
1178 #define wxID_CUT 5030
1179 #define wxID_COPY 5031
1180 #define wxID_PASTE 5032
1181 #define wxID_CLEAR 5033
1182 #define wxID_FIND 5034
1183 #define wxID_DUPLICATE 5035
1184 #define wxID_SELECTALL 5036
1186 #define wxID_FILE1 5050
1187 #define wxID_FILE2 5051
1188 #define wxID_FILE3 5052
1189 #define wxID_FILE4 5053
1190 #define wxID_FILE5 5054
1191 #define wxID_FILE6 5055
1192 #define wxID_FILE7 5056
1193 #define wxID_FILE8 5057
1194 #define wxID_FILE9 5058
1196 // Standard button IDs
1197 #define wxID_OK 5100
1198 #define wxID_CANCEL 5101
1199 #define wxID_APPLY 5102
1200 #define wxID_YES 5103
1201 #define wxID_NO 5104
1202 #define wxID_STATIC 5105
1203 #define wxID_FORWARD 5106
1204 #define wxID_BACKWARD 5107
1205 #define wxID_DEFAULT 5108
1206 #define wxID_MORE 5109
1207 #define wxID_SETUP 5110
1208 #define wxID_RESET 5111
1210 // IDs used by generic file dialog (11 consecutive starting from this value)
1211 #define wxID_FILEDLGG 5900
1212 #define wxID_HIGHEST 5999
1214 // ----------------------------------------------------------------------------
1215 // Possible SetSize flags
1216 // ----------------------------------------------------------------------------
1218 // Use internally-calculated width if -1
1219 #define wxSIZE_AUTO_WIDTH 0x0001
1220 // Use internally-calculated height if -1
1221 #define wxSIZE_AUTO_HEIGHT 0x0002
1222 // Use internally-calculated width and height if each is -1
1223 #define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT)
1224 // Ignore missing (-1) dimensions (use existing).
1225 // For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code.
1226 #define wxSIZE_USE_EXISTING 0x0000
1227 // Allow -1 as a valid position
1228 #define wxSIZE_ALLOW_MINUS_ONE 0x0004
1229 // Don't do parent client adjustments (for implementation only)
1230 #define wxSIZE_NO_ADJUSTMENTS 0x0008
1232 // ----------------------------------------------------------------------------
1234 // ----------------------------------------------------------------------------
1237 // Text font families
1244 wxTELETYPE
, /* @@@@ */
1246 // Proportional or Fixed width fonts (not yet used)
1253 // Also wxNORMAL for normal (non-italic text)
1267 // Brush & Pen Stippling. Note that a stippled pen cannot be dashed!!
1268 // Note also that stippling a Pen IS meaningfull, because a Line is
1269 // drawn with a Pen, and without any Brush -- and it can be stippled.
1277 #define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH)
1293 wxXOR
, // src XOR dst
1294 wxINVERT
, // NOT dst
1295 wxOR_REVERSE
, // src OR (NOT dst)
1296 wxAND_REVERSE
,// src AND (NOT dst)
1298 wxAND
, // src AND dst
1299 wxAND_INVERT
, // (NOT src) AND dst
1301 wxNOR
, // (NOT src) AND (NOT dst)
1302 wxEQUIV
, // (NOT src) XOR dst
1303 wxSRC_INVERT
, // (NOT src)
1304 wxOR_INVERT
, // (NOT src) OR dst
1305 wxNAND
, // (NOT src) OR (NOT dst)
1308 wxSRC_OR
, // source _bitmap_ OR destination
1309 wxSRC_AND
// source _bitmap_ AND destination
1313 #define wxFLOOD_SURFACE 1
1314 #define wxFLOOD_BORDER 2
1316 /* Polygon filling mode */
1317 #define wxODDEVEN_RULE 1
1318 #define wxWINDING_RULE 2
1320 /* ToolPanel in wxFrame */
1321 #define wxTOOL_TOP 1
1322 #define wxTOOL_BOTTOM 2
1323 #define wxTOOL_LEFT 3
1324 #define wxTOOL_RIGHT 4
1326 // the values of the format constants should be the same as correspondign
1327 // CF_XXX constants in Windows API
1331 wxDF_TEXT
= 1, /* CF_TEXT */
1332 wxDF_BITMAP
= 2, /* CF_BITMAP */
1333 wxDF_METAFILE
= 3, /* CF_METAFILEPICT */
1337 wxDF_OEMTEXT
= 7, /* CF_OEMTEXT */
1338 wxDF_DIB
= 8, /* CF_DIB */
1343 wxDF_UNICODETEXT
= 13,
1344 wxDF_ENHMETAFILE
= 14,
1345 wxDF_FILENAME
= 15, /* CF_HDROP */
1351 /* Virtual keycodes */
1374 WXK_PRIOR
, /* Page up */
1375 WXK_NEXT
, /* Page down */
1448 WXK_NUMPAD_PAGEDOWN
,
1454 WXK_NUMPAD_MULTIPLY
,
1456 WXK_NUMPAD_SEPARATOR
,
1457 WXK_NUMPAD_SUBTRACT
,
1462 // Mapping modes (as per Windows)
1464 #define wxMM_LOMETRIC 2
1465 #define wxMM_HIMETRIC 3
1466 #define wxMM_LOENGLISH 4
1467 #define wxMM_HIENGLISH 5
1468 #define wxMM_TWIPS 6
1469 #define wxMM_ISOTROPIC 7
1470 #define wxMM_ANISOTROPIC 8
1472 #define wxMM_POINTS 9
1473 #define wxMM_METRIC 10
1475 /* Shortcut for easier dialog-unit-to-pixel conversion */
1476 #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
1480 wxPAPER_NONE
, // Use specific dimensions
1481 wxPAPER_LETTER
, // Letter, 8 1/2 by 11 inches
1482 wxPAPER_LEGAL
, // Legal, 8 1/2 by 14 inches
1483 wxPAPER_A4
, // A4 Sheet, 210 by 297 millimeters
1484 wxPAPER_CSHEET
, // C Sheet, 17 by 22 inches
1485 wxPAPER_DSHEET
, // D Sheet, 22 by 34 inches
1486 wxPAPER_ESHEET
, // E Sheet, 34 by 44 inches
1487 wxPAPER_LETTERSMALL
, // Letter Small, 8 1/2 by 11 inches
1488 wxPAPER_TABLOID
, // Tabloid, 11 by 17 inches
1489 wxPAPER_LEDGER
, // Ledger, 17 by 11 inches
1490 wxPAPER_STATEMENT
, // Statement, 5 1/2 by 8 1/2 inches
1491 wxPAPER_EXECUTIVE
, // Executive, 7 1/4 by 10 1/2 inches
1492 wxPAPER_A3
, // A3 sheet, 297 by 420 millimeters
1493 wxPAPER_A4SMALL
, // A4 small sheet, 210 by 297 millimeters
1494 wxPAPER_A5
, // A5 sheet, 148 by 210 millimeters
1495 wxPAPER_B4
, // B4 sheet, 250 by 354 millimeters
1496 wxPAPER_B5
, // B5 sheet, 182-by-257-millimeter paper
1497 wxPAPER_FOLIO
, // Folio, 8-1/2-by-13-inch paper
1498 wxPAPER_QUARTO
, // Quarto, 215-by-275-millimeter paper
1499 wxPAPER_10X14
, // 10-by-14-inch sheet
1500 wxPAPER_11X17
, // 11-by-17-inch sheet
1501 wxPAPER_NOTE
, // Note, 8 1/2 by 11 inches
1502 wxPAPER_ENV_9
, // #9 Envelope, 3 7/8 by 8 7/8 inches
1503 wxPAPER_ENV_10
, // #10 Envelope, 4 1/8 by 9 1/2 inches
1504 wxPAPER_ENV_11
, // #11 Envelope, 4 1/2 by 10 3/8 inches
1505 wxPAPER_ENV_12
, // #12 Envelope, 4 3/4 by 11 inches
1506 wxPAPER_ENV_14
, // #14 Envelope, 5 by 11 1/2 inches
1507 wxPAPER_ENV_DL
, // DL Envelope, 110 by 220 millimeters
1508 wxPAPER_ENV_C5
, // C5 Envelope, 162 by 229 millimeters
1509 wxPAPER_ENV_C3
, // C3 Envelope, 324 by 458 millimeters
1510 wxPAPER_ENV_C4
, // C4 Envelope, 229 by 324 millimeters
1511 wxPAPER_ENV_C6
, // C6 Envelope, 114 by 162 millimeters
1512 wxPAPER_ENV_C65
, // C65 Envelope, 114 by 229 millimeters
1513 wxPAPER_ENV_B4
, // B4 Envelope, 250 by 353 millimeters
1514 wxPAPER_ENV_B5
, // B5 Envelope, 176 by 250 millimeters
1515 wxPAPER_ENV_B6
, // B6 Envelope, 176 by 125 millimeters
1516 wxPAPER_ENV_ITALY
, // Italy Envelope, 110 by 230 millimeters
1517 wxPAPER_ENV_MONARCH
, // Monarch Envelope, 3 7/8 by 7 1/2 inches
1518 wxPAPER_ENV_PERSONAL
, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
1519 wxPAPER_FANFOLD_US
, // US Std Fanfold, 14 7/8 by 11 inches
1520 wxPAPER_FANFOLD_STD_GERMAN
, // German Std Fanfold, 8 1/2 by 12 inches
1521 wxPAPER_FANFOLD_LGL_GERMAN
, // German Legal Fanfold, 8 1/2 by 13 inches
1523 wxPAPER_ISO_B4
, // B4 (ISO) 250 x 353 mm
1524 wxPAPER_JAPANESE_POSTCARD
, // Japanese Postcard 100 x 148 mm
1525 wxPAPER_9X11
, // 9 x 11 in
1526 wxPAPER_10X11
, // 10 x 11 in
1527 wxPAPER_15X11
, // 15 x 11 in
1528 wxPAPER_ENV_INVITE
, // Envelope Invite 220 x 220 mm
1529 wxPAPER_LETTER_EXTRA
, // Letter Extra 9 \275 x 12 in
1530 wxPAPER_LEGAL_EXTRA
, // Legal Extra 9 \275 x 15 in
1531 wxPAPER_TABLOID_EXTRA
, // Tabloid Extra 11.69 x 18 in
1532 wxPAPER_A4_EXTRA
, // A4 Extra 9.27 x 12.69 in
1533 wxPAPER_LETTER_TRANSVERSE
, // Letter Transverse 8 \275 x 11 in
1534 wxPAPER_A4_TRANSVERSE
, // A4 Transverse 210 x 297 mm
1535 wxPAPER_LETTER_EXTRA_TRANSVERSE
, // Letter Extra Transverse 9\275 x 12 in
1536 wxPAPER_A_PLUS
, // SuperA/SuperA/A4 227 x 356 mm
1537 wxPAPER_B_PLUS
, // SuperB/SuperB/A3 305 x 487 mm
1538 wxPAPER_LETTER_PLUS
, // Letter Plus 8.5 x 12.69 in
1539 wxPAPER_A4_PLUS
, // A4 Plus 210 x 330 mm
1540 wxPAPER_A5_TRANSVERSE
, // A5 Transverse 148 x 210 mm
1541 wxPAPER_B5_TRANSVERSE
, // B5 (JIS) Transverse 182 x 257 mm
1542 wxPAPER_A3_EXTRA
, // A3 Extra 322 x 445 mm
1543 wxPAPER_A5_EXTRA
, // A5 Extra 174 x 235 mm
1544 wxPAPER_B5_EXTRA
, // B5 (ISO) Extra 201 x 276 mm
1545 wxPAPER_A2
, // A2 420 x 594 mm
1546 wxPAPER_A3_TRANSVERSE
, // A3 Transverse 297 x 420 mm
1547 wxPAPER_A3_EXTRA_TRANSVERSE
// A3 Extra Transverse 322 x 445 mm
1551 /* Printing orientation */
1553 #define wxPORTRAIT 1
1554 #define wxLANDSCAPE 2
1557 /* Duplex printing modes
1561 wxDUPLEX_SIMPLEX
, // Non-duplex
1562 wxDUPLEX_HORIZONTAL
,
1569 #define wxPRINT_QUALITY_HIGH -1
1570 #define wxPRINT_QUALITY_MEDIUM -2
1571 #define wxPRINT_QUALITY_LOW -3
1572 #define wxPRINT_QUALITY_DRAFT -4
1574 typedef int wxPrintQuality
;
1576 /* Print mode (currently PostScript only)
1580 wxPRINT_MODE_NONE
= 0,
1581 wxPRINT_MODE_PREVIEW
= 1, // Preview in external application
1582 wxPRINT_MODE_FILE
= 2, // Print to file
1583 wxPRINT_MODE_PRINTER
= 3 // Send to printer
1586 // ---------------------------------------------------------------------------
1587 // Macro to specify "All Files" on different platforms
1588 // ---------------------------------------------------------------------------
1589 #if defined(__WXMSW__)
1590 # define wxALL_FILES_PATTERN "*.*"
1591 # define wxALL_FILES gettext_noop("All files (*.*)|*.*")
1593 # define wxALL_FILES_PATTERN "*"
1594 # define wxALL_FILES gettext_noop("All files (*)|*")
1596 // ---------------------------------------------------------------------------
1597 // macros that enable wxWindows apps to be compiled in absence of the
1598 // sytem headers, although some platform specific types are used in the
1599 // platform specific (implementation) parts of the headers
1600 // ---------------------------------------------------------------------------
1604 typedef WindowPtr WXHWND
;
1605 typedef Handle WXHANDLE
;
1606 typedef CIconHandle WXHICON
;
1607 //typedef unsigned long WXHFONT;
1608 typedef MenuHandle WXHMENU
;
1609 //typedef unsigned long WXHPEN;
1610 //typedef unsigned long WXHBRUSH;
1611 //typedef unsigned long WXHPALETTE;
1612 typedef CursHandle WXHCURSOR
;
1613 typedef RgnHandle WXHRGN
;
1614 //typedef unsigned long WXHACCEL;
1615 //typedef unsigned long WXHINSTANCE;
1616 typedef GWorldPtr WXHBITMAP
;
1617 //typedef unsigned long WXHIMAGELIST;
1618 //typedef unsigned long WXHGLOBAL;
1619 typedef GrafPtr WXHDC
;
1620 typedef unsigned int WXUINT
;
1621 typedef unsigned long WXDWORD
;
1622 typedef unsigned short WXWORD
;
1623 //typedef unsigned int WXWPARAM;
1624 //typedef long WXLPARAM;
1625 typedef RGBColor WXCOLORREF
;
1626 //typedef void * WXRGNDATA;
1627 //typedef void * WXMSG;
1628 //typedef unsigned long WXHCONV;
1629 //typedef unsigned long WXHKEY;
1630 //typedef void * WXDRAWITEMSTRUCT;
1631 //typedef void * WXMEASUREITEMSTRUCT;
1632 //typedef void * WXLPCREATESTRUCT;
1633 typedef int (*WXFARPROC
)();
1635 typedef WindowPtr WXWindow
;
1636 typedef ControlHandle WXWidget
;
1640 #if defined(__WXMSW__) || defined(__WXPM__)
1641 // Stand-ins for Windows types or OS/2, to avoid #including all of windows.h or os2.h
1642 typedef unsigned long WXHWND
;
1643 typedef unsigned long WXHANDLE
;
1644 typedef unsigned long WXHICON
;
1645 typedef unsigned long WXHFONT
;
1646 typedef unsigned long WXHMENU
;
1647 typedef unsigned long WXHPEN
;
1648 typedef unsigned long WXHBRUSH
;
1649 typedef unsigned long WXHPALETTE
;
1650 typedef unsigned long WXHCURSOR
;
1651 typedef unsigned long WXHRGN
;
1652 typedef unsigned long WXHACCEL
;
1653 typedef unsigned long WXHINSTANCE
;
1654 typedef unsigned long WXHBITMAP
;
1655 typedef unsigned long WXHIMAGELIST
;
1656 typedef unsigned long WXHGLOBAL
;
1657 typedef unsigned long WXHDC
;
1658 typedef unsigned int WXUINT
;
1659 typedef unsigned long WXDWORD
;
1660 typedef unsigned short WXWORD
;
1662 typedef unsigned int WXWPARAM
;
1663 typedef long WXLPARAM
;
1665 # define WXWPARAM MPARAM
1666 # define WXLPARAM MPARAM
1668 # define LOGFONT FATTRS
1669 # define LOWORD SHORT1FROMMP
1670 # define HIWORD SHORT2FROMMP
1672 typedef unsigned long WXCOLORREF
;
1673 typedef void * WXRGNDATA
;
1674 typedef void * WXMSG
;
1675 typedef unsigned long WXHCONV
;
1676 typedef unsigned long WXHKEY
;
1677 typedef unsigned long WXHTREEITEM
;
1679 typedef void * WXDRAWITEMSTRUCT
;
1680 typedef void * WXMEASUREITEMSTRUCT
;
1681 typedef void * WXLPCREATESTRUCT
;
1683 #if defined(__WXPM__)
1684 typedef unsigned long WXMPARAM
;
1685 typedef unsigned long WXMSGID
;
1686 typedef void* WXRESULT
;
1687 typedef int (*WXFARPROC
)();
1688 // some windows handles not defined by PM
1689 typedef unsigned long COLORREF
;
1690 typedef unsigned long HANDLE
;
1691 typedef unsigned long HICON
;
1692 typedef unsigned long HFONT
;
1693 typedef unsigned long HMENU
;
1694 typedef unsigned long HPEN
;
1695 typedef unsigned long HBRUSH
;
1696 typedef unsigned long HPALETTE
;
1697 typedef unsigned long HCURSOR
;
1698 typedef unsigned long HINSTANCE
;
1699 typedef unsigned long HIMAGELIST
;
1700 typedef unsigned long HGLOBAL
;
1701 typedef unsigned long DWORD
;
1702 typedef unsigned short WORD
;
1705 #if defined(__GNUWIN32__) || defined(__WXWINE__)
1706 typedef int (*WXFARPROC
)();
1707 #elif defined(__WIN32__)
1708 typedef int (__stdcall
*WXFARPROC
)();
1710 typedef int (*WXFARPROC
)();
1713 typedef WXHWND WXWidget
;
1715 #if defined(__BORLANDC__) && !defined(__WIN32__)
1717 #define LPTSTR LPSTR
1720 #define LPCTSTR LPSTR
1727 /* Stand-ins for X/Xt/Motif types */
1728 typedef void* WXWindow
;
1729 typedef void* WXWidget
;
1730 typedef void* WXAppContext
;
1731 typedef void* WXColormap
;
1732 typedef void WXDisplay
;
1733 typedef void WXEvent
;
1734 typedef void* WXCursor
;
1735 typedef void* WXPixmap
;
1736 typedef void* WXFontStructPtr
;
1738 typedef void* WXRegion
;
1739 typedef void* WXFont
;
1740 typedef void* WXImage
;
1741 typedef void* WXCursor
;
1742 typedef void* WXFontList
;
1744 typedef unsigned long Atom
; /* this might fail on a few architectures */
1749 /* Stand-ins for GLIB types */
1751 typedef unsigned guint
;
1752 typedef unsigned long gulong
;
1753 typedef void* gpointer
;
1754 typedef struct _GSList GSList
;
1756 /* Stand-ins for GDK types */
1757 typedef gulong GdkAtom
;
1758 typedef struct _GdkColor GdkColor
;
1759 typedef struct _GdkColormap GdkColormap
;
1760 typedef struct _GdkFont GdkFont
;
1761 typedef struct _GdkGC GdkGC
;
1762 typedef struct _GdkWindow GdkWindow
;
1763 typedef struct _GdkWindow GdkBitmap
;
1764 typedef struct _GdkWindow GdkPixmap
;
1765 typedef struct _GdkCursor GdkCursor
;
1766 typedef struct _GdkRegion GdkRegion
;
1767 typedef struct _GdkDragContext GdkDragContext
;
1769 /* Stand-ins for GTK types */
1770 typedef struct _GtkWidget GtkWidget
;
1771 typedef struct _GtkStyle GtkStyle
;
1772 typedef struct _GtkAdjustment GtkAdjustment
;
1773 typedef struct _GtkList GtkList
;
1774 typedef struct _GtkToolbar GtkToolbar
;
1775 typedef struct _GtkTooltips GtkTooltips
;
1776 typedef struct _GtkNotebook GtkNotebook
;
1777 typedef struct _GtkNotebookPage GtkNotebookPage
;
1778 typedef struct _GtkAccelGroup GtkAccelGroup
;
1779 typedef struct _GtkItemFactory GtkItemFactory
;
1780 typedef struct _GtkSelectionData GtkSelectionData
;
1782 typedef GtkWidget
*WXWidget
;
1785 // This is required because of clashing macros in windows.h, which may be
1786 // included before or after wxWindows classes, and therefore must be
1787 // disabled here before any significant wxWindows headers are included.
1819 // ---------------------------------------------------------------------------
1820 // macro to define a class without copy ctor nor assignment operator
1821 // ---------------------------------------------------------------------------
1823 #define DECLARE_NO_COPY_CLASS(classname) \
1825 classname(const classname&); \
1826 classname& operator=(const classname&)