Implemented DoBlit().

Some testing on exposure/configure compression.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14568 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2002-03-12 20:45:45 +00:00
parent 9e691f46b2
commit b1633d20d6
2 changed files with 70 additions and 71 deletions

View File

@@ -545,6 +545,7 @@ bool wxApp::ProcessXEvent(WXEvent* _event)
}
return FALSE;
}
#if 1
case ResizeRequest:
{
/*
@@ -559,18 +560,14 @@ bool wxApp::ProcessXEvent(WXEvent* _event)
report = * event;
while( XCheckTypedWindowEvent (disp, actualWindow, ResizeRequest, &report));
if (win)
{
wxSize sz = win->GetSize();
wxSizeEvent sizeEvent(sz, win->GetId());
sizeEvent.SetEventObject(win);
wxSize sz = win->GetSize();
wxSizeEvent sizeEvent(sz, win->GetId());
sizeEvent.SetEventObject(win);
return win->GetEventHandler()->ProcessEvent( sizeEvent );
}
return FALSE;
return win->GetEventHandler()->ProcessEvent( sizeEvent );
}
#endif
#endif
#if wxUSE_NANOX
case GR_EVENT_TYPE_CLOSE_REQ:
{
@@ -608,6 +605,7 @@ bool wxApp::ProcessXEvent(WXEvent* _event)
}
#endif
// Only erase background, paint in idle time.
win->SendEraseEvents();
return TRUE;