|
Eclipse Rich Ajax Platform Release 1.3 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.eclipse.swt.graphics.Resource org.eclipse.swt.graphics.GC
Class GC
is provided to ease single-sourcing SWT and RWT code.
Its text measurement methods directly delegate to the respective
Graphics
methods.
Application code must explicitly invoke the GC.dispose()
method to release the operating system resources managed by each instance
when those instances are no longer required.
Constructor Summary | |
GC(Drawable drawable)
Constructs a new instance of this class which has been configured to draw on the specified drawable. |
|
GC(Drawable drawable,
int style)
Constructs a new instance of this class which has been configured to draw on the specified drawable. |
Method Summary | |
void |
drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
Draws the outline of a circular or elliptical arc within the specified rectangular area. |
void |
drawFocus(int x,
int y,
int width,
int height)
Draws a rectangle, based on the specified arguments, which has the appearance of the platform's focus rectangle if the platform supports such a notion, and otherwise draws a simple rectangle in the receiver's foreground color. |
void |
drawImage(Image image,
int x,
int y)
Draws the given image in the receiver at the specified coordinates. |
void |
drawImage(Image image,
int srcX,
int srcY,
int srcWidth,
int srcHeight,
int destX,
int destY,
int destWidth,
int destHeight)
Copies a rectangular area from the source image into a (potentially different sized) rectangular area in the receiver. |
void |
drawLine(int x1,
int y1,
int x2,
int y2)
Draws a line, using the foreground color, between the points ( x1 , y1 ) and (x2 , y2 ). |
void |
drawOval(int x,
int y,
int width,
int height)
Draws the outline of an oval, using the foreground color, within the specified rectangular area. |
void |
drawPoint(int x,
int y)
Draws a pixel, using the foreground color, at the specified point ( x , y ). |
void |
drawPolygon(int[] pointArray)
Draws the closed polygon which is defined by the specified array of integer coordinates, using the receiver's foreground color. |
void |
drawPolyline(int[] pointArray)
Draws the polyline which is defined by the specified array of integer coordinates, using the receiver's foreground color. |
void |
drawRectangle(int x,
int y,
int width,
int height)
Draws the outline of the rectangle specified by the arguments, using the receiver's foreground color. |
void |
drawRectangle(Rectangle rect)
Draws the outline of the specified rectangle, using the receiver's foreground color. |
void |
drawRoundRectangle(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
Draws the outline of the round-cornered rectangle specified by the arguments, using the receiver's foreground color. |
void |
drawString(String string,
int x,
int y)
Draws the given string, using the receiver's current font and foreground color. |
void |
drawString(String string,
int x,
int y,
boolean isTransparent)
Draws the given string, using the receiver's current font and foreground color. |
void |
drawText(String string,
int x,
int y)
Draws the given string, using the receiver's current font and foreground color. |
void |
drawText(String string,
int x,
int y,
boolean isTransparent)
Draws the given string, using the receiver's current font and foreground color. |
void |
drawText(String string,
int x,
int y,
int flags)
Draws the given string, using the receiver's current font and foreground color. |
void |
fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
Fills the interior of a circular or elliptical arc within the specified rectangular area, with the receiver's background color. |
void |
fillGradientRectangle(int x,
int y,
int width,
int height,
boolean vertical)
Fills the interior of the specified rectangle with a gradient sweeping from left to right or top to bottom progressing from the receiver's foreground color to its background color. |
void |
fillOval(int x,
int y,
int width,
int height)
Fills the interior of an oval, within the specified rectangular area, with the receiver's background color. |
void |
fillPolygon(int[] pointArray)
Fills the interior of the closed polygon which is defined by the specified array of integer coordinates, using the receiver's background color. |
void |
fillRectangle(int x,
int y,
int width,
int height)
Fills the interior of the rectangle specified by the arguments, using the receiver's background color. |
void |
fillRectangle(Rectangle rect)
Fills the interior of the specified rectangle, using the receiver's background color. |
void |
fillRoundRectangle(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
Fills the interior of the round-cornered rectangle specified by the arguments, using the receiver's background color. |
boolean |
getAdvanced()
Returns true if receiver is using the operating system's
advanced graphics subsystem. |
int |
getAlpha()
Returns the receiver's alpha value. |
Color |
getBackground()
Returns the background color. |
int |
getCharWidth(char ch)
Returns the width of the specified character in the font selected into the receiver. |
Rectangle |
getClipping()
Returns the bounding rectangle of the receiver's clipping region. |
Font |
getFont()
Returns the font currently being used by the receiver to draw and measure text. |
FontMetrics |
getFontMetrics()
Returns a FontMetrics which contains information about the font currently being used by the receiver to draw and measure text. |
Color |
getForeground()
Returns the receiver's foreground color. |
LineAttributes |
getLineAttributes()
Returns the receiver's line attributes. |
int |
getLineCap()
Returns the receiver's line cap style, which will be one of the constants SWT.CAP_FLAT , SWT.CAP_ROUND ,
or SWT.CAP_SQUARE . |
int |
getLineJoin()
Returns the receiver's line join style, which will be one of the constants SWT.JOIN_MITER , SWT.JOIN_ROUND ,
or SWT.JOIN_BEVEL . |
int |
getLineWidth()
Returns the width that will be used when drawing lines for all of the figure drawing operations (that is, drawLine , drawRectangle ,
drawPolyline , and so forth. |
int |
getStyle()
Returns the receiver's style information. |
void |
setAdvanced(boolean advanced)
Sets the receiver to always use the operating system's advanced graphics subsystem for all graphics operations if the argument is true . |
void |
setAlpha(int alpha)
Sets the receiver's alpha value which must be between 0 (transparent) and 255 (opaque). |
void |
setBackground(Color color)
Sets the background color. |
void |
setFont(Font font)
Sets the font which will be used by the receiver to draw and measure text to the argument. |
void |
setForeground(Color color)
Sets the foreground color. |
void |
setLineAttributes(LineAttributes attributes)
Sets the receiver's line attributes. |
void |
setLineCap(int lineCap)
Sets the receiver's line cap style to the argument, which must be one of the constants SWT.CAP_FLAT , SWT.CAP_ROUND ,
or SWT.CAP_SQUARE . |
void |
setLineJoin(int lineJoin)
Sets the receiver's line join style to the argument, which must be one of the constants SWT.JOIN_MITER , SWT.JOIN_ROUND ,
or SWT.JOIN_BEVEL . |
void |
setLineWidth(int lineWidth)
Sets the width that will be used when drawing lines for all of the figure drawing operations (that is, drawLine , drawRectangle ,
drawPolyline , and so forth. |
Point |
stringExtent(String string)
Returns the extent of the given string. |
Point |
textExtent(String string)
Returns the extent of the given string. |
Methods inherited from class org.eclipse.swt.graphics.Resource |
dispose, getDevice, isDisposed |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public GC(Drawable drawable)
You must dispose the graphics context when it is no longer required.
drawable
- the drawable to draw on
IllegalArgumentException
- SWTError
- public GC(Drawable drawable, int style)
You must dispose the graphics context when it is no longer required.
drawable
- the drawable to draw onstyle
- the style of GC to construct
IllegalArgumentException
- SWTError
- Method Detail |
public void setFont(Font font)
font
- the new font for the receiver, or null to indicate a default font
IllegalArgumentException
- SWTException
- public Font getFont()
SWTException
- public int getCharWidth(char ch)
The width is defined as the space taken up by the actual character, not including the leading and tailing whitespace or overhang.
ch
- the character to measure
SWTException
- public Point stringExtent(String string)
The extent of a string is the width and height of the rectangular area it would cover if drawn in a particular font (in this case, the current font in the receiver).
string
- the string to measure
IllegalArgumentException
- SWTException
- public Point textExtent(String string)
The extent of a string is the width and height of the rectangular area it would cover if drawn in a particular font (in this case, the current font in the receiver).
string
- the string to measure
IllegalArgumentException
- SWTException
- public FontMetrics getFontMetrics()
SWTException
- public void setBackground(Color color)
color
- the new background color for the receiver
IllegalArgumentException
- SWTException
- public Color getBackground()
SWTException
- public void setForeground(Color color)
color
- the new foreground color for the receiver
IllegalArgumentException
- SWTException
- public Color getForeground()
SWTException
- public Rectangle getClipping()
SWTException
- public void setAlpha(int alpha)
This operation requires the operating system's advanced graphics subsystem which may not be available on some platforms.
alpha
- the alpha value
SWTException
- public int getAlpha()
SWTException
- public void setLineWidth(int lineWidth)
drawLine
, drawRectangle
,
drawPolyline
, and so forth.
lineWidth
- the width of a line
SWTException
- public int getLineWidth()
drawLine
, drawRectangle
,
drawPolyline
, and so forth.
SWTException
- public void setLineCap(int lineCap)
SWT.CAP_FLAT
, SWT.CAP_ROUND
,
or SWT.CAP_SQUARE
.
lineCap
- the cap style to be used for drawing lines
IllegalArgumentException
- SWTException
- public int getLineCap()
SWT.CAP_FLAT
, SWT.CAP_ROUND
,
or SWT.CAP_SQUARE
.
SWTException
- public void setLineJoin(int lineJoin)
SWT.JOIN_MITER
, SWT.JOIN_ROUND
,
or SWT.JOIN_BEVEL
.
lineJoin
- the join style to be used for drawing lines
IllegalArgumentException
- SWTException
- public int getLineJoin()
SWT.JOIN_MITER
, SWT.JOIN_ROUND
,
or SWT.JOIN_BEVEL
.
SWTException
- public void setLineAttributes(LineAttributes attributes)
This operation requires the operating system's advanced graphics subsystem which may not be available on some platforms.
attributes
- the line attributes
IllegalArgumentException
- SWTException
- LineAttributes
public LineAttributes getLineAttributes()
SWTException
- public void setAdvanced(boolean advanced)
true
.
If the argument is false
, the advanced graphics subsystem is
no longer used, advanced graphics state is cleared and the normal graphics
subsystem is used from now on.
Normally, the advanced graphics subsystem is invoked automatically when any one of the alpha, antialias, patterns, interpolation, paths, clipping or transformation operations in the receiver is requested. When the receiver is switched into advanced mode, the advanced graphics subsystem performs both advanced and normal graphics operations. Because the two subsystems are different, their output may differ. Switching to advanced graphics before any graphics operations are performed ensures that the output is consistent.
Advanced graphics may not be installed for the operating system. In this case, this operation does nothing. Some operating system have only one graphics subsystem, so switching from normal to advanced graphics does nothing. However, switching from advanced to normal graphics will always clear the advanced graphics state, even for operating systems that have only one graphics subsystem.
advanced
- the new advanced graphics state
SWTException
- setAlpha(int)
,
#setAntialias
,
#setBackgroundPattern
,
#setClipping(Path)
,
#setForegroundPattern
,
setLineAttributes(org.eclipse.swt.graphics.LineAttributes)
,
#setInterpolation
,
#setTextAntialias
,
#setTransform
,
getAdvanced()
public boolean getAdvanced()
true
if receiver is using the operating system's
advanced graphics subsystem. Otherwise, false
is returned
to indicate that normal graphics are in use.
Advanced graphics may not be installed for the operating system. In this
case, false
is always returned. Some operating system have
only one graphics subsystem. If this subsystem supports advanced graphics,
then true
is always returned. If any graphics operation such
as alpha, antialias, patterns, interpolation, paths, clipping or transformation
has caused the receiver to switch from regular to advanced graphics mode,
true
is returned. If the receiver has been explicitly switched
to advanced mode and this mode is supported, true
is returned.
SWTException
- setAdvanced(boolean)
public void drawLine(int x1, int y1, int x2, int y2)
x1
, y1
) and (x2
, y2
).
x1
- the first point's x coordinatey1
- the first point's y coordinatex2
- the second point's x coordinatey2
- the second point's y coordinate
SWTException
- public void drawRectangle(Rectangle rect)
rect.x
and rect.x + rect.width
. The top
and bottom edges are at rect.y
and
rect.y + rect.height
.
rect
- the rectangle to draw
IllegalArgumentException
- SWTException
- public void drawRectangle(int x, int y, int width, int height)
x
and x + width
.
The top and bottom edges are at y
and y + height
.
x
- the x coordinate of the rectangle to be drawny
- the y coordinate of the rectangle to be drawnwidth
- the width of the rectangle to be drawnheight
- the height of the rectangle to be drawn
SWTException
- public void drawFocus(int x, int y, int width, int height)
x
- the x coordinate of the rectangley
- the y coordinate of the rectanglewidth
- the width of the rectangleheight
- the height of the rectangle
SWTException
- drawRectangle(int, int, int, int)
public void fillRectangle(Rectangle rect)
rect
- the rectangle to be filled
IllegalArgumentException
- SWTException
- drawRectangle(int, int, int, int)
public void fillRectangle(int x, int y, int width, int height)
x
- the x coordinate of the rectangle to be filledy
- the y coordinate of the rectangle to be filledwidth
- the width of the rectangle to be filledheight
- the height of the rectangle to be filled
SWTException
- drawRectangle(int, int, int, int)
public void fillGradientRectangle(int x, int y, int width, int height, boolean vertical)
x
- the x coordinate of the rectangle to be filledy
- the y coordinate of the rectangle to be filledwidth
- the width of the rectangle to be filled, may be negative
(inverts direction of gradient if horizontal)height
- the height of the rectangle to be filled, may be negative
(inverts direction of gradient if vertical)vertical
- if true sweeps from top to bottom, else
sweeps from left to right
SWTException
- drawRectangle(int, int, int, int)
public void drawRoundRectangle(int x, int y, int width, int height, int arcWidth, int arcHeight)
x
and x + width
.
The top and bottom edges are at y
and y + height
.
The roundness of the corners is specified by the
arcWidth
and arcHeight
arguments, which
are respectively the width and height of the ellipse used to draw
the corners.
x
- the x coordinate of the rectangle to be drawny
- the y coordinate of the rectangle to be drawnwidth
- the width of the rectangle to be drawnheight
- the height of the rectangle to be drawnarcWidth
- the width of the arcarcHeight
- the height of the arc
SWTException
- public void fillRoundRectangle(int x, int y, int width, int height, int arcWidth, int arcHeight)
x
- the x coordinate of the rectangle to be filledy
- the y coordinate of the rectangle to be filledwidth
- the width of the rectangle to be filledheight
- the height of the rectangle to be filledarcWidth
- the width of the arcarcHeight
- the height of the arc
SWTException
- drawRoundRectangle(int, int, int, int, int, int)
public void drawOval(int x, int y, int width, int height)
The result is a circle or ellipse that fits within the
rectangle specified by the x
, y
,
width
, and height
arguments.
The oval covers an area that is width + 1
pixels wide and height + 1
pixels tall.
x
- the x coordinate of the upper left corner of the oval to be drawny
- the y coordinate of the upper left corner of the oval to be drawnwidth
- the width of the oval to be drawnheight
- the height of the oval to be drawn
SWTException
- public void fillOval(int x, int y, int width, int height)
x
- the x coordinate of the upper left corner of the oval to be filledy
- the y coordinate of the upper left corner of the oval to be filledwidth
- the width of the oval to be filledheight
- the height of the oval to be filled
SWTException
- drawOval(int, int, int, int)
public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
The resulting arc begins at startAngle
and extends
for arcAngle
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.
The center of the arc is the center of the rectangle whose origin
is (x
, y
) and whose size is specified by the
width
and height
arguments.
The resulting arc covers an area width + 1
pixels wide
by height + 1
pixels tall.
x
- the x coordinate of the upper-left corner of the arc to be drawny
- the y coordinate of the upper-left corner of the arc to be drawnwidth
- the width of the arc to be drawnheight
- the height of the arc to be drawnstartAngle
- the beginning anglearcAngle
- the angular extent of the arc, relative to the start angle
SWTException
- public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
The resulting arc begins at startAngle
and extends
for arcAngle
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.
The center of the arc is the center of the rectangle whose origin
is (x
, y
) and whose size is specified by the
width
and height
arguments.
The resulting arc covers an area width + 1
pixels wide
by height + 1
pixels tall.
x
- the x coordinate of the upper-left corner of the arc to be filledy
- the y coordinate of the upper-left corner of the arc to be filledwidth
- the width of the arc to be filledheight
- the height of the arc to be filledstartAngle
- the beginning anglearcAngle
- the angular extent of the arc, relative to the start angle
SWTException
- drawArc(int, int, int, int, int, int)
public void drawPolygon(int[] pointArray)
pointArray
- an array of alternating x and y values which are the vertices of the polygon
IllegalArgumentException
- SWTException
- public void fillPolygon(int[] pointArray)
pointArray
- an array of alternating x and y values which are the vertices of the polygon
IllegalArgumentException
- SWTException
- drawPolygon(int[])
public void drawPolyline(int[] pointArray)
pointArray
- an array of alternating x and y values which are the corners of the polyline
IllegalArgumentException
- SWTException
- public void drawPoint(int x, int y)
x
, y
).
Note that the receiver's line attributes do not affect this operation.
x
- the point's x coordinatey
- the point's y coordinate
SWTException
- public void drawImage(Image image, int x, int y)
image
- the image to drawx
- the x coordinate of where to drawy
- the y coordinate of where to draw
IllegalArgumentException
- SWTException
- SWTError
- public void drawImage(Image image, int srcX, int srcY, int srcWidth, int srcHeight, int destX, int destY, int destWidth, int destHeight)
image
- the source imagesrcX
- the x coordinate in the source image to copy fromsrcY
- the y coordinate in the source image to copy fromsrcWidth
- the width in pixels to copy from the sourcesrcHeight
- the height in pixels to copy from the sourcedestX
- the x coordinate in the destination to copy todestY
- the y coordinate in the destination to copy todestWidth
- the width in pixels of the destination rectangledestHeight
- the height in pixels of the destination rectangle
IllegalArgumentException
- SWTException
- SWTError
- public void drawString(String string, int x, int y)
string
- the string to be drawnx
- the x coordinate of the top left corner of the rectangular area where the string is to be drawny
- the y coordinate of the top left corner of the rectangular area where the string is to be drawn
IllegalArgumentException
- SWTException
- public void drawString(String string, int x, int y, boolean isTransparent)
isTransparent
is true
,
then the background of the rectangular area where the string is being
drawn will not be modified, otherwise it will be filled with the
receiver's background color.
string
- the string to be drawnx
- the x coordinate of the top left corner of the rectangular area where the string is to be drawny
- the y coordinate of the top left corner of the rectangular area where the string is to be drawnisTransparent
- if true
the background will be transparent, otherwise it will be opaque
IllegalArgumentException
- SWTException
- public void drawText(String string, int x, int y)
string
- the string to be drawnx
- the x coordinate of the top left corner of the rectangular area where the text is to be drawny
- the y coordinate of the top left corner of the rectangular area where the text is to be drawn
IllegalArgumentException
- SWTException
- public void drawText(String string, int x, int y, boolean isTransparent)
isTransparent
is true
,
then the background of the rectangular area where the text is being
drawn will not be modified, otherwise it will be filled with the
receiver's background color.
string
- the string to be drawnx
- the x coordinate of the top left corner of the rectangular area where the text is to be drawny
- the y coordinate of the top left corner of the rectangular area where the text is to be drawnisTransparent
- if true
the background will be transparent, otherwise it will be opaque
IllegalArgumentException
- SWTException
- public void drawText(String string, int x, int y, int flags)
flags
includes DRAW_TRANSPARENT
,
then the background of the rectangular area where the text is being
drawn will not be modified, otherwise it will be filled with the
receiver's background color.
The parameter flags
may be a combination of:
string
- the string to be drawnx
- the x coordinate of the top left corner of the rectangular area where the text is to be drawny
- the y coordinate of the top left corner of the rectangular area where the text is to be drawnflags
- the flags specifying how to process the text
IllegalArgumentException
- SWTException
- public int getStyle()
Note that the value which is returned by this method may not match the value which was provided to the constructor when the receiver was created. This can occur when the underlying operating system does not support a particular combination of requested styles.
SWTException
-
|
Eclipse Rich Ajax Platform Release 1.3 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright (c) Innoopract Informationssysteme GmbH and others 2002, 2011. All rights reserved.