X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1832043f93af07af3f4891d9a95c4d4e1f70eec5..a766986f6d443ba1d50e3af25f3306fa56e4518e:/src/univ/statusbr.cpp diff --git a/src/univ/statusbr.cpp b/src/univ/statusbr.cpp index 07d4b25a75..8c817a5ab3 100644 --- a/src/univ/statusbr.cpp +++ b/src/univ/statusbr.cpp @@ -86,7 +86,8 @@ wxRect wxStatusBarUniv::GetTotalFieldRect(wxCoord *borderBetweenFields) // 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 @@ -109,7 +110,8 @@ void wxStatusBarUniv::DoDraw(wxControlRenderer *renderer) // 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; @@ -129,11 +131,7 @@ void wxStatusBarUniv::DoDraw(wxControlRenderer *renderer) 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; @@ -289,10 +287,7 @@ wxRect wxStatusBarUniv::DoGetFieldRect(int n) const wxCoord wxStatusBarUniv::GetHeight() const { - wxClientDC dc(wxConstCast(this, wxStatusBarUniv)); - dc.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); - - return dc.GetCharHeight() + 2*GetBorderY(); + return GetCharHeight() + 2*GetBorderY(); } wxSize wxStatusBarUniv::DoGetBestSize() const @@ -318,12 +313,14 @@ void wxStatusBarUniv::SetMinHeight(int WXUNUSED(height)) 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