// no, don't do this - the borders are meant to be inside this rect
// wxSize sizeBorders =
- m_renderer->GetStatusBarBorders(borderBetweenFields);
+ if ( borderBetweenFields )
+ *borderBetweenFields = m_renderer->GetStatusBarBorderBetweenFields();
//rect.Deflate(sizeBorders.x, sizeBorders.y);
// recalc the field widths if needed
// prepare the DC
wxDC& dc = renderer->GetDC();
- dc.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
+ dc.SetFont(GetFont());
+ dc.SetTextForeground(GetForegroundColour());
// do draw the fields
int flags = IsEnabled() ? 0 : (int)wxCONTROL_DISABLED;
GetParent()->HasFlag(wxRESIZE_BORDER) &&
parentTLW && !parentTLW->IsMaximized() )
{
- // NB: we use wxCONTROL_ISDEFAULT for this because it doesn't
- // have any meaning for the status bar otherwise anyhow
- // (it's still ugly, of course, but there are too few flags
- // to squander them for things like this)
- flags |= wxCONTROL_ISDEFAULT;
+ flags |= wxCONTROL_SIZEGRIP;
}
int style;
int wxStatusBarUniv::GetBorderX() const
{
- return m_renderer->GetStatusBarBorders(NULL).x;
+ return m_renderer->GetStatusBarBorders().x +
+ m_renderer->GetStatusBarFieldMargins().x;
}
int wxStatusBarUniv::GetBorderY() const
{
- return m_renderer->GetStatusBarBorders(NULL).y;
+ return m_renderer->GetStatusBarBorders().y +
+ m_renderer->GetStatusBarFieldMargins().y;
}
#endif // wxUSE_STATUSBAR