* NOTE: This is called on the privileged toolkit thread. Do not
* call directly into user code using this thread!
*/
void handlePaint(int x, int y, int w, int h) {
if (!((Component)target).getIgnoreRepaint()) {
postEvent(new PaintEvent((Component)target, PaintEvent.PAINT,
new Rectangle(x, y, w, h)));
}
}