X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3f659fd6b10a8a5c899eaa99adc76a55322b33fd..259d1674f293dcb7bbc0fa1c38392d899ce71bc0:/src/generic/statusbr.cpp diff --git a/src/generic/statusbr.cpp b/src/generic/statusbr.cpp index 8ea6f36bd7..00940d7e0e 100644 --- a/src/generic/statusbr.cpp +++ b/src/generic/statusbr.cpp @@ -6,7 +6,7 @@ // Created: 01/02/97 // RCS-ID: $Id$ // Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ @@ -31,18 +31,14 @@ #ifdef __WXMSW__ #include - -#ifdef DrawText -#undef DrawText -#endif - +#include "wx/msw/winundef.h" #endif #if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxStatusBar, wxWindow) BEGIN_EVENT_TABLE(wxStatusBar, wxWindow) - EVT_PAINT(wxStatusBar::OnPaint) + EVT_PAINT(wxStatusBar::OnPaint) EVT_SYS_COLOUR_CHANGED(wxStatusBar::OnSysColourChanged) END_EVENT_TABLE() #endif @@ -62,14 +58,14 @@ wxStatusBar::wxStatusBar(void) wxStatusBar::~wxStatusBar(void) { -#ifdef __WXMSW__ - SetFont(wxNullFont); -#endif - - if ( m_statusWidths ) - delete[] m_statusWidths; - if ( m_statusStrings ) - delete[] m_statusStrings; +# ifdef __WXMSW__ + SetFont(wxNullFont); +# endif // MSW + + if ( m_statusWidths ) + delete[] m_statusWidths; + if ( m_statusStrings ) + delete[] m_statusStrings; } bool wxStatusBar::Create(wxWindow *parent, wxWindowID id, @@ -84,10 +80,10 @@ bool wxStatusBar::Create(wxWindow *parent, wxWindowID id, m_borderX = wxTHICK_LINE_BORDER; m_borderY = wxTHICK_LINE_BORDER; - bool success = wxWindow::Create(parent, id, pos, size, style, name); + bool success = wxWindow::Create(parent, id, pos, size, style | wxTAB_TRAVERSAL, name); // Don't wish this to be found as a child - parent->GetChildren()->DeleteObject(this); + parent->GetChildren().DeleteObject(this); InitColours(); @@ -101,19 +97,19 @@ void wxStatusBar::SetFieldsCount(int number, const int widths[]) m_nFields = number; if ( m_statusWidths ) - delete[] m_statusWidths; + delete[] m_statusWidths; if ( m_statusStrings ) - delete[] m_statusStrings; + delete[] m_statusStrings; m_statusStrings = new wxString[number]; int i; for (i = 0; i < number; i++) - m_statusStrings[i] = ""; + m_statusStrings[i] = ""; - if ( widths ) - SetStatusWidths(number, widths); + if ( widths ) + SetStatusWidths(number, widths); } void wxStatusBar::SetStatusText(const wxString& text, int number) @@ -172,19 +168,23 @@ void wxStatusBar::OnPaint(wxPaintEvent& WXUNUSED(event) ) wxPaintDC dc(this); int i; - if ( GetFont() ) - dc.SetFont(*GetFont()); + if ( GetFont().Ok() ) + dc.SetFont(GetFont()); dc.SetBackgroundMode(wxTRANSPARENT); for ( i = 0; i < m_nFields; i ++ ) - DrawField(dc, i); + DrawField(dc, i); + +# ifdef __WXMSW__ + dc.SetFont(wxNullFont); +# endif // MSW } void wxStatusBar::DrawFieldText(wxDC& dc, int i) { int leftMargin = 2; - wxRectangle rect; + wxRect rect; GetFieldRect(i, rect); wxString text(GetStatusText(i)); @@ -195,6 +195,11 @@ void wxStatusBar::DrawFieldText(wxDC& dc, int i) int xpos = rect.x + leftMargin; int ypos = (int) (((rect.height - y) / 2 ) + rect.y + 0.5) ; + +#ifdef __WXGTK__ + xpos++; + ypos++; +#endif dc.SetClippingRegion(rect.x, rect.y, rect.width, rect.height); @@ -205,7 +210,7 @@ void wxStatusBar::DrawFieldText(wxDC& dc, int i) void wxStatusBar::DrawField(wxDC& dc, int i) { - wxRectangle rect; + wxRect rect; GetFieldRect(i, rect); // Draw border @@ -214,27 +219,27 @@ void wxStatusBar::DrawField(wxDC& dc, int i) // Inside this, left and top sides - dark grey. Bottom and right - // white. - dc.SetPen(m_hilightPen); + dc.SetPen(m_hilightPen); // Right and bottom white lines dc.DrawLine(rect.x + rect.width, rect.y, rect.x + rect.width, rect.y + rect.height); dc.DrawLine(rect.x + rect.width, rect.y + rect.height, - rect.x, rect.y + rect.height); + rect.x, rect.y + rect.height); - dc.SetPen(m_mediumShadowPen); + dc.SetPen(m_mediumShadowPen); // Left and top grey lines dc.DrawLine(rect.x, rect.y + rect.height, - rect.x, rect.y); + rect.x, rect.y); dc.DrawLine(rect.x, rect.y, - rect.x + rect.width, rect.y); + rect.x + rect.width, rect.y); - DrawFieldText(dc, i); + DrawFieldText(dc, i); } // Get the position and size of the field's internal bounding rectangle -bool wxStatusBar::GetFieldRect(int n, wxRectangle& rect) const +bool wxStatusBar::GetFieldRect(int n, wxRect& rect) const { if ((n < 0) || (n >= m_nFields)) return FALSE; @@ -267,9 +272,9 @@ bool wxStatusBar::GetFieldRect(int n, wxRectangle& rect) const for (i = 0; i < m_nFields; i++) { fieldWidth = (int)(width/m_nFields); - fieldPosition = i*fieldWidth; - if ( i == n ) - break; + fieldPosition = i*fieldWidth; + if ( i == n ) + break; } } else // no_same_width @@ -283,24 +288,24 @@ bool wxStatusBar::GetFieldRect(int n, wxRectangle& rect) const } for (i = 0; i < m_nFields; i++) { - fieldWidth = tempwidth[i]; - fieldPosition = temppos; + fieldWidth = tempwidth[i]; + fieldPosition = temppos; - temppos += tempwidth[i]; + temppos += tempwidth[i]; - if ( i == n ) - break; + if ( i == n ) + break; } delete [] tempwidth; } rect.x = fieldPosition + wxTHICK_LINE_BORDER; - rect.y = wxTHICK_LINE_BORDER; + rect.y = wxTHICK_LINE_BORDER; - rect.width = fieldWidth - 2 * wxTHICK_LINE_BORDER ; - rect.height = height - 2 * wxTHICK_LINE_BORDER ; + rect.width = fieldWidth - 2 * wxTHICK_LINE_BORDER ; + rect.height = height - 2 * wxTHICK_LINE_BORDER ; - return TRUE; + return TRUE; } // Initialize colours @@ -318,7 +323,7 @@ void wxStatusBar::InitColours(void) m_hilightPen = wxPen("WHITE", 1, wxSOLID); #endif - m_defaultStatusBarFont = wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT); + m_defaultStatusBarFont = wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT); SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE)); }