/////////////////////////////////////////////////////////////////////////////
-// Name: univ/statusbr.cpp
+// Name: src/univ/statusbr.cpp
// Purpose: wxStatusBar implementation
// Author: Vadim Zeitlin
// Modified by:
// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "univstatusbr.h"
-#endif
-
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#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"
// ============================================================================
wxString wxStatusBarUniv::GetStatusText(int number) const
{
- wxCHECK_MSG( number >= 0 && number < m_nFields, _T(""),
+ wxCHECK_MSG( number >= 0 && number < m_nFields, wxEmptyString,
_T("invalid status bar field index") );
return m_statusText[number];
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
}
#endif // wxUSE_STATUSBAR
-