dc.GetTextExtent(str, &w, &h);
*pwidth = w;
*pheight = h;
-
- // add space at the end of the menu for the submenu expansion arrow
- // this will also allow offsetting the accel string from the right edge
- *pwidth += GetMarginWidth() + 16;
}
else // don't draw the text, just the bitmap (if any)
{
if ( *pheight < adjustedHeight )
*pheight = adjustedHeight;
- const size_t widthBmp = m_bmpChecked.GetWidth();
+ const int widthBmp = m_bmpChecked.GetWidth();
if ( IsOwnerDrawn() )
{
// widen the margin to fit the bitmap if necessary
- if ((size_t)GetMarginWidth() < widthBmp)
+ if ( GetMarginWidth() < widthBmp )
SetMarginWidth(widthBmp);
}
else // we must allocate enough space for the bitmap
// add a 4-pixel separator, otherwise menus look cluttered
*pwidth += 4;
+ // notice that this adjustment must be done after (possibly) changing the
+ // margin width above
+ if ( IsOwnerDrawn() )
+ {
+ // add space at the end of the menu for the submenu expansion arrow
+ // this will also allow offsetting the accel string from the right edge
+ *pwidth += GetMarginWidth() + 16;
+ }
+
// make sure that this item is at least as tall as the system menu height
const size_t heightStd = wxMSWSystemMenuFontModule::GetSystemMenuHeight();
if ( *pheight < heightStd )
// draw the item
bool wxOwnerDrawn::OnDrawItem(wxDC& dc,
const wxRect& rc,
- wxODAction act,
+ wxODAction,
wxODStatus st)
{
- // we do nothing on focus change
- if ( act == wxODFocusChanged )
- return true;
-
-
// this flag determines whether or not an edge will
// be drawn around the bitmap. In most "windows classic"
// applications, a 1-pixel highlight edge is drawn around
AutoHBRUSH hbr(colBack);
SelectInHDC selBrush(hdc, hbr);
- RECT rectFill = { rc.GetLeft(), rc.GetTop(),
- rc.GetRight() + 1, rc.GetBottom() + 1 };
+ RECT rectFill;
+ wxCopyRectToRECT(rc, rectFill);
if ( (st & wxODSelected) && m_bmpChecked.Ok() && draw_bitmap_edge )
{
(LPARAM)strMenuText.wx_str(),
strMenuText.length(),
xText,
- rc.y + (rc.GetHeight() - sizeRect.cy + 1)/2, // centre vertically
+ rc.y + (rc.height - sizeRect.cy) / 2, // centre vertically
rc.GetWidth() - margin,
sizeRect.cy,
flags
::DrawState(hdc, NULL, NULL,
(LPARAM)m_strAccel.wx_str(),
m_strAccel.length(),
- rc.GetWidth()-16-accel_width, rc.y+(int) ((rc.GetHeight()-sizeRect.cy)/2.0),
+ rc.width - 16 - accel_width, rc.y + (rc.height - sizeRect.cy) / 2,
0, 0,
DST_TEXT |
(((st & wxODDisabled) && !(st & wxODSelected)) ? DSS_DISABLED : 0));
break;
default:
- wxFAIL_MSG( _T("DrawStateBitmap: unknown wxDSBStates value") );
+ wxFAIL_MSG( wxT("DrawStateBitmap: unknown wxDSBStates value") );
result = FALSE;
}