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 #include "wx/platform.h"
25 // Make sure the environment is set correctly
26 #if defined(__WXMSW__) && defined(__X__)
27 #error "Target can't be both X and Windows"
28 #elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && \
29 !defined(__WXPM__) && !defined(__WXMAC__) && !defined(__X__) && \
30 !defined(__WXMGL__) && !defined(__WXX11__) && wxUSE_GUI
32 #error "No Target! You should use wx-config program for compilation flags!"
34 #error "No Target! You should use supplied makefiles for compilation!"
38 // include the feature test macros
39 #include "wx/features.h"
41 // suppress some Visual C++ warnings
43 # pragma warning(disable:4201) // nonstandard extension used: nameless struct/union
44 # pragma warning(disable:4244) // conversion from double to float
45 # pragma warning(disable:4100) // unreferenced formal parameter
46 # pragma warning(disable:4511) // copy ctor couldn't be generated
47 # pragma warning(disable:4512) // operator=() couldn't be generated
48 # pragma warning(disable:4699) // using precompiled header
49 # pragma warning(disable:4134) // conversion between pointers to members of same class
50 # pragma warning(disable:4710) // function not inlined
52 # pragma warning(disable:4135) // conversion between different integral types
53 # pragma warning(disable:4769) // assignment of near pointer to long integer
54 // This one is really annoying, since it occurs for each cast to (HANDLE)...
55 # pragma warning(disable:4305) // truncation of long to near ptr
59 // suppress some Watcom C++ warnings
61 # pragma warning 849 9 // Disable 'virtual function hidden'
62 # pragma warning 549 9 // Disable 'operand contains compiler generated information'
65 // suppress some Salford C++ warnings
67 # pragma suppress 353 // Possible nested comments
68 # pragma suppress 593 // Define not used
69 # pragma suppress 61 // enum has no name (doesn't suppress!)
70 # pragma suppress 106 // unnamed, unused parameter
71 # pragma suppress 571 // Virtual function hiding
72 #endif // __SALFORDC__
74 // ----------------------------------------------------------------------------
75 // wxWindows version and compatibility defines
76 // ----------------------------------------------------------------------------
78 #include "wx/version.h"
80 // possibility to build non GUI apps is new, so don't burden ourselves with
83 #undef WXWIN_COMPATIBILITY_2
84 #undef WXWIN_COMPATIBILITY_2_2
86 #define WXWIN_COMPATIBILITY_2 0
87 #define WXWIN_COMPATIBILITY_2_2 0
90 // ============================================================================
91 // non portable C++ features
92 // ============================================================================
94 // ----------------------------------------------------------------------------
95 // compiler defects workarounds
96 // ----------------------------------------------------------------------------
98 #if defined(__VISUALC__) && !defined(WIN32)
99 // VC1.5 does not have LPTSTR type
101 #define LPCTSTR LPCSTR
102 #elif defined(__BORLANDC__) && !defined(__WIN32__)
107 #define LPCTSTR LPSTR
113 Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
114 so define it ourselves (newer versions do it for all files, though, and
115 don't allow it to be redefined)
117 #if defined(__DECCXX) && !defined(__VMS) && !defined(__cplusplus)
119 #endif /* __DECCXX */
121 // Resolves linking problems under HP-UX when compiling with gcc/g++
122 #if defined(__HPUX__) && defined(__GNUG__)
123 #define va_list __gnuc_va_list
126 // ----------------------------------------------------------------------------
127 // check for native bool type and TRUE/FALSE constants
128 // ----------------------------------------------------------------------------
130 // Add more tests here for Windows compilers that already define bool
131 // (under Unix, configure tests for this)
133 #if defined( __MWERKS__ )
134 #if (__MWERKS__ >= 0x1000) && __option(bool)
137 #elif defined(__APPLE__) && defined(__APPLE_CC__)
138 // Apple bundled gcc supports bool
140 #elif defined(__VISUALC__) && (__VISUALC__ == 1020)
141 // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed)
142 // but not implemented, so we must #define it
143 #define bool unsigned int
144 #elif defined(__VISUALC__) && (__VISUALC__ == 1010)
145 // For VisualC++ 4.1, we need to define
146 // bool as something between 4.0 & 5.0...
147 typedef unsigned int wxbool
;
150 #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
151 // VC++ supports bool since 4.2
153 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)
154 // Borland 5.0+ supports bool
156 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
157 // Watcom 11+ supports bool
159 #elif defined(__GNUWIN32__)
160 // Cygwin supports bool
162 #elif defined(__VISAGECPP__)
164 typedef unsigned long bool;
170 #if !defined(HAVE_BOOL) && !defined(bool) && !defined(VMS)
171 // NB: of course, this doesn't replace the standard type, because, for
172 // example, overloading based on bool/int parameter doesn't work and
173 // so should be avoided in portable programs
174 typedef unsigned int bool;
178 // define boolean constants: don't use true/false here as not all compilers
179 // support them but also redefine TRUE which could have been defined as 1
180 // by previous headers: this would be incorrect as our TRUE is supposed to
181 // be of type bool, just like true, not int
183 // however if the user code absolutely needs TRUE to be defined in its own
184 // way, it can predefine WX_TRUE_DEFINED to prevent the redefinition here
186 #ifndef WX_TRUE_DEFINED
189 #define TRUE ((bool)1)
190 #define FALSE ((bool)0)
193 #else // !__cplusplus
194 // the definitions above don't work for C sources
204 typedef short int WXTYPE
;
206 // special care should be taken with this type under Windows where the real
207 // window id is unsigned, so we must always do the cast before comparing them
208 // (or else they would be always different!). Usign wxGetWindowId() which does
209 // the cast itself is recommended. Note that this type can't be unsigned
210 // because -1 is a valid (and largely used) value for window id.
211 typedef int wxWindowID
;
213 // ----------------------------------------------------------------------------
214 // other feature tests
215 // ----------------------------------------------------------------------------
217 // Every ride down a slippery slope begins with a single step..
219 // Yes, using nested classes is indeed against our coding standards in
220 // general, but there are places where you can use them to advantage
221 // without totally breaking ports that cannot use them. If you do, then
222 // wrap it in this guard, but such cases should still be relatively rare.
224 #define wxUSE_NESTED_CLASSES 1
226 #define wxUSE_NESTED_CLASSES 0
229 // ----------------------------------------------------------------------------
230 // portable calling conventions macros
231 // ----------------------------------------------------------------------------
233 // stdcall is used for all functions called by Windows under Windows
235 #if defined(__GNUWIN32__)
236 #define wxSTDCALL __attribute__((stdcall))
238 // both VC++ and Borland understand this
239 #define wxSTDCALL _stdcall
243 // no such stupidness under Unix
247 // LINKAGEMODE mode is empty for everyting except OS/2
250 #endif // LINKAGEMODE
252 // wxCALLBACK should be used for the functions which are called back by
253 // Windows (such as compare function for wxListCtrl)
254 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
255 #define wxCALLBACK wxSTDCALL
257 // no stdcall under Unix nor Win16
261 // generic calling convention for the extern "C" functions
263 #if defined(__VISUALC__)
264 #define wxC_CALLING_CONV _cdecl
265 #elif defined(__VISAGECPP__)
266 #define wxC_CALLING_CONV _Optlink
268 #define wxC_CALLING_CONV
271 // callling convention for the qsort(3) callback
272 #define wxCMPFUNC_CONV wxC_CALLING_CONV
275 #define CMPFUNC_CONV wxCMPFUNC_CONV
277 // ----------------------------------------------------------------------------
278 // Making or using wxWindows as a Windows DLL
279 // ----------------------------------------------------------------------------
281 #if defined(__WXMSW__)
282 // __declspec works in BC++ 5 and later, Watcom C++ 11.0 and later as well
284 #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__GNUC__) || defined(__WATCOMC__)
285 #define WXEXPORT __declspec(dllexport)
286 #define WXIMPORT __declspec(dllimport)
287 #else // compiler doesn't support __declspec()
291 #elif defined(__WXPM__)
292 #if defined (__WATCOMC__)
293 #define WXEXPORT __declspec(dllexport)
294 // __declspec(dllimport) prepends __imp to imported symbols. We do NOT
297 #elif (!(defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 )))
298 #define WXEXPORT _Export
299 #define WXIMPORT _Export
301 #elif defined(__WXMAC__)
303 #define WXEXPORT __declspec(export)
304 #define WXIMPORT __declspec(import)
308 // for other platforms/compilers we don't anything
314 // WXDLLEXPORT maps to export declaration when building the DLL, to import
315 // declaration if using it or to nothing at all if we don't use wxWin DLL
317 #define WXDLLEXPORT WXEXPORT
318 #define WXDLLEXPORT_DATA(type) WXEXPORT type
319 #define WXDLLEXPORT_CTORFN
320 #elif defined(WXUSINGDLL)
321 #define WXDLLEXPORT WXIMPORT
322 #define WXDLLEXPORT_DATA(type) WXIMPORT type
323 #define WXDLLEXPORT_CTORFN
324 #else // not making nor using DLL
326 #define WXDLLEXPORT_DATA(type) type
327 #define WXDLLEXPORT_CTORFN
330 // For ostream, istream ofstream
331 #if defined(__BORLANDC__) && defined( _RTLDLL )
332 # define WXDLLIMPORT __import
338 class WXDLLEXPORT wxObject
;
339 class WXDLLEXPORT wxEvent
;
342 // symbolic constant used by all Find()-like functions returning positive
343 // integer on success as failure indicator
344 #define wxNOT_FOUND (-1)
346 // ----------------------------------------------------------------------------
347 // Very common macros
348 // ----------------------------------------------------------------------------
350 // everybody gets the assert and other debug macros
352 #include "wx/debug.h"
355 // NULL declaration: it must be defined as 0 for C++ programs (in particular,
356 // it must not be defined as "(void *)0" which is standard for C but completely
360 // Macro to cut down on compiler warnings.
361 #if REMOVE_UNUSED_ARG
362 #define WXUNUSED(identifier) /* identifier */
363 #else // stupid, broken compiler
364 #define WXUNUSED(identifier) identifier
367 // some arguments are only used in debug mode, but unused in release one
369 #define WXUNUSED_UNLESS_DEBUG(param) param
371 #define WXUNUSED_UNLESS_DEBUG(param) WXUNUSED(param)
374 // delete pointer if it is not NULL and NULL it afterwards
375 // (checking that it's !NULL before passing it to delete is just a
376 // a question of style, because delete will do it itself anyhow, but it might
377 // be considered as an error by some overzealous debugging implementations of
378 // the library, so we do it ourselves)
379 #define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
381 // delete an array and NULL it (see comments above)
382 #define wxDELETEA(p) if ( (p) ) { delete [] (p); p = NULL; }
384 // size of statically declared array
385 #define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
387 // ----------------------------------------------------------------------------
388 // compiler specific settings
389 // ----------------------------------------------------------------------------
391 // to allow compiling with warning level 4 under Microsoft Visual C++ some
392 // warnings just must be disabled
394 #pragma warning(disable: 4514) // unreferenced inline func has been removed
396 you might be tempted to disable this one also: triggered by CHECK and FAIL
397 macros in debug.h, but it's, overall, a rather useful one, so I leave it and
398 will try to find some way to disable this warning just for CHECK/FAIL. Anyone?
400 #pragma warning(disable: 4127) // conditional expression is constant
403 #if defined(__MWERKS__)
407 #define except(x) catch(...)
410 // where should i put this? we need to make sure of this as it breaks
411 // the <iostream> code.
412 #if !wxUSE_IOSTREAMH && defined(__WXDEBUG__)
414 // #undef __WXDEBUG__
415 # ifdef wxUSE_DEBUG_NEW_ALWAYS
416 # undef wxUSE_DEBUG_NEW_ALWAYS
417 # define wxUSE_DEBUG_NEW_ALWAYS 0
422 // Callback function type definition
424 typedef void (*wxFunction
) (wxObject
&, wxEvent
&);
427 // ----------------------------------------------------------------------------
428 // OS mnemonics -- Identify the running OS (useful for Windows)
429 // ----------------------------------------------------------------------------
431 // Not all platforms are currently available or supported
435 wxCURSES
, // Text-only CURSES
436 wxXVIEW_X
, // Sun's XView OpenLOOK toolkit
437 wxMOTIF_X
, // OSF Motif 1.x.x
438 wxCOSE_X
, // OSF Common Desktop Environment
439 wxNEXTSTEP
, // NeXTStep
440 wxMAC
, // Apple Mac OS 8/9/X with Mac paths
441 wxMAC_DARWIN
, // Apple Mac OS X with Unix paths
444 wxGTK_WIN32
, // GTK on Win32
445 wxGTK_OS2
, // GTK on OS/2
446 wxGTK_BEOS
, // GTK on BeOS
448 wxOS2_PM
, // OS/2 Workplace
449 wxWINDOWS
, // Windows or WfW
450 wxMICROWINDOWS
, // MicroWindows
451 wxPENWINDOWS
, // Windows for Pen Computing
452 wxWINDOWS_NT
, // Windows NT
453 wxWIN32S
, // Windows 32S API
454 wxWIN95
, // Windows 95
455 wxWIN386
, // Watcom 32-bit supervisor modus
456 wxMGL_UNIX
, // MGL with direct hardware access
458 wxMGL_WIN32
, // MGL on Win32
459 wxMGL_OS2
, // MGL on OS/2
460 wxMGL_DOS
, // MGL on MS-DOS
461 wxWINDOWS_OS2
, // Native OS/2 PM
462 wxUNIX
, // wxBase under Unix
463 wxX11
// Plain X11 and Universal widgets
466 // ----------------------------------------------------------------------------
467 // standard wxWindows types
468 // ----------------------------------------------------------------------------
470 // the type for screen and DC coordinates
472 #if wxUSE_COMPATIBLE_COORD_TYPES
473 // to ensure compatibility with 2.0, we must use long
475 #else // !wxUSE_COMPATIBLE_COORD_TYPES
477 // under Win16, int is too small, so use long to allow for bigger
479 typedef long wxCoord
;
481 // other platforms we support have at least 32bit int - quite enough
483 #endif // Win16/!Win16
484 #endif // wxUSE_COMPATIBLE_COORD_TYPES/!wxUSE_COMPATIBLE_COORD_TYPES
486 // fixed length types
488 #define wxInt8 char signed
489 #define wxUint8 char unsigned
492 #if defined(__WIN16__)
493 #define wxInt16 int signed
494 #define wxUint16 int unsigned
495 #define wxInt32 long signed
496 #define wxUint32 long unsigned
497 #elif defined(__WIN32__)
498 #define wxInt16 short signed
499 #define wxUint16 short unsigned
500 #define wxInt32 int signed
501 #define wxUint32 int unsigned
503 // Win64 will have different type sizes
504 #error "Please define a 32 bit type"
507 // SIZEOF_XXX are defined by configure
508 #if defined(SIZEOF_INT) && (SIZEOF_INT == 4)
509 #define wxInt16 short signed
510 #define wxUint16 short unsigned
511 #define wxInt32 int signed
512 #define wxUint32 int unsigned
513 #elif defined(SIZEOF_INT) && (SIZEOF_INT == 2)
514 #define wxInt16 int signed
515 #define wxUint16 int unsigned
516 #define wxInt32 long signed
517 #define wxUint32 long unsigned
519 // assume sizeof(int) == 4 - what else can we do
520 wxCOMPILE_TIME_ASSERT( sizeof(int) == 4, IntMustBeExactly4Bytes
);
522 #define wxInt16 short signed
523 #define wxUint16 short unsigned
524 #define wxInt32 int signed
525 #define wxUint32 int unsigned
529 #if defined(SIZEOF_LONG) && (SIZEOF_LONG == 8)
530 #define wxInt64 long signed
531 #define wxUint64 long unsigned
532 #elif defined(SIZEOF_LONG_LONG) && (SIZEOF_LONG_LONG == 8)
533 #define wxInt64 long long signed
534 #define wxUint64 long long unsigned
535 #else // FIXME: what else can we do here aside from implementing wxULongLong
536 #define wxInt64 wxLongLong
537 #define wxUint64 wxULongLong
540 #define wxByte wxUint8
541 #define wxWord wxUint16
543 // base floating point types
544 // wxFloat32 : 32 bit IEEE float ( 1 sign , 8 exponent bits , 23 fraction bits
545 // wxFloat64 : 64 bit IEEE float ( 1 sign , 11 exponent bits , 52 fraction bits
546 // wxDouble : native fastest representation that has at least wxFloat64
547 // precision, so use the IEEE types for storage , and this for calculations
549 typedef float wxFloat32
;
550 #if defined( __WXMAC__ ) && defined (__MWERKS__)
551 typedef short double wxFloat64
;
553 typedef double wxFloat64
;
556 #if defined( __WXMAC__ ) && !defined( __POWERPC__ )
557 typedef long double wxDouble
;
559 typedef double wxDouble
;
562 // ----------------------------------------------------------------------------
563 // byte ordering related definition and macros
564 // ----------------------------------------------------------------------------
568 #define wxBIG_ENDIAN 4321
569 #define wxLITTLE_ENDIAN 1234
570 #define wxPDP_ENDIAN 3412
572 #ifdef WORDS_BIGENDIAN
573 #define wxBYTE_ORDER wxBIG_ENDIAN
575 #define wxBYTE_ORDER wxLITTLE_ENDIAN
580 #if defined (__MWERKS__) && ( (__MWERKS__ < 0x0900) || macintosh )
581 // assembler versions for these
583 inline wxUint16
wxUINT16_SWAP_ALWAYS( wxUint16 i
)
584 {return (__lhbrx( &i
, 0 ) ) ;}
585 inline wxInt16
wxINT16_SWAP_ALWAYS( wxInt16 i
)
586 {return (__lhbrx( &i
, 0 ) ) ;}
587 inline wxUint32
wxUINT32_SWAP_ALWAYS( wxUint32 i
)
588 {return (__lwbrx( &i
, 0 ) ) ;}
589 inline wxInt32
wxINT32_SWAP_ALWAYS( wxInt32 i
)
590 {return (__lwbrx( &i
, 0 ) ) ;}
592 #pragma parameter __D0 wxUINT16_SWAP_ALWAYS(__D0)
593 pascal wxUint16
wxUINT16_SWAP_ALWAYS(wxUint16 value
)
596 #pragma parameter __D0 wxINT16_SWAP_ALWAYS(__D0)
597 pascal wxInt16
wxINT16_SWAP_ALWAYS(wxInt16 value
)
600 #pragma parameter __D0 wxUINT32_SWAP_ALWAYS (__D0)
601 pascal wxUint32
wxUINT32_SWAP_ALWAYS(wxUint32 value
)
602 = { 0xE158, 0x4840, 0xE158 };
604 #pragma parameter __D0 wxINT32_SWAP_ALWAYS (__D0)
605 pascal wxInt32
wxINT32_SWAP_ALWAYS(wxInt32 value
)
606 = { 0xE158, 0x4840, 0xE158 };
610 #define wxUINT16_SWAP_ALWAYS(val) \
612 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
613 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
615 #define wxINT16_SWAP_ALWAYS(val) \
617 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
618 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
620 #define wxUINT32_SWAP_ALWAYS(val) \
622 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
623 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
624 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
625 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
627 #define wxINT32_SWAP_ALWAYS(val) \
629 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
630 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
631 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
632 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
634 // machine specific byte swapping
636 #if defined(SIZEOF_LONG) && (SIZEOF_LONG == 8)
637 #define wxUINT64_SWAP_ALWAYS(val) \
639 (((wxUint64) (val) & (wxUint64) 0x00000000000000ffUL) << 56) | \
640 (((wxUint64) (val) & (wxUint64) 0x000000000000ff00UL) << 40) | \
641 (((wxUint64) (val) & (wxUint64) 0x0000000000ff0000UL) << 24) | \
642 (((wxUint64) (val) & (wxUint64) 0x00000000ff000000UL) << 8) | \
643 (((wxUint64) (val) & (wxUint64) 0x000000ff00000000UL) >> 8) | \
644 (((wxUint64) (val) & (wxUint64) 0x0000ff0000000000UL) >> 24) | \
645 (((wxUint64) (val) & (wxUint64) 0x00ff000000000000UL) >> 40) | \
646 (((wxUint64) (val) & (wxUint64) 0xff00000000000000UL) >> 56)))
648 #define wxINT64_SWAP_ALWAYS(val) \
650 (((wxUint64) (val) & (wxUint64) 0x00000000000000ffUL) << 56) | \
651 (((wxUint64) (val) & (wxUint64) 0x000000000000ff00UL) << 40) | \
652 (((wxUint64) (val) & (wxUint64) 0x0000000000ff0000UL) << 24) | \
653 (((wxUint64) (val) & (wxUint64) 0x00000000ff000000UL) << 8) | \
654 (((wxUint64) (val) & (wxUint64) 0x000000ff00000000UL) >> 8) | \
655 (((wxUint64) (val) & (wxUint64) 0x0000ff0000000000UL) >> 24) | \
656 (((wxUint64) (val) & (wxUint64) 0x00ff000000000000UL) >> 40) | \
657 (((wxUint64) (val) & (wxUint64) 0xff00000000000000UL) >> 56)))
659 #elif defined(SIZEOF_LONG_LONG) && (SIZEOF_LONG_LONG == 8)
660 #define wxUINT64_SWAP_ALWAYS(val) \
662 (((wxUint64) (val) & (wxUint64) 0x00000000000000ffULL) << 56) | \
663 (((wxUint64) (val) & (wxUint64) 0x000000000000ff00ULL) << 40) | \
664 (((wxUint64) (val) & (wxUint64) 0x0000000000ff0000ULL) << 24) | \
665 (((wxUint64) (val) & (wxUint64) 0x00000000ff000000ULL) << 8) | \
666 (((wxUint64) (val) & (wxUint64) 0x000000ff00000000ULL) >> 8) | \
667 (((wxUint64) (val) & (wxUint64) 0x0000ff0000000000ULL) >> 24) | \
668 (((wxUint64) (val) & (wxUint64) 0x00ff000000000000ULL) >> 40) | \
669 (((wxUint64) (val) & (wxUint64) 0xff00000000000000ULL) >> 56)))
671 #define wxINT64_SWAP_ALWAYS(val) \
673 (((wxUint64) (val) & (wxUint64) 0x00000000000000ffULL) << 56) | \
674 (((wxUint64) (val) & (wxUint64) 0x000000000000ff00ULL) << 40) | \
675 (((wxUint64) (val) & (wxUint64) 0x0000000000ff0000ULL) << 24) | \
676 (((wxUint64) (val) & (wxUint64) 0x00000000ff000000ULL) << 8) | \
677 (((wxUint64) (val) & (wxUint64) 0x000000ff00000000ULL) >> 8) | \
678 (((wxUint64) (val) & (wxUint64) 0x0000ff0000000000ULL) >> 24) | \
679 (((wxUint64) (val) & (wxUint64) 0x00ff000000000000ULL) >> 40) | \
680 (((wxUint64) (val) & (wxUint64) 0xff00000000000000ULL) >> 56)))
683 #define wxUINT64_SWAP_ALWAYS(val) \
685 ((wxULongLong(val) & wxULongLong(0L, 0x000000ffU)) << 56) | \
686 ((wxULongLong(val) & wxULongLong(0L, 0x0000ff00U)) << 40) | \
687 ((wxULongLong(val) & wxULongLong(0L, 0x00ff0000U)) << 24) | \
688 ((wxULongLong(val) & wxULongLong(0L, 0xff000000U)) << 8) | \
689 ((wxULongLong(val) & wxULongLong(0x000000ffL, 0U)) >> 8) | \
690 ((wxULongLong(val) & wxULongLong(0x0000ff00L, 0U)) >> 24) | \
691 ((wxULongLong(val) & wxULongLong(0x00ff0000L, 0U)) >> 40) | \
692 ((wxULongLong(val) & wxULongLong(0xff000000L, 0U)) >> 56)))
694 #define wxINT64_SWAP_ALWAYS(val) \
696 ((wxLongLong(val) & wxLongLong(0L, 0x000000ffU)) << 56) | \
697 ((wxLongLong(val) & wxLongLong(0L, 0x0000ff00U)) << 40) | \
698 ((wxLongLong(val) & wxLongLong(0L, 0x00ff0000U)) << 24) | \
699 ((wxLongLong(val) & wxLongLong(0L, 0xff000000U)) << 8) | \
700 ((wxLongLong(val) & wxLongLong(0x000000ffL, 0U)) >> 8) | \
701 ((wxLongLong(val) & wxLongLong(0x0000ff00L, 0U)) >> 24) | \
702 ((wxLongLong(val) & wxLongLong(0x00ff0000L, 0U)) >> 40) | \
703 ((wxLongLong(val) & wxLongLong(0xff000000L, 0U)) >> 56)))
706 #ifdef WORDS_BIGENDIAN
707 #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val)
708 #define wxINT16_SWAP_ON_BE(val) wxINT16_SWAP_ALWAYS(val)
709 #define wxUINT16_SWAP_ON_LE(val) (val)
710 #define wxINT16_SWAP_ON_LE(val) (val)
711 #define wxUINT32_SWAP_ON_BE(val) wxUINT32_SWAP_ALWAYS(val)
712 #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val)
713 #define wxUINT32_SWAP_ON_LE(val) (val)
714 #define wxINT32_SWAP_ON_LE(val) (val)
715 #define wxUINT64_SWAP_ON_BE(val) wxUINT64_SWAP_ALWAYS(val)
716 #define wxUINT64_SWAP_ON_LE(val) (val)
718 #define wxUINT16_SWAP_ON_LE(val) wxUINT16_SWAP_ALWAYS(val)
719 #define wxINT16_SWAP_ON_LE(val) wxINT16_SWAP_ALWAYS(val)
720 #define wxUINT16_SWAP_ON_BE(val) (val)
721 #define wxINT16_SWAP_ON_BE(val) (val)
722 #define wxUINT32_SWAP_ON_LE(val) wxUINT32_SWAP_ALWAYS(val)
723 #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val)
724 #define wxUINT32_SWAP_ON_BE(val) (val)
725 #define wxINT32_SWAP_ON_BE(val) (val)
726 #define wxUINT64_SWAP_ON_LE(val) wxUINT64_SWAP_ALWAYS(val)
727 #define wxUINT64_SWAP_ON_BE(val) (val)
730 // ----------------------------------------------------------------------------
732 // ----------------------------------------------------------------------------
734 enum wxGeometryCentre
740 // centering into frame rather than screen (obsolete)
741 #define wxCENTER_FRAME 0x0000
742 // centre on screen rather than parent
743 #define wxCENTRE_ON_SCREEN 0x0002
744 #define wxCENTER_ON_SCREEN wxCENTRE_ON_SCREEN
748 wxHORIZONTAL
= 0x0004,
751 wxBOTH
= (wxVERTICAL
| wxHORIZONTAL
)
769 wxALL
= (wxUP
| wxDOWN
| wxRIGHT
| wxLEFT
)
774 wxALIGN_NOT
= 0x0000,
775 wxALIGN_CENTER_HORIZONTAL
= 0x0100,
776 wxALIGN_CENTRE_HORIZONTAL
= wxALIGN_CENTER_HORIZONTAL
,
777 wxALIGN_LEFT
= wxALIGN_NOT
,
778 wxALIGN_TOP
= wxALIGN_NOT
,
779 wxALIGN_RIGHT
= 0x0200,
780 wxALIGN_BOTTOM
= 0x0400,
781 wxALIGN_CENTER_VERTICAL
= 0x0800,
782 wxALIGN_CENTRE_VERTICAL
= wxALIGN_CENTER_VERTICAL
,
784 wxALIGN_CENTER
= (wxALIGN_CENTER_HORIZONTAL
| wxALIGN_CENTER_VERTICAL
),
785 wxALIGN_CENTRE
= wxALIGN_CENTER
,
787 // a mask to extract alignment from the combination of flags
788 wxALIGN_MASK
= 0x0f00
793 wxSTRETCH_NOT
= 0x0000,
798 wxADJUST_MINSIZE
= 0x8000,
802 // border flags: the values are chosen for backwards compatibility
805 // this is different from wxBORDER_NONE as by default the controls do have
807 wxBORDER_DEFAULT
= 0,
809 wxBORDER_NONE
= 0x00200000,
810 wxBORDER_STATIC
= 0x01000000,
811 wxBORDER_SIMPLE
= 0x02000000,
812 wxBORDER_RAISED
= 0x04000000,
813 wxBORDER_SUNKEN
= 0x08000000,
814 wxBORDER_DOUBLE
= 0x10000000,
816 // a mask to extract border style from the combination of flags
817 wxBORDER_MASK
= 0x1f200000
820 // ----------------------------------------------------------------------------
821 // Window style flags
822 // ----------------------------------------------------------------------------
825 * Values are chosen so they can be |'ed in a bit list.
826 * Some styles are used across more than one group,
827 * so the values mustn't clash with others in the group.
828 * Otherwise, numbers can be reused across groups.
831 * Window (cross-group) styles now take up the first half
832 * of the flag, and control-specific styles the
838 * Window (Frame/dialog/subwindow/panel item) style flags
840 #define wxVSCROLL 0x80000000
841 #define wxHSCROLL 0x40000000
842 #define wxCAPTION 0x20000000
844 // New styles (border styles are now in their own enum)
845 #define wxDOUBLE_BORDER wxBORDER_DOUBLE
846 #define wxSUNKEN_BORDER wxBORDER_SUNKEN
847 #define wxRAISED_BORDER wxBORDER_RAISED
848 #define wxBORDER wxBORDER_SIMPLE
849 #define wxSIMPLE_BORDER wxBORDER_SIMPLE
850 #define wxSTATIC_BORDER wxBORDER_STATIC
851 #define wxNO_BORDER wxBORDER_NONE
853 // Override CTL3D etc. control colour processing to allow own background
855 // Override CTL3D or native 3D styles for children
856 #define wxNO_3D 0x00800000
858 // OBSOLETE - use wxNO_3D instead
859 #define wxUSER_COLOURS wxNO_3D
861 // wxALWAYS_SHOW_SB: instead of hiding the scrollbar when it is not needed,
862 // disable it - but still show (see also wxLB_ALWAYS_SB style)
864 // NB: as this style is only supported by wxUniversal so far as it doesn't use
865 // wxUSER_COLOURS/wxNO_3D, we reuse the same style value
866 #define wxALWAYS_SHOW_SB 0x00800000
868 // Clip children when painting, which reduces flicker in e.g. frames and
869 // splitter windows, but can't be used in a panel where a static box must be
870 // 'transparent' (panel paints the background for it)
871 #define wxCLIP_CHILDREN 0x00400000
873 // Note we're reusing the wxCAPTION style because we won't need captions
874 // for subwindows/controls
875 #define wxCLIP_SIBLINGS 0x20000000
877 #define wxTRANSPARENT_WINDOW 0x00100000
879 // Add this style to a panel to get tab traversal working outside of dialogs
880 // (on by default for wxPanel, wxDialog, wxScrolledWindow)
881 #define wxTAB_TRAVERSAL 0x00080000
883 // Add this style if the control wants to get all keyboard messages (under
884 // Windows, it won't normally get the dialog navigation key events)
885 #define wxWANTS_CHARS 0x00040000
887 // Make window retained (mostly Motif, I think) -- obsolete (VZ)?
888 #define wxRETAINED 0x00020000
889 #define wxBACKINGSTORE wxRETAINED
891 // set this flag to create a special popup window: it will be always shown on
892 // top of other windows, will capture the mouse and will be dismissed when the
893 // mouse is clicked outside of it or if it loses focus in any other way
894 #define wxPOPUP_WINDOW 0x00020000
896 // don't invalidate the whole window (resulting in a PAINT event) when the
897 // window is resized (currently, makes sense for wxMSW only)
898 #define wxNO_FULL_REPAINT_ON_RESIZE 0x00010000
901 * Extra window style flags (use wxWS_EX prefix to make it clear that they
902 * should be passed to wxWindow::SetExtraStyle(), not SetWindowStyle())
905 // by default, TransferDataTo/FromWindow() only work on direct children of the
906 // window (compatible behaviour), set this flag to make them recursively
907 // descend into all subwindows
908 #define wxWS_EX_VALIDATE_RECURSIVELY 0x00000001
910 // wxCommandEvents and the objects of the derived classes are forwarded to the
911 // parent window and so on recursively by default. Using this flag for the
912 // given window allows to block this propagation at this window, i.e. prevent
913 // the events from being propagated further upwards. The dialogs have this
914 // flag on by default.
915 #define wxWS_EX_BLOCK_EVENTS 0x00000002
917 // don't use this window as an implicit parent for the other windows: this must
918 // be used with transient windows as otherwise there is the risk of creating a
919 // dialog/frame with this window as a parent which would lead to a crash if the
920 // parent is destroyed before the child
921 #define wxWS_EX_TRANSIENT 0x00000004
923 // Use this style to add a context-sensitive help to the window (currently for
924 // Win32 only and it doesn't work if wxMINIMIZE_BOX or wxMAXIMIZE_BOX are used)
925 #define wxFRAME_EX_CONTEXTHELP 0x00000004
926 #define wxDIALOG_EX_CONTEXTHELP 0x00000004
929 * wxFrame/wxDialog style flags
931 #define wxSTAY_ON_TOP 0x8000
932 #define wxICONIZE 0x4000
933 #define wxMINIMIZE wxICONIZE
934 #define wxMAXIMIZE 0x2000
935 // free flag value: 0x1000
936 #define wxSYSTEM_MENU 0x0800
937 #define wxMINIMIZE_BOX 0x0400
938 #define wxMAXIMIZE_BOX 0x0200
939 #define wxTINY_CAPTION_HORIZ 0x0100
940 #define wxTINY_CAPTION_VERT 0x0080
941 #define wxRESIZE_BORDER 0x0040
943 #define wxDIALOG_NO_PARENT 0x0001 // Don't make owned by apps top window
944 #define wxFRAME_NO_TASKBAR 0x0002 // No taskbar button (MSW only)
945 #define wxFRAME_TOOL_WINDOW 0x0004 // No taskbar button, no system menu
947 // deprecated versions defined for compatibility reasons
948 #define wxRESIZE_BOX wxMAXIMIZE_BOX
949 #define wxTHICK_FRAME wxRESIZE_BORDER
950 #define wxFRAME_FLOAT_ON_PARENT wxFRAME_TOOL_WINDOW
952 // obsolete styles, unused any more
953 #define wxDIALOG_MODAL 0x0020 // free flag value 0x0020
954 #define wxDIALOG_MODELESS 0x0000
957 * MDI parent frame style flags
958 * Can overlap with some of the above.
961 #define wxFRAME_NO_WINDOW_MENU 0x0100
963 #if WXWIN_COMPATIBILITY
964 #define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE
967 #define wxDEFAULT_FRAME_STYLE \
968 (wxSYSTEM_MENU | wxRESIZE_BORDER | \
969 wxMINIMIZE_BOX | wxMAXIMIZE_BOX | \
970 wxCAPTION | wxCLIP_CHILDREN)
972 #if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXMGL__)
973 # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION)
975 // Under Unix, the dialogs don't have a system menu. Specifying wxSYSTEM_MENU
976 // here will make a close button appear.
977 # define wxDEFAULT_DIALOG_STYLE wxCAPTION
981 * wxExtDialog style flags
983 #define wxED_CLIENT_MARGIN 0x0004
984 #define wxED_BUTTONS_BOTTOM 0x0000 // has no effect
985 #define wxED_BUTTONS_RIGHT 0x0002
986 #define wxED_STATIC_LINE 0x0001
988 #if defined(__WXMSW__) || defined(__WXMAC__)
989 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN)
991 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN|wxED_STATIC_LINE)
995 * wxMenuBar style flags
997 // use native docking
998 #define wxMB_DOCKABLE 0x0001
1001 * wxMenu style flags
1003 #define wxMENU_TEAROFF 0x0001
1006 * Apply to all panel items
1008 #define wxCOLOURED 0x0800
1009 #define wxFIXED_LENGTH 0x0400
1012 * Styles for wxListBox
1014 #define wxLB_SORT 0x0010
1015 #define wxLB_SINGLE 0x0020
1016 #define wxLB_MULTIPLE 0x0040
1017 #define wxLB_EXTENDED 0x0080
1018 // wxLB_OWNERDRAW is Windows-only
1019 #define wxLB_OWNERDRAW 0x0100
1020 #define wxLB_NEEDED_SB 0x0200
1021 #define wxLB_ALWAYS_SB 0x0400
1022 #define wxLB_HSCROLL wxHSCROLL
1023 // always show an entire number of rows
1024 #define wxLB_INT_HEIGHT 0x0800
1026 // deprecated synonyms
1027 #define wxPROCESS_ENTER 0x0400 // wxTE_PROCESS_ENTER
1028 #define wxPASSWORD 0x0800 // wxTE_PASSWORD
1031 * wxComboBox style flags
1033 #define wxCB_SIMPLE 0x0004
1034 #define wxCB_SORT 0x0008
1035 #define wxCB_READONLY 0x0010
1036 #define wxCB_DROPDOWN 0x0020
1039 * wxRadioBox style flags
1041 // should we number the items from left to right or from top to bottom in a 2d
1043 #define wxRA_LEFTTORIGHT 0x0001
1044 #define wxRA_TOPTOBOTTOM 0x0002
1046 // New, more intuitive names to specify majorDim argument
1047 #define wxRA_SPECIFY_COLS wxHORIZONTAL
1048 #define wxRA_SPECIFY_ROWS wxVERTICAL
1050 // Old names for compatibility
1051 #define wxRA_HORIZONTAL wxHORIZONTAL
1052 #define wxRA_VERTICAL wxVERTICAL
1055 * wxRadioButton style flag
1057 #define wxRB_GROUP 0x0004
1062 #define wxGA_HORIZONTAL wxHORIZONTAL
1063 #define wxGA_VERTICAL wxVERTICAL
1064 #define wxGA_PROGRESSBAR 0x0010
1066 #define wxGA_SMOOTH 0x0020
1071 #define wxSL_HORIZONTAL wxHORIZONTAL // 4
1072 #define wxSL_VERTICAL wxVERTICAL // 8
1073 // The next one is obsolete - use scroll events instead
1074 #define wxSL_NOTIFY_DRAG 0x0000
1075 #define wxSL_TICKS 0x0010
1076 #define wxSL_AUTOTICKS wxSL_TICKS // we don't support manual ticks
1077 #define wxSL_LABELS 0x0020
1078 #define wxSL_LEFT 0x0040
1079 #define wxSL_TOP 0x0080
1080 #define wxSL_RIGHT 0x0100
1081 #define wxSL_BOTTOM 0x0200
1082 #define wxSL_BOTH 0x0400
1083 #define wxSL_SELRANGE 0x0800
1088 #define wxSB_HORIZONTAL wxHORIZONTAL
1089 #define wxSB_VERTICAL wxVERTICAL
1092 * wxSpinButton flags.
1093 * Note that a wxSpinCtrl is sometimes defined as
1094 * a wxTextCtrl, and so the flags must be different
1095 * from wxTextCtrl's.
1097 #define wxSP_HORIZONTAL wxHORIZONTAL // 4
1098 #define wxSP_VERTICAL wxVERTICAL // 8
1099 #define wxSP_ARROW_KEYS 0x1000
1100 #define wxSP_WRAP 0x2000
1103 * wxSplitterWindow flags
1105 #define wxSP_NOBORDER 0x0000
1106 #define wxSP_NOSASH 0x0010
1107 #define wxSP_BORDER 0x0020
1108 #define wxSP_PERMIT_UNSPLIT 0x0040
1109 #define wxSP_LIVE_UPDATE 0x0080
1110 #define wxSP_3DSASH 0x0100
1111 #define wxSP_3DBORDER 0x0200
1112 #define wxSP_FULLSASH 0x0400
1113 #define wxSP_3D (wxSP_3DBORDER | wxSP_3DSASH)
1114 #define wxSP_SASH_AQUA 0x0800
1119 #define wxNB_FIXEDWIDTH 0x0010
1120 #define wxNB_TOP 0x0000 // default
1121 #define wxNB_LEFT 0x0020
1122 #define wxNB_RIGHT 0x0040
1123 #define wxNB_BOTTOM 0x0080
1124 #define wxNB_MULTILINE 0x0100
1129 #define wxTC_RIGHTJUSTIFY 0x0010
1130 #define wxTC_FIXEDWIDTH 0x0020
1131 #define wxTC_OWNERDRAW 0x0040
1132 #define wxTC_MULTILINE wxNB_MULTILINE
1134 // wxToolBar style flags
1135 #define wxTB_HORIZONTAL wxHORIZONTAL // == 0x0004
1136 #define wxTB_VERTICAL wxVERTICAL // == 0x0008
1137 #define wxTB_3DBUTTONS 0x0010
1138 #define wxTB_FLAT 0x0020 // supported only under Win98+/GTK
1139 #define wxTB_DOCKABLE 0x0040 // use native docking under GTK
1140 #define wxTB_NOICONS 0x0080 // don't show the icons
1141 #define wxTB_TEXT 0x0100 // show the text
1142 #define wxTB_NODIVIDER 0x0200 // don't show the divider (Windows)
1143 #define wxTB_NOALIGN 0x0400 // no automatic alignment (Windows)
1146 * wxStatusBar95 flags
1148 #define wxST_SIZEGRIP 0x0010
1151 * wxStaticText flags
1153 #define wxST_NO_AUTORESIZE 0x0001
1156 * wxStaticBitmap flags
1158 #define wxBI_EXPAND wxEXPAND
1161 * wxStaticLine flags
1163 #define wxLI_HORIZONTAL wxHORIZONTAL
1164 #define wxLI_VERTICAL wxVERTICAL
1167 * wxProgressDialog flags
1169 #define wxPD_CAN_ABORT 0x0001
1170 #define wxPD_APP_MODAL 0x0002
1171 #define wxPD_AUTO_HIDE 0x0004
1172 #define wxPD_ELAPSED_TIME 0x0008
1173 #define wxPD_ESTIMATED_TIME 0x0010
1174 // wxGA_SMOOTH = 0x0020 may also be used with wxProgressDialog
1175 // NO!!! This is wxDIALOG_MODAL and will cause the progress dialog to
1176 // be modal. No progress will then be made at all.
1177 #define wxPD_REMAINING_TIME 0x0040
1180 * wxDirDialog styles
1183 #define wxDD_NEW_DIR_BUTTON 0x0080
1186 * extended dialog specifiers. these values are stored in a different
1187 * flag and thus do not overlap with other style flags. note that these
1188 * values do not correspond to the return values of the dialogs (for
1189 * those values, look at the wxID_XXX defines).
1192 // wxCENTRE already defined as 0x00000001
1193 #define wxYES 0x00000002
1194 #define wxOK 0x00000004
1195 #define wxNO 0x00000008
1196 #define wxYES_NO (wxYES | wxNO)
1197 #define wxCANCEL 0x00000010
1199 #define wxYES_DEFAULT 0x00000000 // has no effect (default)
1200 #define wxNO_DEFAULT 0x00000080
1202 #define wxICON_EXCLAMATION 0x00000100
1203 #define wxICON_HAND 0x00000200
1204 #define wxICON_WARNING wxICON_EXCLAMATION
1205 #define wxICON_ERROR wxICON_HAND
1206 #define wxICON_QUESTION 0x00000400
1207 #define wxICON_INFORMATION 0x00000800
1208 #define wxICON_STOP wxICON_HAND
1209 #define wxICON_ASTERISK wxICON_INFORMATION
1210 #define wxICON_MASK (0x00000100|0x00000200|0x00000400|0x00000800)
1212 #define wxFORWARD 0x00001000
1213 #define wxBACKWARD 0x00002000
1214 #define wxRESET 0x00004000
1215 #define wxHELP 0x00008000
1216 #define wxMORE 0x00010000
1217 #define wxSETUP 0x00020000
1219 // ----------------------------------------------------------------------------
1221 // ----------------------------------------------------------------------------
1223 // id for a separator line in the menu (invalid for normal item)
1224 #define wxID_SEPARATOR (-1)
1226 // Standard menu IDs
1227 #define wxID_LOWEST 4999
1229 #define wxID_OPEN 5000
1230 #define wxID_CLOSE 5001
1231 #define wxID_NEW 5002
1232 #define wxID_SAVE 5003
1233 #define wxID_SAVEAS 5004
1234 #define wxID_REVERT 5005
1235 #define wxID_EXIT 5006
1236 #define wxID_UNDO 5007
1237 #define wxID_REDO 5008
1238 #define wxID_HELP 5009
1239 #define wxID_PRINT 5010
1240 #define wxID_PRINT_SETUP 5011
1241 #define wxID_PREVIEW 5012
1242 #define wxID_ABOUT 5013
1243 #define wxID_HELP_CONTENTS 5014
1244 #define wxID_HELP_COMMANDS 5015
1245 #define wxID_HELP_PROCEDURES 5016
1246 #define wxID_HELP_CONTEXT 5017
1247 #define wxID_CLOSE_ALL 5018
1249 #define wxID_CUT 5030
1250 #define wxID_COPY 5031
1251 #define wxID_PASTE 5032
1252 #define wxID_CLEAR 5033
1253 #define wxID_FIND 5034
1254 #define wxID_DUPLICATE 5035
1255 #define wxID_SELECTALL 5036
1257 #define wxID_FILE1 5050
1258 #define wxID_FILE2 5051
1259 #define wxID_FILE3 5052
1260 #define wxID_FILE4 5053
1261 #define wxID_FILE5 5054
1262 #define wxID_FILE6 5055
1263 #define wxID_FILE7 5056
1264 #define wxID_FILE8 5057
1265 #define wxID_FILE9 5058
1267 // Standard button IDs
1268 #define wxID_OK 5100
1269 #define wxID_CANCEL 5101
1270 #define wxID_APPLY 5102
1271 #define wxID_YES 5103
1272 #define wxID_NO 5104
1273 #define wxID_STATIC 5105
1274 #define wxID_FORWARD 5106
1275 #define wxID_BACKWARD 5107
1276 #define wxID_DEFAULT 5108
1277 #define wxID_MORE 5109
1278 #define wxID_SETUP 5110
1279 #define wxID_RESET 5111
1280 #define wxID_CONTEXT_HELP 5112
1281 #define wxID_YESTOALL 5113
1282 #define wxID_NOTOALL 5114
1283 #define wxID_ABORT 5115
1284 #define wxID_RETRY 5116
1285 #define wxID_IGNORE 5117
1287 // System menu IDs (used by wxUniv):
1288 #define wxID_SYSTEM_MENU 5200
1289 #define wxID_CLOSE_FRAME 5201
1290 #define wxID_MOVE_FRAME 5202
1291 #define wxID_RESIZE_FRAME 5203
1292 #define wxID_MAXIMIZE_FRAME 5204
1293 #define wxID_ICONIZE_FRAME 5205
1294 #define wxID_RESTORE_FRAME 5206
1296 // IDs used by generic file dialog (13 consecutive starting from this value)
1297 #define wxID_FILEDLGG 5900
1299 #define wxID_HIGHEST 5999
1301 // ----------------------------------------------------------------------------
1303 // ----------------------------------------------------------------------------
1305 // menu and toolbar item kinds
1308 wxITEM_SEPARATOR
= -1,
1321 wxHT_SCROLLBAR_FIRST
= wxHT_NOWHERE
,
1322 wxHT_SCROLLBAR_ARROW_LINE_1
, // left or upper arrow to scroll by line
1323 wxHT_SCROLLBAR_ARROW_LINE_2
, // right or down
1324 wxHT_SCROLLBAR_ARROW_PAGE_1
, // left or upper arrow to scroll by page
1325 wxHT_SCROLLBAR_ARROW_PAGE_2
, // right or down
1326 wxHT_SCROLLBAR_THUMB
, // on the thumb
1327 wxHT_SCROLLBAR_BAR_1
, // bar to the left/above the thumb
1328 wxHT_SCROLLBAR_BAR_2
, // bar to the right/below the thumb
1329 wxHT_SCROLLBAR_LAST
,
1332 wxHT_WINDOW_OUTSIDE
, // not in this window at all
1333 wxHT_WINDOW_INSIDE
, // in the client area
1334 wxHT_WINDOW_VERT_SCROLLBAR
, // on the vertical scrollbar
1335 wxHT_WINDOW_HORZ_SCROLLBAR
, // on the horizontal scrollbar
1336 wxHT_WINDOW_CORNER
, // on the corner between 2 scrollbars
1341 // ----------------------------------------------------------------------------
1342 // Possible SetSize flags
1343 // ----------------------------------------------------------------------------
1345 // Use internally-calculated width if -1
1346 #define wxSIZE_AUTO_WIDTH 0x0001
1347 // Use internally-calculated height if -1
1348 #define wxSIZE_AUTO_HEIGHT 0x0002
1349 // Use internally-calculated width and height if each is -1
1350 #define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT)
1351 // Ignore missing (-1) dimensions (use existing).
1352 // For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code.
1353 #define wxSIZE_USE_EXISTING 0x0000
1354 // Allow -1 as a valid position
1355 #define wxSIZE_ALLOW_MINUS_ONE 0x0004
1356 // Don't do parent client adjustments (for implementation only)
1357 #define wxSIZE_NO_ADJUSTMENTS 0x0008
1359 // ----------------------------------------------------------------------------
1361 // ----------------------------------------------------------------------------
1364 // Text font families
1371 wxTELETYPE
, /* @@@@ */
1373 // Proportional or Fixed width fonts (not yet used)
1380 // Also wxNORMAL for normal (non-italic text)
1394 // Brush & Pen Stippling. Note that a stippled pen cannot be dashed!!
1395 // Note also that stippling a Pen IS meaningfull, because a Line is
1396 wxSTIPPLE_MASK_OPAQUE
, //mask is used for blitting monochrome using text fore and back ground colors
1397 wxSTIPPLE_MASK
, //mask is used for masking areas in the stipple bitmap (TO DO)
1398 // drawn with a Pen, and without any Brush -- and it can be stippled.
1406 #define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH)
1421 wxCLEAR
, wxROP_BLACK
= wxCLEAR
, wxBLIT_BLACKNESS
= wxCLEAR
, // 0
1422 wxXOR
, wxROP_XORPEN
= wxXOR
, wxBLIT_SRCINVERT
= wxXOR
, // src XOR dst
1423 wxINVERT
, wxROP_NOT
= wxINVERT
, wxBLIT_DSTINVERT
= wxINVERT
, // NOT dst
1424 wxOR_REVERSE
, wxROP_MERGEPENNOT
= wxOR_REVERSE
, wxBLIT_00DD0228
= wxOR_REVERSE
, // src OR (NOT dst)
1425 wxAND_REVERSE
, wxROP_MASKPENNOT
= wxAND_REVERSE
, wxBLIT_SRCERASE
= wxAND_REVERSE
, // src AND (NOT dst)
1426 wxCOPY
, wxROP_COPYPEN
= wxCOPY
, wxBLIT_SRCCOPY
= wxCOPY
, // src
1427 wxAND
, wxROP_MASKPEN
= wxAND
, wxBLIT_SRCAND
= wxAND
, // src AND dst
1428 wxAND_INVERT
, wxROP_MASKNOTPEN
= wxAND_INVERT
, wxBLIT_00220326
= wxAND_INVERT
, // (NOT src) AND dst
1429 wxNO_OP
, wxROP_NOP
= wxNO_OP
, wxBLIT_00AA0029
= wxNO_OP
, // dst
1430 wxNOR
, wxROP_NOTMERGEPEN
= wxNOR
, wxBLIT_NOTSRCERASE
= wxNOR
, // (NOT src) AND (NOT dst)
1431 wxEQUIV
, wxROP_NOTXORPEN
= wxEQUIV
, wxBLIT_00990066
= wxEQUIV
, // (NOT src) XOR dst
1432 wxSRC_INVERT
, wxROP_NOTCOPYPEN
= wxSRC_INVERT
, wxBLIT_NOTSCRCOPY
= wxSRC_INVERT
, // (NOT src)
1433 wxOR_INVERT
, wxROP_MERGENOTPEN
= wxOR_INVERT
, wxBLIT_MERGEPAINT
= wxOR_INVERT
, // (NOT src) OR dst
1434 wxNAND
, wxROP_NOTMASKPEN
= wxNAND
, wxBLIT_007700E6
= wxNAND
, // (NOT src) OR (NOT dst)
1435 wxOR
, wxROP_MERGEPEN
= wxOR
, wxBLIT_SRCPAINT
= wxOR
, // src OR dst
1436 wxSET
, wxROP_WHITE
= wxSET
, wxBLIT_WHITENESS
= wxSET
// 1
1440 #define wxFLOOD_SURFACE 1
1441 #define wxFLOOD_BORDER 2
1443 /* Polygon filling mode */
1444 #define wxODDEVEN_RULE 1
1445 #define wxWINDING_RULE 2
1447 /* ToolPanel in wxFrame */
1448 #define wxTOOL_TOP 1
1449 #define wxTOOL_BOTTOM 2
1450 #define wxTOOL_LEFT 3
1451 #define wxTOOL_RIGHT 4
1453 // the values of the format constants should be the same as correspondign
1454 // CF_XXX constants in Windows API
1458 wxDF_TEXT
= 1, /* CF_TEXT */
1459 wxDF_BITMAP
= 2, /* CF_BITMAP */
1460 wxDF_METAFILE
= 3, /* CF_METAFILEPICT */
1464 wxDF_OEMTEXT
= 7, /* CF_OEMTEXT */
1465 wxDF_DIB
= 8, /* CF_DIB */
1470 wxDF_UNICODETEXT
= 13,
1471 wxDF_ENHMETAFILE
= 14,
1472 wxDF_FILENAME
= 15, /* CF_HDROP */
1475 wxDF_HTML
= 30, /* Note: does not correspond to CF_ constant */
1479 /* Virtual keycodes */
1502 WXK_PRIOR
, // Page up
1503 WXK_NEXT
, // Page down
1576 WXK_NUMPAD_PAGEDOWN
,
1582 WXK_NUMPAD_MULTIPLY
,
1584 WXK_NUMPAD_SEPARATOR
,
1585 WXK_NUMPAD_SUBTRACT
,
1590 // Mapping modes (as per Windows)
1592 #define wxMM_LOMETRIC 2
1593 #define wxMM_HIMETRIC 3
1594 #define wxMM_LOENGLISH 4
1595 #define wxMM_HIENGLISH 5
1596 #define wxMM_TWIPS 6
1597 #define wxMM_ISOTROPIC 7
1598 #define wxMM_ANISOTROPIC 8
1600 #define wxMM_POINTS 9
1601 #define wxMM_METRIC 10
1603 /* Shortcut for easier dialog-unit-to-pixel conversion */
1604 #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
1608 wxPAPER_NONE
, // Use specific dimensions
1609 wxPAPER_LETTER
, // Letter, 8 1/2 by 11 inches
1610 wxPAPER_LEGAL
, // Legal, 8 1/2 by 14 inches
1611 wxPAPER_A4
, // A4 Sheet, 210 by 297 millimeters
1612 wxPAPER_CSHEET
, // C Sheet, 17 by 22 inches
1613 wxPAPER_DSHEET
, // D Sheet, 22 by 34 inches
1614 wxPAPER_ESHEET
, // E Sheet, 34 by 44 inches
1615 wxPAPER_LETTERSMALL
, // Letter Small, 8 1/2 by 11 inches
1616 wxPAPER_TABLOID
, // Tabloid, 11 by 17 inches
1617 wxPAPER_LEDGER
, // Ledger, 17 by 11 inches
1618 wxPAPER_STATEMENT
, // Statement, 5 1/2 by 8 1/2 inches
1619 wxPAPER_EXECUTIVE
, // Executive, 7 1/4 by 10 1/2 inches
1620 wxPAPER_A3
, // A3 sheet, 297 by 420 millimeters
1621 wxPAPER_A4SMALL
, // A4 small sheet, 210 by 297 millimeters
1622 wxPAPER_A5
, // A5 sheet, 148 by 210 millimeters
1623 wxPAPER_B4
, // B4 sheet, 250 by 354 millimeters
1624 wxPAPER_B5
, // B5 sheet, 182-by-257-millimeter paper
1625 wxPAPER_FOLIO
, // Folio, 8-1/2-by-13-inch paper
1626 wxPAPER_QUARTO
, // Quarto, 215-by-275-millimeter paper
1627 wxPAPER_10X14
, // 10-by-14-inch sheet
1628 wxPAPER_11X17
, // 11-by-17-inch sheet
1629 wxPAPER_NOTE
, // Note, 8 1/2 by 11 inches
1630 wxPAPER_ENV_9
, // #9 Envelope, 3 7/8 by 8 7/8 inches
1631 wxPAPER_ENV_10
, // #10 Envelope, 4 1/8 by 9 1/2 inches
1632 wxPAPER_ENV_11
, // #11 Envelope, 4 1/2 by 10 3/8 inches
1633 wxPAPER_ENV_12
, // #12 Envelope, 4 3/4 by 11 inches
1634 wxPAPER_ENV_14
, // #14 Envelope, 5 by 11 1/2 inches
1635 wxPAPER_ENV_DL
, // DL Envelope, 110 by 220 millimeters
1636 wxPAPER_ENV_C5
, // C5 Envelope, 162 by 229 millimeters
1637 wxPAPER_ENV_C3
, // C3 Envelope, 324 by 458 millimeters
1638 wxPAPER_ENV_C4
, // C4 Envelope, 229 by 324 millimeters
1639 wxPAPER_ENV_C6
, // C6 Envelope, 114 by 162 millimeters
1640 wxPAPER_ENV_C65
, // C65 Envelope, 114 by 229 millimeters
1641 wxPAPER_ENV_B4
, // B4 Envelope, 250 by 353 millimeters
1642 wxPAPER_ENV_B5
, // B5 Envelope, 176 by 250 millimeters
1643 wxPAPER_ENV_B6
, // B6 Envelope, 176 by 125 millimeters
1644 wxPAPER_ENV_ITALY
, // Italy Envelope, 110 by 230 millimeters
1645 wxPAPER_ENV_MONARCH
, // Monarch Envelope, 3 7/8 by 7 1/2 inches
1646 wxPAPER_ENV_PERSONAL
, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
1647 wxPAPER_FANFOLD_US
, // US Std Fanfold, 14 7/8 by 11 inches
1648 wxPAPER_FANFOLD_STD_GERMAN
, // German Std Fanfold, 8 1/2 by 12 inches
1649 wxPAPER_FANFOLD_LGL_GERMAN
, // German Legal Fanfold, 8 1/2 by 13 inches
1651 wxPAPER_ISO_B4
, // B4 (ISO) 250 x 353 mm
1652 wxPAPER_JAPANESE_POSTCARD
, // Japanese Postcard 100 x 148 mm
1653 wxPAPER_9X11
, // 9 x 11 in
1654 wxPAPER_10X11
, // 10 x 11 in
1655 wxPAPER_15X11
, // 15 x 11 in
1656 wxPAPER_ENV_INVITE
, // Envelope Invite 220 x 220 mm
1657 wxPAPER_LETTER_EXTRA
, // Letter Extra 9 \275 x 12 in
1658 wxPAPER_LEGAL_EXTRA
, // Legal Extra 9 \275 x 15 in
1659 wxPAPER_TABLOID_EXTRA
, // Tabloid Extra 11.69 x 18 in
1660 wxPAPER_A4_EXTRA
, // A4 Extra 9.27 x 12.69 in
1661 wxPAPER_LETTER_TRANSVERSE
, // Letter Transverse 8 \275 x 11 in
1662 wxPAPER_A4_TRANSVERSE
, // A4 Transverse 210 x 297 mm
1663 wxPAPER_LETTER_EXTRA_TRANSVERSE
, // Letter Extra Transverse 9\275 x 12 in
1664 wxPAPER_A_PLUS
, // SuperA/SuperA/A4 227 x 356 mm
1665 wxPAPER_B_PLUS
, // SuperB/SuperB/A3 305 x 487 mm
1666 wxPAPER_LETTER_PLUS
, // Letter Plus 8.5 x 12.69 in
1667 wxPAPER_A4_PLUS
, // A4 Plus 210 x 330 mm
1668 wxPAPER_A5_TRANSVERSE
, // A5 Transverse 148 x 210 mm
1669 wxPAPER_B5_TRANSVERSE
, // B5 (JIS) Transverse 182 x 257 mm
1670 wxPAPER_A3_EXTRA
, // A3 Extra 322 x 445 mm
1671 wxPAPER_A5_EXTRA
, // A5 Extra 174 x 235 mm
1672 wxPAPER_B5_EXTRA
, // B5 (ISO) Extra 201 x 276 mm
1673 wxPAPER_A2
, // A2 420 x 594 mm
1674 wxPAPER_A3_TRANSVERSE
, // A3 Transverse 297 x 420 mm
1675 wxPAPER_A3_EXTRA_TRANSVERSE
// A3 Extra Transverse 322 x 445 mm
1679 /* Printing orientation */
1681 #define wxPORTRAIT 1
1682 #define wxLANDSCAPE 2
1685 /* Duplex printing modes
1689 wxDUPLEX_SIMPLEX
, // Non-duplex
1690 wxDUPLEX_HORIZONTAL
,
1697 #define wxPRINT_QUALITY_HIGH -1
1698 #define wxPRINT_QUALITY_MEDIUM -2
1699 #define wxPRINT_QUALITY_LOW -3
1700 #define wxPRINT_QUALITY_DRAFT -4
1702 typedef int wxPrintQuality
;
1704 /* Print mode (currently PostScript only)
1708 wxPRINT_MODE_NONE
= 0,
1709 wxPRINT_MODE_PREVIEW
= 1, // Preview in external application
1710 wxPRINT_MODE_FILE
= 2, // Print to file
1711 wxPRINT_MODE_PRINTER
= 3 // Send to printer
1714 // ----------------------------------------------------------------------------
1716 // ----------------------------------------------------------------------------
1718 // define this macro if font handling is done using the X font names
1719 #if defined(__WXGTK__) || defined(__X__)
1720 #define _WX_X_FONTLIKE
1723 // macro to specify "All Files" on different platforms
1724 #if defined(__WXMSW__) || defined(__WXPM__)
1725 # define wxALL_FILES_PATTERN "*.*"
1726 # define wxALL_FILES gettext_noop("All files (*.*)|*.*")
1728 # define wxALL_FILES_PATTERN "*"
1729 # define wxALL_FILES gettext_noop("All files (*)|*")
1732 // ---------------------------------------------------------------------------
1733 // macros that enable wxWindows apps to be compiled in absence of the
1734 // sytem headers, although some platform specific types are used in the
1735 // platform specific (implementation) parts of the headers
1736 // ---------------------------------------------------------------------------
1740 typedef unsigned char WXCOLORREF
[6];
1741 typedef void* WXHBITMAP
;
1742 typedef void* WXHMETAFILE
;
1743 typedef void* WXHICON
;
1744 typedef void* WXHCURSOR
;
1745 typedef void* WXHRGN
;
1746 typedef void* WXRECTPTR
;
1747 typedef void* WXPOINTPTR
;
1748 typedef void* WXHWND
;
1749 typedef void* WXEVENTREF
;
1750 typedef void* WXAPPLEEVENTREF
;
1751 typedef void* WXHDC
;
1752 typedef void* WXHMENU
;
1753 typedef unsigned int WXUINT
;
1754 typedef unsigned long WXDWORD
;
1755 typedef unsigned short WXWORD
;
1757 typedef void* WXWidget
;
1758 typedef void* WXWindow
;
1760 typedef WindowPtr WXHWND;
1761 typedef Handle WXHANDLE;
1762 typedef CIconHandle WXHICON;
1763 //typedef unsigned long WXHFONT;
1764 typedef MenuHandle WXHMENU;
1765 //typedef unsigned long WXHPEN;
1766 //typedef unsigned long WXHBRUSH;
1767 //typedef unsigned long WXHPALETTE;
1768 typedef CursHandle WXHCURSOR;
1769 typedef RgnHandle WXHRGN;
1770 //typedef unsigned long WXHACCEL;
1771 //typedef unsigned long WXHINSTANCE;
1772 //typedef unsigned long WXHIMAGELIST;
1773 //typedef unsigned long WXHGLOBAL;
1774 typedef GrafPtr WXHDC;
1775 //typedef unsigned int WXWPARAM;
1776 //typedef long WXLPARAM;
1777 //typedef void * WXRGNDATA;
1778 //typedef void * WXMSG;
1779 //typedef unsigned long WXHCONV;
1780 //typedef unsigned long WXHKEY;
1781 //typedef void * WXDRAWITEMSTRUCT;
1782 //typedef void * WXMEASUREITEMSTRUCT;
1783 //typedef void * WXLPCREATESTRUCT;
1784 typedef int (*WXFARPROC)();
1786 typedef WindowPtr WXWindow;
1787 typedef ControlHandle WXWidget;
1791 #if defined(__WXMSW__) || defined(__WXPM__)
1793 // the keywords needed for WinMain() declaration
1796 # define WXFAR __far
1806 // Stand-ins for Windows types or OS/2, to avoid #including all of windows.h or os2.h
1807 typedef unsigned long WXHWND
;
1808 typedef unsigned long WXHANDLE
;
1809 typedef unsigned long WXHICON
;
1810 typedef unsigned long WXHFONT
;
1811 typedef unsigned long WXHMENU
;
1812 typedef unsigned long WXHPEN
;
1813 typedef unsigned long WXHBRUSH
;
1814 typedef unsigned long WXHPALETTE
;
1815 typedef unsigned long WXHCURSOR
;
1816 typedef unsigned long WXHRGN
;
1817 typedef unsigned long WXHACCEL
;
1818 typedef void WXFAR
* WXHINSTANCE
;
1819 typedef unsigned long WXHBITMAP
;
1820 typedef unsigned long WXHIMAGELIST
;
1821 typedef unsigned long WXHGLOBAL
;
1822 typedef unsigned long WXHDC
;
1823 typedef unsigned int WXUINT
;
1824 typedef unsigned long WXDWORD
;
1825 typedef unsigned short WXWORD
;
1827 typedef unsigned long WXCOLORREF
;
1828 typedef void * WXRGNDATA
;
1829 typedef void * WXMSG
;
1830 typedef unsigned long WXHCONV
;
1831 typedef unsigned long WXHKEY
;
1832 typedef unsigned long WXHTREEITEM
;
1834 typedef void * WXDRAWITEMSTRUCT
;
1835 typedef void * WXMEASUREITEMSTRUCT
;
1836 typedef void * WXLPCREATESTRUCT
;
1838 typedef WXHWND WXWidget
;
1840 #endif // MSW or OS2
1844 typedef unsigned int WXWPARAM
;
1845 typedef long WXLPARAM
;
1847 #if !defined(__WIN32__) || defined(__GNUWIN32__) || defined(__WXWINE__) || defined(__WXMICROWIN__)
1848 typedef int (*WXFARPROC
)();
1850 typedef int (__stdcall
*WXFARPROC
)();
1855 #if defined(__WXPM__)
1857 /* Need a well-known type for WXFARPROC
1858 below. MPARAM is typedef'ed too late. */
1859 #define WXWPARAM void *
1860 #define WXLPARAM void *
1862 #define WXWPARAM MPARAM
1863 #define WXLPARAM MPARAM
1866 #define LOGFONT FATTRS
1867 #define LOWORD SHORT1FROMMP
1868 #define HIWORD SHORT2FROMMP
1870 typedef unsigned long WXMPARAM
;
1871 typedef unsigned long WXMSGID
;
1872 typedef void* WXRESULT
;
1873 //typedef int (*WXFARPROC)();
1874 // some windows handles not defined by PM
1875 typedef unsigned long HANDLE
;
1876 typedef unsigned long HICON
;
1877 typedef unsigned long HFONT
;
1878 typedef unsigned long HMENU
;
1879 typedef unsigned long HPEN
;
1880 typedef unsigned long HBRUSH
;
1881 typedef unsigned long HPALETTE
;
1882 typedef unsigned long HCURSOR
;
1883 typedef unsigned long HINSTANCE
;
1884 typedef unsigned long HIMAGELIST
;
1885 typedef unsigned long HGLOBAL
;
1886 typedef unsigned long DWORD
;
1887 typedef unsigned short WORD
;
1889 // WIN32 graphics types for OS/2 GPI
1891 // RGB under OS2 is more like a PALETTEENTRY struct under Windows so we need a real RGB def
1892 // WARNING: The OS/2 headers typedef BYTE simply as 'char'; if the default is signed, all
1893 // hell will break loose!
1894 //#define OS2RGB(r,g,b) ((DWORD ((BYTE) (b) | ((WORD) (g) << 8)) | (((DWORD)(BYTE)(r)) << 16)))
1895 #define OS2RGB(r,g,b) ((DWORD)((unsigned char)(b) | ((unsigned char)(g) << 8)) | ((unsigned char)(r) << 16))
1897 typedef unsigned long COLORREF
;
1898 #define GetBValue(rgb) ((BYTE)((rgb) >> 16))
1899 #define GetGValue(rgb) ((BYTE)(((WORD)(rgb)) >> 8))
1900 #define GetRValue(rgb) ((BYTE)(rgb))
1901 #define PALETTEINDEX(i) ((COLORREF)(0x01000000 | (DWORD)(WORD)(i)))
1902 #define PALETTERGB(r,g,b) (0x02000000 | OS2RGB(r,g,b))
1903 // OS2's RGB/RGB2 is backwards from this
1904 typedef struct tagPALETTEENTRY
1911 typedef struct tagLOGPALETTE
1915 WORD PALETTEENTRY
[1];
1918 #if (defined(__VISAGECPP__) && (__IBMCPP__ < 400)) || defined (__WATCOMC__)
1919 // VA 3.0 for some reason needs base data types when typedefing a proc proto???
1920 typedef void* (_System
*WXFARPROC
)(unsigned long, unsigned long, void*, void*);
1925 typedef WXRESULT (_System
*WXFARPROC
)(WXHWND
, WXMSGID
, WXWPARAM
, WXLPARAM
);
1931 #if defined(__WXMOTIF__) || defined(__WXX11__)
1932 /* Stand-ins for X/Xt/Motif types */
1933 typedef void* WXWindow
;
1934 typedef void* WXWidget
;
1935 typedef void* WXAppContext
;
1936 typedef void* WXColormap
;
1937 typedef void* WXColor
;
1938 typedef void WXDisplay
;
1939 typedef void WXEvent
;
1940 typedef void* WXCursor
;
1941 typedef void* WXPixmap
;
1942 typedef void* WXFontStructPtr
;
1944 typedef void* WXRegion
;
1945 typedef void* WXFont
;
1946 typedef void* WXImage
;
1947 typedef void* WXFontList
;
1949 typedef unsigned long Atom
; /* this might fail on a few architectures */
1955 /* Stand-ins for GLIB types */
1957 typedef signed char gint8
;
1959 typedef unsigned guint
;
1960 typedef unsigned long gulong
;
1961 typedef void* gpointer
;
1962 typedef struct _GSList GSList
;
1964 /* Stand-ins for GDK types */
1965 typedef struct _GdkColor GdkColor
;
1966 typedef struct _GdkColormap GdkColormap
;
1967 typedef struct _GdkFont GdkFont
;
1968 typedef struct _GdkGC GdkGC
;
1969 typedef struct _GdkVisual GdkVisual
;
1972 typedef struct _GdkAtom
*GdkAtom
;
1973 typedef struct _GdkDrawable GdkWindow
;
1974 typedef struct _GdkDrawable GdkBitmap
;
1975 typedef struct _GdkDrawable GdkPixmap
;
1977 typedef gulong GdkAtom
;
1978 typedef struct _GdkWindow GdkWindow
;
1979 typedef struct _GdkWindow GdkBitmap
;
1980 typedef struct _GdkWindow GdkPixmap
;
1981 #endif // GTK+ 1.2/2.0
1983 typedef struct _GdkCursor GdkCursor
;
1984 typedef struct _GdkRegion GdkRegion
;
1985 typedef struct _GdkDragContext GdkDragContext
;
1988 typedef struct _GdkIC GdkIC
;
1989 typedef struct _GdkICAttr GdkICAttr
;
1992 /* Stand-ins for GTK types */
1993 typedef struct _GtkWidget GtkWidget
;
1994 typedef struct _GtkStyle GtkStyle
;
1995 typedef struct _GtkAdjustment GtkAdjustment
;
1996 typedef struct _GtkList GtkList
;
1997 typedef struct _GtkToolbar GtkToolbar
;
1998 typedef struct _GtkTooltips GtkTooltips
;
1999 typedef struct _GtkNotebook GtkNotebook
;
2000 typedef struct _GtkNotebookPage GtkNotebookPage
;
2001 typedef struct _GtkAccelGroup GtkAccelGroup
;
2002 typedef struct _GtkItemFactory GtkItemFactory
;
2003 typedef struct _GtkSelectionData GtkSelectionData
;
2005 typedef GtkWidget
*WXWidget
;
2008 #define GTK_OBJECT_GET_CLASS(object) (GTK_OBJECT(object)->klass)
2009 #define GTK_CLASS_TYPE(klass) ((klass)->type)
2013 /* Stand-ins for Pango types */
2014 typedef struct _PangoContext PangoContext
;
2015 typedef struct _PangoLayout PangoLayout
;
2016 typedef struct _PangoFontDescription PangoFontDescription
;
2022 typedef struct window_t
*WXWidget
;
2025 // This is required because of clashing macros in windows.h, which may be
2026 // included before or after wxWindows classes, and therefore must be
2027 // disabled here before any significant wxWindows headers are included.
2059 // ---------------------------------------------------------------------------
2060 // macro to define a class without copy ctor nor assignment operator
2061 // ---------------------------------------------------------------------------
2063 #define DECLARE_NO_COPY_CLASS(classname) \
2065 classname(const classname&); \
2066 classname& operator=(const classname&);