git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12269
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
m_statusStrings[number] = text;
m_statusStrings[number] = text;
+ wxRect rect;
+ GetFieldRect(number, rect);
+ wxClientDC dc(this);
+
+ dc.SetBackground( wxBrush(GetBackgroundColour(), wxSOLID) );
+ dc.SetClippingRegion( rect.x+1, rect.y+1, rect.width-1, rect.height-1 );
+ dc.Clear();
+ dc.DestroyClippingRegion();
+
+ DrawFieldText( dc, number );
}
wxString wxStatusBarGeneric::GetStatusText(int n) const
}
wxString wxStatusBarGeneric::GetStatusText(int n) const
{
// not an error, see the comment above
m_statusWidths = (int *)NULL;
{
// not an error, see the comment above
m_statusWidths = (int *)NULL;
{
m_statusWidths[i] = widths_field[i];
}
{
m_statusWidths[i] = widths_field[i];
}
}
void wxStatusBarGeneric::OnPaint(wxPaintEvent& WXUNUSED(event) )
}
void wxStatusBarGeneric::OnPaint(wxPaintEvent& WXUNUSED(event) )