|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.Graphics | +--sub_arctic.output.drawable
Specialization of, and wrapper for, Graphics class.
This class provides a specialization of the AWT Graphics class that modifies drawing operations slightly to work better with subArctic (e.g., in the area of image drawing), and add some operations for convenience purposes.
Since we don't have access to the construction process for Graphics objects, we can't effectively subclass Graphics in the normal way to specialize it. Instead we create a wrapper around an existing Graphics object. For the most part, we just forward all the operations to the wrapped object. Only in a few places do we extend the API.
Routines that are not documented here are forwarded directly to the Graphics class (see that class for details).
Graphics
Field Summary | |
protected static ignore_observer |
_ignore
An observer object for effectively ignoring observation. |
protected java.awt.Graphics |
g
Graphics object that we are a wrapper for |
Constructor Summary | |
drawable(java.awt.Graphics wrappee)
Construct a drawable from a Graphics object. |
Method Summary | |
void |
arrowhead_bound(int x1,
int y1,
int x2,
int y2,
int arrow_head_len,
int arrow_head_angle,
double arrow_inset,
java.awt.Point min_pt,
java.awt.Point max_pt)
Find the min and max points bounding the arrowhead that would be drawn at the second point on the given line. |
void |
arrowhead_bound(int x1,
int y1,
int x2,
int y2,
java.awt.Point min_pt,
java.awt.Point max_pt)
Find the min and max points bounding the arrowhead that would be drawn at the second point on the given line. |
void |
clear_rect(int x,
int y,
int w,
int h)
|
void |
clearRect(int x,
int y,
int w,
int h)
|
void |
clip_rect(int x,
int y,
int w,
int h)
|
void |
clipRect(int x,
int y,
int w,
int h)
|
void |
copy_area(int x,
int y,
int w,
int h,
int dx,
int dy)
|
drawable |
copy()
New version of create() that returns a drawable. |
drawable |
copy(int x,
int y,
int w,
int h)
New version of create() that returns a drawable. |
void |
copyArea(int x,
int y,
int w,
int h,
int dx,
int dy)
|
java.awt.Graphics |
create()
Override create() to create a new wrapper also. |
java.awt.Graphics |
create(int x,
int y,
int w,
int h)
Override create() to create a new wrapper also. |
void |
dispose()
|
void |
draw_3D_rect(int x,
int y,
int w,
int h,
boolean raised)
|
void |
draw_arc(int x,
int y,
int w,
int h,
int start_ang,
int arc_ang)
|
void |
draw_arrowhead(int x1,
int y1,
int x2,
int y2)
Draw a hollow arrowhead (as lines) at the second end of the given line (this does not draw the line). |
void |
draw_arrowhead(int x1,
int y1,
int x2,
int y2,
int arrow_head_len,
int arrow_head_angle,
double arrow_inset)
Draw a hollow arrowhead (as lines) at the second end of the given line (this does not draw the line). |
void |
draw_bytes(byte[] data,
int off,
int len,
int x,
int y)
|
void |
draw_chars(char[] data,
int off,
int len,
int x,
int y)
|
boolean |
draw_image(java.awt.Image img,
int x,
int y,
java.awt.Color bgcolor,
java.awt.image.ImageObserver obs)
|
boolean |
draw_image(java.awt.Image img,
int x,
int y,
java.awt.image.ImageObserver observer)
|
boolean |
draw_image(java.awt.Image img,
int x,
int y,
int w,
int h,
java.awt.Color bgcolor,
java.awt.image.ImageObserver obs)
|
boolean |
draw_image(java.awt.Image img,
int x,
int y,
int w,
int h,
java.awt.image.ImageObserver obs)
|
boolean |
draw_image(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2)
|
boolean |
draw_image(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.Color bgcolor)
|
boolean |
draw_image(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer)
|
boolean |
draw_image(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.image.ImageObserver observer)
|
boolean |
draw_image(loaded_image img,
int x,
int y)
subArctic style renaming of drawImage. |
boolean |
draw_image(loaded_image img,
int x,
int y,
java.awt.Color bgcolor)
subArctic style renaming of drawImage |
boolean |
draw_image(loaded_image img,
int x,
int y,
int w,
int h)
subArctic style renaming of drawImage. |
boolean |
draw_image(loaded_image img,
int x,
int y,
int w,
int h,
java.awt.Color bgcolor)
subArctic style renaming of drawImage |
void |
draw_line(int x1,
int y1,
int x2,
int y2)
|
void |
draw_oval(int x,
int y,
int w,
int h)
|
void |
draw_polygon(int[] xp,
int[] yp,
int np)
|
void |
draw_polygon(java.awt.Polygon p)
|
void |
draw_polyline(int[] xpts,
int[] ypts,
int npts)
|
void |
draw_rect(int x,
int y,
int w,
int h)
|
void |
draw_round_rect(int x,
int y,
int w,
int h,
int arcw,
int arch)
|
void |
draw_string(java.lang.String str,
int x,
int y)
|
void |
draw3DRect(int x,
int y,
int w,
int h,
boolean raised)
|
void |
drawArc(int x,
int y,
int w,
int h,
int start_ang,
int arc_ang)
|
void |
drawBytes(byte[] data,
int off,
int len,
int x,
int y)
|
void |
drawChars(char[] data,
int off,
int len,
int x,
int y)
|
boolean |
drawImage(java.awt.Image img,
int x,
int y,
java.awt.Color bgcolor,
java.awt.image.ImageObserver obs)
|
boolean |
drawImage(java.awt.Image img,
int x,
int y,
java.awt.image.ImageObserver observer)
|
boolean |
drawImage(java.awt.Image img,
int x,
int y,
int w,
int h,
java.awt.Color bgcolor,
java.awt.image.ImageObserver obs)
|
boolean |
drawImage(java.awt.Image img,
int x,
int y,
int w,
int h,
java.awt.image.ImageObserver obs)
|
boolean |
drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2)
|
boolean |
drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.Color bgcolor)
|
boolean |
drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer)
|
boolean |
drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.image.ImageObserver observer)
|
boolean |
drawImage(loaded_image img,
int x,
int y)
Extended draw image that can deal with a loaded_image w/o an observer. |
boolean |
drawImage(loaded_image img,
int x,
int y,
java.awt.Color bgcolor)
Extended draw image that can deal with a loaded_image w/o an observer. |
boolean |
drawImage(loaded_image img,
int x,
int y,
int w,
int h)
Extended draw image that can deal with a loaded_image w/o an observer. |
boolean |
drawImage(loaded_image img,
int x,
int y,
int w,
int h,
java.awt.Color bgcolor)
Extended draw image that can deal with a loaded_image w/o an observer. |
void |
drawLine(int x1,
int y1,
int x2,
int y2)
|
void |
drawOval(int x,
int y,
int w,
int h)
|
void |
drawPolygon(int[] xp,
int[] yp,
int np)
|
void |
drawPolygon(java.awt.Polygon p)
|
void |
drawPolyline(int[] xpts,
int[] ypts,
int npts)
|
void |
drawRect(int x,
int y,
int w,
int h)
|
void |
drawRoundRect(int x,
int y,
int w,
int h,
int arcw,
int arch)
|
void |
drawString(java.text.AttributedCharacterIterator s,
int a,
int b)
|
void |
drawString(java.lang.String str,
int x,
int y)
|
void |
end_interactor_draw(interactor of_interactor)
Method to be called to mark the end of output for a particular interactor. |
void |
fill_3D_rect(int x,
int y,
int w,
int h,
boolean raised)
|
void |
fill_arc(int x,
int y,
int w,
int h,
int start_ang,
int arc_ang)
|
void |
fill_arrowhead(int x1,
int y1,
int x2,
int y2)
Draw a filled arrowhead polygon (with good defaults) at the second end of the given line (this does not draw the line). |
void |
fill_arrowhead(int x1,
int y1,
int x2,
int y2,
int arrow_head_len,
int arrow_head_angle,
double arrow_inset)
Draw a filled arrowhead polygon at the second end of the given line (this does not draw the line). |
void |
fill_oval(int x,
int y,
int w,
int h)
|
void |
fill_polygon(int[] xp,
int[] yp,
int np)
|
void |
fill_polygon(java.awt.Polygon p)
|
void |
fill_rect(int x,
int y,
int w,
int h)
|
void |
fill_round_rect(int x,
int y,
int w,
int h,
int arcw,
int arch)
|
void |
fill3DRect(int x,
int y,
int w,
int h,
boolean raised)
|
void |
fillArc(int x,
int y,
int w,
int h,
int start_ang,
int arc_ang)
|
void |
fillOval(int x,
int y,
int w,
int h)
|
void |
fillPolygon(int[] xp,
int[] yp,
int np)
|
void |
fillPolygon(java.awt.Polygon p)
|
void |
fillRect(int x,
int y,
int w,
int h)
|
void |
fillRoundRect(int x,
int y,
int w,
int h,
int arcw,
int arch)
|
java.awt.Rectangle |
get_clip_bounds()
|
java.awt.Shape |
get_clip()
|
java.awt.Color |
get_color()
|
java.awt.FontMetrics |
get_font_metrics()
|
java.awt.FontMetrics |
get_font_metrics(java.awt.Font f)
|
java.awt.Font |
get_font()
|
java.awt.Shape |
getClip()
|
java.awt.Rectangle |
getClipBounds()
|
java.awt.Color |
getColor()
|
java.awt.Font |
getFont()
|
java.awt.FontMetrics |
getFontMetrics()
|
java.awt.FontMetrics |
getFontMetrics(java.awt.Font f)
|
java.awt.Graphics |
graphics()
The Graphics object we are a wrapper for. |
boolean |
mark_interactor_draw(interactor of_interactor,
java.lang.Object mark_obj)
Method to be called to mark a significant point during output for a particular interactor. |
void |
set_clip(int x,
int y,
int w,
int h)
|
void |
set_clip(java.awt.Shape clp)
|
void |
set_color(java.awt.Color c)
|
void |
set_font(java.awt.Font font)
|
void |
set_paint_mode()
|
void |
set_XOR_mode(java.awt.Color c)
|
void |
setClip(int x,
int y,
int w,
int h)
|
void |
setClip(java.awt.Shape clp)
|
void |
setColor(java.awt.Color c)
|
void |
setFont(java.awt.Font font)
|
void |
setPaintMode()
|
void |
setXORMode(java.awt.Color c)
|
boolean |
start_interactor_draw(interactor of_interactor)
Method to be called to mark the beginning of output for a particular interactor. |
boolean |
tile_image(loaded_image pattern,
int x,
int y,
int w,
int h)
subArctic style renaming of tileImage |
boolean |
tileImage(loaded_image pattern,
int x,
int y,
int w,
int h)
Tiled drawing of a pattern image over an area. |
java.lang.String |
toString()
Convert to a human readable string. |
void |
translate(int x,
int y)
|
Methods inherited from class java.awt.Graphics |
finalize,
getClipBounds,
getClipRect,
hitClip |
Methods inherited from class java.lang.Object |
clone,
equals,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
Field Detail |
protected java.awt.Graphics g
protected static ignore_observer _ignore
Constructor Detail |
public drawable(java.awt.Graphics wrappee)
Graphics
- wrappee the object we are wrapper around.Method Detail |
public void drawString(java.text.AttributedCharacterIterator s, int a, int b)
public java.awt.Graphics graphics()
public java.awt.Graphics create()
public java.awt.Graphics create(int x, int y, int w, int h)
int
- x x component of origin of new drawableint
- y y component of origin of new drawableint
- w width of new drawableint
- h height of new drawablepublic drawable copy()
public drawable copy(int x, int y, int w, int h)
int
- x x component of origin of new drawableint
- y y component of origin of new drawableint
- w width of new drawableint
- h height of new drawablepublic boolean start_interactor_draw(interactor of_interactor)
interactor
- of_interactor the interactor we are starting to drawboolean
- whether the drawing of the interactor (and its children)
should be performed.mark_interactor_draw(sub_arctic.lib.interactor, java.lang.Object)
,
end_interactor_draw(sub_arctic.lib.interactor)
public boolean mark_interactor_draw(interactor of_interactor, java.lang.Object mark_obj)
interactor
- of_interactor the interactor we are currently drawingObject
- mark_obj an object giving additional information
about the markboolean
- whether the drawing of the interactor (and its children)
should be performed.start_interactor_draw(sub_arctic.lib.interactor)
,
end_interactor_draw(sub_arctic.lib.interactor)
public void end_interactor_draw(interactor of_interactor)
interactor
- of_interactor the interactor we are starting to drawmark_interactor_draw(sub_arctic.lib.interactor, java.lang.Object)
,
start_interactor_draw(sub_arctic.lib.interactor)
public boolean drawImage(loaded_image img, int x, int y)
loaded_image
- img the image to be drawn.int
- x x position to place the image at.int
- y y position to place the image at.public boolean drawImage(loaded_image img, int x, int y, int w, int h)
loaded_image
- img the image to be drawn.int
- x x position to place the image at.int
- y y position to place the image at.int
- w width image will be scaled to.int
- h height image will be scaled to.public boolean drawImage(loaded_image img, int x, int y, java.awt.Color bgcolor)
loaded_image
- img the image to be drawn.int
- x x position to place the image at.int
- y y position to place the image at.Color
- bgcolor background color.public boolean drawImage(loaded_image img, int x, int y, int w, int h, java.awt.Color bgcolor)
loaded_image
- img the image to be drawn.int
- x x position to place the image at.int
- y y position to place the image at.int
- w width image will be scaled to.int
- h height image will be scaled to.Color
- bgcolor background color.public boolean draw_image(loaded_image img, int x, int y)
loaded_image
- img the image to be drawn.int
- x x position to place the image at.int
- y y position to place the image at.public boolean draw_image(loaded_image img, int x, int y, int w, int h)
loaded_image
- img the image to be drawn.int
- x x position to place the image at.int
- y y position to place the image at.int
- w width image will be scaled to.int
- h height image will be scaled to.public boolean draw_image(loaded_image img, int x, int y, java.awt.Color bgcolor)
loaded_image
- img the image to be drawn.int
- x x position to place the image at.int
- y y position to place the image at.Color
- bgcolor background color.public boolean draw_image(loaded_image img, int x, int y, int w, int h, java.awt.Color bgcolor)
loaded_image
- img the image to be drawn.int
- x x position to place the image at.int
- y y position to place the image at.int
- w width image will be scaled to.int
- h height image will be scaled to.Color
- bgcolor background color.public boolean tileImage(loaded_image pattern, int x, int y, int w, int h)
loaded_image
- pattern the pattern to be tiled with the given space.int
- x x position to place the image at.int
- y y position to place the image at.int
- w width of area to tile.int
- h height of area to tile.public boolean tile_image(loaded_image pattern, int x, int y, int w, int h)
loaded_image
- pattern the pattern to be tiled with the given space.int
- x x position to place the image at.int
- y y position to place the image at.int
- w width of area to tile.int
- h height of area to tile.public void fill_arrowhead(int x1, int y1, int x2, int y2, int arrow_head_len, int arrow_head_angle, double arrow_inset)
int
- x1 first x coordinate of the lineint
- y1 first y coordinate of the lineint
- x2 second x coordinate of the line (arrow
head point goes here)int
- y2 second y coordinate of the line (arrow
head point goes here)int
- arrow_head_len length of the sides of the arrow headint
- arrow_head_angle angle between each side and the line in
degreesdouble
- arrow_inset percent inset for base of arrow [0..1]
(values around 0.60 seem to work well).public void fill_arrowhead(int x1, int y1, int x2, int y2)
int
- x1 first x coordinate of the lineint
- y1 first y coordinate of the lineint
- x2 second x coordinate of the line (arrow head point goes here)int
- y2 second y coordinate of the line (arrow head point goes here)public void draw_arrowhead(int x1, int y1, int x2, int y2, int arrow_head_len, int arrow_head_angle, double arrow_inset)
int
- x1 first x coordinate of the line.int
- y1 first y coordinate of the line.int
- x2 second x coordinate of the line (arrow
head point goes here).int
- y2 second y coordinate of the line (arrow
head point goes here).int
- arrow_head_len length of the sides of the arrow head.int
- arrow_head_angle angle between each side and the line in
degrees.double
- arrow_inset percent inset for base of arrow [0..1]
(values around 0.60 seem to work well).public void draw_arrowhead(int x1, int y1, int x2, int y2)
int
- x1 first x coordinate of the lineint
- y1 first y coordinate of the lineint
- x2 second x coordinate of the line (arrow head point goes here)int
- y2 second y coordinate of the line (arrow head point goes here)public void arrowhead_bound(int x1, int y1, int x2, int y2, int arrow_head_len, int arrow_head_angle, double arrow_inset, java.awt.Point min_pt, java.awt.Point max_pt)
int
- x1 first x coordinate of the lineint
- y1 first y coordinate of the lineint
- x2 second x coordinate of the line (arrow head point goes here)int
- y2 second y coordinate of the line (arrow head point goes here)int
- arrow_head_len length of the sides of the arrow headint
- arrow_head_angle angle between each side and the line in degreesdouble
- arrow_inset percent inset for base of arrow [0..1]Point
- min_pt returns holding the min x,y of the boundPoint
- max_pt returns holding the max x,y of the boundpublic void arrowhead_bound(int x1, int y1, int x2, int y2, java.awt.Point min_pt, java.awt.Point max_pt)
int
- x1 first x coordinate of the lineint
- y1 first y coordinate of the lineint
- x2 second x coordinate of the line (arrow head point goes here)int
- y2 second y coordinate of the line (arrow head point goes here)Point
- min_pt returns holding the min x,y of the boundPoint
- max_pt returns holding the max x,y of the boundpublic void translate(int x, int y)
public java.awt.Color getColor()
public java.awt.Color get_color()
public void setColor(java.awt.Color c)
public void set_color(java.awt.Color c)
public void setPaintMode()
public void set_paint_mode()
public void setXORMode(java.awt.Color c)
public void set_XOR_mode(java.awt.Color c)
public java.awt.Font getFont()
public java.awt.Font get_font()
public void setFont(java.awt.Font font)
public void set_font(java.awt.Font font)
public java.awt.FontMetrics getFontMetrics()
public java.awt.FontMetrics get_font_metrics()
public java.awt.FontMetrics getFontMetrics(java.awt.Font f)
public java.awt.FontMetrics get_font_metrics(java.awt.Font f)
public void clipRect(int x, int y, int w, int h)
public void clip_rect(int x, int y, int w, int h)
public void copyArea(int x, int y, int w, int h, int dx, int dy)
public void copy_area(int x, int y, int w, int h, int dx, int dy)
public void drawLine(int x1, int y1, int x2, int y2)
public void draw_line(int x1, int y1, int x2, int y2)
public void fillRect(int x, int y, int w, int h)
public void fill_rect(int x, int y, int w, int h)
public void drawRect(int x, int y, int w, int h)
public void draw_rect(int x, int y, int w, int h)
public void clearRect(int x, int y, int w, int h)
public void clear_rect(int x, int y, int w, int h)
public void drawRoundRect(int x, int y, int w, int h, int arcw, int arch)
public void draw_round_rect(int x, int y, int w, int h, int arcw, int arch)
public void fillRoundRect(int x, int y, int w, int h, int arcw, int arch)
public void fill_round_rect(int x, int y, int w, int h, int arcw, int arch)
public void draw3DRect(int x, int y, int w, int h, boolean raised)
public void draw_3D_rect(int x, int y, int w, int h, boolean raised)
public void fill3DRect(int x, int y, int w, int h, boolean raised)
public void fill_3D_rect(int x, int y, int w, int h, boolean raised)
public void drawOval(int x, int y, int w, int h)
public void draw_oval(int x, int y, int w, int h)
public void fillOval(int x, int y, int w, int h)
public void fill_oval(int x, int y, int w, int h)
public void drawArc(int x, int y, int w, int h, int start_ang, int arc_ang)
public void draw_arc(int x, int y, int w, int h, int start_ang, int arc_ang)
public void fillArc(int x, int y, int w, int h, int start_ang, int arc_ang)
public void fill_arc(int x, int y, int w, int h, int start_ang, int arc_ang)
public void drawPolygon(int[] xp, int[] yp, int np)
public void draw_polygon(int[] xp, int[] yp, int np)
public void drawPolygon(java.awt.Polygon p)
public void draw_polygon(java.awt.Polygon p)
public void fillPolygon(int[] xp, int[] yp, int np)
public void fill_polygon(int[] xp, int[] yp, int np)
public void fillPolygon(java.awt.Polygon p)
public void fill_polygon(java.awt.Polygon p)
public void drawString(java.lang.String str, int x, int y)
public void draw_string(java.lang.String str, int x, int y)
public void drawChars(char[] data, int off, int len, int x, int y)
public void draw_chars(char[] data, int off, int len, int x, int y)
public void drawBytes(byte[] data, int off, int len, int x, int y)
public void draw_bytes(byte[] data, int off, int len, int x, int y)
public boolean drawImage(java.awt.Image img, int x, int y, java.awt.image.ImageObserver observer)
public boolean draw_image(java.awt.Image img, int x, int y, java.awt.image.ImageObserver observer)
public boolean drawImage(java.awt.Image img, int x, int y, int w, int h, java.awt.image.ImageObserver obs)
public boolean draw_image(java.awt.Image img, int x, int y, int w, int h, java.awt.image.ImageObserver obs)
public boolean drawImage(java.awt.Image img, int x, int y, java.awt.Color bgcolor, java.awt.image.ImageObserver obs)
public boolean draw_image(java.awt.Image img, int x, int y, java.awt.Color bgcolor, java.awt.image.ImageObserver obs)
public boolean drawImage(java.awt.Image img, int x, int y, int w, int h, java.awt.Color bgcolor, java.awt.image.ImageObserver obs)
public boolean draw_image(java.awt.Image img, int x, int y, int w, int h, java.awt.Color bgcolor, java.awt.image.ImageObserver obs)
public void dispose()
public java.awt.Rectangle getClipBounds()
public java.awt.Rectangle get_clip_bounds()
public void setClip(int x, int y, int w, int h)
public void set_clip(int x, int y, int w, int h)
public void setClip(java.awt.Shape clp)
public void set_clip(java.awt.Shape clp)
public java.awt.Shape getClip()
public java.awt.Shape get_clip()
public void drawPolyline(int[] xpts, int[] ypts, int npts)
public void draw_polyline(int[] xpts, int[] ypts, int npts)
public boolean drawImage(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.image.ImageObserver observer)
public boolean draw_image(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.image.ImageObserver observer)
public boolean drawImage(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)
public boolean draw_image(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.Color bgcolor, java.awt.image.ImageObserver observer)
public boolean drawImage(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2)
public boolean draw_image(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2)
public boolean drawImage(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.Color bgcolor)
public boolean draw_image(java.awt.Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.Color bgcolor)
public java.lang.String toString()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |