java.lang.Object
javax.swing.plaf.basic.BasicGraphicsUtils
Convenient util class.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
drawBezel
(Graphics g, int x, int y, int w, int h, boolean isPressed, boolean isDefault, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) Draws a bezel.static void
drawDashedRect
(Graphics g, int x, int y, int width, int height) Draws dashed rectangle.static void
drawEtchedRect
(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) Draws an etched rectangle.static void
drawGroove
(Graphics g, int x, int y, int w, int h, Color shadow, Color highlight) Draws a groove.static void
drawLoweredBezel
(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) Draws a lowered bezel.static void
drawString
(Graphics g, String text, int underlinedChar, int x, int y) Draw a string with the graphicsg
at location (x,y) just likeg.drawString
would.static void
drawString
(JComponent c, Graphics2D g, String string, float x, float y) Draws the given string at the specified location using text properties and anti-aliasing hints from the provided component.static void
drawStringUnderlineCharAt
(Graphics g, String text, int underlinedIndex, int x, int y) Draw a string with the graphicsg
at location (x
,y
) just likeg.drawString
would.static void
drawStringUnderlineCharAt
(JComponent c, Graphics2D g, String string, int underlinedIndex, float x, float y) Draws the given string at the specified location underlining the specified character.static String
getClippedString
(JComponent c, FontMetrics fm, String string, int availTextWidth) Clips the passed in string to the space provided.static Insets
Returns the amount of space taken up by a border drawn bydrawEtchedRect()
static Insets
Returns the amount of space taken up by a border drawn bydrawGroove()
static Dimension
getPreferredButtonSize
(AbstractButton b, int textIconGap) Returns the preferred size of the button.static float
getStringWidth
(JComponent c, FontMetrics fm, String string) Returns the width of the passed in string using text properties and anti-aliasing hints from the provided component.
-
Constructor Details
-
BasicGraphicsUtils
public BasicGraphicsUtils()Constructs aBasicGraphicsUtils
.
-
-
Method Details
-
drawEtchedRect
public static void drawEtchedRect(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) Draws an etched rectangle.- Parameters:
g
- an instance ofGraphics
x
- an X coordinatey
- an Y coordinatew
- a widthh
- a heightshadow
- a color of shadowdarkShadow
- a color of dark shadowhighlight
- a color highlightinglightHighlight
- a color of light highlighting
-
getEtchedInsets
Returns the amount of space taken up by a border drawn bydrawEtchedRect()
- Returns:
- the inset of an etched rect
-
drawGroove
public static void drawGroove(Graphics g, int x, int y, int w, int h, Color shadow, Color highlight) Draws a groove.- Parameters:
g
- an instance ofGraphics
x
- an X coordinatey
- an Y coordinatew
- a widthh
- a heightshadow
- a color of shadowhighlight
- a color highlighting
-
getGrooveInsets
Returns the amount of space taken up by a border drawn bydrawGroove()
- Returns:
- the inset of a groove border
-
drawBezel
public static void drawBezel(Graphics g, int x, int y, int w, int h, boolean isPressed, boolean isDefault, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) Draws a bezel.- Parameters:
g
- an instance ofGraphics
x
- an X coordinatey
- an Y coordinatew
- a widthh
- a heightisPressed
- is component pressedisDefault
- is default drawingshadow
- a color of shadowdarkShadow
- a color of dark shadowhighlight
- a color highlightinglightHighlight
- a color of light highlighting
-
drawLoweredBezel
public static void drawLoweredBezel(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) Draws a lowered bezel.- Parameters:
g
- an instance ofGraphics
x
- an X coordinatey
- an Y coordinatew
- a widthh
- a heightshadow
- a color of shadowdarkShadow
- a color of dark shadowhighlight
- a color highlightinglightHighlight
- a color of light highlighting
-
drawString
Draw a string with the graphicsg
at location (x,y) just likeg.drawString
would. The first occurrence ofunderlineChar
in text will be underlined. The matching algorithm is not case sensitive.- Parameters:
g
- an instance ofGraphics
text
- a textunderlinedChar
- an underlined charx
- an X coordinatey
- an Y coordinate
-
drawStringUnderlineCharAt
public static void drawStringUnderlineCharAt(Graphics g, String text, int underlinedIndex, int x, int y) Draw a string with the graphicsg
at location (x
,y
) just likeg.drawString
would. The character at indexunderlinedIndex
in text will be underlined. Ifindex
is beyond the bounds oftext
(including < 0), nothing will be underlined.- Parameters:
g
- Graphics to draw withtext
- String to drawunderlinedIndex
- Index of character in text to underlinex
- x coordinate to draw aty
- y coordinate to draw at- Since:
- 1.4
-
drawDashedRect
Draws dashed rectangle.- Parameters:
g
- an instance ofGraphics
x
- an X coordinatey
- an Y coordinatewidth
- a width of rectangleheight
- a height of rectangle
-
getPreferredButtonSize
Returns the preferred size of the button.- Parameters:
b
- an instance ofAbstractButton
textIconGap
- a gap between text and icon- Returns:
- the preferred size of the button
-
drawString
Draws the given string at the specified location using text properties and anti-aliasing hints from the provided component. Nothing is drawn for the null string.- Parameters:
c
- the component that will display the string, may be nullg
- the graphics context, must not be nullstring
- the string to display, may be nullx
- the x coordinate to draw the text aty
- the y coordinate to draw the text at- Throws:
NullPointerException
- if the specifiedg
isnull
- Since:
- 9
-
drawStringUnderlineCharAt
public static void drawStringUnderlineCharAt(JComponent c, Graphics2D g, String string, int underlinedIndex, float x, float y) Draws the given string at the specified location underlining the specified character. The provided component is used to query text properties and anti-aliasing hints.The
underlinedIndex
parameter points to a char value (Unicode code unit) in the given string. If the char value specified at the underlined index is in the high-surrogate range and the char value at the following index is in the low-surrogate range then the supplementary character corresponding to this surrogate pair is underlined.No character is underlined if the index is negative or greater than the string length
(index < 0 || index >= string.length())
or if the char value specified at the given index is in the low-surrogate range.- Parameters:
c
- the component that will display the string, may be nullg
- the graphics context, must not be nullstring
- the string to display, may be nullunderlinedIndex
- index of a char value (Unicode code unit) in the string to underlinex
- the x coordinate to draw the text aty
- the y coordinate to draw the text at- Throws:
NullPointerException
- if the specifiedg
isnull
- Since:
- 9
- See Also:
-
getClippedString
public static String getClippedString(JComponent c, FontMetrics fm, String string, int availTextWidth) Clips the passed in string to the space provided. The provided component is used to query text properties and anti-aliasing hints. The unchanged string is returned if the space provided is greater than the string width.- Parameters:
c
- the component, may be nullfm
- the FontMetrics used to measure the string width, must be obtained from the correct font and graphics. Must not be null.string
- the string to clip, may be nullavailTextWidth
- the amount of space that the string can be drawn in- Returns:
- the clipped string that fits in the provided space, an empty
string if the given string argument is
null
or empty - Throws:
NullPointerException
- if the specifiedfm
isnull
- Since:
- 9
- See Also:
-
getStringWidth
Returns the width of the passed in string using text properties and anti-aliasing hints from the provided component. If the passed string isnull
, returns zero.- Parameters:
c
- the component, may be nullfm
- the FontMetrics used to measure the advance string width, must be obtained from the correct font and graphics. Must not be null.string
- the string to get the advance width of, may be null- Returns:
- the advance width of the specified string, zero is returned for
null
string - Throws:
NullPointerException
- if the specifiedfm
isnull
- Since:
- 9
-