|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectnet.refractions.udig.ui.graphics.NonAdvancedSWTGraphics
public class NonAdvancedSWTGraphics
A Graphics object that wraps SWT's GC object
| Field Summary | |
|---|---|
static int |
TRANSPARENT
The TRANSPARENT color |
| Fields inherited from interface net.refractions.udig.ui.graphics.ViewportGraphics |
|---|
ALIGN_BOTTOM, ALIGN_LEFT, ALIGN_MIDDLE, ALIGN_RIGHT, ALIGN_TOP, LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID, LINE_SOLID_ROUNDED |
| Constructor Summary | |
|---|---|
NonAdvancedSWTGraphics(GC gc,
Display display,
java.awt.Dimension displaySize)
Construct SWTGraphics. |
|
NonAdvancedSWTGraphics(Image image,
Display display)
Construct SWTGraphics. |
|
| Method Summary | |
|---|---|
void |
clearRect(int x,
int y,
int width,
int height)
Fills the specified rectangle with the background color. |
static java.awt.image.BufferedImage |
createBufferedImage(int w,
int h)
Create a buffered image that can be be coverted to SWTland later |
static Image |
createDefaultImage(Display display,
int width,
int height)
|
static ImageData |
createImageData(java.awt.image.RenderedImage image,
boolean transparent)
|
static ImageData |
createImageDataFromBytes(java.awt.image.RenderedImage image)
|
static ImageDescriptor |
createImageDescriptor(java.awt.image.RenderedImage image,
boolean transparent)
|
static Image |
createSWTImage(java.awt.image.RenderedImage image,
boolean transparent)
|
void |
dispose()
Disposes of any resources the graphics might be hanging on to. |
void |
draw(java.awt.Shape s)
Draws the outline of shape using the color, clip & transform. |
void |
drawImage(java.awt.Image image,
int x,
int y)
Draws an Image. |
void |
drawImage(java.awt.Image image,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2)
Draws a portion of the image to the target location on the viewport graphics. |
void |
drawImage(java.awt.image.RenderedImage rimage,
int x,
int y)
Draws an image. |
void |
drawImage(java.awt.image.RenderedImage rimage,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2)
|
void |
drawLine(int x1,
int y1,
int x2,
int y2)
Draws a line from x1,y1 to x2,y2 |
void |
drawOval(int x,
int y,
int width,
int height)
Draws an Oval - only the boundary |
void |
drawPath(Path path)
Draws the outline of the path using the color, clip and transform. |
void |
drawRect(int x,
int y,
int width,
int height)
Draws a rectangle - only the boundary. |
void |
drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
Draws a round cornered rectangle |
void |
drawString(java.lang.String string,
int x,
int y,
int alignx,
int aligny)
Draws a string. |
void |
fill(java.awt.Shape s)
Fills the interior of a Shape using the foreground color, clip & transform. |
void |
fillGradientRectangle(int x,
int y,
int width,
int height,
java.awt.Color startColor,
java.awt.Color endColor,
boolean isVertical)
Fills a rectangle using a gradient paint |
void |
fillOval(int x,
int y,
int width,
int height)
Fills an Oval |
void |
fillPath(Path path)
Fills the interior of the path with the forground color. |
void |
fillRect(int x,
int y,
int width,
int height)
Fills a rectangle. |
void |
fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
Fills a round cornered rectangle using the foreground color |
java.awt.Color |
getBackgroundColor()
Gets the current background color value |
java.awt.Shape |
getClip()
Gets the area that can be drawn in. |
java.awt.Color |
getColor()
Gets the current Color value |
int |
getDPI()
Get the dots per inch, used to scale fonts, but you can scale anything you want based on this value (for example a scalebar). |
int |
getFontAscent()
Gets the ascent of the current font, which is the distance the font rises
above its baseline. |
int |
getFontHeight()
Gets the height of the current font TODO at some point maybe this could be broken out to getFontMetrics(), and a create FontMetrics object that maps between SWT and AWT. |
GC |
getGC()
Gets the SWT graphics if applicable. |
java.awt.geom.Rectangle2D |
getStringBounds(java.lang.String str)
Returns the bounds of a String. |
java.awt.geom.AffineTransform |
getTransform()
|
void |
setAffineTransform(java.awt.geom.AffineTransform t)
Sets an affine transformation for drawing shapes. |
void |
setBackground(java.awt.Color c)
This is hard because - background doesn't mean what we think it means. |
void |
setClip(java.awt.Rectangle r)
Sets the clip. |
void |
setClipBounds(java.awt.Rectangle newBounds)
Sets the clip area. |
void |
setColor(java.awt.Color c)
Sets the foreground color to draw with. |
void |
setFont(java.awt.Font f)
Sets the font; size is taken to be in DPI. |
void |
setLineDash(int[] dash)
Sets the line dash pattern |
void |
setLineWidth(int width)
Sets the line width of the graphics (in pixels). |
void |
setStroke(int style,
int width)
Sets the stroke color to draw with. |
void |
setTransform(java.awt.geom.AffineTransform transform)
Modifies the graphics so that further draws us minX,minY as the origin and maxX and maxY as the width and height of the display area. |
int |
stringWidth(java.lang.String str)
Returns the length in pixels of the given string, or -1 if this operation is not available. |
void |
translate(java.awt.Point offset)
Sets the draw offset. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int TRANSPARENT
TRANSPARENT color
| Constructor Detail |
|---|
public NonAdvancedSWTGraphics(Image image,
Display display)
SWTGraphics.
Image - imagedisplay - The display object
public NonAdvancedSWTGraphics(GC gc,
Display display,
java.awt.Dimension displaySize)
SWTGraphics.
gc - The GC objectdisplay - The display object| Method Detail |
|---|
public void dispose()
ViewportGraphics
dispose in interface ViewportGraphicspublic GC getGC()
ViewportGraphics
getGC in interface ViewportGraphicspublic void draw(java.awt.Shape s)
ViewportGraphicsshape using the color, clip & transform.
Reference description from Graphics2d: Shape
using the settings of the current Graphics2D context. The rendering attributes
applied include the Clip, Transform, Paint,
Composite and Stroke attributes.
draw in interface ViewportGraphicss - the Shape to be renderednet.refractions.udig.project.render.ViewportGraphics#draw(java.awt.Shape)public void fill(java.awt.Shape s)
ViewportGraphicsShape using the foreground color, clip & transform.
Reference description from Graphics2d:
Shape
using the settings of the Graphics2D context. The rendering attributes applied
include the Clip, Transform, Paint, and
Composite.
fill in interface ViewportGraphics
s - the Shape to be filled
net.refractions.udig.project.render.ViewportGraphics#draw(java.awt.Shape)public void setAffineTransform(java.awt.geom.AffineTransform t)
t - The transform.
public void fillRect(int x,
int y,
int width,
int height)
ViewportGraphics
fillRect in interface ViewportGraphicsx - the starting x coordinatey - the starting y coordinatewidth - the width of the rectangle.height - the height of the rectangle.net.refractions.udig.project.render.ViewportGraphics#fillRect(int,
int, int, int)public void setColor(java.awt.Color c)
ViewportGraphics
setColor in interface ViewportGraphicsc - The new color.net.refractions.udig.project.render.ViewportGraphics#setColor(java.awt.Color)public void setBackground(java.awt.Color c)
setBackground in interface ViewportGraphicsc - The new color.net.refractions.udig.project.render.ViewportGraphics#setBackground(java.awt.Color)
public void setStroke(int style,
int width)
ViewportGraphics
setStroke in interface ViewportGraphicsstyle - The style of line to draw.width - the width, in pixels, to draw lines with.net.refractions.udig.project.render.ViewportGraphics#setStroke(int,
int)public void setClip(java.awt.Rectangle r)
ViewportGraphics
setClip in interface ViewportGraphicsr - the rectangle to clip to.net.refractions.udig.project.render.ViewportGraphics#setClip(java.awt.Rectangle)public void translate(java.awt.Point offset)
ViewportGraphics
translate in interface ViewportGraphicsoffset - The amount the draw is offset in the graphics.net.refractions.udig.project.render.ViewportGraphics#translate(java.awt.Point)
public void clearRect(int x,
int y,
int width,
int height)
ViewportGraphics
clearRect in interface ViewportGraphicsx - The starting corner's x-coordinate.y - The starting corner's y-coordinate.width - the width of the rectangleheight - the height of the rectanglenet.refractions.udig.project.render.ViewportGraphics#clearRect(int,
int, int, int)
public void drawImage(java.awt.image.RenderedImage rimage,
int x,
int y)
ViewportGraphics
drawImage in interface ViewportGraphicsx - The x coordinate of the image top left corner of the image.y - The y coordinate of the image top left corner of the image.net.refractions.udig.project.render.ViewportGraphics#drawImage(javax.media.jai.PlanarImage,
int, int)
public static Image createDefaultImage(Display display,
int width,
int height)
public static ImageDescriptor createImageDescriptor(java.awt.image.RenderedImage image,
boolean transparent)
public static java.awt.image.BufferedImage createBufferedImage(int w,
int h)
public static Image createSWTImage(java.awt.image.RenderedImage image,
boolean transparent)
public static ImageData createImageDataFromBytes(java.awt.image.RenderedImage image)
public static ImageData createImageData(java.awt.image.RenderedImage image,
boolean transparent)
public void drawString(java.lang.String string,
int x,
int y,
int alignx,
int aligny)
ViewportGraphics
drawString in interface ViewportGraphicsstring - The string to draw.x - the x coordinate of the location where the of the string will be placed.y - the y coordinate of the location where the of the string will be placed.alignx - horizontal alignment, ViewportGraphics.ALIGN_LEFT, ViewportGraphics.ALIGN_MIDDLE or ViewportGraphics.ALIGN_RIGHTaligny - vertical alignment, ViewportGraphics.ALIGN_BOTTOM, ViewportGraphics.ALIGN_MIDDLE or ViewportGraphics.ALIGN_TOPpublic void setTransform(java.awt.geom.AffineTransform transform)
ViewportGraphics
setTransform in interface ViewportGraphics
public void drawImage(java.awt.Image image,
int x,
int y)
ViewportGraphicsImage.
drawImage in interface ViewportGraphicsx - The x coordinate of the image top left corner of the image.y - The y coordinate of the image top left corner of the image.Current version can only draw Image if the image is an RenderedImage
public void drawImage(java.awt.Image image,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2)
ViewportGraphics
drawImage in interface ViewportGraphicsdx1 - - the x coordinate of the first corner of the destination rectangle.dy1 - - the y coordinate of the first corner of the destination rectangle.dx2 - - the x coordinate of the second corner of the destination rectangle.dy2 - - the y coordinate of the second corner of the destination rectangle.sx1 - - the x coordinate of the first corner of the source rectangle.sy1 - - the y coordinate of the first corner of the source rectangle.sx2 - - the x coordinate of the second corner of the source rectangle.sy2 - - the y coordinate of the second corner of the source rectangle.ViewportGraphics.drawImage(java.awt.Image,
int, int, int, int, int, int, int, int)
public void drawImage(java.awt.image.RenderedImage rimage,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2)
public int getFontHeight()
ViewportGraphics
getFontHeight in interface ViewportGraphicspublic int stringWidth(java.lang.String str)
ViewportGraphics
stringWidth in interface ViewportGraphicspublic int getFontAscent()
ViewportGraphicsascent of the current font, which is the distance the font rises
above its baseline.
getFontAscent in interface ViewportGraphicspublic java.awt.geom.Rectangle2D getStringBounds(java.lang.String str)
ViewportGraphics
getStringBounds in interface ViewportGraphics
public void drawLine(int x1,
int y1,
int x2,
int y2)
ViewportGraphics
drawLine in interface ViewportGraphicspublic java.awt.geom.AffineTransform getTransform()
getTransform in interface ViewportGraphicspublic void drawPath(Path path)
ViewportGraphics
drawPath in interface ViewportGraphicspublic void fillPath(Path path)
ViewportGraphics
fillPath in interface ViewportGraphicspath - the path to fill.
public void drawRect(int x,
int y,
int width,
int height)
ViewportGraphics
drawRect in interface ViewportGraphicsx - the starting x coordinatey - the starting y coordinatewidth - the width of the rectangle.height - the height of the rectangle.
public void drawOval(int x,
int y,
int width,
int height)
ViewportGraphics
drawOval in interface ViewportGraphicsx - the starting x coordinatey - the starting y coordinatewidth - the width of the Oval.height - the height of the Oval.
public void fillOval(int x,
int y,
int width,
int height)
ViewportGraphics
fillOval in interface ViewportGraphicsx - the starting x coordinatey - the starting y coordinatewidth - the width of the Oval.height - the height of the Oval.public java.awt.Shape getClip()
ViewportGraphics
getClip in interface ViewportGraphicspublic void setClipBounds(java.awt.Rectangle newBounds)
ViewportGraphics
setClipBounds in interface ViewportGraphicsnewBounds - new clip areapublic java.awt.Color getBackgroundColor()
ViewportGraphics
getBackgroundColor in interface ViewportGraphicspublic java.awt.Color getColor()
ViewportGraphics
getColor in interface ViewportGraphics
public void drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
ViewportGraphics
drawRoundRect in interface ViewportGraphicsx - the x component of the upper left cornery - the y component of the upper left cornerwidth - the width of the rectangleheight - the height of the rectanglearcWidth - the horizontal diameter of the arc
at the four corners.arcHeight - the vertical diameter of the arc
at the four corners
public void fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
ViewportGraphics
fillRoundRect in interface ViewportGraphicsx - the x component of the upper left cornery - the y component of the upper left cornerwidth - the width of the rectangleheight - the height of the rectanglearcWidth - the horizontal diameter of the arc
at the four corners.arcHeight - the vertical diameter of the arc
at the four cornerspublic void setLineDash(int[] dash)
ViewportGraphics
setLineDash in interface ViewportGraphicsdash - the pattern of dashes.public void setLineWidth(int width)
ViewportGraphicsIf you need to make your drawing device independent please consider making use of the DPI setting.
g.setLineWith( width ); // BEFORE
g.setLineWith( (width * g.getDPI()) / 72 ); // AFTER
Where 72 is chosen because that is what a Java image resolutions
is assumed to be by default.
setLineWidth in interface ViewportGraphicspublic void setFont(java.awt.Font f)
ViewportGraphicsPlease note this is a change in behaviour over AWT (where size is documented to be in 72 dpi. They are changing their mind in later versions of java but we cannot wait for them to get there act together.
setFont in interface ViewportGraphicspublic int getDPI()
ViewportGraphics
getDPI in interface ViewportGraphics
public void fillGradientRectangle(int x,
int y,
int width,
int height,
java.awt.Color startColor,
java.awt.Color endColor,
boolean isVertical)
ViewportGraphics
fillGradientRectangle in interface ViewportGraphicsx - the x component of the upper left cornery - the y component of the upper left cornerwidth - the width of the rectangleheight - the height of the rectanglestartColor - the first color used in the gradient paintendColor - the last color used in the gradient paintisVertical - orientation of the gradient
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||