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 // ----------------------------------------------------------------------------
24 #if defined(__unix) || defined(__unix__) || defined(____SVR4____) || \
25 defined(__LINUX__) || defined(__sgi ) || \
26 defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
31 // Helps SGI compilation, apparently
34 #define __need_wchar_t
36 // Note I use the term __SGI_CC__ for both cc and CC, its not a good
37 // idea to mix gcc and cc/CC, the name mangling is different
42 #if defined(sun) || defined(__SUN__)
50 #if defined(__hpux) && !defined(__HPUX__)
54 #elif defined(applec) || defined(THINK_C) || ( defined( __MWERKS__ ) && !defined(__INTEL__) )
56 #elif defined(__OS2__)
57 #if defined(__IBMCPP__)
58 #define __VISAGEAVER__ __IBMCPP__
67 // Place other OS/2 compiler environment defines here
68 #define LINKAGEMODE _Optlink
74 // define another standard symbol for Microsoft Visual C++: the standard one
75 // (_MSC_VER) is also defined by Metrowerks compiler
76 #if defined(_MSC_VER) && !defined(__MWERKS__)
77 #define __VISUALC__ _MSC_VER
78 #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__)
80 #elif defined(__WATCOMC__)
87 // LINKAGEMODE mode is empty for everyting except OS/2
92 // suppress some Visual C++ warnings
94 # pragma warning(disable:4244) // conversion from double to float
95 # pragma warning(disable:4100) // unreferenced formal parameter
96 # pragma warning(disable:4511) // copy ctor couldn't be generated
97 # pragma warning(disable:4512) // operator=() couldn't be generated
99 # pragma warning(disable:4134) // conversion between pointers to members of same class
100 # pragma warning(disable:4135) // conversion between different integral types
101 # pragma warning(disable:4769) // assignment of near pointer to long integer
103 #endif // __VISUALC__
105 // suppress some Salford C++ warnings
107 # pragma suppress 353 // Possible nested comments
108 # pragma suppress 593 // Define not used
109 # pragma suppress 61 // enum has no name (doesn't suppress!)
110 # pragma suppress 106 // unnamed, unused parameter
111 # pragma suppress 571 // Virtual function hiding
112 #endif // __SALFORDC__
116 // VC1.5 does not have LPTSTR type
118 #define LPCTSTR LPCSTR
122 // Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
123 // so define it ourselves
128 // Resolves linking problems under HP-UX
129 #if defined(__HPUX__) && defined(__GNUG__)
130 #define va_list __gnuc_va_list
133 //////////////////////////////////////////////////////////////////////////////////
134 // Currently Only MS-Windows/NT, XView and Motif are supported
136 #if defined(__HPUX__) && !defined(__WXGTK__)
139 #endif // __WXMOTIF__
142 #if defined(__WXMOTIF__)
147 // wxWindows checks for WIN32, not __WIN32__
148 #if ((defined(WIN32) || defined(__NT__)) && !defined(__WIN32__) && !defined(__WXSTUBS__))
168 #if !defined(__WIN95__) && (WINVER >= 0x0400)
172 #if defined(TWIN32) && !defined(__TWIN32__)
178 // Make sure the environment is set correctly
179 #if defined(__WXMSW__) && defined(__X__)
180 #error "Target can't be both X and Windows"
181 #elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXPM__) && \
182 !defined(__WXMAC__) && !defined(__X__) && !defined(__WXQT__) && !defined(__WXSTUBS__)
183 #error "No Target! Use -D[__WXMOTIF__|__WXGTK__|__WXMSW__|__WXMAC__|__WXQT__|__WXPM__|__WXSTUBS__]"
186 // ----------------------------------------------------------------------------
188 // ----------------------------------------------------------------------------
192 #include "wx/setup.h"
194 // just in case they were defined in setup.h
198 // if we're on a Unixsystem but didn't use configure (so that setup.h didn't
199 // define __UNIX__), do define __UNIX__ now
200 #if !defined(__UNIX__) && defined(__UNIX_LIKE__)
204 #include "wx/version.h"
206 // ============================================================================
207 // non portable C++ features
208 // ============================================================================
210 // ----------------------------------------------------------------------------
211 // check for native bool type and TRUE/FALSE constants
212 // ----------------------------------------------------------------------------
214 #if defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXQT__) || defined(__WXPM__) || defined(__WXSTUBS__)
215 // Bool is now obsolete, use bool instead
223 #elif defined(__WXMSW__)
230 // Add more tests here for Windows compilers that already define bool
231 // (under Unix, configure tests for this)
233 #if defined( __MWERKS__ )
234 #if (__MWERKS__ >= 0x1000) && !__option(bool)
237 #elif defined(__VISUALC__) && (__VISUALC__ == 1020)
238 // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed)
239 // but not implemented, so we must #define it
240 #define bool unsigned int
241 #elif defined(__VISUALC__) && (__VISUALC__ == 1010)
242 // For VisualC++ 4.1, we need to define
243 // bool as something between 4.0 & 5.0...
244 typedef unsigned int wxbool
;
247 #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
248 // VC++ supports bool since 4.2
250 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)
251 // Borland 5.0+ supports bool
253 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
254 // Watcom 11+ supports bool
256 #elif defined(__GNUWIN32__)
257 // Cygwin supports bool
259 #elif defined(__VISAGECPP__)
260 typedef unsigned long bool;
265 #if !defined(HAVE_BOOL) && !defined(bool)
266 // NB: of course, this doesn't replace the standard type, because, for
267 // example, overloading based on bool/int parameter doesn't work and
268 // so should be avoided in portable programs
269 typedef unsigned int bool;
272 typedef short int WXTYPE
;
274 // special care should be taken with this type under Windows where the real
275 // window id is unsigned, so we must always do the cast before comparing them
276 // (or else they would be always different!). Usign wxGetWindowId() which does
277 // the cast itself is recommended. Note that this type can't be unsigned
278 // because -1 is a valid (and largely used) value for window id.
279 typedef int wxWindowID
;
281 // Macro to cut down on compiler warnings.
282 #if REMOVE_UNUSED_ARG
283 #define WXUNUSED(identifier) /* identifier */
284 #else // stupid, broken compiler
285 #define WXUNUSED(identifier) identifier
289 * Making or using wxWindows as a Windows DLL
292 #if defined(__WXMSW__)
294 // _declspec works in BC++ 5 and later, as well as VC++
295 #if defined(__VISUALC__) || defined(__BORLANDC__)
298 # define WXDLLEXPORT _declspec( dllexport )
299 # define WXDLLEXPORT_DATA(type) _declspec( dllexport ) type
300 # define WXDLLEXPORT_CTORFN
301 # elif defined(WXUSINGDLL)
302 # define WXDLLEXPORT _declspec( dllimport )
303 # define WXDLLEXPORT_DATA(type) _declspec( dllimport ) type
304 # define WXDLLEXPORT_CTORFN
307 # define WXDLLEXPORT_DATA(type) type
308 # define WXDLLEXPORT_CTORFN
311 #elif defined(__WXPM__)
314 # define WXDLLEXPORT _Export
315 # define WXDLLEXPORT_DATA(type) _Export type
316 # define WXDLLEXPORT_CTORFN
317 # elif defined(WXUSINGDLL)
318 # define WXDLLEXPORT _Export
319 # define WXDLLEXPORT_DATA(type) _Export type
320 # define WXDLLEXPORT_CTORFN
323 # define WXDLLEXPORT_DATA(type) type
324 # define WXDLLEXPORT_CTORFN
329 # define WXDLLEXPORT_DATA(type) type
330 # define WXDLLEXPORT_CTORFN
335 # define WXDLLEXPORT_DATA(type) type
336 # define WXDLLEXPORT_CTORFN
339 // For ostream, istream ofstream
340 #if defined(__BORLANDC__) && defined( _RTLDLL )
341 # define WXDLLIMPORT __import
346 class WXDLLEXPORT wxObject
;
347 class WXDLLEXPORT wxEvent
;
349 /** symbolic constant used by all Find()-like functions returning positive
350 integer on success as failure indicator */
351 #define wxNOT_FOUND (-1)
353 // ----------------------------------------------------------------------------
354 /** @name Very common macros */
355 // ----------------------------------------------------------------------------
357 /// delete pointer if it is not NULL and NULL it afterwards
358 // (checking that it's !NULL before passing it to delete is just a
359 // a question of style, because delete will do it itself anyhow, but it might
360 // be considered as an error by some overzealous debugging implementations of
361 // the library, so we do it ourselves)
362 #if defined(__SGI_CC__)
363 // Okay this is bad styling, but the native SGI compiler is very picky, it
364 // wont let you compare/assign between a NULL (void *) and another pointer
365 // type. To be really clean we'd need to pass in another argument, the type
367 // Also note the use of 0L, this would allow future possible 64bit support
368 // (as yet untested) by ensuring that we zero all the bits in a pointer
369 // (which is always the same length as a long (at least with the LP64 standard)
371 #define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; }
373 #define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; }
374 #endif /* __SGI__CC__ */
376 // delete an array and NULL it (see comments above)
377 #if defined(__SGI_CC__)
378 // see above comment.
379 #define wxDELETEA(p) if ( (p) ) { delete [] (p); p = 0L; }
381 #define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; }
382 #endif /* __SGI__CC__ */
384 /// size of statically declared array
385 #define WXSIZEOF(array) (sizeof(array)/sizeof(array[0]))
387 // Use of these suppresses some compiler warnings
388 WXDLLEXPORT_DATA(extern const bool) wxTrue
;
389 WXDLLEXPORT_DATA(extern const bool) wxFalse
;
391 // ----------------------------------------------------------------------------
392 // compiler specific settings
393 // ----------------------------------------------------------------------------
395 // to allow compiling with warning level 4 under Microsoft Visual C++ some
396 // warnings just must be disabled
398 #pragma warning(disable: 4514) // unreferenced inline func has been removed
400 you might be tempted to disable this one also: triggered by CHECK and FAIL
401 macros in debug.h, but it's, overall, a rather useful one, so I leave it and
402 will try to find some way to disable this warning just for CHECK/FAIL. Anyone?
404 #pragma warning(disable: 4127) // conditional expression is constant
407 #if defined(__MWERKS__)
411 #define except(x) catch(...)
414 // where should i put this? we need to make sure of this as it breaks
415 // the <iostream> code.
416 #if !wxUSE_IOSTREAMH && defined(__WXDEBUG__)
422 // Callback function type definition
423 typedef void (*wxFunction
) (wxObject
&, wxEvent
&);
425 // ----------------------------------------------------------------------------
426 // OS mnemonics -- Identify the running OS (useful for Windows)
427 // ----------------------------------------------------------------------------
429 // Not all platforms are currently available or supported
433 wxCURSES
, // Text-only CURSES
434 wxXVIEW_X
, // Sun's XView OpenLOOK toolkit
435 wxMOTIF_X
, // OSF Motif 1.x.x
436 wxCOSE_X
, // OSF Common Desktop Environment
437 wxNEXTSTEP
, // NeXTStep
438 wxMACINTOSH
, // Apple System 7
440 wxGTK_WIN32
, // GTK on Win32
441 wxGTK_OS2
, // GTK on OS/2
442 wxGTK_BEOS
, // GTK on BeOS
445 wxOS2_PM
, // OS/2 Workplace
446 wxWINDOWS
, // Windows or WfW
447 wxPENWINDOWS
, // Windows for Pen Computing
448 wxWINDOWS_NT
, // Windows NT
449 wxWIN32S
, // Windows 32S API
450 wxWIN95
, // Windows 95
451 wxWIN386
, // Watcom 32-bit supervisor modus
452 wxMGL_UNIX
, // MGL with direct hardware access
454 wxMGL_WIN32
, // MGL on Win32
455 wxMGL_OS2
// MGL on OS/2
458 // ----------------------------------------------------------------------------
459 // machine specific settings
460 // ----------------------------------------------------------------------------
462 // fixed length types
464 #define wxInt8 char signed
465 #define wxUint8 char unsigned
468 #define wxInt16 int signed
469 #define wxUint16 int unsigned
470 #define wxInt32 long signed
471 #define wxUint32 long unsigned
475 #define wxInt16 short signed
476 #define wxUint16 short unsigned
477 #define wxInt32 int signed
478 #define wxUint32 int unsigned
482 #define wxInt16 short signed
483 #define wxUint16 short unsigned
484 #define wxInt32 int signed
485 #define wxUint32 int unsigned
489 #define wxInt16 short signed
490 #define wxUint16 short unsigned
491 #define wxInt32 int signed
492 #define wxUint32 int unsigned
495 #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXOS2__)
496 #if defined(SIZEOF_INT)
497 /* well, this shouldn't happen... */
498 #define wxInt16 short signed
499 #define wxUint16 short unsigned
500 #define wxInt32 int signed
501 #define wxUint32 int unsigned
503 #define wxInt16 short signed
504 #define wxUint16 short unsigned
505 #define wxInt32 int signed
506 #define wxUint32 int unsigned
510 #define wxByte wxUint8
511 #define wxWord wxUint16
515 #define wxBIG_ENDIAN 4321
516 #define wxLITTLE_ENDIAN 1234
517 #define wxPDP_ENDIAN 3412
519 #ifdef WORDS_BIGENDIAN
520 #define wxBYTE_ORDER wxBIG_ENDIAN
522 #define wxBYTE_ORDER wxLITTLE_ENDIAN
527 #define wxUINT16_SWAP_ALWAYS(val) \
529 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
530 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
532 #define wxINT16_SWAP_ALWAYS(val) \
534 (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \
535 (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8)))
537 #define wxUINT32_SWAP_ALWAYS(val) \
539 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
540 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
541 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
542 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
544 #define wxINT32_SWAP_ALWAYS(val) \
546 (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \
547 (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \
548 (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \
549 (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24)))
551 // machine specific byte swapping
553 #ifdef WORDS_BIGENDIAN
554 #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val)
555 #define wxINT16_SWAP_ON_BE(val) wxINT16_SWAP_ALWAYS(val)
556 #define wxUINT16_SWAP_ON_LE(val) (val)
557 #define wxINT16_SWAP_ON_LE(val) (val)
558 #define wxUINT32_SWAP_ON_BE(val) wxUINT32_SWAP_ALWAYS(val)
559 #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val)
560 #define wxUINT32_SWAP_ON_LE(val) (val)
561 #define wxINT32_SWAP_ON_LE(val) (val)
563 #define wxUINT16_SWAP_ON_LE(val) wxUINT16_SWAP_ALWAYS(val)
564 #define wxINT16_SWAP_ON_LE(val) wxINT16_SWAP_ALWAYS(val)
565 #define wxUINT16_SWAP_ON_BE(val) (val)
566 #define wxINT16_SWAP_ON_BE(val) (val)
567 #define wxUINT32_SWAP_ON_LE(val) wxUINT32_SWAP_ALWAYS(val)
568 #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val)
569 #define wxUINT32_SWAP_ON_BE(val) (val)
570 #define wxINT32_SWAP_ON_BE(val) (val)
573 // ----------------------------------------------------------------------------
574 // Window style flags
575 // ----------------------------------------------------------------------------
578 * Values are chosen so they can be |'ed in a bit list.
579 * Some styles are used across more than one group,
580 * so the values mustn't clash with others in the group.
581 * Otherwise, numbers can be reused across groups.
584 * Window (cross-group) styles now take up the first half
585 * of the flag, and control-specific styles the
591 * Window (Frame/dialog/subwindow/panel item) style flags
593 #define wxVSCROLL 0x80000000
594 #define wxHSCROLL 0x40000000
595 #define wxCAPTION 0x20000000
598 #define wxDOUBLE_BORDER 0x10000000
599 #define wxSUNKEN_BORDER 0x08000000
600 #define wxRAISED_BORDER 0x04000000
601 #define wxBORDER 0x02000000
602 #define wxSIMPLE_BORDER wxBORDER
603 #define wxSTATIC_BORDER 0x01000000
604 #define wxTRANSPARENT_WINDOW 0x00100000
605 #define wxNO_BORDER 0x00200000
607 #define wxUSER_COLOURS 0x00800000
608 // Override CTL3D etc. control colour processing to
609 // allow own background colour
610 // OBSOLETE - use wxNO_3D instead
611 #define wxNO_3D 0x00800000
612 // Override CTL3D or native 3D styles for children
613 #define wxCLIP_CHILDREN 0x00400000
614 // Clip children when painting, which reduces flicker in
615 // e.g. frames and splitter windows, but can't be used in
616 // a panel where a static box must be 'transparent' (panel
617 // paints the background for it)
619 // Add this style to a panel to get tab traversal working
620 // outside of dialogs.
621 #define wxTAB_TRAVERSAL 0x00080000
623 // Add this style if the control wants to get all keyboard messages (under
624 // Windows, it won't normally get the dialog navigation key events)
625 #define wxWANTS_CHARS 0x00040000
627 // Make window retained (mostly Motif, I think)
628 #define wxRETAINED 0x00020000
629 #define wxBACKINGSTORE wxRETAINED
631 // don't invalidate the whole window (resulting in a PAINT event) when the
632 // window is resized (currently, makes sense for wxMSW only)
633 #define wxNO_FULL_REPAINT_ON_RESIZE 0x00010000
635 * wxFrame/wxDialog style flags
637 #define wxSTAY_ON_TOP 0x8000
638 #define wxICONIZE 0x4000
639 #define wxMINIMIZE wxICONIZE
640 #define wxMAXIMIZE 0x2000
641 #define wxTHICK_FRAME 0x1000
642 #define wxSYSTEM_MENU 0x0800
643 #define wxMINIMIZE_BOX 0x0400
644 #define wxMAXIMIZE_BOX 0x0200
645 #define wxTINY_CAPTION_HORIZ 0x0100
646 #define wxTINY_CAPTION_VERT 0x0080
647 #define wxRESIZE_BOX wxMAXIMIZE_BOX
648 #define wxRESIZE_BORDER 0x0040
649 #define wxDIALOG_MODAL 0x0020
650 #define wxDIALOG_MODELESS 0x0000
651 // Add for normal Windows frame behaviour
652 #define wxFRAME_FLOAT_ON_PARENT 0x0020
655 #if WXWIN_COMPATIBILITY
656 #define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE
659 #define wxDEFAULT_FRAME_STYLE \
660 (wxSYSTEM_MENU | wxRESIZE_BORDER | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME | wxSYSTEM_MENU | wxCAPTION | wxCLIP_CHILDREN)
663 # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU|wxCAPTION|wxTHICK_FRAME)
665 // Under Unix, the dialogs don't have a system menu. Specifying
666 // wxSYSTEM_MENU here, will make a close button appear.
667 # define wxDEFAULT_DIALOG_STYLE (wxCAPTION)
671 * wxExtDialog style flags
673 #define wxED_CLIENT_MARGIN 0x0004
674 #define wxED_BUTTONS_BOTTOM 0x0000 // has no effect
675 #define wxED_BUTTONS_RIGHT 0x0002
676 #define wxED_STATIC_LINE 0x0001
678 #if defined(__WXMSW__) || defined(__WXMAC__)
679 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN)
681 # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN|wxED_STATIC_LINE)
685 * wxToolBar style flags
687 #define wxTB_3DBUTTONS 0x8000
688 #define wxTB_HORIZONTAL 0x0002
689 #define wxTB_VERTICAL 0x0004
690 // Flatbar/Coolbar under Win98/ GTK 1.2
691 #define wxTB_FLAT 0x0008
692 // use native docking under GTK
693 #define wxTB_DOCKABLE 0x0010
696 * wxMenuBar style flags
698 // use native docking
699 #define wxMB_DOCKABLE 0x0001
704 #define wxMENU_TEAROFF 0x0001
707 * Apply to all panel items
709 #define wxCOLOURED 0x0800
710 // Alignment for panel item labels: replaces characters with zeros
711 // when creating label, so spaces can be included in string for alignment.
712 #define wxFIXED_LENGTH 0x0400
713 #define wxALIGN_LEFT 0x0000
714 #define wxALIGN_CENTER 0x0100
715 #define wxALIGN_CENTRE 0x0100
716 #define wxALIGN_RIGHT 0x0200
719 * Styles for wxListBox
721 #define wxLB_SORT 0x0010
722 #define wxLB_SINGLE 0x0020
723 #define wxLB_MULTIPLE 0x0040
724 #define wxLB_EXTENDED 0x0080
725 // wxLB_OWNERDRAW is Windows-only
726 #define wxLB_OWNERDRAW 0x0100
727 #define wxLB_NEEDED_SB 0x0200
728 #define wxLB_ALWAYS_SB 0x0400
729 #define wxLB_HSCROLL wxHSCROLL
732 * wxTextCtrl style flags
734 #define wxPROCESS_ENTER 0x0004
735 #define wxPASSWORD 0x0008
736 #define wxTE_PROCESS_ENTER wxPROCESS_ENTER
737 #define wxTE_PASSWORD wxPASSWORD
738 #define wxTE_READONLY 0x0010
739 #define wxTE_MULTILINE 0x0020
740 #define wxTE_PROCESS_TAB 0x0040
741 // this style means to use RICHEDIT control and does something only under wxMSW
742 // and Win32 and is silently ignored under all other platforms
743 #define wxTE_RICH 0x0080
746 * wxComboBox style flags
748 #define wxCB_SIMPLE 0x0004
749 #define wxCB_SORT 0x0008
750 #define wxCB_READONLY 0x0010
751 #define wxCB_DROPDOWN 0x0020
754 * wxRadioBox style flags
756 // New, more intuitive names to specify majorDim argument
757 #define wxRA_SPECIFY_COLS wxHORIZONTAL
758 #define wxRA_SPECIFY_ROWS wxVERTICAL
759 // Old names for compatibility
760 #define wxRA_HORIZONTAL wxHORIZONTAL
761 #define wxRA_VERTICAL wxVERTICAL
764 * wxRadioButton style flag
766 #define wxRB_GROUP 0x0004
771 #define wxGA_PROGRESSBAR 0x0004
772 #define wxGA_HORIZONTAL wxHORIZONTAL
773 #define wxGA_VERTICAL wxVERTICAL
775 #define wxGA_SMOOTH 0x0008
780 #define wxSL_HORIZONTAL wxHORIZONTAL
781 #define wxSL_VERTICAL wxVERTICAL
782 // The next one is obsolete - use scroll events instead
783 #define wxSL_NOTIFY_DRAG 0x0000
784 #define wxSL_AUTOTICKS 0x0008
785 // #define wxSL_MANUALTICKS 0x0010
786 #define wxSL_LABELS 0x0020
787 #define wxSL_LEFT 0x0040
788 #define wxSL_TOP 0x0080
789 #define wxSL_RIGHT 0x0100
790 #define wxSL_BOTTOM 0x0200
791 #define wxSL_BOTH 0x0400
792 #define wxSL_SELRANGE 0x0800
797 #define wxSB_HORIZONTAL wxHORIZONTAL
798 #define wxSB_VERTICAL wxVERTICAL
801 * wxButton flags (Win32 only)
803 #define wxBU_AUTODRAW 0x0004
804 #define wxBU_NOAUTODRAW 0x0000
809 #define wxTR_HAS_BUTTONS 0x0004
810 #define wxTR_EDIT_LABELS 0x0008
811 #define wxTR_LINES_AT_ROOT 0x0010
813 #define wxTR_SINGLE 0x0000
814 #define wxTR_MULTIPLE 0x0020
815 #define wxTR_EXTENDED 0x0040
816 #define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080
821 #define wxLC_ICON 0x0004
822 #define wxLC_SMALL_ICON 0x0008
823 #define wxLC_LIST 0x0010
824 #define wxLC_REPORT 0x0020
825 #define wxLC_ALIGN_TOP 0x0040
826 #define wxLC_ALIGN_LEFT 0x0080
827 #define wxLC_AUTOARRANGE 0x0100
828 #define wxLC_USER_TEXT 0x0200
829 #define wxLC_EDIT_LABELS 0x0400
830 #define wxLC_NO_HEADER 0x0800
831 #define wxLC_NO_SORT_HEADER 0x1000
832 #define wxLC_SINGLE_SEL 0x2000
833 #define wxLC_SORT_ASCENDING 0x4000
834 #define wxLC_SORT_DESCENDING 0x8000
836 #define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT)
837 #define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT)
838 #define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING)
840 // Omitted because (a) too much detail (b) not enough style flags
841 // #define wxLC_NO_SCROLL
842 // #define wxLC_NO_LABEL_WRAP
843 // #define wxLC_OWNERDRAW_FIXED
844 // #define wxLC_SHOW_SEL_ALWAYS
849 #define wxSP_VERTICAL 0x0004
850 #define wxSP_HORIZONTAL 0x0008
851 #define wxSP_ARROW_KEYS 0x0010
852 #define wxSP_WRAP 0x0020
855 * wxSplitterWindow flags
857 #define wxSP_NOBORDER 0x0000
858 #define wxSP_3D 0x0004
859 #define wxSP_BORDER 0x0008
860 #define wxSP_PERMIT_UNSPLIT 0x0010
861 #define wxSP_LIVE_UPDATE 0x0020
864 * wxFrame extra flags
866 // No title on taskbar
867 #define wxFRAME_TOOL_WINDOW 0x0004
872 #define wxTC_MULTILINE 0x0000
873 #define wxTC_RIGHTJUSTIFY 0x0004
874 #define wxTC_FIXEDWIDTH 0x0008
875 #define wxTC_OWNERDRAW 0x0010
880 #define wxNB_FIXEDWIDTH 0x0008
883 * wxStatusBar95 flags
885 #define wxST_SIZEGRIP 0x0002
890 #define wxLI_HORIZONTAL wxHORIZONTAL
891 #define wxLI_VERTICAL wxVERTICAL
894 * wxProgressDialog flags
896 #define wxPD_CAN_ABORT 0x0001
897 #define wxPD_APP_MODAL 0x0002
898 #define wxPD_AUTO_HIDE 0x0004
899 #define wxPD_ELAPSED_TIME 0x0008
900 #define wxPD_ESTIMATED_TIME 0x0010
901 #define wxPD_REMAINING_TIME 0x0020
904 * extended dialog specifiers. these values are stored in a different
905 * flag and thus do not overlap with other style flags. note that these
906 * values do not correspond to the return values of the dialogs (for
907 * those values, look at the wxID_XXX defines).
909 #define wxOK 0x00000001
910 #define wxYES_NO 0x00000002
911 #define wxCANCEL 0x00000004
912 #define wxYES 0x00000008
913 #define wxNO 0x00000010
914 #define wxNO_DEFAULT 0x00000020
915 #define wxYES_DEFAULT 0x00000000 // has no effect
917 #define wxICON_EXCLAMATION 0x00000040
918 #define wxICON_HAND 0x00000080
919 #define wxICON_WARNING wxICON_EXCLAMATION
920 #define wxICON_ERROR wxICON_HAND
921 #define wxICON_QUESTION 0x00000100
922 #define wxICON_INFORMATION 0x00000200
923 #define wxICON_STOP wxICON_HAND
924 #define wxICON_ASTERISK wxICON_INFORMATION
925 #define wxICON_MASK (0x00000040|0x00000080|0x00000100|0x00000200)
927 #define wxCENTRE 0x00000400
928 #define wxCENTER wxCENTRE
930 #define wxFORWARD 0x00000800
931 #define wxBACKWARD 0x00001000
932 #define wxRESET 0x00002000
933 #define wxHELP 0x00004000
934 #define wxMORE 0x00008000
935 #define wxSETUP 0x00010000
937 // ----------------------------------------------------------------------------
939 // ----------------------------------------------------------------------------
942 #define wxID_LOWEST 4999
944 #define wxID_OPEN 5000
945 #define wxID_CLOSE 5001
946 #define wxID_NEW 5002
947 #define wxID_SAVE 5003
948 #define wxID_SAVEAS 5004
949 #define wxID_REVERT 5005
950 #define wxID_EXIT 5006
951 #define wxID_UNDO 5007
952 #define wxID_REDO 5008
953 #define wxID_HELP 5009
954 #define wxID_PRINT 5010
955 #define wxID_PRINT_SETUP 5011
956 #define wxID_PREVIEW 5012
957 #define wxID_ABOUT 5013
958 #define wxID_HELP_CONTENTS 5014
959 #define wxID_HELP_COMMANDS 5015
960 #define wxID_HELP_PROCEDURES 5016
961 #define wxID_HELP_CONTEXT 5017
963 #define wxID_CUT 5030
964 #define wxID_COPY 5031
965 #define wxID_PASTE 5032
966 #define wxID_CLEAR 5033
967 #define wxID_FIND 5034
968 #define wxID_DUPLICATE 5035
969 #define wxID_SELECTALL 5036
971 #define wxID_FILE1 5050
972 #define wxID_FILE2 5051
973 #define wxID_FILE3 5052
974 #define wxID_FILE4 5053
975 #define wxID_FILE5 5054
976 #define wxID_FILE6 5055
977 #define wxID_FILE7 5056
978 #define wxID_FILE8 5057
979 #define wxID_FILE9 5058
981 // Standard button IDs
983 #define wxID_CANCEL 5101
984 #define wxID_APPLY 5102
985 #define wxID_YES 5103
987 #define wxID_STATIC 5105
988 #define wxID_FORWARD 5106
989 #define wxID_BACKWARD 5107
990 #define wxID_DEFAULT 5108
991 #define wxID_MORE 5109
992 #define wxID_SETUP 5110
993 #define wxID_RESET 5111
995 #define wxID_HIGHEST 5999
997 // ----------------------------------------------------------------------------
998 // Orientations and directions
999 // ----------------------------------------------------------------------------
1003 wxHORIZONTAL
= 0x0001,
1004 wxVERTICAL
= 0x0002,
1005 wxBOTH
= (wxVERTICAL
| wxHORIZONTAL
)
1016 // wxCENTRE = 0x0400 (defined above)
1018 // centering into frame rather than screen (obsolete)
1019 #define wxCENTER_FRAME 0x0000
1020 // centre on screen rather than parent
1021 #define wxCENTRE_ON_SCREEN 0x0004
1022 #define wxCENTER_ON_SCREEN wxCENTRE_ON_SCREEN
1024 // ----------------------------------------------------------------------------
1025 // Possible SetSize flags
1026 // ----------------------------------------------------------------------------
1028 // Use internally-calculated width if -1
1029 #define wxSIZE_AUTO_WIDTH 0x0001
1030 // Use internally-calculated height if -1
1031 #define wxSIZE_AUTO_HEIGHT 0x0002
1032 // Use internally-calculated width and height if each is -1
1033 #define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT)
1034 // Ignore missing (-1) dimensions (use existing).
1035 // For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code.
1036 #define wxSIZE_USE_EXISTING 0x0000
1037 // Allow -1 as a valid position
1038 #define wxSIZE_ALLOW_MINUS_ONE 0x0004
1039 // Don't do parent client adjustments (for implementation only)
1040 #define wxSIZE_NO_ADJUSTMENTS 0x0008
1042 // ----------------------------------------------------------------------------
1044 // ----------------------------------------------------------------------------
1047 // Text font families
1054 wxTELETYPE
, /* @@@@ */
1056 // Proportional or Fixed width fonts (not yet used)
1063 // Also wxNORMAL for normal (non-italic text)
1077 // Brush & Pen Stippling. Note that a stippled pen cannot be dashed!!
1078 // Note also that stippling a Pen IS meaningfull, because a Line is
1079 // drawn with a Pen, and without any Brush -- and it can be stippled.
1087 #define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH)
1103 wxXOR
, // src XOR dst
1104 wxINVERT
, // NOT dst
1105 wxOR_REVERSE
, // src OR (NOT dst)
1106 wxAND_REVERSE
,// src AND (NOT dst)
1108 wxAND
, // src AND dst
1109 wxAND_INVERT
, // (NOT src) AND dst
1111 wxNOR
, // (NOT src) AND (NOT dst)
1112 wxEQUIV
, // (NOT src) XOR dst
1113 wxSRC_INVERT
, // (NOT src)
1114 wxOR_INVERT
, // (NOT src) OR dst
1115 wxNAND
, // (NOT src) OR (NOT dst)
1118 wxSRC_OR
, // source _bitmap_ OR destination
1119 wxSRC_AND
// source _bitmap_ AND destination
1123 #define wxFLOOD_SURFACE 1
1124 #define wxFLOOD_BORDER 2
1126 /* Polygon filling mode */
1127 #define wxODDEVEN_RULE 1
1128 #define wxWINDING_RULE 2
1130 /* ToolPanel in wxFrame */
1131 #define wxTOOL_TOP 1
1132 #define wxTOOL_BOTTOM 2
1133 #define wxTOOL_LEFT 3
1134 #define wxTOOL_RIGHT 4
1140 wxDF_TEXT
= 1, /* CF_TEXT */
1141 wxDF_BITMAP
= 2, /* CF_BITMAP */
1142 wxDF_METAFILE
= 3, /* CF_METAFILEPICT */
1146 wxDF_OEMTEXT
= 7, /* CF_OEMTEXT */
1147 wxDF_DIB
= 8, /* CF_DIB */
1152 wxDF_UNICODETEXT
= 13,
1153 wxDF_ENHMETAFILE
= 14,
1154 wxDF_FILENAME
= 15, /* CF_HDROP */
1160 /* Virtual keycodes */
1183 WXK_PRIOR
, /* Page up */
1184 WXK_NEXT
, /* Page down */
1257 WXK_NUMPAD_PAGEDOWN
,
1263 WXK_NUMPAD_MULTIPLY
,
1265 WXK_NUMPAD_SEPARATOR
,
1266 WXK_NUMPAD_SUBTRACT
,
1271 // Mapping modes (as per Windows)
1273 #define wxMM_LOMETRIC 2
1274 #define wxMM_HIMETRIC 3
1275 #define wxMM_LOENGLISH 4
1276 #define wxMM_HIENGLISH 5
1277 #define wxMM_TWIPS 6
1278 #define wxMM_ISOTROPIC 7
1279 #define wxMM_ANISOTROPIC 8
1281 #define wxMM_POINTS 9
1282 #define wxMM_METRIC 10
1284 /* Shortcut for easier dialog-unit-to-pixel conversion */
1285 #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt)
1289 wxPAPER_NONE
, // Use specific dimensions
1290 wxPAPER_LETTER
, // Letter, 8 1/2 by 11 inches
1291 wxPAPER_LEGAL
, // Legal, 8 1/2 by 14 inches
1292 wxPAPER_A4
, // A4 Sheet, 210 by 297 millimeters
1293 wxPAPER_CSHEET
, // C Sheet, 17 by 22 inches
1294 wxPAPER_DSHEET
, // D Sheet, 22 by 34 inches
1295 wxPAPER_ESHEET
, // E Sheet, 34 by 44 inches
1296 wxPAPER_LETTERSMALL
, // Letter Small, 8 1/2 by 11 inches
1297 wxPAPER_TABLOID
, // Tabloid, 11 by 17 inches
1298 wxPAPER_LEDGER
, // Ledger, 17 by 11 inches
1299 wxPAPER_STATEMENT
, // Statement, 5 1/2 by 8 1/2 inches
1300 wxPAPER_EXECUTIVE
, // Executive, 7 1/4 by 10 1/2 inches
1301 wxPAPER_A3
, // A3 sheet, 297 by 420 millimeters
1302 wxPAPER_A4SMALL
, // A4 small sheet, 210 by 297 millimeters
1303 wxPAPER_A5
, // A5 sheet, 148 by 210 millimeters
1304 wxPAPER_B4
, // B4 sheet, 250 by 354 millimeters
1305 wxPAPER_B5
, // B5 sheet, 182-by-257-millimeter paper
1306 wxPAPER_FOLIO
, // Folio, 8-1/2-by-13-inch paper
1307 wxPAPER_QUARTO
, // Quarto, 215-by-275-millimeter paper
1308 wxPAPER_10X14
, // 10-by-14-inch sheet
1309 wxPAPER_11X17
, // 11-by-17-inch sheet
1310 wxPAPER_NOTE
, // Note, 8 1/2 by 11 inches
1311 wxPAPER_ENV_9
, // #9 Envelope, 3 7/8 by 8 7/8 inches
1312 wxPAPER_ENV_10
, // #10 Envelope, 4 1/8 by 9 1/2 inches
1313 wxPAPER_ENV_11
, // #11 Envelope, 4 1/2 by 10 3/8 inches
1314 wxPAPER_ENV_12
, // #12 Envelope, 4 3/4 by 11 inches
1315 wxPAPER_ENV_14
, // #14 Envelope, 5 by 11 1/2 inches
1316 wxPAPER_ENV_DL
, // DL Envelope, 110 by 220 millimeters
1317 wxPAPER_ENV_C5
, // C5 Envelope, 162 by 229 millimeters
1318 wxPAPER_ENV_C3
, // C3 Envelope, 324 by 458 millimeters
1319 wxPAPER_ENV_C4
, // C4 Envelope, 229 by 324 millimeters
1320 wxPAPER_ENV_C6
, // C6 Envelope, 114 by 162 millimeters
1321 wxPAPER_ENV_C65
, // C65 Envelope, 114 by 229 millimeters
1322 wxPAPER_ENV_B4
, // B4 Envelope, 250 by 353 millimeters
1323 wxPAPER_ENV_B5
, // B5 Envelope, 176 by 250 millimeters
1324 wxPAPER_ENV_B6
, // B6 Envelope, 176 by 125 millimeters
1325 wxPAPER_ENV_ITALY
, // Italy Envelope, 110 by 230 millimeters
1326 wxPAPER_ENV_MONARCH
, // Monarch Envelope, 3 7/8 by 7 1/2 inches
1327 wxPAPER_ENV_PERSONAL
, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
1328 wxPAPER_FANFOLD_US
, // US Std Fanfold, 14 7/8 by 11 inches
1329 wxPAPER_FANFOLD_STD_GERMAN
, // German Std Fanfold, 8 1/2 by 12 inches
1330 wxPAPER_FANFOLD_LGL_GERMAN
, // German Legal Fanfold, 8 1/2 by 13 inches
1332 wxPAPER_ISO_B4
, // B4 (ISO) 250 x 353 mm
1333 wxPAPER_JAPANESE_POSTCARD
, // Japanese Postcard 100 x 148 mm
1334 wxPAPER_9X11
, // 9 x 11 in
1335 wxPAPER_10X11
, // 10 x 11 in
1336 wxPAPER_15X11
, // 15 x 11 in
1337 wxPAPER_ENV_INVITE
, // Envelope Invite 220 x 220 mm
1338 wxPAPER_LETTER_EXTRA
, // Letter Extra 9 \275 x 12 in
1339 wxPAPER_LEGAL_EXTRA
, // Legal Extra 9 \275 x 15 in
1340 wxPAPER_TABLOID_EXTRA
, // Tabloid Extra 11.69 x 18 in
1341 wxPAPER_A4_EXTRA
, // A4 Extra 9.27 x 12.69 in
1342 wxPAPER_LETTER_TRANSVERSE
, // Letter Transverse 8 \275 x 11 in
1343 wxPAPER_A4_TRANSVERSE
, // A4 Transverse 210 x 297 mm
1344 wxPAPER_LETTER_EXTRA_TRANSVERSE
, // Letter Extra Transverse 9\275 x 12 in
1345 wxPAPER_A_PLUS
, // SuperA/SuperA/A4 227 x 356 mm
1346 wxPAPER_B_PLUS
, // SuperB/SuperB/A3 305 x 487 mm
1347 wxPAPER_LETTER_PLUS
, // Letter Plus 8.5 x 12.69 in
1348 wxPAPER_A4_PLUS
, // A4 Plus 210 x 330 mm
1349 wxPAPER_A5_TRANSVERSE
, // A5 Transverse 148 x 210 mm
1350 wxPAPER_B5_TRANSVERSE
, // B5 (JIS) Transverse 182 x 257 mm
1351 wxPAPER_A3_EXTRA
, // A3 Extra 322 x 445 mm
1352 wxPAPER_A5_EXTRA
, // A5 Extra 174 x 235 mm
1353 wxPAPER_B5_EXTRA
, // B5 (ISO) Extra 201 x 276 mm
1354 wxPAPER_A2
, // A2 420 x 594 mm
1355 wxPAPER_A3_TRANSVERSE
, // A3 Transverse 297 x 420 mm
1356 wxPAPER_A3_EXTRA_TRANSVERSE
// A3 Extra Transverse 322 x 445 mm
1360 /* Printing orientation */
1362 #define wxPORTRAIT 1
1363 #define wxLANDSCAPE 2
1366 /* Duplex printing modes
1370 wxDUPLEX_SIMPLEX
, // Non-duplex
1371 wxDUPLEX_HORIZONTAL
,
1378 #define wxPRINT_QUALITY_HIGH -1
1379 #define wxPRINT_QUALITY_MEDIUM -2
1380 #define wxPRINT_QUALITY_LOW -3
1381 #define wxPRINT_QUALITY_DRAFT -4
1383 typedef int wxPrintQuality
;
1385 /* Print mode (currently PostScript only)
1389 wxPRINT_MODE_NONE
= 0,
1390 wxPRINT_MODE_PREVIEW
= 1, // Preview in external application
1391 wxPRINT_MODE_FILE
= 2, // Print to file
1392 wxPRINT_MODE_PRINTER
= 3 // Send to printer
1395 // ---------------------------------------------------------------------------
1396 // macros that enable wxWindows apps to be compiled in absence of the
1397 // sytem headers, although some platform specific types are used in the
1398 // platform specific (implementation) parts of the headers
1399 // ---------------------------------------------------------------------------
1401 #if defined(__WXMSW__) || defined(__WXPM__)
1402 // Stand-ins for Windows types or OS/2, to avoid #including all of windows.h or os2.h
1403 typedef unsigned long WXHWND
;
1404 typedef unsigned long WXHANDLE
;
1405 typedef unsigned long WXHICON
;
1406 typedef unsigned long WXHFONT
;
1407 typedef unsigned long WXHMENU
;
1408 typedef unsigned long WXHPEN
;
1409 typedef unsigned long WXHBRUSH
;
1410 typedef unsigned long WXHPALETTE
;
1411 typedef unsigned long WXHCURSOR
;
1412 typedef unsigned long WXHRGN
;
1413 typedef unsigned long WXHACCEL
;
1414 typedef unsigned long WXHINSTANCE
;
1415 typedef unsigned long WXHBITMAP
;
1416 typedef unsigned long WXHIMAGELIST
;
1417 typedef unsigned long WXHGLOBAL
;
1418 typedef unsigned long WXHDC
;
1419 typedef unsigned int WXUINT
;
1420 typedef unsigned long WXDWORD
;
1421 typedef unsigned short WXWORD
;
1422 typedef unsigned int WXWPARAM
;
1423 typedef long WXLPARAM
;
1424 typedef unsigned long WXCOLORREF
;
1425 typedef void * WXRGNDATA
;
1426 typedef void * WXMSG
;
1427 typedef unsigned long WXHCONV
;
1428 typedef unsigned long WXHKEY
;
1429 typedef unsigned long WXHTREEITEM
;
1431 typedef void * WXDRAWITEMSTRUCT
;
1432 typedef void * WXMEASUREITEMSTRUCT
;
1433 typedef void * WXLPCREATESTRUCT
;
1435 #if defined(__WXPM__)
1436 typedef unsigned long WXMPARAM
;
1437 typedef unsigned long WXMSGID
;
1438 typedef void* WXRESULT
;
1439 typedef int (*WXFARPROC
)();
1440 // some windows handles not defined by PM
1441 typedef unsigned long HANDLE
;
1442 typedef unsigned long HICON
;
1443 typedef unsigned long HFONT
;
1444 typedef unsigned long HMENU
;
1445 typedef unsigned long HPEN
;
1446 typedef unsigned long HBRUSH
;
1447 typedef unsigned long HPALETTE
;
1448 typedef unsigned long HCURSOR
;
1449 typedef unsigned long HINSTANCE
;
1450 typedef unsigned long HIMAGELIST
;
1451 typedef unsigned long HGLOBAL
;
1452 typedef unsigned long DWORD
;
1453 typedef unsigned short WORD
;
1456 #if defined(__GNUWIN32__) || defined(__WXWINE__)
1457 typedef int (*WXFARPROC
)();
1458 #elif defined(__WIN32__)
1459 typedef int (__stdcall
*WXFARPROC
)();
1461 typedef int (*WXFARPROC
)();
1464 typedef WXHWND WXWidget
;
1468 /* Stand-ins for X/Xt/Motif types */
1469 typedef void* WXWindow
;
1470 typedef void* WXWidget
;
1471 typedef void* WXAppContext
;
1472 typedef void* WXColormap
;
1473 typedef void WXDisplay
;
1474 typedef void WXEvent
;
1475 typedef void* WXCursor
;
1476 typedef void* WXPixmap
;
1477 typedef void* WXFontStructPtr
;
1479 typedef void* WXRegion
;
1480 typedef void* WXFont
;
1481 typedef void* WXImage
;
1482 typedef void* WXCursor
;
1483 typedef void* WXFontList
;
1485 typedef unsigned long Atom
; /* this might fail on a few architectures */
1490 /* Stand-ins for GLIB types */
1492 typedef unsigned guint
;
1493 typedef unsigned long gulong
;
1494 typedef void* gpointer
;
1495 typedef struct _GSList GSList
;
1497 /* Stand-ins for GDK types */
1498 typedef gulong GdkAtom
;
1499 typedef struct _GdkColor GdkColor
;
1500 typedef struct _GdkColormap GdkColormap
;
1501 typedef struct _GdkFont GdkFont
;
1502 typedef struct _GdkGC GdkGC
;
1503 typedef struct _GdkWindow GdkWindow
;
1504 typedef struct _GdkWindow GdkBitmap
;
1505 typedef struct _GdkWindow GdkPixmap
;
1506 typedef struct _GdkCursor GdkCursor
;
1507 typedef struct _GdkRegion GdkRegion
;
1508 typedef struct _GdkDragContext GdkDragContext
;
1510 /* Stand-ins for GTK types */
1511 typedef struct _GtkWidget GtkWidget
;
1512 typedef struct _GtkStyle GtkStyle
;
1513 typedef struct _GtkAdjustment GtkAdjustment
;
1514 typedef struct _GtkList GtkList
;
1515 typedef struct _GtkToolbar GtkToolbar
;
1516 typedef struct _GtkTooltips GtkTooltips
;
1517 typedef struct _GtkNotebook GtkNotebook
;
1518 typedef struct _GtkNotebookPage GtkNotebookPage
;
1519 typedef struct _GtkAccelGroup GtkAccelGroup
;
1520 typedef struct _GtkItemFactory GtkItemFactory
;
1521 typedef struct _GtkSelectionData GtkSelectionData
;
1523 typedef GtkWidget
*WXWidget
;
1526 // This is required because of clashing macros in windows.h, which may be
1527 // included before or after wxWindows classes, and therefore must be
1528 // disabled here before any significant wxWindows headers are included.
1560 // ---------------------------------------------------------------------------
1561 // macro to define a class without copy ctor nor assignment operator
1562 // ---------------------------------------------------------------------------
1564 #define DECLARE_NO_COPY_CLASS(classname) \
1566 classname(const classname&); \
1567 classname& operator=(const classname&)