git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45853
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if ( font.Ok() )
{
dc.SetFont(font);
if ( font.Ok() )
{
dc.SetFont(font);
- // Calculate vertical centre
- long w = 0, h = 0;
- dc.GetTextExtent( wxT("X"), &w, &h);
dc.SetTextForeground(GetForegroundColour());
dc.SetClippingRegion(2, 2, size.x-4, size.y-4);
dc.DrawText(_("ABCDEFGabcdefg12345"),
dc.SetTextForeground(GetForegroundColour());
dc.SetClippingRegion(2, 2, size.x-4, size.y-4);
dc.DrawText(_("ABCDEFGabcdefg12345"),
+ 10, (size.y - dc.GetTextExtent(wxT("X")).y)/2);
dc.DestroyClippingRegion();
}
}
dc.DestroyClippingRegion();
}
}