corrected the invalidation when resizing windows (was only invalidating the client area)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2001-02-27 23:21:48 +00:00
parent b89dac7816
commit 19ff2a7bd5
2 changed files with 18 additions and 14 deletions

View File

@@ -564,15 +564,14 @@ void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
else else
{ {
// erase former position // erase former position
{ wxMacDrawingHelper focus( this ) ;
wxMacDrawingClientHelper focus( this ) ;
if ( focus.Ok() ) if ( focus.Ok() )
{ {
Rect clientrect = { 0 , 0 , m_height , m_width } ; Rect clientrect = { 0 , 0 , m_height , m_width } ;
ClipRect( &clientrect ) ;
InvalWindowRect( GetMacRootWindow() , &clientrect ) ; InvalWindowRect( GetMacRootWindow() , &clientrect ) ;
} }
} }
}
m_x = actualX ; m_x = actualX ;
m_y = actualY ; m_y = actualY ;
m_width = actualWidth ; m_width = actualWidth ;
@@ -597,14 +596,17 @@ void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
else else
{ {
// erase new position // erase new position
{ {
wxMacDrawingClientHelper focus( this ) ; wxMacDrawingHelper focus( this ) ;
if ( focus.Ok() ) if ( focus.Ok() )
{ {
Rect clientrect = { 0 , 0 , m_height , m_width } ; Rect clientrect = { 0 , 0 , m_height , m_width } ;
ClipRect( &clientrect ) ;
InvalWindowRect( GetMacRootWindow() , &clientrect ) ; InvalWindowRect( GetMacRootWindow() , &clientrect ) ;
} }
} }
if ( doMove ) if ( doMove )
wxWindow::MacSuperChangedPosition() ; // like this only children will be notified wxWindow::MacSuperChangedPosition() ; // like this only children will be notified
} }

View File

@@ -564,15 +564,14 @@ void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
else else
{ {
// erase former position // erase former position
{ wxMacDrawingHelper focus( this ) ;
wxMacDrawingClientHelper focus( this ) ;
if ( focus.Ok() ) if ( focus.Ok() )
{ {
Rect clientrect = { 0 , 0 , m_height , m_width } ; Rect clientrect = { 0 , 0 , m_height , m_width } ;
ClipRect( &clientrect ) ;
InvalWindowRect( GetMacRootWindow() , &clientrect ) ; InvalWindowRect( GetMacRootWindow() , &clientrect ) ;
} }
} }
}
m_x = actualX ; m_x = actualX ;
m_y = actualY ; m_y = actualY ;
m_width = actualWidth ; m_width = actualWidth ;
@@ -597,14 +596,17 @@ void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
else else
{ {
// erase new position // erase new position
{ {
wxMacDrawingClientHelper focus( this ) ; wxMacDrawingHelper focus( this ) ;
if ( focus.Ok() ) if ( focus.Ok() )
{ {
Rect clientrect = { 0 , 0 , m_height , m_width } ; Rect clientrect = { 0 , 0 , m_height , m_width } ;
ClipRect( &clientrect ) ;
InvalWindowRect( GetMacRootWindow() , &clientrect ) ; InvalWindowRect( GetMacRootWindow() , &clientrect ) ;
} }
} }
if ( doMove ) if ( doMove )
wxWindow::MacSuperChangedPosition() ; // like this only children will be notified wxWindow::MacSuperChangedPosition() ; // like this only children will be notified
} }