+#if wxUSE_ALL_THEMES
+ #undef wxUSE_THEME_WIN32
+ #define wxUSE_THEME_WIN32 1
+ #undef wxUSE_THEME_GTK
+ #define wxUSE_THEME_GTK 1
+ #undef wxUSE_THEME_MONO
+ #define wxUSE_THEME_MONO 1
+ #undef wxUSE_THEME_METAL
+ #define wxUSE_THEME_METAL 1
+#endif // wxUSE_ALL_THEMES
+
+// determine the default theme to use:
+#if defined(__WXGTK__) && wxUSE_THEME_GTK
+ #define wxUNIV_DEFAULT_THEME gtk
+#elif defined(__WXDFB__) && wxUSE_THEME_MONO
+ // use mono theme for DirectFB port because it cannot correctly
+ // render neither win32 nor gtk themes yet:
+ #define wxUNIV_DEFAULT_THEME mono
+#endif
+
+// if no theme was picked, get any theme compiled in (sorted by
+// quality/completeness of the theme):
+#ifndef wxUNIV_DEFAULT_THEME
+ #if wxUSE_THEME_WIN32
+ #define wxUNIV_DEFAULT_THEME win32
+ #elif wxUSE_THEME_GTK
+ #define wxUNIV_DEFAULT_THEME gtk
+ #elif wxUSE_THEME_MONO
+ #define wxUNIV_DEFAULT_THEME mono
+ #endif
+ // If nothing matches, no themes are compiled and the app must provide
+ // some theme itself
+ // (note that wxUSE_THEME_METAL depends on win32 theme, so we don't have to
+ // try it)
+ //
+#endif // !wxUNIV_DEFAULT_THEME
+
+#endif // _WX_UNIV_THEME_H_