git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58788
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
long style = wxST_SIZEGRIP,
const wxString& name = wxStatusBarNameStr)
{
long style = wxST_SIZEGRIP,
const wxString& name = wxStatusBarNameStr)
{
(void)Create(parent, id, style, name);
}
(void)Create(parent, id, style, name);
}
SetFieldsCount(1);
SubclassWin(m_hWnd);
SetFieldsCount(1);
SubclassWin(m_hWnd);
+
+ // cache the DC instance used by UpdateFieldText:
+ // NOTE: create the DC before calling InheritAttributes() since
+ // it may result in a call to our SetFont()
+ m_pDC = new wxClientDC(this);
+
InheritAttributes();
SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR));
InheritAttributes();
SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR));
// work correctly, we need to wait until we return to the main loop
PostSizeEventToParent();
// work correctly, we need to wait until we return to the main loop
PostSizeEventToParent();
- // cache the DC instance used by UpdateFieldText
- m_pDC = new wxClientDC(this);
-
// frame is not - otherwise statusbar leaves a hole in the place it used to
// occupy
PostSizeEventToParent();
// frame is not - otherwise statusbar leaves a hole in the place it used to
// occupy
PostSizeEventToParent();
}
bool wxStatusBar::SetFont(const wxFont& font)
}
bool wxStatusBar::SetFont(const wxFont& font)
if (!wxWindow::SetFont(font))
return false;
if (!wxWindow::SetFont(font))
return false;
+ if (m_pDC) m_pDC->SetFont(font);