case ResolutionInfo.EVT_RES_INFO:
log.debug("handleChunk: ResolutionInfo");
this.resolutionInfo = new ResolutionInfo(chunkInStr);
evt = resolutionInfo;
Resolution res = resolutionInfo.getCurrentResolution();
if(res.getWidth() != getRoot().getWidth() || res.getHeight() != getRoot().getHeight())
{
getRoot().setSize(res.getWidth(), res.getHeight());
width = getRoot().getWidth();
height = getRoot().getHeight();
rootBoundsChanged(getRoot().getBounds());
}
resolutionReceived = true;