#endif
#ifndef WX_PRECOMP
+ #include "wx/utils.h"
#include "wx/gdicmn.h"
#endif
#include "wx/msw/private.h"
+#ifndef SPI_GETFLATMENU
+#define SPI_GETFLATMENU 0x1022
+#endif
+
#include "wx/module.h"
#include "wx/fontutil.h"
{
// 5.1 is Windows XP
useDefault = FALSE;
- }
+ // Determine if we are using flat menus, only then allow wxSYS_COLOUR_MENUBAR
+ if ( index == wxSYS_COLOUR_MENUBAR )
+ {
+ BOOL isFlat ;
+ if ( SystemParametersInfo( SPI_GETFLATMENU , 0 ,&isFlat, 0 ) )
+ {
+ if ( !isFlat )
+ index = wxSYS_COLOUR_MENU ;
+ }
+ }
+ }
#else
useDefault = TRUE;
#endif // __WIN32__
}
else // replace with default colour
{
- int n = index - wxSYS_COLOUR_BTNHIGHLIGHT;
+ unsigned int n = index - wxSYS_COLOUR_BTNHIGHLIGHT;
wxASSERT_MSG( n < WXSIZEOF(s_defaultSysColors),
_T("forgot tp update the default colours array") );
// TODO: probably use wxUniv themes functionality
return 0;
#else // !__WXMICROWIN__
- wxCHECK_MSG( index < WXSIZEOF(gs_metricsMap), 0, _T("invalid metric") );
+ wxCHECK_MSG( index > 0 && (size_t)index < WXSIZEOF(gs_metricsMap), 0,
+ _T("invalid metric") );
int indexMSW = gs_metricsMap[index];
if ( indexMSW == -1 )