X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c5a2f2747825dc64950478738b113bc2e79f0f25..036971cc8c5282769c60b3c5afed80ccb50e8a14:/contrib/include/wx/deprecated/setup.h diff --git a/contrib/include/wx/deprecated/setup.h b/contrib/include/wx/deprecated/setup.h index 0bee55cc61..dfac4804c6 100644 --- a/contrib/include/wx/deprecated/setup.h +++ b/contrib/include/wx/deprecated/setup.h @@ -26,12 +26,21 @@ #define wxUSE_TIMEDATE 0 // wxProperty[Value/Form/List] classes, used by Dialog Editor +#ifdef wxUSE_PROPSHEET +#undef wxUSE_PROPSHEET +#endif #define wxUSE_PROPSHEET 1 // wxTreeLayout class +#ifdef wxUSE_TREELAYOUT +#undef wxUSE_TREELAYOUT +#endif #define wxUSE_TREELAYOUT 1 // use wxExpr (a.k.a. PrologIO) +#ifdef wxUSE_PROLOGIO +#undef wxUSE_PROLOGIO +#endif #define wxUSE_PROLOGIO 1 // Use .wxr resource mechanism (requires PrologIO library) @@ -40,5 +49,23 @@ #endif #define wxUSE_WX_RESOURCES 1 +// Use simple, generic toolbar +#ifdef wxUSE_TOOLBAR_SIMPLE +#undef wxUSE_TOOLBAR_SIMPLE +#endif +#define wxUSE_TOOLBAR_SIMPLE 1 + + +#ifdef WXMAKINGDLL_DEPRECATED + #define WXDLLIMPEXP_DEPRECATED WXEXPORT + #define WXDLLIMPEXP_DATA_DEPRECATED(type) WXEXPORT type +#elif defined(WXUSINGDLL) + #define WXDLLIMPEXP_DEPRECATED WXIMPORT + #define WXDLLIMPEXP_DATA_DEPRECATED(type) WXIMPORT type +#else // not making nor using DLL + #define WXDLLIMPEXP_DEPRECATED + #define WXDLLIMPEXP_DATA_DEPRECATED(type) type +#endif + #endif // _WX_DEPRECATED_SETUP_H_