/* */ public synchronized void setDisplayBounds(QDRect paramQDRect)
/* */ throws QTException
/* */ {
/* 154 */ QDRect localQDRect = getDisplayBounds();
/* */
/* 156 */ Matrix localMatrix = new Matrix();
/* */
/* 158 */ localMatrix.setTx(paramQDRect.getX());
/* 159 */ localMatrix.setTy(paramQDRect.getY());
/* 160 */ localMatrix.setSx(paramQDRect.getWidth() / localQDRect.getWidth());
/* 161 */ localMatrix.setSy(paramQDRect.getHeight() / localQDRect.getHeight());
/* */
/* 163 */ setMatrix(localMatrix);
/* */
/* 165 */ this.pres.setDimensions(null, paramQDRect.getWidth(), paramQDRect.getHeight());
/* */ }