JavaView© v3.95.000

jv.loader
Class PSGr

java.lang.Object
  extended byjava.awt.Graphics
      extended byjv.loader.PSGr

public final class PSGr
extends java.awt.Graphics

PSGr is a Graphics subclass that images to PostScript. (C) 1996 E.J. Friedman-Hill and Sandia National Labs. Further information: http://herzberg.ca.sandia.gov/

HACK: Currently, the bounding box exactly covers the JavaView display although it should cover only the visible geometry lying within the display. Also, if the geometry extends outside the display then the PS is not clipped here.


Field Summary
static int CLONE
           
 
Constructor Summary
PSGr(java.awt.Graphics g, int what)
           
PSGr(java.awt.Graphics g, java.lang.String name, int width, int height)
          Constructs a new PSGr Object.
 
Method Summary
 void boundingBox(int xMin, int yMin, int xMax, int yMax)
          Insert bounding box statement for eps files.
 void clearRect(int x, int y, int width, int height)
          Clears the specified rectangle by filling it with the current background color of the current drawing surface.
 void clipRect(int x, int y, int width, int height)
           
 void copyArea(int x, int y, int width, int height, int dx, int dy)
          Copies an area of the screen.
 java.awt.Graphics create()
          Creates a new PSGr Object that is a copy of the original PSGr Object.
 java.awt.Graphics create(int x, int y, int width, int height)
          Creates a new Graphics Object with the specified parameters, based on the original graphics object.
 void dispose()
          Disposes of this graphics context.
 boolean doImage(java.awt.Image img, int xInt, int yInt, int widthInt, int heightInt, java.awt.image.ImageObserver observer, java.awt.Color bgcolor)
           
 void draw3DRect(int x, int y, int width, int height, boolean raised)
          Draws a highlighted 3-D rectangle.
 void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
          Draws an arc bounded by the specified rectangle from startAngle to endAngle. 0 degrees is at the 3-o'clock position.Positive arc angles indicate counter-clockwise rotations, negative arc angles are drawn clockwise.
 void drawBytes(byte[] data, int offset, int length, int x, int y)
          Draws the specified bytes using the current font and color.
 void drawChars(char[] data, int offset, int length, int x, int y)
          Draws the specified characters using the current font and color.
 boolean drawImage(java.awt.Image img, int x, int y, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)
          Draws the specified image at the specified coordinate (x, y).
 boolean drawImage(java.awt.Image img, int x, int y, java.awt.image.ImageObserver observer)
          Draws the specified image at the specified coordinate (x, y).
 boolean drawImage(java.awt.Image img, int x, int y, int width, int height, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)
          Draws the specified image inside the specified rectangle.
 boolean drawImage(java.awt.Image img, int x, int y, int width, int height, java.awt.image.ImageObserver observer)
          Draws the specified image inside the specified rectangle.
 boolean drawImage(java.awt.Image img, int x, int y, int width, int height, int x1, int x2, int x3, int x4, java.awt.Color col, java.awt.image.ImageObserver observer)
           
 boolean drawImage(java.awt.Image img, int x, int y, int width, int height, int x1, int x2, int x3, int x4, java.awt.image.ImageObserver observer)
           
 void drawLine(int x1Int, int y1Int, int x2Int, int y2Int)
          Draws a line between the coordinates (x1,y1) and (x2,y2).
 void drawOval(int x, int y, int width, int height)
          Draws an oval inside the specified rectangle using the current color.
 void drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
          Draws a polygon defined by an array of x points and y points.
 void drawPolygon(java.awt.Polygon p)
          Draws a polygon defined by the specified point.
 void drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
           
 void drawRect(int x, int y, int width, int height)
          Draws the outline of the specified rectangle using the current color.
 void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
          Draws an outlined rounded corner rectangle using the current color.
 void drawString(java.lang.String str, int x, int y)
          Draws the specified String using the current font and color.
 void emitThis(java.lang.String s)
           
 void fill3DRect(int x, int y, int width, int height, boolean raised)
          Paints a highlighted 3-D rectangle using the current color.
 void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
          Fills an arc using the current color.
 void fillOval(int x, int y, int width, int height)
          Fills an oval inside the specified rectangle using the current color.
 void fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
          Fills a polygon with the current color.
 void fillPolygon(java.awt.Polygon p)
          Fills the specified polygon with the current color.
 void fillRect(int x, int y, int width, int height)
          Fills the specified rectangle with the current color.
 void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
          Draws a rounded rectangle filled in with the current color.
 void finalize()
          Disposes of this graphics context once it is no longer referenced.
 void flush()
           
 java.awt.Shape getClip()
           
 java.awt.Rectangle getClipBounds()
          Returns the bounding rectangle of the current clipping area.
 java.awt.Color getColor()
          Gets the current color.
 java.awt.Font getFont()
          Gets the current font.
 java.awt.FontMetrics getFontMetrics()
          Gets the current font metrics.
 java.awt.FontMetrics getFontMetrics(java.awt.Font font)
          Gets the current font metrics for the specified font.
 void grestore()
           
 void gsave()
           
 void print(double x)
           
 void print(float x)
           
 void print(int x)
           
 void print(java.lang.String text)
          Following print methods avoid exchange of all print-statements in PSGr.
 void println(double x)
           
 void println(float x)
           
 void println(int x)
           
 void println(java.lang.String text)
           
 void scale(float sx, float sy)
          Scales the graphics context.
 void setBackground(java.awt.Color c)
          Gets the current color.
 void setClip(int xInt, int yInt, int widthInt, int heightInt)
          Clips to a rectangle.
 void setClip(java.awt.Shape shape)
           
 void setColor(java.awt.Color c)
          Sets the current color to the specified color.
 void setFont(java.awt.Font font)
          Sets the font for all subsequent text-drawing operations.
 void setPaintMode()
          Sets the default paint mode to overwrite the destination with the current color.
 void setXORMode(java.awt.Color c1)
          Sets the paint mode to alternate between the current color and the new specified color.
 void setZoom(float zoom)
          Set zoom factor to undo previous pixel scaling.
 java.lang.String toString()
          Create a string representation of the PostScript image.
 void translate(int x, int y)
          Translates the specified parameters into the origin of the graphics context.
 
Methods inherited from class java.awt.Graphics
drawString, getClipBounds, getClipRect, hitClip
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CLONE

public static final int CLONE
See Also:
Constant Field Values
Constructor Detail

PSGr

public PSGr(java.awt.Graphics g,
            java.lang.String name,
            int width,
            int height)
Constructs a new PSGr Object. Unlike regular Graphics objects, PSGr contexts can be created directly.

Parameters:
g - Graphics object of panel
name - Name of geometry
width - the width of the drawing region
height - the height of the drawing region
See Also:
create()

PSGr

public PSGr(java.awt.Graphics g,
            int what)
Method Detail

toString

public java.lang.String toString()
Create a string representation of the PostScript image.


setZoom

public void setZoom(float zoom)
Set zoom factor to undo previous pixel scaling.


create

public java.awt.Graphics create()
Creates a new PSGr Object that is a copy of the original PSGr Object.


create

public java.awt.Graphics create(int x,
                                int y,
                                int width,
                                int height)
Creates a new Graphics Object with the specified parameters, based on the original graphics object. This method translates the specified parameters, x and y, to the proper origin coordinates and then clips the Graphics Object to the area.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the area
height - the height of the area
See Also:
translate(int, int)

translate

public void translate(int x,
                      int y)
Translates the specified parameters into the origin of the graphics context. All subsequent operations on this graphics context will be relative to this origin.

Parameters:
x - the x coordinate
y - the y coordinate
See Also:
scale(float, float)

boundingBox

public void boundingBox(int xMin,
                        int yMin,
                        int xMax,
                        int yMax)
Insert bounding box statement for eps files.


scale

public void scale(float sx,
                  float sy)
Scales the graphics context. All subsequent operations on this graphics context will be affected.

Parameters:
sx - the scaled x coordinate
sy - the scaled y coordinate
See Also:
translate(int, int)

getColor

public java.awt.Color getColor()
Gets the current color.

See Also:
setColor(java.awt.Color)

setBackground

public void setBackground(java.awt.Color c)
Gets the current color.

See Also:
setColor(java.awt.Color)

setColor

public void setColor(java.awt.Color c)
Sets the current color to the specified color. All subsequent graphics operations will use this specified color.

Parameters:
c - the color to be set
See Also:
Color, getColor()

setPaintMode

public void setPaintMode()
Sets the default paint mode to overwrite the destination with the current color. PostScript has only paint mode.


setXORMode

public void setXORMode(java.awt.Color c1)
Sets the paint mode to alternate between the current color and the new specified color. PostScript does not support XOR mode.

Parameters:
c1 - the second color

getFont

public java.awt.Font getFont()
Gets the current font.


setFont

public void setFont(java.awt.Font font)
Sets the font for all subsequent text-drawing operations.

Parameters:
font - the specified font
See Also:
getFont(), drawString(java.lang.String, int, int), drawBytes(byte[], int, int, int, int), drawChars(char[], int, int, int, int)

getFontMetrics

public java.awt.FontMetrics getFontMetrics()
Gets the current font metrics.

See Also:
getFont()

getFontMetrics

public java.awt.FontMetrics getFontMetrics(java.awt.Font font)
Gets the current font metrics for the specified font.

Parameters:
font - the specified font
See Also:
getFont(), getFontMetrics()

getClipBounds

public java.awt.Rectangle getClipBounds()
Returns the bounding rectangle of the current clipping area.

See Also:
clipRect(int, int, int, int)

setClip

public void setClip(int xInt,
                    int yInt,
                    int widthInt,
                    int heightInt)
Clips to a rectangle. The resulting clipping area is the intersection of the current clipping area and the specified rectangle. Graphic operations have no effect outside of the clipping area.

Parameters:
xInt - the x coordinate
yInt - the y coordinate
widthInt - the width of the rectangle
heightInt - the height of the rectangle
See Also:
getClipBounds()

copyArea

public void copyArea(int x,
                     int y,
                     int width,
                     int height,
                     int dx,
                     int dy)
Copies an area of the screen.

Parameters:
x - the x-coordinate of the source
y - the y-coordinate of the source
width - the width
height - the height
dx - the horizontal distance
dy - the vertical distance Note: copyArea not supported by PostScript

drawLine

public void drawLine(int x1Int,
                     int y1Int,
                     int x2Int,
                     int y2Int)
Draws a line between the coordinates (x1,y1) and (x2,y2). The line is drawn below and to the left of the logical coordinates.

Parameters:
x1Int - the first point's x coordinate
y1Int - the first point's y coordinate
x2Int - the second point's x coordinate
y2Int - the second point's y coordinate

fillRect

public void fillRect(int x,
                     int y,
                     int width,
                     int height)
Fills the specified rectangle with the current color.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
See Also:
drawRect(int, int, int, int), clearRect(int, int, int, int)

drawRect

public void drawRect(int x,
                     int y,
                     int width,
                     int height)
Draws the outline of the specified rectangle using the current color. Use drawRect(x, y, width-1, height-1) to draw the outline inside the specified rectangle.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
See Also:
fillRect(int, int, int, int), clearRect(int, int, int, int)

clearRect

public void clearRect(int x,
                      int y,
                      int width,
                      int height)
Clears the specified rectangle by filling it with the current background color of the current drawing surface. Which drawing surface it selects depends on how the graphics context was created.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
See Also:
fillRect(int, int, int, int), drawRect(int, int, int, int)

drawRoundRect

public void drawRoundRect(int x,
                          int y,
                          int width,
                          int height,
                          int arcWidth,
                          int arcHeight)
Draws an outlined rounded corner rectangle using the current color.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
arcWidth - the diameter of the arc
arcHeight - the radius of the arc
See Also:
fillRoundRect(int, int, int, int, int, int)

fillRoundRect

public void fillRoundRect(int x,
                          int y,
                          int width,
                          int height,
                          int arcWidth,
                          int arcHeight)
Draws a rounded rectangle filled in with the current color.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
arcWidth - the diameter of the arc
arcHeight - the radius of the arc
See Also:
drawRoundRect(int, int, int, int, int, int)

draw3DRect

public void draw3DRect(int x,
                       int y,
                       int width,
                       int height,
                       boolean raised)
Draws a highlighted 3-D rectangle.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
raised - a boolean that states whether the rectangle is raised or not

fill3DRect

public void fill3DRect(int x,
                       int y,
                       int width,
                       int height,
                       boolean raised)
Paints a highlighted 3-D rectangle using the current color.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
raised - a boolean that states whether the rectangle is raised or not

drawOval

public void drawOval(int x,
                     int y,
                     int width,
                     int height)
Draws an oval inside the specified rectangle using the current color.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
See Also:
fillOval(int, int, int, int)

fillOval

public void fillOval(int x,
                     int y,
                     int width,
                     int height)
Fills an oval inside the specified rectangle using the current color.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
See Also:
drawOval(int, int, int, int)

drawArc

public void drawArc(int x,
                    int y,
                    int width,
                    int height,
                    int startAngle,
                    int arcAngle)
Draws an arc bounded by the specified rectangle from startAngle to endAngle. 0 degrees is at the 3-o'clock position.Positive arc angles indicate counter-clockwise rotations, negative arc angles are drawn clockwise.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
startAngle - the beginning angle
arcAngle - the angle of the arc (relative to startAngle).
See Also:
fillArc(int, int, int, int, int, int)

fillArc

public void fillArc(int x,
                    int y,
                    int width,
                    int height,
                    int startAngle,
                    int arcAngle)
Fills an arc using the current color. This generates a pie shape.

Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the arc
height - the height of the arc
startAngle - the beginning angle
arcAngle - the angle of the arc (relative to startAngle).
See Also:
drawArc(int, int, int, int, int, int)

drawPolygon

public void drawPolygon(int[] xPoints,
                        int[] yPoints,
                        int nPoints)
Draws a polygon defined by an array of x points and y points.

Parameters:
xPoints - an array of x points
yPoints - an array of y points
nPoints - the total number of points
See Also:
fillPolygon(Polygon)

drawPolygon

public void drawPolygon(java.awt.Polygon p)
Draws a polygon defined by the specified point.

Parameters:
p - the specified polygon
See Also:
fillPolygon(Polygon)

fillPolygon

public void fillPolygon(int[] xPoints,
                        int[] yPoints,
                        int nPoints)
Fills a polygon with the current color.

Parameters:
xPoints - an array of x points
yPoints - an array of y points
nPoints - the total number of points
See Also:
drawPolygon(Polygon)

fillPolygon

public void fillPolygon(java.awt.Polygon p)
Fills the specified polygon with the current color.

Parameters:
p - the polygon
See Also:
drawPolygon(Polygon)

drawString

public void drawString(java.lang.String str,
                       int x,
                       int y)
Draws the specified String using the current font and color. The x,y position is the starting point of the baseline of the String.

Parameters:
str - the String to be drawn
x - the x coordinate
y - the y coordinate
See Also:
drawChars(char[], int, int, int, int), drawBytes(byte[], int, int, int, int)

drawChars

public void drawChars(char[] data,
                      int offset,
                      int length,
                      int x,
                      int y)
Draws the specified characters using the current font and color.

Parameters:
data - the array of characters to be drawn
offset - the start offset in the data
length - the number of characters to be drawn
x - the x coordinate
y - the y coordinate
See Also:
drawString(java.lang.String, int, int), drawBytes(byte[], int, int, int, int)

drawBytes

public void drawBytes(byte[] data,
                      int offset,
                      int length,
                      int x,
                      int y)
Draws the specified bytes using the current font and color.

Parameters:
data - the data to be drawn
offset - the start offset in the data
length - the number of bytes that are drawn
x - the x coordinate
y - the y coordinate
See Also:
drawString(java.lang.String, int, int), drawChars(char[], int, int, int, int)

doImage

public boolean doImage(java.awt.Image img,
                       int xInt,
                       int yInt,
                       int widthInt,
                       int heightInt,
                       java.awt.image.ImageObserver observer,
                       java.awt.Color bgcolor)

drawImage

public boolean drawImage(java.awt.Image img,
                         int x,
                         int y,
                         java.awt.image.ImageObserver observer)
Draws the specified image at the specified coordinate (x, y). If the image is incomplete the image observer will be notified later.

Parameters:
img - the specified image to be drawn
x - the x coordinate
y - the y coordinate
observer - notifies if the image is complete or not
See Also:
Image, ImageObserver

drawImage

public boolean drawImage(java.awt.Image img,
                         int x,
                         int y,
                         int width,
                         int height,
                         java.awt.image.ImageObserver observer)
Draws the specified image inside the specified rectangle. The image is scaled if necessary. If the image is incomplete the image observer will be notified later.

Parameters:
img - the specified image to be drawn
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
observer - notifies if the image is complete or not
See Also:
Image, ImageObserver

drawImage

public boolean drawImage(java.awt.Image img,
                         int x,
                         int y,
                         java.awt.Color bgcolor,
                         java.awt.image.ImageObserver observer)
Draws the specified image at the specified coordinate (x, y). If the image is incomplete the image observer will be notified later.

Parameters:
img - the specified image to be drawn
x - the x coordinate
y - the y coordinate
bgcolor - the background color
observer - notifies if the image is complete or not
See Also:
Image, ImageObserver

drawImage

public boolean drawImage(java.awt.Image img,
                         int x,
                         int y,
                         int width,
                         int height,
                         java.awt.Color bgcolor,
                         java.awt.image.ImageObserver observer)
Draws the specified image inside the specified rectangle. The image is scaled if necessary. If the image is incomplete the image observer will be notified later.

Parameters:
img - the specified image to be drawn
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
bgcolor - the background color
observer - notifies if the image is complete or not
See Also:
Image, NOTE: PSGr ignores the background color.

dispose

public void dispose()
Disposes of this graphics context. The Graphics context cannot be used after being disposed of.

See Also:
finalize()

finalize

public void finalize()
Disposes of this graphics context once it is no longer referenced.

See Also:
dispose()

gsave

public void gsave()

grestore

public void grestore()

emitThis

public void emitThis(java.lang.String s)

getClip

public java.awt.Shape getClip()

setClip

public void setClip(java.awt.Shape shape)

drawImage

public boolean drawImage(java.awt.Image img,
                         int x,
                         int y,
                         int width,
                         int height,
                         int x1,
                         int x2,
                         int x3,
                         int x4,
                         java.awt.image.ImageObserver observer)

drawImage

public boolean drawImage(java.awt.Image img,
                         int x,
                         int y,
                         int width,
                         int height,
                         int x1,
                         int x2,
                         int x3,
                         int x4,
                         java.awt.Color col,
                         java.awt.image.ImageObserver observer)

clipRect

public void clipRect(int x,
                     int y,
                     int width,
                     int height)

drawPolyline

public void drawPolyline(int[] xPoints,
                         int[] yPoints,
                         int nPoints)

print

public void print(java.lang.String text)
Following print methods avoid exchange of all print-statements in PSGr.


println

public void println(java.lang.String text)

print

public void print(int x)

print

public void print(float x)

print

public void print(double x)

println

public void println(int x)

println

public void println(float x)

println

public void println(double x)

flush

public void flush()

JavaView© v3.95.000

The software JavaView© is copyright protected. All Rights Reserved.