#include "wx/menu.h"
#include "wx/utils.h"
#include "wx/settings.h"
+ #include "wx/menuitem.h"
#endif
#include "wx/ownerdrw.h"
-#include "wx/menuitem.h"
-
// ============================================================================
// implementation of wxOwnerDrawn class
//
if (eStatus & wxODSelected)
{
- wxColour vCol2(wxT("WHITE"));
- vColBack.Set( (unsigned char)0
- ,(unsigned char)0
- ,(unsigned char)160
- ); // no dark blue in color table
- vColText = vCol2;
+ vRef = (ULONG)::WinQuerySysColor( HWND_DESKTOP
+ ,SYSCLR_MENUHILITEBGND
+ ,0L
+ );
+ vColBack.Set( GetRValue(vRef)
+ ,GetGValue(vRef)
+ ,GetBValue(vRef)
+ );
+ vRef = (ULONG)::WinQuerySysColor( HWND_DESKTOP
+ ,SYSCLR_MENUHILITE
+ ,0L
+ );
+ vColText.Set( GetRValue(vRef)
+ ,GetGValue(vRef)
+ ,GetBValue(vRef)
+ );
}
else if (eStatus & wxODDisabled)
{
//
// Deal with the tab, extracting the Accel text
//
- nIndex = sFullString.Find(sTgt.c_str());
+ nIndex = sFullString.Find(sTgt);
if (nIndex != -1)
{
bFoundAccel = true;
// Deal with the mnemonic character
//
sTgt = wxT("~");
- nIndex = sFullString.Find(sTgt.c_str());
+ nIndex = sFullString.Find(sTgt);
if (nIndex != -1)
{
wxString sTmp = sFullString;
::GpiCharStringAt( rDC.GetHPS()
,&vPntStart
,sFullString.length()
- ,(PCH)sFullString.c_str()
+ ,sFullString.char_str()
);
if (bFoundMnemonic)
{
::GpiCharStringAt( rDC.GetHPS()
,&vPntStart
,sAccel.length()
- ,(PCH)sAccel.c_str()
+ ,sAccel.char_str()
);
}