restored "#ifdef __WXMSW__" around SetFont(wxNullFont) - this leads to SIGSEGV
under wxGTK! git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@772 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
// Created: 01/02/97
|
// Created: 01/02/97
|
||||||
// RCS-ID: $Id$
|
// RCS-ID: $Id$
|
||||||
// Copyright: (c) Julian Smart and Markus Holzem
|
// Copyright: (c) Julian Smart and Markus Holzem
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#ifdef __GNUG__
|
#ifdef __GNUG__
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
IMPLEMENT_DYNAMIC_CLASS(wxStatusBar, wxWindow)
|
IMPLEMENT_DYNAMIC_CLASS(wxStatusBar, wxWindow)
|
||||||
|
|
||||||
BEGIN_EVENT_TABLE(wxStatusBar, wxWindow)
|
BEGIN_EVENT_TABLE(wxStatusBar, wxWindow)
|
||||||
EVT_PAINT(wxStatusBar::OnPaint)
|
EVT_PAINT(wxStatusBar::OnPaint)
|
||||||
EVT_SYS_COLOUR_CHANGED(wxStatusBar::OnSysColourChanged)
|
EVT_SYS_COLOUR_CHANGED(wxStatusBar::OnSysColourChanged)
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
#endif
|
#endif
|
||||||
@@ -62,14 +62,14 @@ wxStatusBar::wxStatusBar(void)
|
|||||||
|
|
||||||
wxStatusBar::~wxStatusBar(void)
|
wxStatusBar::~wxStatusBar(void)
|
||||||
{
|
{
|
||||||
// #ifdef __WXMSW__
|
# ifdef __WXMSW__
|
||||||
SetFont(wxNullFont);
|
SetFont(wxNullFont);
|
||||||
// #endif
|
# endif // MSW
|
||||||
|
|
||||||
if ( m_statusWidths )
|
if ( m_statusWidths )
|
||||||
delete[] m_statusWidths;
|
delete[] m_statusWidths;
|
||||||
if ( m_statusStrings )
|
if ( m_statusStrings )
|
||||||
delete[] m_statusStrings;
|
delete[] m_statusStrings;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxStatusBar::Create(wxWindow *parent, wxWindowID id,
|
bool wxStatusBar::Create(wxWindow *parent, wxWindowID id,
|
||||||
@@ -101,19 +101,19 @@ void wxStatusBar::SetFieldsCount(int number, const int widths[])
|
|||||||
m_nFields = number;
|
m_nFields = number;
|
||||||
|
|
||||||
if ( m_statusWidths )
|
if ( m_statusWidths )
|
||||||
delete[] m_statusWidths;
|
delete[] m_statusWidths;
|
||||||
|
|
||||||
if ( m_statusStrings )
|
if ( m_statusStrings )
|
||||||
delete[] m_statusStrings;
|
delete[] m_statusStrings;
|
||||||
|
|
||||||
m_statusStrings = new wxString[number];
|
m_statusStrings = new wxString[number];
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < number; i++)
|
for (i = 0; i < number; i++)
|
||||||
m_statusStrings[i] = "";
|
m_statusStrings[i] = "";
|
||||||
|
|
||||||
if ( widths )
|
if ( widths )
|
||||||
SetStatusWidths(number, widths);
|
SetStatusWidths(number, widths);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxStatusBar::SetStatusText(const wxString& text, int number)
|
void wxStatusBar::SetStatusText(const wxString& text, int number)
|
||||||
@@ -177,9 +177,11 @@ void wxStatusBar::OnPaint(wxPaintEvent& WXUNUSED(event) )
|
|||||||
dc.SetBackgroundMode(wxTRANSPARENT);
|
dc.SetBackgroundMode(wxTRANSPARENT);
|
||||||
|
|
||||||
for ( i = 0; i < m_nFields; i ++ )
|
for ( i = 0; i < m_nFields; i ++ )
|
||||||
DrawField(dc, i);
|
DrawField(dc, i);
|
||||||
|
|
||||||
dc.SetFont(wxNullFont);
|
# ifdef __WXMSW__
|
||||||
|
dc.SetFont(wxNullFont);
|
||||||
|
# endif // MSW
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxStatusBar::DrawFieldText(wxDC& dc, int i)
|
void wxStatusBar::DrawFieldText(wxDC& dc, int i)
|
||||||
@@ -216,23 +218,23 @@ void wxStatusBar::DrawField(wxDC& dc, int i)
|
|||||||
// Inside this, left and top sides - dark grey. Bottom and right -
|
// Inside this, left and top sides - dark grey. Bottom and right -
|
||||||
// white.
|
// white.
|
||||||
|
|
||||||
dc.SetPen(m_hilightPen);
|
dc.SetPen(m_hilightPen);
|
||||||
|
|
||||||
// Right and bottom white lines
|
// Right and bottom white lines
|
||||||
dc.DrawLine(rect.x + rect.width, rect.y,
|
dc.DrawLine(rect.x + rect.width, rect.y,
|
||||||
rect.x + rect.width, rect.y + rect.height);
|
rect.x + rect.width, rect.y + rect.height);
|
||||||
dc.DrawLine(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
|
// Left and top grey lines
|
||||||
dc.DrawLine(rect.x, rect.y + rect.height,
|
dc.DrawLine(rect.x, rect.y + rect.height,
|
||||||
rect.x, rect.y);
|
rect.x, rect.y);
|
||||||
dc.DrawLine(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
|
// Get the position and size of the field's internal bounding rectangle
|
||||||
@@ -269,9 +271,9 @@ bool wxStatusBar::GetFieldRect(int n, wxRectangle& rect) const
|
|||||||
for (i = 0; i < m_nFields; i++)
|
for (i = 0; i < m_nFields; i++)
|
||||||
{
|
{
|
||||||
fieldWidth = (int)(width/m_nFields);
|
fieldWidth = (int)(width/m_nFields);
|
||||||
fieldPosition = i*fieldWidth;
|
fieldPosition = i*fieldWidth;
|
||||||
if ( i == n )
|
if ( i == n )
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else // no_same_width
|
else // no_same_width
|
||||||
@@ -285,24 +287,24 @@ bool wxStatusBar::GetFieldRect(int n, wxRectangle& rect) const
|
|||||||
}
|
}
|
||||||
for (i = 0; i < m_nFields; i++)
|
for (i = 0; i < m_nFields; i++)
|
||||||
{
|
{
|
||||||
fieldWidth = tempwidth[i];
|
fieldWidth = tempwidth[i];
|
||||||
fieldPosition = temppos;
|
fieldPosition = temppos;
|
||||||
|
|
||||||
temppos += tempwidth[i];
|
temppos += tempwidth[i];
|
||||||
|
|
||||||
if ( i == n )
|
if ( i == n )
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
delete [] tempwidth;
|
delete [] tempwidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
rect.x = fieldPosition + wxTHICK_LINE_BORDER;
|
rect.x = fieldPosition + wxTHICK_LINE_BORDER;
|
||||||
rect.y = wxTHICK_LINE_BORDER;
|
rect.y = wxTHICK_LINE_BORDER;
|
||||||
|
|
||||||
rect.width = fieldWidth - 2 * wxTHICK_LINE_BORDER ;
|
rect.width = fieldWidth - 2 * wxTHICK_LINE_BORDER ;
|
||||||
rect.height = height - 2 * wxTHICK_LINE_BORDER ;
|
rect.height = height - 2 * wxTHICK_LINE_BORDER ;
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize colours
|
// Initialize colours
|
||||||
|
Reference in New Issue
Block a user