X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..57f2a6529245d54274a4c56469f1828a6f8fd497:/src/univ/statusbr.cpp diff --git a/src/univ/statusbr.cpp b/src/univ/statusbr.cpp index 6773264e02..8c817a5ab3 100644 --- a/src/univ/statusbr.cpp +++ b/src/univ/statusbr.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: univ/statusbr.cpp +// Name: src/univ/statusbr.cpp // Purpose: wxStatusBar implementation // Author: Vadim Zeitlin // Modified by: @@ -25,14 +25,14 @@ #if wxUSE_STATUSBAR +#include "wx/statusbr.h" + #ifndef WX_PRECOMP #include "wx/settings.h" #include "wx/dcclient.h" + #include "wx/toplevel.h" #endif -#include "wx/statusbr.h" -#include "wx/toplevel.h" - #include "wx/univ/renderer.h" // ============================================================================ @@ -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,13 +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 -