org.freehep.graphicsio.emf.gdi.SetMetaRgn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freehep-graphicsio-emf Show documentation
Show all versions of freehep-graphicsio-emf Show documentation
FreeHEP Enhanced Metafile Format Driver
The newest version!
// Copyright 2002, FreeHEP.
package org.freehep.graphicsio.emf.gdi;
import java.io.IOException;
import org.freehep.graphicsio.emf.EMFInputStream;
import org.freehep.graphicsio.emf.EMFTag;
import org.freehep.graphicsio.emf.EMFRenderer;
/**
* SetMetaRgn TAG.
*
* @author Mark Donszelmann
* @version $Id: freehep-graphicsio-emf/src/main/java/org/freehep/graphicsio/emf/gdi/SetMetaRgn.java c0f15e7696d3 2007/01/22 19:26:48 duns $
*/
public class SetMetaRgn extends EMFTag {
public SetMetaRgn() {
super(28, 1);
}
public EMFTag read(int tagID, EMFInputStream emf, int len)
throws IOException {
return this;
}
/**
* displays the tag using the renderer
*
* @param renderer EMFRenderer storing the drawing session data
*/
public void render(EMFRenderer renderer) {
// The SetMetaRgn function intersects the current clipping region
// for the specified device context with the current metaregion and
// saves the combined region as the new metaregion for the specified
// device context. The clipping region is reset to a null region.
// TODO: what ist the current metaregion?
}
}