X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7e2c43b8551c394d790e416ae52a4476c759683e..dff4a8684dc560d4f4fa28f9ae763e331fffd12c:/include/wx/defs.h diff --git a/include/wx/defs.h b/include/wx/defs.h index 9bdeb7b0f6..a61061304a 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -19,6 +19,14 @@ #include #include "wx/setup.h" + +#ifdef PACKAGE + #undef PACKAGE +#endif +#ifdef VERSION + #undef VERSION +#endif + #include "wx/version.h" // ---------------------------------------------------------------------------- @@ -28,7 +36,8 @@ // OS #if defined(__unix) || defined(__unix__) || defined(____SVR4____) || \ defined(__LINUX__) || defined(__sgi ) || \ - defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) + defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \ + defined(__EMX__) #ifndef __UNIX__ #define __UNIX__ @@ -83,6 +92,11 @@ # pragma warning(disable:4100) // unreferenced formal parameter # pragma warning(disable:4511) // copy ctor couldn't be generated # pragma warning(disable:4512) // operator=() couldn't be generated +#ifndef WIN32 +# pragma warning(disable:4134) // conversion between pointers to members of same class +# pragma warning(disable:4135) // conversion between different integral types +# pragma warning(disable:4769) // assignment of near pointer to long integer +#endif #endif // __VISUALC__ // suppress some Salford C++ warnings @@ -397,18 +411,10 @@ typedef int unsigned wxUint32; #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXOS2__) #if defined(SIZEOF_INT) - #if (SIZEOF_SHORT == 2) typedef short signed wxInt16; typedef short unsigned wxUint16; - #else - #error "FIXME" - #endif - #if (SIZEOF_INT == 4) typedef int signed wxInt32; typedef int unsigned wxUint32; - #else - #error "FIXME" - #endif #else typedef short signed wxInt16; typedef short unsigned wxUint16; @@ -604,7 +610,13 @@ enum wxOrientation */ // use native docking #define wxMB_DOCKABLE 0x0001 +// make all menus tearoff menus, even if not set on per-menu basis +#define wxMB_TEAROFF 0x0002 +/* + * wxMenu style flags + */ +#define wxMENU_TEAROFF 0x0001 /* * Apply to all panel items @@ -802,6 +814,9 @@ enum wxOrientation #define wxPD_CAN_ABORT 0x0001 #define wxPD_APP_MODAL 0x0002 #define wxPD_AUTO_HIDE 0x0004 +#define wxPD_ELAPSED_TIME 0x0008 +#define wxPD_ESTIMATED_TIME 0x0010 +#define wxPD_REMAINING_TIME 0x0020 /* * GDI descriptions @@ -904,15 +919,16 @@ typedef enum #define wxCANCEL 0x0004 #define wxYES 0x0008 #define wxNO 0x0010 - -#define wxICON_EXCLAMATION 0x0020 -#define wxICON_HAND 0x0040 -#define wxICON_QUESTION 0x0080 -#define wxICON_INFORMATION 0x0100 +#define wxNO_DEFAULT 0x0020 +#define wxYES_DEFAULT 0x0000 // has no effect +#define wxICON_EXCLAMATION 0x0040 +#define wxICON_HAND 0x0080 +#define wxICON_QUESTION 0x0100 +#define wxICON_INFORMATION 0x0200 #define wxICON_STOP wxICON_HAND #define wxICON_ASTERISK wxICON_INFORMATION -#define wxICON_MASK (0x0020|0x0040|0x0080|0x0100) +#define wxICON_MASK (0x0040|0x0080|0x0100|0x0200) #define wxCENTRE 0x0200 #define wxCENTER wxCENTRE @@ -1326,6 +1342,9 @@ typedef void* WXFont; typedef void* WXImage; typedef void* WXCursor; typedef void* WXFontList; + +typedef unsigned long Atom; /* this might fail on a few architectures */ + #endif // Motif #ifdef __WXGTK__