// Copyright 2002, FreeHEP. package org.freehep.graphicsio.emf.gdi; import com.google.code.appengine.awt.Dimension; import java.io.IOException; import org.freehep.graphicsio.emf.EMFInputStream; import org.freehep.graphicsio.emf.EMFOutputStream; import org.freehep.graphicsio.emf.EMFTag; import org.freehep.graphicsio.emf.EMFRenderer; /** * SetWindowExtEx TAG. * * @author Mark Donszelmann * @version $Id: SetWindowExtEx.java 10367 2007-01-22 19:26:48Z duns $ */ public class SetWindowExtEx extends EMFTag { private Dimension size; public SetWindowExtEx() { super(9, 1); } public SetWindowExtEx(Dimension size) { this(); this.size = size; } public EMFTag read(int tagID, EMFInputStream emf, int len) throws IOException { return new SetWindowExtEx(emf.readSIZEL()); } public void write(int tagID, EMFOutputStream emf) throws IOException { emf.writeSIZEL(size); } public String toString() { return super.toString() + "\n size: " + size; } /** * displays the tag using the renderer * * @param renderer EMFRenderer storing the drawing session data */ public void render(EMFRenderer renderer) { renderer.setWindowSize(size); } }