redraw changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19156 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -94,22 +94,15 @@ void wxStatusBarMac::SetStatusText(const wxString& text, int number)
|
|||||||
m_statusStrings[number] = text;
|
m_statusStrings[number] = text;
|
||||||
wxRect rect;
|
wxRect rect;
|
||||||
GetFieldRect(number, rect);
|
GetFieldRect(number, rect);
|
||||||
|
rect.y=0;
|
||||||
|
rect.height = m_height ;
|
||||||
Refresh( TRUE , &rect ) ;
|
Refresh( TRUE , &rect ) ;
|
||||||
/*
|
|
||||||
// TODO make clear work again also when using themes
|
|
||||||
wxClientDC dc(this);
|
|
||||||
dc.SetBackground( wxBrush(GetBackgroundColour(), wxSOLID) );
|
|
||||||
dc.SetClippingRegion( rect.x+1, rect.y+1, rect.width-1, rect.height-1 );
|
|
||||||
dc.Clear();
|
|
||||||
dc.DestroyClippingRegion();
|
|
||||||
DrawFieldText( dc, number );
|
|
||||||
*/
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxStatusBarMac::OnPaint(wxPaintEvent& WXUNUSED(event) )
|
void wxStatusBarMac::OnPaint(wxPaintEvent& WXUNUSED(event) )
|
||||||
{
|
{
|
||||||
wxPaintDC dc(this);
|
wxPaintDC dc(this);
|
||||||
|
dc.Clear() ;
|
||||||
|
|
||||||
if ( IsWindowHilited( MAC_WXHWND( MacGetRootWindow() ) ) )
|
if ( IsWindowHilited( MAC_WXHWND( MacGetRootWindow() ) ) )
|
||||||
{
|
{
|
||||||
@@ -137,10 +130,6 @@ void wxStatusBarMac::OnPaint(wxPaintEvent& WXUNUSED(event) )
|
|||||||
|
|
||||||
for ( i = 0; i < m_nFields; i ++ )
|
for ( i = 0; i < m_nFields; i ++ )
|
||||||
DrawField(dc, i);
|
DrawField(dc, i);
|
||||||
|
|
||||||
# ifdef __WXMSW__
|
|
||||||
dc.SetFont(wxNullFont);
|
|
||||||
# endif // MSW
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxStatusBarMac::MacSuperEnabled( bool enabled )
|
void wxStatusBarMac::MacSuperEnabled( bool enabled )
|
||||||
|
@@ -94,22 +94,15 @@ void wxStatusBarMac::SetStatusText(const wxString& text, int number)
|
|||||||
m_statusStrings[number] = text;
|
m_statusStrings[number] = text;
|
||||||
wxRect rect;
|
wxRect rect;
|
||||||
GetFieldRect(number, rect);
|
GetFieldRect(number, rect);
|
||||||
|
rect.y=0;
|
||||||
|
rect.height = m_height ;
|
||||||
Refresh( TRUE , &rect ) ;
|
Refresh( TRUE , &rect ) ;
|
||||||
/*
|
|
||||||
// TODO make clear work again also when using themes
|
|
||||||
wxClientDC dc(this);
|
|
||||||
dc.SetBackground( wxBrush(GetBackgroundColour(), wxSOLID) );
|
|
||||||
dc.SetClippingRegion( rect.x+1, rect.y+1, rect.width-1, rect.height-1 );
|
|
||||||
dc.Clear();
|
|
||||||
dc.DestroyClippingRegion();
|
|
||||||
DrawFieldText( dc, number );
|
|
||||||
*/
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxStatusBarMac::OnPaint(wxPaintEvent& WXUNUSED(event) )
|
void wxStatusBarMac::OnPaint(wxPaintEvent& WXUNUSED(event) )
|
||||||
{
|
{
|
||||||
wxPaintDC dc(this);
|
wxPaintDC dc(this);
|
||||||
|
dc.Clear() ;
|
||||||
|
|
||||||
if ( IsWindowHilited( MAC_WXHWND( MacGetRootWindow() ) ) )
|
if ( IsWindowHilited( MAC_WXHWND( MacGetRootWindow() ) ) )
|
||||||
{
|
{
|
||||||
@@ -137,10 +130,6 @@ void wxStatusBarMac::OnPaint(wxPaintEvent& WXUNUSED(event) )
|
|||||||
|
|
||||||
for ( i = 0; i < m_nFields; i ++ )
|
for ( i = 0; i < m_nFields; i ++ )
|
||||||
DrawField(dc, i);
|
DrawField(dc, i);
|
||||||
|
|
||||||
# ifdef __WXMSW__
|
|
||||||
dc.SetFont(wxNullFont);
|
|
||||||
# endif // MSW
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxStatusBarMac::MacSuperEnabled( bool enabled )
|
void wxStatusBarMac::MacSuperEnabled( bool enabled )
|
||||||
|
Reference in New Issue
Block a user