/ppt/scratchpad/src/org/apache/poi/hslf/model/PPGraphics2D.java
Java | 1773 lines | 382 code | 107 blank | 1284 comment | 17 complexity | c1eed61b5e85ccbd507d7e9acd97a919 MD5 | raw file
Large files files are truncated, but you can click here to view the full file
- /* ====================================================================
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- ==================================================================== */
- package org.apache.poi.hslf.model;
- import and.awt.*;
- import and.awt.Shape;
- import and.awt.font.FontRenderContext;
- import and.awt.font.GlyphVector;
- import and.awt.image.*;
- import and.awt.image.renderable.RenderableImage;
- import and.awt.geom.*;
- import java.text.AttributedCharacterIterator;
- import java.util.Map;
- import net.pbdavey.awt.Graphics2D;
- import net.pbdavey.awt.RenderingHints;
- import org.apache.poi.hslf.usermodel.RichTextRun;
- import org.apache.poi.hslf.exceptions.HSLFException;
- import org.apache.poi.util.POILogger;
- import org.apache.poi.util.POILogFactory;
- /**
- * Translates Graphics2D calls into PowerPoint.
- *
- * @author Yegor Kozlov
- */
- public final class PPGraphics2D extends Graphics2D implements Cloneable {
- protected POILogger log = POILogFactory.getLogger(this.getClass());
- //The ppt object to write into.
- private ShapeGroup _group;
- private AffineTransform _transform;
- private Stroke _stroke;
- private Paint _paint;
- private Font _font;
- private Color _foreground;
- private Color _background;
- private RenderingHints _hints;
- /**
- * Construct Java Graphics object which translates graphic calls in ppt drawing layer.
- *
- * @param group The shape group to write the graphics calls into.
- */
- public PPGraphics2D(ShapeGroup group){
- this._group = group;
- _transform = new AffineTransform();
- _stroke = new BasicStroke();
- _paint = Color.black;
- _font = new Font("Arial", Font.PLAIN, 12);
- _background = Color.black;
- _foreground = Color.white;
- _hints = new RenderingHints(null);
- }
- /**
- * @return the shape group being used for drawing
- */
- public ShapeGroup getShapeGroup(){
- return _group;
- }
- /**
- * Gets the current font.
- * @return this graphics context's current font.
- * @see and.awt.Font
- * @see and.awt.Graphics#setFont(Font)
- */
- public Font getFont(){
- return _font;
- }
- /**
- * Sets this graphics context's font to the specified font.
- * All subsequent text operations using this graphics context
- * use this font.
- * @param font the font.
- * @see and.awt.Graphics#getFont
- * @see and.awt.Graphics#drawString(java.lang.String, int, int)
- * @see and.awt.Graphics#drawBytes(byte[], int, int, int, int)
- * @see and.awt.Graphics#drawChars(char[], int, int, int, int)
- */
- public void setFont(Font font){
- this._font = font;
- }
- /**
- * Gets this graphics context's current color.
- * @return this graphics context's current color.
- * @see and.awt.Color
- * @see and.awt.Graphics#setColor
- */
- public Color getColor(){
- return _foreground;
- }
- /**
- * Sets this graphics context's current color to the specified
- * color. All subsequent graphics operations using this graphics
- * context use this specified color.
- * @param c the new rendering color.
- * @see and.awt.Color
- * @see and.awt.Graphics#getColor
- */
- public void setColor(Color c) {
- setPaint(c);
- }
- /**
- * Returns the current <code>Stroke</code> in the
- * <code>Graphics2D</code> context.
- * @return the current <code>Graphics2D</code> <code>Stroke</code>,
- * which defines the line style.
- * @see #setStroke
- */
- public Stroke getStroke(){
- return _stroke;
- }
- /**
- * Sets the <code>Stroke</code> for the <code>Graphics2D</code> context.
- * @param s the <code>Stroke</code> object to be used to stroke a
- * <code>Shape</code> during the rendering process
- */
- public void setStroke(Stroke s){
- this._stroke = s;
- }
- /**
- * Returns the current <code>Paint</code> of the
- * <code>Graphics2D</code> context.
- * @return the current <code>Graphics2D</code> <code>Paint</code>,
- * which defines a color or pattern.
- * @see #setPaint
- * @see and.awt.Graphics#setColor
- */
- public Paint getPaint(){
- return _paint;
- }
- /**
- * Sets the <code>Paint</code> attribute for the
- * <code>Graphics2D</code> context. Calling this method
- * with a <code>null</code> <code>Paint</code> object does
- * not have any effect on the current <code>Paint</code> attribute
- * of this <code>Graphics2D</code>.
- * @param paint the <code>Paint</code> object to be used to generate
- * color during the rendering process, or <code>null</code>
- * @see and.awt.Graphics#setColor
- */
- public void setPaint(Paint paint){
- if(paint == null) return;
- this._paint = paint;
- if (paint instanceof Color) _foreground = (Color)paint;
- }
- /**
- * Returns a copy of the current <code>Transform</code> in the
- * <code>Graphics2D</code> context.
- * @return the current <code>AffineTransform</code> in the
- * <code>Graphics2D</code> context.
- * @see #_transform
- * @see #setTransform
- */
- public AffineTransform getTransform(){
- return new AffineTransform(_transform);
- }
- /**
- * Sets the <code>Transform</code> in the <code>Graphics2D</code>
- * context.
- * @param Tx the <code>AffineTransform</code> object to be used in the
- * rendering process
- * @see #_transform
- * @see AffineTransform
- */
- public void setTransform(AffineTransform Tx) {
- _transform = new AffineTransform(Tx);
- }
- /**
- * Strokes the outline of a <code>Shape</code> using the settings of the
- * current <code>Graphics2D</code> context. The rendering attributes
- * applied include the <code>Clip</code>, <code>Transform</code>,
- * <code>Paint</code>, <code>Composite</code> and
- * <code>Stroke</code> attributes.
- * @param shape the <code>Shape</code> to be rendered
- * @see #setStroke
- * @see #setPaint
- * @see and.awt.Graphics#setColor
- * @see #_transform
- * @see #setTransform
- * @see #clip
- * @see #setClip
- * @see #setComposite
- */
- public void draw(Shape shape){
- GeneralPath path = new GeneralPath(_transform.createTransformedShape(shape));
- Freeform p = new Freeform(_group);
- p.setPath(path);
- p.getFill().setForegroundColor(null);
- applyStroke(p);
- _group.addShape(p);
- }
- /**
- * Renders the text specified by the specified <code>String</code>,
- * using the current text attribute state in the <code>Graphics2D</code> context.
- * The baseline of the first character is at position
- * (<i>x</i>, <i>y</i>) in the User Space.
- * The rendering attributes applied include the <code>Clip</code>,
- * <code>Transform</code>, <code>Paint</code>, <code>Font</code> and
- * <code>Composite</code> attributes. For characters in script systems
- * such as Hebrew and Arabic, the glyphs can be rendered from right to
- * left, in which case the coordinate supplied is the location of the
- * leftmost character on the baseline.
- * @param s the <code>String</code> to be rendered
- * @param x the x coordinate of the location where the
- * <code>String</code> should be rendered
- * @param y the y coordinate of the location where the
- * <code>String</code> should be rendered
- * @throws NullPointerException if <code>str</code> is
- * <code>null</code>
- * @see #setPaint
- * @see and.awt.Graphics#setColor
- * @see and.awt.Graphics#setFont
- * @see #setTransform
- * @see #setComposite
- * @see #setClip
- */
- public void drawString(String s, float x, float y) {
- TextBox txt = new TextBox(_group);
- txt.getTextRun().supplySlideShow(_group.getSheet().getSlideShow());
- txt.getTextRun().setSheet(_group.getSheet());
- txt.setText(s);
- RichTextRun rt = txt.getTextRun().getRichTextRuns()[0];
- rt.setFontSize(_font.getSize());
- rt.setFontName(_font.getFamily());
- if (getColor() != null) rt.setFontColor(getColor());
- if (_font.isBold()) rt.setBold(true);
- if (_font.isItalic()) rt.setItalic(true);
- txt.setMarginBottom(0);
- txt.setMarginTop(0);
- txt.setMarginLeft(0);
- txt.setMarginRight(0);
- txt.setWordWrap(TextBox.WrapNone);
- txt.setHorizontalAlignment(TextBox.AlignLeft);
- txt.setVerticalAlignment(TextBox.AnchorMiddle);
- TextLayout layout = new TextLayout(s, _font, getFontRenderContext());
- float ascent = layout.getAscent();
- float width = (float) Math.floor(layout.getAdvance());
- /**
- * Even if top and bottom margins are set to 0 PowerPoint
- * always sets extra space between the text and its bounding box.
- *
- * The approximation height = ascent*2 works good enough in most cases
- */
- float height = ascent * 2;
- /*
- In powerpoint anchor of a shape is its top left corner.
- Java graphics sets string coordinates by the baseline of the first character
- so we need to shift up by the height of the textbox
- */
- y -= height / 2 + ascent / 2;
- /*
- In powerpoint anchor of a shape is its top left corner.
- Java graphics sets string coordinates by the baseline of the first character
- so we need to shift down by the height of the textbox
- */
- txt.setAnchor(new Rectangle2D.Float(x, y, width, height));
- _group.addShape(txt);
- }
- /**
- * Fills the interior of a <code>Shape</code> using the settings of the
- * <code>Graphics2D</code> context. The rendering attributes applied
- * include the <code>Clip</code>, <code>Transform</code>,
- * <code>Paint</code>, and <code>Composite</code>.
- * @param shape the <code>Shape</code> to be filled
- * @see #setPaint
- * @see and.awt.Graphics#setColor
- * @see #_transform
- * @see #setTransform
- * @see #setComposite
- * @see #clip
- * @see #setClip
- */
- public void fill(Shape shape){
- GeneralPath path = new GeneralPath(_transform.createTransformedShape(shape));
- Freeform p = new Freeform(_group);
- p.setPath(path);
- applyPaint(p);
- p.setLineColor(null); //Fills must be "No Line"
- _group.addShape(p);
- }
- /**
- * Translates the origin of the graphics context to the point
- * (<i>x</i>, <i>y</i>) in the current coordinate system.
- * Modifies this graphics context so that its new origin corresponds
- * to the point (<i>x</i>, <i>y</i>) in this graphics context's
- * original coordinate system. All coordinates used in subsequent
- * rendering operations on this graphics context will be relative
- * to this new origin.
- * @param x the <i>x</i> coordinate.
- * @param y the <i>y</i> coordinate.
- */
- public void translate(int x, int y){
- _transform.translate(x, y);
- }
- /**
- * Intersects the current <code>Clip</code> with the interior of the
- * specified <code>Shape</code> and sets the <code>Clip</code> to the
- * resulting intersection. The specified <code>Shape</code> is
- * transformed with the current <code>Graphics2D</code>
- * <code>Transform</code> before being intersected with the current
- * <code>Clip</code>. This method is used to make the current
- * <code>Clip</code> smaller.
- * To make the <code>Clip</code> larger, use <code>setClip</code>.
- * The <i>user clip</i> modified by this method is independent of the
- * clipping associated with device bounds and visibility. If no clip has
- * previously been set, or if the clip has been cleared using
- * {@link and.awt.Graphics#setClip(Shape) setClip} with a
- * <code>null</code> argument, the specified <code>Shape</code> becomes
- * the new user clip.
- * @param s the <code>Shape</code> to be intersected with the current
- * <code>Clip</code>. If <code>s</code> is <code>null</code>,
- * this method clears the current <code>Clip</code>.
- */
- public void clip(Shape s){
- log.log(POILogger.WARN, "Not implemented");
- }
- /**
- * Gets the current clipping area.
- * This method returns the user clip, which is independent of the
- * clipping associated with device bounds and window visibility.
- * If no clip has previously been set, or if the clip has been
- * cleared using <code>setClip(null)</code>, this method returns
- * <code>null</code>.
- * @return a <code>Shape</code> object representing the
- * current clipping area, or <code>null</code> if
- * no clip is set.
- * @see and.awt.Graphics#getClipBounds()
- * @see and.awt.Graphics#clipRect
- * @see and.awt.Graphics#setClip(int, int, int, int)
- * @see and.awt.Graphics#setClip(Shape)
- * @since JDK1.1
- */
- public Shape getClip(){
- log.log(POILogger.WARN, "Not implemented");
- return null;
- }
- /**
- * Concatenates the current <code>Graphics2D</code>
- * <code>Transform</code> with a scaling transformation
- * Subsequent rendering is resized according to the specified scaling
- * factors relative to the previous scaling.
- * This is equivalent to calling <code>transform(S)</code>, where S is an
- * <code>AffineTransform</code> represented by the following matrix:
- * <pre>
- * [ sx 0 0 ]
- * [ 0 sy 0 ]
- * [ 0 0 1 ]
- * </pre>
- * @param sx the amount by which X coordinates in subsequent
- * rendering operations are multiplied relative to previous
- * rendering operations.
- * @param sy the amount by which Y coordinates in subsequent
- * rendering operations are multiplied relative to previous
- * rendering operations.
- */
- public void scale(double sx, double sy){
- _transform.scale(sx, sy);
- }
- /**
- * Draws an outlined round-cornered rectangle using this graphics
- * context's current color. The left and right edges of the rectangle
- * are at <code>x</code> and <code>x + width</code>,
- * respectively. The top and bottom edges of the rectangle are at
- * <code>y</code> and <code>y + height</code>.
- * @param x the <i>x</i> coordinate of the rectangle to be drawn.
- * @param y the <i>y</i> coordinate of the rectangle to be drawn.
- * @param width the width of the rectangle to be drawn.
- * @param height the height of the rectangle to be drawn.
- * @param arcWidth the horizontal diameter of the arc
- * at the four corners.
- * @param arcHeight the vertical diameter of the arc
- * at the four corners.
- * @see and.awt.Graphics#fillRoundRect
- */
- public void drawRoundRect(int x, int y, int width, int height,
- int arcWidth, int arcHeight){
- RoundRectangle2D rect = new RoundRectangle2D.Float(x, y, width, height, arcWidth, arcHeight);
- draw(rect);
- }
- /**
- * Draws the text given by the specified string, using this
- * graphics context's current font and color. The baseline of the
- * first character is at position (<i>x</i>, <i>y</i>) in this
- * graphics context's coordinate system.
- * @param str the string to be drawn.
- * @param x the <i>x</i> coordinate.
- * @param y the <i>y</i> coordinate.
- * @see and.awt.Graphics#drawBytes
- * @see and.awt.Graphics#drawChars
- */
- public void drawString(String str, int x, int y){
- drawString(str, (float)x, (float)y);
- }
- /**
- * Fills an oval bounded by the specified rectangle with the
- * current color.
- * @param x the <i>x</i> coordinate of the upper left corner
- * of the oval to be filled.
- * @param y the <i>y</i> coordinate of the upper left corner
- * of the oval to be filled.
- * @param width the width of the oval to be filled.
- * @param height the height of the oval to be filled.
- * @see and.awt.Graphics#drawOval
- */
- public void fillOval(int x, int y, int width, int height){
- Ellipse2D oval = new Ellipse2D.Float(x, y, width, height);
- fill(oval);
- }
- /**
- * Fills the specified rounded corner rectangle with the current color.
- * The left and right edges of the rectangle
- * are at <code>x</code> and <code>x + width - 1</code>,
- * respectively. The top and bottom edges of the rectangle are at
- * <code>y</code> and <code>y + height - 1</code>.
- * @param x the <i>x</i> coordinate of the rectangle to be filled.
- * @param y the <i>y</i> coordinate of the rectangle to be filled.
- * @param width the width of the rectangle to be filled.
- * @param height the height of the rectangle to be filled.
- * @param arcWidth the horizontal diameter
- * of the arc at the four corners.
- * @param arcHeight the vertical diameter
- * of the arc at the four corners.
- * @see and.awt.Graphics#drawRoundRect
- */
- public void fillRoundRect(int x, int y, int width, int height,
- int arcWidth, int arcHeight){
- RoundRectangle2D rect = new RoundRectangle2D.Float(x, y, width, height, arcWidth, arcHeight);
- fill(rect);
- }
- /**
- * Fills a circular or elliptical arc covering the specified rectangle.
- * <p>
- * The resulting arc begins at <code>startAngle</code> and extends
- * for <code>arcAngle</code> degrees.
- * Angles are interpreted such that 0 degrees
- * is at the 3 o'clock position.
- * A positive value indicates a counter-clockwise rotation
- * while a negative value indicates a clockwise rotation.
- * <p>
- * The center of the arc is the center of the rectangle whose origin
- * is (<i>x</i>, <i>y</i>) and whose size is specified by the
- * <code>width</code> and <code>height</code> arguments.
- * <p>
- * The resulting arc covers an area
- * <code>width + 1</code> pixels wide
- * by <code>height + 1</code> pixels tall.
- * <p>
- * The angles are specified relative to the non-square extents of
- * the bounding rectangle such that 45 degrees always falls on the
- * line from the center of the ellipse to the upper right corner of
- * the bounding rectangle. As a result, if the bounding rectangle is
- * noticeably longer in one axis than the other, the angles to the
- * start and end of the arc segment will be skewed farther along the
- * longer axis of the bounds.
- * @param x the <i>x</i> coordinate of the
- * upper-left corner of the arc to be filled.
- * @param y the <i>y</i> coordinate of the
- * upper-left corner of the arc to be filled.
- * @param width the width of the arc to be filled.
- * @param height the height of the arc to be filled.
- * @param startAngle the beginning angle.
- * @param arcAngle the angular extent of the arc,
- * relative to the start angle.
- * @see and.awt.Graphics#drawArc
- */
- public void fillArc(int x, int y, int width, int height,
- int startAngle, int arcAngle){
- Arc2D arc = new Arc2D.Float(x, y, width, height, startAngle, arcAngle, Arc2D.PIE);
- fill(arc);
- }
- /**
- * Draws the outline of a circular or elliptical arc
- * covering the specified rectangle.
- * <p>
- * The resulting arc begins at <code>startAngle</code> and extends
- * for <code>arcAngle</code> degrees, using the current color.
- * Angles are interpreted such that 0 degrees
- * is at the 3 o'clock position.
- * A positive value indicates a counter-clockwise rotation
- * while a negative value indicates a clockwise rotation.
- * <p>
- * The center of the arc is the center of the rectangle whose origin
- * is (<i>x</i>, <i>y</i>) and whose size is specified by the
- * <code>width</code> and <code>height</code> arguments.
- * <p>
- * The resulting arc covers an area
- * <code>width + 1</code> pixels wide
- * by <code>height + 1</code> pixels tall.
- * <p>
- * The angles are specified relative to the non-square extents of
- * the bounding rectangle such that 45 degrees always falls on the
- * line from the center of the ellipse to the upper right corner of
- * the bounding rectangle. As a result, if the bounding rectangle is
- * noticeably longer in one axis than the other, the angles to the
- * start and end of the arc segment will be skewed farther along the
- * longer axis of the bounds.
- * @param x the <i>x</i> coordinate of the
- * upper-left corner of the arc to be drawn.
- * @param y the <i>y</i> coordinate of the
- * upper-left corner of the arc to be drawn.
- * @param width the width of the arc to be drawn.
- * @param height the height of the arc to be drawn.
- * @param startAngle the beginning angle.
- * @param arcAngle the angular extent of the arc,
- * relative to the start angle.
- * @see and.awt.Graphics#fillArc
- */
- public void drawArc(int x, int y, int width, int height,
- int startAngle, int arcAngle) {
- Arc2D arc = new Arc2D.Float(x, y, width, height, startAngle, arcAngle, Arc2D.OPEN);
- draw(arc);
- }
- /**
- * Draws a sequence of connected lines defined by
- * arrays of <i>x</i> and <i>y</i> coordinates.
- * Each pair of (<i>x</i>, <i>y</i>) coordinates defines a point.
- * The figure is not closed if the first point
- * differs from the last point.
- * @param xPoints an array of <i>x</i> points
- * @param yPoints an array of <i>y</i> points
- * @param nPoints the total number of points
- * @see and.awt.Graphics#drawPolygon(int[], int[], int)
- * @since JDK1.1
- */
- public void drawPolyline(int[] xPoints, int[] yPoints,
- int nPoints){
- if(nPoints > 0){
- GeneralPath path = new GeneralPath();
- path.moveTo(xPoints[0], yPoints[0]);
- for(int i=1; i<nPoints; i++)
- path.lineTo(xPoints[i], yPoints[i]);
- draw(path);
- }
- }
- /**
- * Draws the outline of an oval.
- * The result is a circle or ellipse that fits within the
- * rectangle specified by the <code>x</code>, <code>y</code>,
- * <code>width</code>, and <code>height</code> arguments.
- * <p>
- * The oval covers an area that is
- * <code>width + 1</code> pixels wide
- * and <code>height + 1</code> pixels tall.
- * @param x the <i>x</i> coordinate of the upper left
- * corner of the oval to be drawn.
- * @param y the <i>y</i> coordinate of the upper left
- * corner of the oval to be drawn.
- * @param width the width of the oval to be drawn.
- * @param height the height of the oval to be drawn.
- * @see and.awt.Graphics#fillOval
- */
- public void drawOval(int x, int y, int width, int height){
- Ellipse2D oval = new Ellipse2D.Float(x, y, width, height);
- draw(oval);
- }
- /**
- * Draws as much of the specified image as is currently available.
- * The image is drawn with its top-left corner at
- * (<i>x</i>, <i>y</i>) in this graphics context's coordinate
- * space. Transparent pixels are drawn in the specified
- * background color.
- * <p>
- * This operation is equivalent to filling a rectangle of the
- * width and height of the specified image with the given color and then
- * drawing the image on top of it, but possibly more efficient.
- * <p>
- * This method returns immediately in all cases, even if the
- * complete image has not yet been loaded, and it has not been dithered
- * and converted for the current output device.
- * <p>
- * If the image has not yet been completely loaded, then
- * <code>drawImage</code> returns <code>false</code>. As more of
- * the image becomes available, the process that draws the image notifies
- * the specified image observer.
- * @param img the specified image to be drawn.
- * @param x the <i>x</i> coordinate.
- * @param y the <i>y</i> coordinate.
- * @param bgcolor the background color to paint under the
- * non-opaque portions of the image.
- * @param observer object to be notified as more of
- * the image is converted.
- * @see and.awt.Image
- * @see and.awt.image.ImageObserver
- * @see and.awt.image.ImageObserver#imageUpdate(and.awt.Image, int, int, int, int, int)
- */
- public boolean drawImage(Image img, int x, int y,
- Color bgcolor,
- ImageObserver observer){
- log.log(POILogger.WARN, "Not implemented");
- return false;
- }
- /**
- * Draws as much of the specified image as has already been scaled
- * to fit inside the specified rectangle.
- * <p>
- * The image is drawn inside the specified rectangle of this
- * graphics context's coordinate space, and is scaled if
- * necessary. Transparent pixels are drawn in the specified
- * background color.
- * This operation is equivalent to filling a rectangle of the
- * width and height of the specified image with the given color and then
- * drawing the image on top of it, but possibly more efficient.
- * <p>
- * This method returns immediately in all cases, even if the
- * entire image has not yet been scaled, dithered, and converted
- * for the current output device.
- * If the current output representation is not yet complete then
- * <code>drawImage</code> returns <code>false</code>. As more of
- * the image becomes available, the process that draws the image notifies
- * the specified image observer.
- * <p>
- * A scaled version of an image will not necessarily be
- * available immediately just because an unscaled version of the
- * image has been constructed for this output device. Each size of
- * the image may be cached separately and generated from the original
- * data in a separate image production sequence.
- * @param img the specified image to be drawn.
- * @param x the <i>x</i> coordinate.
- * @param y the <i>y</i> coordinate.
- * @param width the width of the rectangle.
- * @param height the height of the rectangle.
- * @param bgcolor the background color to paint under the
- * non-opaque portions of the image.
- * @param observer object to be notified as more of
- * the image is converted.
- * @see and.awt.Image
- * @see and.awt.image.ImageObserver
- * @see and.awt.image.ImageObserver#imageUpdate(and.awt.Image, int, int, int, int, int)
- */
- public boolean drawImage(Image img, int x, int y,
- int width, int height,
- Color bgcolor,
- ImageObserver observer){
- log.log(POILogger.WARN, "Not implemented");
- return false;
- }
- /**
- * Draws as much of the specified area of the specified image as is
- * currently available, scaling it on the fly to fit inside the
- * specified area of the destination drawable surface. Transparent pixels
- * do not affect whatever pixels are already there.
- * <p>
- * This method returns immediately in all cases, even if the
- * image area to be drawn has not yet been scaled, dithered, and converted
- * for the current output device.
- * If the current output representation is not yet complete then
- * <code>drawImage</code> returns <code>false</code>. As more of
- * the image becomes available, the process that draws the image notifies
- * the specified image observer.
- * <p>
- * This method always uses the unscaled version of the image
- * to render the scaled rectangle and performs the required
- * scaling on the fly. It does not use a cached, scaled version
- * of the image for this operation. Scaling of the image from source
- * to destination is performed such that the first coordinate
- * of the source rectangle is mapped to the first coordinate of
- * the destination rectangle, and the second source coordinate is
- * mapped to the second destination coordinate. The subimage is
- * scaled and flipped as needed to preserve those mappings.
- * @param img the specified image to be drawn
- * @param dx1 the <i>x</i> coordinate of the first corner of the
- * destination rectangle.
- * @param dy1 the <i>y</i> coordinate of the first corner of the
- * destination rectangle.
- * @param dx2 the <i>x</i> coordinate of the second corner of the
- * destination rectangle.
- * @param dy2 the <i>y</i> coordinate of the second corner of the
- * destination rectangle.
- * @param sx1 the <i>x</i> coordinate of the first corner of the
- * source rectangle.
- * @param sy1 the <i>y</i> coordinate of the first corner of the
- * source rectangle.
- * @param sx2 the <i>x</i> coordinate of the second corner of the
- * source rectangle.
- * @param sy2 the <i>y</i> coordinate of the second corner of the
- * source rectangle.
- * @param observer object to be notified as more of the image is
- * scaled and converted.
- * @see and.awt.Image
- * @see and.awt.image.ImageObserver
- * @see and.awt.image.ImageObserver#imageUpdate(and.awt.Image, int, int, int, int, int)
- * @since JDK1.1
- */
- public boolean drawImage(Image img,
- int dx1, int dy1, int dx2, int dy2,
- int sx1, int sy1, int sx2, int sy2,
- ImageObserver observer){
- log.log(POILogger.WARN, "Not implemented");
- return false;
- }
- /**
- * Draws as much of the specified area of the specified image as is
- * currently available, scaling it on the fly to fit inside the
- * specified area of the destination drawable surface.
- * <p>
- * Transparent pixels are drawn in the specified background color.
- * This operation is equivalent to filling a rectangle of the
- * width and height of the specified image with the given color and then
- * drawing the image on top of it, but possibly more efficient.
- * <p>
- * This method returns immediately in all cases, even if the
- * image area to be drawn has not yet been scaled, dithered, and converted
- * for the current output device.
- * If the current output representation is not yet complete then
- * <code>drawImage</code> returns <code>false</code>. As more of
- * the image becomes available, the process that draws the image notifies
- * the specified image observer.
- * <p>
- * This method always uses the unscaled version of the image
- * to render the scaled rectangle and performs the required
- * scaling on the fly. It does not use a cached, scaled version
- * of the image for this operation. Scaling of the image from source
- * to destination is performed such that the first coordinate
- * of the source rectangle is mapped to the first coordinate of
- * the destination rectangle, and the second source coordinate is
- * mapped to the second destination coordinate. The subimage is
- * scaled and flipped as needed to preserve those mappings.
- * @param img the specified image to be drawn
- * @param dx1 the <i>x</i> coordinate of the first corner of the
- * destination rectangle.
- * @param dy1 the <i>y</i> coordinate of the first corner of the
- * destination rectangle.
- * @param dx2 the <i>x</i> coordinate of the second corner of the
- * destination rectangle.
- * @param dy2 the <i>y</i> coordinate of the second corner of the
- * destination rectangle.
- * @param sx1 the <i>x</i> coordinate of the first corner of the
- * source rectangle.
- * @param sy1 the <i>y</i> coordinate of the first corner of the
- * source rectangle.
- * @param sx2 the <i>x</i> coordinate of the second corner of the
- * source rectangle.
- * @param sy2 the <i>y</i> coordinate of the second corner of the
- * source rectangle.
- * @param bgcolor the background color to paint under the
- * non-opaque portions of the image.
- * @param observer object to be notified as more of the image is
- * scaled and converted.
- * @see and.awt.Image
- * @see and.awt.image.ImageObserver
- * @see and.awt.image.ImageObserver#imageUpdate(and.awt.Image, int, int, int, int, int)
- * @since JDK1.1
- */
- public boolean drawImage(Image img,
- int dx1, int dy1, int dx2, int dy2,
- int sx1, int sy1, int sx2, int sy2,
- Color bgcolor,
- ImageObserver observer){
- log.log(POILogger.WARN, "Not implemented");
- return false;
- }
- /**
- * Draws as much of the specified image as is currently available.
- * The image is drawn with its top-left corner at
- * (<i>x</i>, <i>y</i>) in this graphics context's coordinate
- * space. Transparent pixels in the image do not affect whatever
- * pixels are already there.
- * <p>
- * This method returns immediately in all cases, even if the
- * complete image has not yet been loaded, and it has not been dithered
- * and converted for the current output device.
- * <p>
- * If the image has completely loaded and its pixels are
- * no longer being changed, then
- * <code>drawImage</code> returns <code>true</code>.
- * Otherwise, <code>drawImage</code> returns <code>false</code>
- * and as more of
- * the image becomes available
- * or it is time to draw another frame of animation,
- * the process that loads the image notifies
- * the specified image observer.
- * @param img the specified image to be drawn. This method does
- * nothing if <code>img</code> is null.
- * @param x the <i>x</i> coordinate.
- * @param y the <i>y</i> coordinate.
- * @param observer object to be notified as more of
- * the image is converted.
- * @return <code>false</code> if the image pixels are still changing;
- * <code>true</code> otherwise.
- * @see and.awt.Image
- * @see and.awt.image.ImageObserver
- * @see and.awt.image.ImageObserver#imageUpdate(and.awt.Image, int, int, int, int, int)
- */
- public boolean drawImage(Image img, int x, int y,
- ImageObserver observer) {
- log.log(POILogger.WARN, "Not implemented");
- return false;
- }
- /**
- * Disposes of this graphics context and releases
- * any system resources that it is using.
- * A <code>Graphics</code> object cannot be used after
- * <code>dispose</code>has been called.
- * <p>
- * When a Java program runs, a large number of <code>Graphics</code>
- * objects can be created within a short time frame.
- * Although the finalization process of the garbage collector
- * also disposes of the same system resources, it is preferable
- * to manually free the associated resources by calling this
- * method rather than to rely on a finalization process which
- * may not run to completion for a long period of time.
- * <p>
- * Graphics objects which are provided as arguments to the
- * <code>paint</code> and <code>update</code> methods
- * of components are automatically released by the system when
- * those methods return. For efficiency, programmers should
- * call <code>dispose</code> when finished using
- * a <code>Graphics</code> object only if it was created
- * directly from a component or another <code>Graphics</code> object.
- * @see and.awt.Graphics#finalize
- * @see and.awt.Component#paint
- * @see and.awt.Component#update
- * @see and.awt.Component#getGraphics
- * @see and.awt.Graphics#create
- */
- public void dispose() {
- ;
- }
- /**
- * Draws a line, using the current color, between the points
- * <code>(x1, y1)</code> and <code>(x2, y2)</code>
- * in this graphics context's coordinate system.
- * @param x1 the first point's <i>x</i> coordinate.
- * @param y1 the first point's <i>y</i> coordinate.
- * @param x2 the second point's <i>x</i> coordinate.
- * @param y2 the second point's <i>y</i> coordinate.
- */
- public void drawLine(int x1, int y1, int x2, int y2){
- Line2D line = new Line2D.Float(x1, y1, x2, y2);
- draw(line);
- }
- /**
- * Fills a closed polygon defined by
- * arrays of <i>x</i> and <i>y</i> coordinates.
- * <p>
- * This method draws the polygon defined by <code>nPoint</code> line
- * segments, where the first <code>nPoint - 1</code>
- * line segments are line segments from
- * <code>(xPoints[i - 1], yPoints[i - 1])</code>
- * to <code>(xPoints[i], yPoints[i])</code>, for
- * 1 ≤ <i>i</i> ≤ <code>nPoints</code>.
- * The figure is automatically closed by drawing a line connecting
- * the final point to the first point, if those points are different.
- * <p>
- * The area inside the polygon is defined using an
- * even-odd fill rule, also known as the alternating rule.
- * @param xPoints a an array of <code>x</code> coordinates.
- * @param yPoints a an array of <code>y</code> coordinates.
- * @param nPoints a the total number of points.
- * @see and.awt.Graphics#drawPolygon(int[], int[], int)
- */
- public void fillPolygon(int[] xPoints, int[] yPoints,
- int nPoints){
- and.awt.Polygon polygon = new and.awt.Polygon(xPoints, yPoints, nPoints);
- fill(polygon);
- }
- /**
- * Fills the specified rectangle.
- * The left and right edges of the rectangle are at
- * <code>x</code> and <code>x + width - 1</code>.
- * The top and bottom edges are at
- * <code>y</code> and <code>y + height - 1</code>.
- * The resulting rectangle covers an area
- * <code>width</code> pixels wide by
- * <code>height</code> pixels tall.
- * The rectangle is filled using the graphics context's current color.
- * @param x the <i>x</i> coordinate
- * of the rectangle to be filled.
- * @param y the <i>y</i> coordinate
- * of the rectangle to be filled.
- * @param width the width of the rectangle to be filled.
- * @param height the height of the rectangle to be filled.
- * @see and.awt.Graphics#clearRect
- * @see and.awt.Graphics#drawRect
- */
- public void fillRect(int x, int y, int width, int height){
- Rectangle rect = new Rectangle(x, y, width, height);
- fill(rect);
- }
- /**
- * Draws the outline of the specified rectangle.
- * The left and right edges of the rectangle are at
- * <code>x</code> and <code>x + width</code>.
- * The top and bottom edges are at
- * <code>y</code> and <code>y + height</code>.
- * The rectangle is drawn using the graphics context's current color.
- * @param x the <i>x</i> coordinate
- * of the rectangle to be drawn.
- * @param y the <i>y</i> coordinate
- * of the rectangle to be drawn.
- * @param width the width of the rectangle to be drawn.
- * @param height the height of the rectangle to be drawn.
- * @see and.awt.Graphics#fillRect
- * @see and.awt.Graphics#clearRect
- */
- public void drawRect(int x, int y, int width, int height) {
- Rectangle rect = new Rectangle(x, y, width, height);
- draw(rect);
- }
- /**
- * Draws a closed polygon defined by
- * arrays of <i>x</i> and <i>y</i> coordinates.
- * Each pair of (<i>x</i>, <i>y</i>) coordinates defines a point.
- * <p>
- * This method draws the polygon defined by <code>nPoint</code> line
- * segments, where the first <code>nPoint - 1</code>
- * line segments are line segments from
- * <code>(xPoints[i - 1], yPoints[i - 1])</code>
- * to <code>(xPoints[i], yPoints[i])</code>, for
- * 1 ≤ <i>i</i> ≤ <code>nPoints</code>.
- * The figure is automatically closed by drawing a line connecting
- * the final point to the first point, if those points are different.
- * @param xPoints a an array of <code>x</code> coordinates.
- * @param yPoints a an array of <code>y</code> coordinates.
- * @param nPoints a the total number of points.
- * @see and.awt.Graphics#fillPolygon(int[],int[],int)
- * @see and.awt.Graphics#drawPolyline
- */
- public void drawPolygon(int[] xPoints, int[] yPoints,
- int nPoints){
- and.awt.Polygon polygon = new and.awt.Polygon(xPoints, yPoints, nPoints);
- draw(polygon);
- }
- /**
- * Intersects the current clip with the specified rectangle.
- * The resulting clipping area is the intersection of the current
- * clipping area and the specified rectangle. If there is no
- * current clipping area, either because the clip has never been
- * set, or the clip has been cleared using <code>setClip(null)</code>,
- * the specified rectangle becomes the new clip.
- * This method sets the user clip, which is independent of the
- * clipping associated with device bounds and window visibility.
- * This method can only be used to make the current clip smaller.
- * To set the current clip larger, use any of the setClip methods.
- * Rendering operations have no effect outside of the clipping area.
- * @param x the x coordinate of the rectangle to intersect the clip with
- * @param y the y coordinate of the rectangle to intersect the clip with
- * @param width the width of the rectangle to intersect the clip with
- * @param height the height of the rectangle to intersect the clip with
- * @see #setClip(int, int, int, int)
- * @see #setClip(Shape)
- */
- public void clipRect(int x, int y, int width, int height){
- clip(new Rectangle(x, y, width, height));
- }
- /**
- * Sets the current clipping area to an arbitrary clip shape.
- * Not all objects that implement the <code>Shape</code>
- * interface can be used to set the clip. The only
- * <code>Shape</code> objects that are guaranteed to be
- * supported are <code>Shape</code> objects that are
- * obtained via the <code>getClip</code> method and via
- * <code>Rectangle</code> objects. This method sets the
- * user clip, which is independent of the clipping associated
- * with device bounds and window visibility.
- * @param clip the <code>Shape</code> to use to set the clip
- * @see and.awt.Graphics#getClip()
- * @see and.awt.Graphics#clipRect
- * @see and.awt.Graphics#setClip(int, int, int, int)
- * @since JDK1.1
- */
- public void setClip(Shape clip) {
- log.log(POILogger.WARN, "Not implemented");
- }
- /**
- * Returns the bounding rectangle of the current clipping area.
- * This method refers to the user clip, which is independent of the
- * clipping associated with device bounds and window visibility.
- * If no clip has previously been set, or if the clip has been
- * cleared using <code>setClip(null)</code>, this method returns
- * <code>null</code>.
- * The coordinates in the rectangle are relative to the coordinate
- * system origin of this graphics context.
- * @return the bounding rectangle of the current clipping area,
- * or <code>null</code> if no clip is set.
- * @see and.awt.Graphics#getClip
- * @see and.awt.Graphics#clipRect
- * @see and.awt.Graphics#setClip(int, int, int, int)
- * @see and.awt.Graphics#setClip(Shape)
- * @since JDK1.1
- */
- public Rectangle getClipBounds(){
- Shape c = getClip();
- if (c==null) {
- return null;
- }
- return c.getBounds();
- }
- /**
- * Draws the text given by the specified iterator, using this
- * graphics context's current color. The iterator has to specify a font
- * for each character. The baseline of the
- * first character is at position (<i>x</i>, <i>y</i>) in this
- * graphics context's coordinate system.
- * @param iterator the iterator whose text is to be drawn
- * @param x the <i>x</i> coordinate.
- * @param y the <i>y</i> coordinate.
- * @see and.awt.Graphics#drawBytes
- * @see and.awt.Graphics#drawChars
- */
- public void drawString(AttributedCharacterIterator iterator,
- int x, int y){
- drawString(iterator, (float)x, (float)y);
- }
- /**
- * Clears the specified rectangle by filling it with the background
- * color of the current drawing surface. This operation does not
- * use the current paint mode.
- * <p>
- * Beginning with Java 1.1, the background color
- * of offscreen images may be system dependent. Applications should
- * use <code>setColor</code> followed by <code>fillRect</code> to
- * ensure that an offscreen image is cleared to a specific color.
- * @param x the <i>x</i> coordinate of the rectangle to clear.
- * @param y the <i>y</i> coordinate of the rectangle to clear.
- * @param width the width of the rectangle to clear.
- * @param height the height of the rectangle to clear.
- * @see and.awt.Graphics#fillRect(int, int, int, int)
- * @see and.awt.Graphics#drawRect
- * @see and.awt.Graphics#setColor(and.awt.Color)
- * @see and.awt.Graphics#setPaintMode
- * @see and.awt.Graphics#setXORMode(and.awt.Color)
- */
- public void clearRect(int x, int y, int width, int height) {
- Paint paint = getPaint();
- setColor(getBackground());
- fillRect(x, y, width, height);
- setPaint(paint);
- }
- public void copyArea(int x, int y, int width, int height, int dx, int dy) {
- ;
- }
- /**
- * Sets the current clip to the rectangle specified by the given
- * coordinates. This method sets the user clip, which is
- * independent of the clipping associated with device bounds
- * and window visibility.
- * Rendering operations have no effect outside of the clipping area.
- * @param x the <i>x</i> coordinate of the new clip rectangle.
- * @param y the <i>y</i> coordinate of the new clip rectangle.
- * @param width the width of the new clip rectangle.
- * @param height the height of the new clip rectangle.
- * @see and.awt.Graphics#clipRect
- * @see and.awt.Graphics#setClip(Shape)
- * @since JDK1.1
- */
- public void setClip(int x, int y, int width, int height){
- setClip(new Rectangle(x, y, width, height));
- }
- /**
- * Concatenates the current <code>Graphics2D</code>
- * <code>Transform</code> with a rotation transform.
- * Subs…
Large files files are truncated, but you can click here to view the full file