|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Style | |
org.jdrawing.graphics | Provides data model for JDrawing which uses basic
drawing commands as elements. |
Uses of Style in org.jdrawing.graphics |
Methods in org.jdrawing.graphics that return Style | |
static Style |
Style.getDefaultStyle()
Returns the shared instance of style with defaults for all attributes. |
Style |
Style.deriveStyle(java.util.Map attributes)
Creates a new Style object by replicating the current
Style object and applying a new set of style
attributes to it. |
Style |
GraphicsOperation.getStyle()
Gets Style object encapsulating style attibutes of this
operation. |
Methods in org.jdrawing.graphics with parameters of type Style | |
void |
GraphicsOperation.setStyle(Style style)
Sets Style object encapsulating style attibutes of this
operation. |
Constructors in org.jdrawing.graphics with parameters of type Style | |
ShapeOperation(java.awt.Shape shape,
Style style)
Returns ShapeOperation with given shape. |
|
RoundRectOperation(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight,
Style style)
Returns RoundRectOperation with given rounded rectangle and style. |
|
RectangleOperation(int x,
int y,
int width,
int height,
Style style)
Returns RectangleOperation with given rectangle and style. |
|
PolygonOperation(java.awt.Polygon polygon,
Style style)
Returns ShapeOperation with given polygon. |
|
GraphicsOperation(Style style)
Constructs GraphicsOperation with given style. |
|
FillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight,
Style style)
Returns FillRoundRect with given rounded rectangle and style. |
|
FillRect(int x,
int y,
int width,
int height,
Style style)
Returns FillRect with given rectangle. |
|
FillPolygon(java.awt.Polygon polygon,
Style style)
Returns DrawPolygon with given polygon. |
|
FillOval(int x,
int y,
int width,
int height,
Style style)
Returns DrawOval which fits into specified rectangle. |
|
FillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle,
Style style)
Returns FillArc for a circular or elliptical arc
covering the specified rectangle.
|
|
Fill3DRect(int x,
int y,
int width,
int height,
boolean raised,
Style style)
Returns Fill3DRect with given rectangle. |
|
Fill(java.awt.Shape shape,
Style style)
Returns Fill with given shape. |
|
DrawString(java.lang.String text,
float x,
float y,
Style style)
Returns DrawString for specified text at specified location with specified style. |
|
DrawString(java.text.AttributedCharacterIterator iterator,
float x,
float y,
Style style)
Returns DrawString for the text of specified iterator at specified location with specified style. |
|
DrawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight,
Style style)
Returns DrawRoundRect with given rounded rectangle and style. |
|
DrawRenderedImage(java.awt.image.RenderedImage renderedImage,
Style style)
Returns DrawRenderedImage with given image and style. |
|
DrawRect(int x,
int y,
int width,
int height,
Style style)
Returns DrawRect with given rectangle. |
|
DrawPolygon(java.awt.Polygon polygon,
Style style)
Returns DrawPolygon with given polygon. |
|
DrawOval(int x,
int y,
int width,
int height,
Style style)
Returns DrawOval which fits into specified rectangle. |
|
DrawLine(int x1,
int y1,
int x2,
int y2,
Style style)
Returns DrawLine for line starting at (x1, y1) and ending at (x2, y2). |
|
DrawImage(java.awt.Image image,
int x,
int y,
java.awt.image.ImageObserver observer,
Style style)
Returns DrawImage with given image at given location. |
|
DrawImage(java.awt.Image image,
int x,
int y,
java.awt.Color color,
java.awt.image.ImageObserver observer,
Style style)
Returns DrawImage with given image at given location. |
|
DrawImage(java.awt.Image image,
int x,
int y,
int width,
int height,
java.awt.image.ImageObserver observer,
Style style)
Returns DrawImage with given image at given location. |
|
DrawImage(java.awt.Image image,
int x,
int y,
int width,
int height,
java.awt.Color color,
java.awt.image.ImageObserver observer,
Style style)
Returns DrawImage with given image at given location. |
|
DrawImage(java.awt.Image image,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.image.ImageObserver observer,
Style style)
Returns DrawImage with given image at given location. |
|
DrawImage(java.awt.Image image,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.Color color,
java.awt.image.ImageObserver observer,
Style style)
Returns DrawImage with given image at given location. |
|
DrawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle,
Style style)
Returns DrawArc for a circular or elliptical arc
covering the specified rectangle.
|
|
Draw3DRect(int x,
int y,
int width,
int height,
boolean raised,
Style style)
Returns Draw3DRect with given rectangle. |
|
Draw(java.awt.Shape shape,
Style style)
Returns Draw with given shape. |
|
ClearRect(int x,
int y,
int width,
int height,
Style style)
Returns ClearRect with given rectangle and style. |
|
ArcOperation(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle,
Style style)
Returns ArcOperation for a circular or elliptical arc
covering the specified rectangle.
|
|
AbstractFillRect(int x,
int y,
int width,
int height,
Style style)
Returns AbstractFillRect with given rectangle. |
|
AbstractDrawRect(int x,
int y,
int width,
int height,
Style style)
Returns AbstractDrawRect with given rectangle. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |