git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62370
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void CorrectEditorWidgetPosY();
int DoDrawItems( wxDC& dc,
void CorrectEditorWidgetPosY();
int DoDrawItems( wxDC& dc,
- const wxRect* clipRect,
+ const wxRect* drawRect,
bool isBuffered ) const;
/** Draws an expand/collapse (ie. +/-) button.
bool isBuffered ) const;
/** Draws an expand/collapse (ie. +/-) button.
void wxPropertyGrid::DrawItems( wxDC& dc,
unsigned int topy,
unsigned int bottomy,
void wxPropertyGrid::DrawItems( wxDC& dc,
unsigned int topy,
unsigned int bottomy,
- const wxRect* clipRect )
+ const wxRect* drawRect )
{
if ( m_frozen || m_height < 1 || bottomy < topy || !m_pState )
return;
m_pState->EnsureVirtualHeight();
{
if ( m_frozen || m_height < 1 || bottomy < topy || !m_pState )
return;
m_pState->EnsureVirtualHeight();
- wxRect tempClipRect;
- if ( !clipRect )
+ wxRect tempDrawRect;
+ if ( !drawRect )
- tempClipRect = wxRect(0,topy,m_pState->m_width,bottomy);
- clipRect = &tempClipRect;
+ tempDrawRect = wxRect(0, topy,
+ m_pState->m_width,
+ bottomy);
+ drawRect = &tempDrawRect;
{
if ( !m_doubleBuffer )
{
{
if ( !m_doubleBuffer )
{
- paintFinishY = clipRect->y;
+ paintFinishY = drawRect->y;
- dc.SetClippingRegion( *clipRect );
- paintFinishY = DoDrawItems( *dcPtr, clipRect, isBuffered );
+ dc.SetClippingRegion( *drawRect );
+ paintFinishY = DoDrawItems( *dcPtr, drawRect, isBuffered );
+ int drawBottomY = drawRect->y + drawRect->height;
// Clear area beyond bottomY?
// Clear area beyond bottomY?
- if ( paintFinishY < (clipRect->y+clipRect->height) )
+ if ( paintFinishY < drawBottomY )
{
dcPtr->SetPen(m_colEmptySpace);
dcPtr->SetBrush(m_colEmptySpace);
{
dcPtr->SetPen(m_colEmptySpace);
dcPtr->SetBrush(m_colEmptySpace);
- dcPtr->DrawRectangle( 0, paintFinishY, m_width,
- (clipRect->y+clipRect->height) );
+ dcPtr->DrawRectangle(0, paintFinishY,
+ m_width,
+ drawBottomY );
+
+ dc.DestroyClippingRegion();
}
#if wxPG_DOUBLE_BUFFER
if ( bufferDC )
{
}
#if wxPG_DOUBLE_BUFFER
if ( bufferDC )
{
- dc.Blit( clipRect->x, clipRect->y, clipRect->width,
- clipRect->height,
+ dc.Blit( drawRect->x, drawRect->y, drawRect->width,
+ drawRect->height,
bufferDC, 0, 0, wxCOPY );
bufferDC, 0, 0, wxCOPY );
- dc.DestroyClippingRegion(); // Is this really necessary?
delete bufferDC;
}
#endif
delete bufferDC;
}
#endif
// Just clear the area
dc.SetPen(m_colEmptySpace);
dc.SetBrush(m_colEmptySpace);
// Just clear the area
dc.SetPen(m_colEmptySpace);
dc.SetBrush(m_colEmptySpace);
- dc.DrawRectangle(*clipRect);
+ dc.DrawRectangle(*drawRect);
}
// -----------------------------------------------------------------------
}
// -----------------------------------------------------------------------