- java.lang.Object
-
- javax.swing.plaf.basic.BasicGraphicsUtils
-
public class BasicGraphicsUtils extends Object
-
-
Constructor Summary
Constructors Constructor and Description BasicGraphicsUtils()
-
Method Summary
Methods Modifier and Type Method and Description 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)
static void
drawDashedRect(Graphics g, int x, int y, int width, int height)
static void
drawEtchedRect(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight)
static void
drawGroove(Graphics g, int x, int y, int w, int h, Color shadow, Color highlight)
static void
drawLoweredBezel(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight)
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
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 Insets
getEtchedInsets()
Returns the amount of space taken up by a border drawn bydrawEtchedRect()
static Insets
getGrooveInsets()
Returns the amount of space taken up by a border drawn bydrawGroove()
static Dimension
getPreferredButtonSize(AbstractButton b, int textIconGap)
-
-
-
Method Detail
-
drawEtchedRect
public static void drawEtchedRect(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight)
-
getEtchedInsets
public static Insets 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)
-
getGrooveInsets
public static Insets 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)
-
drawLoweredBezel
public static void drawLoweredBezel(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight)
-
drawString
public 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. The first occurrence ofunderlineChar
in text will be underlined. The matching algorithm is not case sensitive.
-
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
public static void drawDashedRect(Graphics g, int x, int y, int width, int height)
-
getPreferredButtonSize
public static Dimension getPreferredButtonSize(AbstractButton b, int textIconGap)
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
26/11/2024 11:23:35 Cette version de la page est en cache (à la date du 26/11/2024 11:23:35) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 06/12/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/swing/plaf/basic/basicgraphicsutils.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.