Liking cljdoc? Tell your friends :D
Clojure only.

javax.swing.plaf.synth.SynthPainter

SynthPainter is used for painting portions of JComponents. At a minimum each JComponent has two paint methods: one for the border and one for the background. Some JComponents have more than one Region, and as a consequence more paint methods.

Instances of SynthPainter are obtained from the SynthStyle.getPainter(javax.swing.plaf.synth.SynthContext) method.

You typically supply a SynthPainter by way of Synth's file format. The following example registers a painter for all JButtons that will render the image myImage.png:

<style id="buttonStyle"> <imagePainter path="myImage.png" sourceInsets="2 2 2 2" paintCenter="true" stretch="true"/> <insets top="2" bottom="2" left="2" right="2"/> </style>

<bind style="buttonStyle" type="REGION" key="button"/>

SynthPainter is abstract in so far as it does no painting, all the methods are empty. While none of these methods are typed to throw an exception, subclasses can assume that valid arguments are passed in, and if not they can throw a NullPointerException or IllegalArgumentException in response to invalid arguments.

SynthPainter is used for painting portions of
JComponents. At a minimum each JComponent
has two paint methods: one for the border and one for the background. Some
JComponents have more than one Region, and as
a consequence more paint methods.

Instances of SynthPainter are obtained from the
SynthStyle.getPainter(javax.swing.plaf.synth.SynthContext) method.

You typically supply a SynthPainter by way of Synth's
file format. The following
example registers a painter for all JButtons that will
render the image myImage.png:


 <style id="buttonStyle">
   <imagePainter path="myImage.png" sourceInsets="2 2 2 2"
                 paintCenter="true" stretch="true"/>
   <insets top="2" bottom="2" left="2" right="2"/>
 </style>
 <bind style="buttonStyle" type="REGION" key="button"/>

SynthPainter is abstract in so far as it does no painting,
all the methods
are empty. While none of these methods are typed to throw an exception,
subclasses can assume that valid arguments are passed in, and if not
they can throw a NullPointerException or
IllegalArgumentException in response to invalid arguments.
raw docstring

->synth-painterclj

(->synth-painter)

Constructor.

Constructor.
raw docstring

paint-arrow-button-backgroundclj

(paint-arrow-button-background this context g x y w h)

Paints the background of an arrow button. Arrow buttons are created by some components, such as JScrollBar.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of an arrow button. Arrow buttons are created by
 some components, such as JScrollBar.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-arrow-button-borderclj

(paint-arrow-button-border this context g x y w h)

Paints the border of an arrow button. Arrow buttons are created by some components, such as JScrollBar.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of an arrow button. Arrow buttons are created by
 some components, such as JScrollBar.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-arrow-button-foregroundclj

(paint-arrow-button-foreground this context g x y w h direction)

Paints the foreground of an arrow button. This method is responsible for drawing a graphical representation of a direction, typically an arrow. Arrow buttons are created by some components, such as JScrollBar

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int direction - One of SwingConstants.NORTH, SwingConstants.SOUTH SwingConstants.EAST or SwingConstants.WEST - int

Paints the foreground of an arrow button. This method is responsible
 for drawing a graphical representation of a direction, typically
 an arrow. Arrow buttons are created by
 some components, such as JScrollBar

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
direction - One of SwingConstants.NORTH, SwingConstants.SOUTH SwingConstants.EAST or SwingConstants.WEST - `int`
raw docstring

paint-button-backgroundclj

(paint-button-background this context g x y w h)

Paints the background of a button.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a button.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-button-borderclj

(paint-button-border this context g x y w h)

Paints the border of a button.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a button.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-check-box-backgroundclj

(paint-check-box-background this context g x y w h)

Paints the background of a check box.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a check box.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-check-box-borderclj

(paint-check-box-border this context g x y w h)

Paints the border of a check box.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a check box.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-check-box-menu-item-backgroundclj

(paint-check-box-menu-item-background this context g x y w h)

Paints the background of a check box menu item.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a check box menu item.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-check-box-menu-item-borderclj

(paint-check-box-menu-item-border this context g x y w h)

Paints the border of a check box menu item.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a check box menu item.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-color-chooser-backgroundclj

(paint-color-chooser-background this context g x y w h)

Paints the background of a color chooser.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a color chooser.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-color-chooser-borderclj

(paint-color-chooser-border this context g x y w h)

Paints the border of a color chooser.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a color chooser.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-combo-box-backgroundclj

(paint-combo-box-background this context g x y w h)

Paints the background of a combo box.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a combo box.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-combo-box-borderclj

(paint-combo-box-border this context g x y w h)

Paints the border of a combo box.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a combo box.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-desktop-icon-backgroundclj

(paint-desktop-icon-background this context g x y w h)

Paints the background of a desktop icon.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a desktop icon.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-desktop-icon-borderclj

(paint-desktop-icon-border this context g x y w h)

Paints the border of a desktop icon.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a desktop icon.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-desktop-pane-backgroundclj

(paint-desktop-pane-background this context g x y w h)

Paints the background of a desktop pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a desktop pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-desktop-pane-borderclj

(paint-desktop-pane-border this context g x y w h)

Paints the background of a desktop pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a desktop pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-editor-pane-backgroundclj

(paint-editor-pane-background this context g x y w h)

Paints the background of an editor pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of an editor pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-editor-pane-borderclj

(paint-editor-pane-border this context g x y w h)

Paints the border of an editor pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of an editor pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-file-chooser-backgroundclj

(paint-file-chooser-background this context g x y w h)

Paints the background of a file chooser.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a file chooser.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-file-chooser-borderclj

(paint-file-chooser-border this context g x y w h)

Paints the border of a file chooser.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a file chooser.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-formatted-text-field-backgroundclj

(paint-formatted-text-field-background this context g x y w h)

Paints the background of a formatted text field.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a formatted text field.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-formatted-text-field-borderclj

(paint-formatted-text-field-border this context g x y w h)

Paints the border of a formatted text field.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a formatted text field.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-internal-frame-backgroundclj

(paint-internal-frame-background this context g x y w h)

Paints the background of an internal frame.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of an internal frame.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-internal-frame-borderclj

(paint-internal-frame-border this context g x y w h)

Paints the border of an internal frame.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of an internal frame.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-internal-frame-title-pane-backgroundclj

(paint-internal-frame-title-pane-background this context g x y w h)

Paints the background of an internal frame title pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of an internal frame title pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-internal-frame-title-pane-borderclj

(paint-internal-frame-title-pane-border this context g x y w h)

Paints the border of an internal frame title pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of an internal frame title pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-label-backgroundclj

(paint-label-background this context g x y w h)

Paints the background of a label.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a label.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-label-borderclj

(paint-label-border this context g x y w h)

Paints the border of a label.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a label.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-list-backgroundclj

(paint-list-background this context g x y w h)

Paints the background of a list.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a list.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-list-borderclj

(paint-list-border this context g x y w h)

Paints the border of a list.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a list.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-menu-backgroundclj

(paint-menu-background this context g x y w h)

Paints the background of a menu.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a menu.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-menu-bar-backgroundclj

(paint-menu-bar-background this context g x y w h)

Paints the background of a menu bar.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a menu bar.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-menu-bar-borderclj

(paint-menu-bar-border this context g x y w h)

Paints the border of a menu bar.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a menu bar.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-menu-borderclj

(paint-menu-border this context g x y w h)

Paints the border of a menu.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a menu.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-menu-item-backgroundclj

(paint-menu-item-background this context g x y w h)

Paints the background of a menu item.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a menu item.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-menu-item-borderclj

(paint-menu-item-border this context g x y w h)

Paints the border of a menu item.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a menu item.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-option-pane-backgroundclj

(paint-option-pane-background this context g x y w h)

Paints the background of an option pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of an option pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-option-pane-borderclj

(paint-option-pane-border this context g x y w h)

Paints the border of an option pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of an option pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-panel-backgroundclj

(paint-panel-background this context g x y w h)

Paints the background of a panel.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a panel.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-panel-borderclj

(paint-panel-border this context g x y w h)

Paints the border of a panel.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a panel.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-password-field-backgroundclj

(paint-password-field-background this context g x y w h)

Paints the background of a password field.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a password field.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-password-field-borderclj

(paint-password-field-border this context g x y w h)

Paints the border of a password field.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a password field.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-popup-menu-backgroundclj

(paint-popup-menu-background this context g x y w h)

Paints the background of a popup menu.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a popup menu.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-popup-menu-borderclj

(paint-popup-menu-border this context g x y w h)

Paints the border of a popup menu.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a popup menu.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-progress-bar-backgroundclj

(paint-progress-bar-background this context g x y w h)
(paint-progress-bar-background this context g x y w h orientation)

Paints the background of a progress bar. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - one of JProgressBar.HORIZONTAL or JProgressBar.VERTICAL - int

Paints the background of a progress bar. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - one of JProgressBar.HORIZONTAL or JProgressBar.VERTICAL - `int`
raw docstring

paint-progress-bar-borderclj

(paint-progress-bar-border this context g x y w h)
(paint-progress-bar-border this context g x y w h orientation)

Paints the border of a progress bar. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - one of JProgressBar.HORIZONTAL or JProgressBar.VERTICAL - int

Paints the border of a progress bar. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - one of JProgressBar.HORIZONTAL or JProgressBar.VERTICAL - `int`
raw docstring

paint-progress-bar-foregroundclj

(paint-progress-bar-foreground this context g x y w h orientation)

Paints the foreground of a progress bar. is responsible for providing an indication of the progress of the progress bar.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - one of JProgressBar.HORIZONTAL or JProgressBar.VERTICAL - int

Paints the foreground of a progress bar. is responsible for
 providing an indication of the progress of the progress bar.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - one of JProgressBar.HORIZONTAL or JProgressBar.VERTICAL - `int`
raw docstring

paint-radio-button-backgroundclj

(paint-radio-button-background this context g x y w h)

Paints the background of a radio button.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a radio button.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-radio-button-borderclj

(paint-radio-button-border this context g x y w h)

Paints the border of a radio button.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a radio button.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-radio-button-menu-item-backgroundclj

(paint-radio-button-menu-item-background this context g x y w h)

Paints the background of a radio button menu item.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a radio button menu item.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-radio-button-menu-item-borderclj

(paint-radio-button-menu-item-border this context g x y w h)

Paints the border of a radio button menu item.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a radio button menu item.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-root-pane-backgroundclj

(paint-root-pane-background this context g x y w h)

Paints the background of a root pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a root pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-root-pane-borderclj

(paint-root-pane-border this context g x y w h)

Paints the border of a root pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a root pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-scroll-bar-backgroundclj

(paint-scroll-bar-background this context g x y w h)
(paint-scroll-bar-background this context g x y w h orientation)

Paints the background of a scrollbar. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - int

Paints the background of a scrollbar. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - `int`
raw docstring

paint-scroll-bar-borderclj

(paint-scroll-bar-border this context g x y w h)
(paint-scroll-bar-border this context g x y w h orientation)

Paints the border of a scrollbar. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - int

Paints the border of a scrollbar. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - `int`
raw docstring

paint-scroll-bar-thumb-backgroundclj

(paint-scroll-bar-thumb-background this context g x y w h orientation)

Paints the background of the thumb of a scrollbar. The thumb provides a graphical indication as to how much of the Component is visible in a JScrollPane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - int

Paints the background of the thumb of a scrollbar. The thumb provides
 a graphical indication as to how much of the Component is visible in a
 JScrollPane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - `int`
raw docstring

paint-scroll-bar-thumb-borderclj

(paint-scroll-bar-thumb-border this context g x y w h orientation)

Paints the border of the thumb of a scrollbar. The thumb provides a graphical indication as to how much of the Component is visible in a JScrollPane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - int

Paints the border of the thumb of a scrollbar. The thumb provides
 a graphical indication as to how much of the Component is visible in a
 JScrollPane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - `int`
raw docstring

paint-scroll-bar-track-backgroundclj

(paint-scroll-bar-track-background this context g x y w h)
(paint-scroll-bar-track-background this context g x y w h orientation)

Paints the background of the track of a scrollbar. The track contains the thumb. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - int

Paints the background of the track of a scrollbar. The track contains
 the thumb. This implementation invokes the method of the same name without
 the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - `int`
raw docstring

paint-scroll-bar-track-borderclj

(paint-scroll-bar-track-border this context g x y w h)
(paint-scroll-bar-track-border this context g x y w h orientation)

Paints the border of the track of a scrollbar. The track contains the thumb. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - int

Paints the border of the track of a scrollbar. The track contains
 the thumb. This implementation invokes the method of the same name without
 the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - Orientation of the JScrollBar, one of JScrollBar.HORIZONTAL or JScrollBar.VERTICAL - `int`
raw docstring

paint-scroll-pane-backgroundclj

(paint-scroll-pane-background this context g x y w h)

Paints the background of a scroll pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a scroll pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-scroll-pane-borderclj

(paint-scroll-pane-border this context g x y w h)

Paints the border of a scroll pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a scroll pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-separator-backgroundclj

(paint-separator-background this context g x y w h)
(paint-separator-background this context g x y w h orientation)

Paints the background of a separator. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSeparator.HORIZONTAL or JSeparator.VERTICAL - int

Paints the background of a separator. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSeparator.HORIZONTAL or JSeparator.VERTICAL - `int`
raw docstring

paint-separator-borderclj

(paint-separator-border this context g x y w h)
(paint-separator-border this context g x y w h orientation)

Paints the border of a separator. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSeparator.HORIZONTAL or JSeparator.VERTICAL - int

Paints the border of a separator. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSeparator.HORIZONTAL or JSeparator.VERTICAL - `int`
raw docstring

paint-separator-foregroundclj

(paint-separator-foreground this context g x y w h orientation)

Paints the foreground of a separator.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSeparator.HORIZONTAL or JSeparator.VERTICAL - int

Paints the foreground of a separator.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSeparator.HORIZONTAL or JSeparator.VERTICAL - `int`
raw docstring

paint-slider-backgroundclj

(paint-slider-background this context g x y w h)
(paint-slider-background this context g x y w h orientation)

Paints the background of a slider. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - int

Paints the background of a slider. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - `int`
raw docstring

paint-slider-borderclj

(paint-slider-border this context g x y w h)
(paint-slider-border this context g x y w h orientation)

Paints the border of a slider. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - int

Paints the border of a slider. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - `int`
raw docstring

paint-slider-thumb-backgroundclj

(paint-slider-thumb-background this context g x y w h orientation)

Paints the background of the thumb of a slider.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - int

Paints the background of the thumb of a slider.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - `int`
raw docstring

paint-slider-thumb-borderclj

(paint-slider-thumb-border this context g x y w h orientation)

Paints the border of the thumb of a slider.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - int

Paints the border of the thumb of a slider.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - `int`
raw docstring

paint-slider-track-backgroundclj

(paint-slider-track-background this context g x y w h)
(paint-slider-track-background this context g x y w h orientation)

Paints the background of the track of a slider. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - int

Paints the background of the track of a slider. This implementation invokes
 the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - `int`
raw docstring

paint-slider-track-borderclj

(paint-slider-track-border this context g x y w h)
(paint-slider-track-border this context g x y w h orientation)

Paints the border of the track of a slider. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - int

Paints the border of the track of a slider. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSlider.HORIZONTAL or JSlider.VERTICAL - `int`
raw docstring

paint-spinner-backgroundclj

(paint-spinner-background this context g x y w h)

Paints the background of a spinner.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a spinner.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-spinner-borderclj

(paint-spinner-border this context g x y w h)

Paints the border of a spinner.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a spinner.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-split-pane-backgroundclj

(paint-split-pane-background this context g x y w h)

Paints the background of a split pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a split pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-split-pane-borderclj

(paint-split-pane-border this context g x y w h)

Paints the border of a split pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a split pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-split-pane-divider-backgroundclj

(paint-split-pane-divider-background this context g x y w h)
(paint-split-pane-divider-background this context g x y w h orientation)

Paints the background of the divider of a split pane. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSplitPane.HORIZONTAL_SPLIT or JSplitPane.VERTICAL_SPLIT - int

Paints the background of the divider of a split pane. This implementation
 invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSplitPane.HORIZONTAL_SPLIT or JSplitPane.VERTICAL_SPLIT - `int`
raw docstring

paint-split-pane-divider-foregroundclj

(paint-split-pane-divider-foreground this context g x y w h orientation)

Paints the foreground of the divider of a split pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSplitPane.HORIZONTAL_SPLIT or JSplitPane.VERTICAL_SPLIT - int

Paints the foreground of the divider of a split pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSplitPane.HORIZONTAL_SPLIT or JSplitPane.VERTICAL_SPLIT - `int`
raw docstring

paint-split-pane-drag-dividerclj

(paint-split-pane-drag-divider this context g x y w h orientation)

Paints the divider, when the user is dragging the divider, of a split pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JSplitPane.HORIZONTAL_SPLIT or JSplitPane.VERTICAL_SPLIT - int

Paints the divider, when the user is dragging the divider, of a
 split pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JSplitPane.HORIZONTAL_SPLIT or JSplitPane.VERTICAL_SPLIT - `int`
raw docstring

paint-tabbed-pane-backgroundclj

(paint-tabbed-pane-background this context g x y w h)

Paints the background of a tabbed pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a tabbed pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tabbed-pane-borderclj

(paint-tabbed-pane-border this context g x y w h)

Paints the border of a tabbed pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a tabbed pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tabbed-pane-content-backgroundclj

(paint-tabbed-pane-content-background this context g x y w h)

Paints the background of the area that contains the content of the selected tab of a tabbed pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of the area that contains the content of the
 selected tab of a tabbed pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tabbed-pane-content-borderclj

(paint-tabbed-pane-content-border this context g x y w h)

Paints the border of the area that contains the content of the selected tab of a tabbed pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of the area that contains the content of the
 selected tab of a tabbed pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tabbed-pane-tab-area-backgroundclj

(paint-tabbed-pane-tab-area-background this context g x y w h)
(paint-tabbed-pane-tab-area-background this context g x y w h orientation)

Paints the background of the area behind the tabs of a tabbed pane. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JTabbedPane.TOP, JTabbedPane.LEFT, JTabbedPane.BOTTOM, or JTabbedPane.RIGHT - int

Paints the background of the area behind the tabs of a tabbed pane.
 This implementation invokes the method of the same name without the
 orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JTabbedPane.TOP, JTabbedPane.LEFT, JTabbedPane.BOTTOM, or JTabbedPane.RIGHT - `int`
raw docstring

paint-tabbed-pane-tab-area-borderclj

(paint-tabbed-pane-tab-area-border this context g x y w h)
(paint-tabbed-pane-tab-area-border this context g x y w h orientation)

Paints the border of the area behind the tabs of a tabbed pane. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JTabbedPane.TOP, JTabbedPane.LEFT, JTabbedPane.BOTTOM, or JTabbedPane.RIGHT - int

Paints the border of the area behind the tabs of a tabbed pane. This
 implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JTabbedPane.TOP, JTabbedPane.LEFT, JTabbedPane.BOTTOM, or JTabbedPane.RIGHT - `int`
raw docstring

paint-tabbed-pane-tab-backgroundclj

(paint-tabbed-pane-tab-background this context g x y w h tab-index)
(paint-tabbed-pane-tab-background this context g x y w h tab-index orientation)

Paints the background of a tab of a tabbed pane. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int tab-index - Index of tab being painted. - int orientation - One of JTabbedPane.TOP, JTabbedPane.LEFT, JTabbedPane.BOTTOM, or JTabbedPane.RIGHT - int

Paints the background of a tab of a tabbed pane. This implementation
 invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
tab-index - Index of tab being painted. - `int`
orientation - One of JTabbedPane.TOP, JTabbedPane.LEFT, JTabbedPane.BOTTOM, or JTabbedPane.RIGHT - `int`
raw docstring

paint-tabbed-pane-tab-borderclj

(paint-tabbed-pane-tab-border this context g x y w h tab-index)
(paint-tabbed-pane-tab-border this context g x y w h tab-index orientation)

Paints the border of a tab of a tabbed pane. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int tab-index - Index of tab being painted. - int orientation - One of JTabbedPane.TOP, JTabbedPane.LEFT, JTabbedPane.BOTTOM, or JTabbedPane.RIGHT - int

Paints the border of a tab of a tabbed pane. This implementation invokes
 the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
tab-index - Index of tab being painted. - `int`
orientation - One of JTabbedPane.TOP, JTabbedPane.LEFT, JTabbedPane.BOTTOM, or JTabbedPane.RIGHT - `int`
raw docstring

paint-table-backgroundclj

(paint-table-background this context g x y w h)

Paints the background of a table.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a table.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-table-borderclj

(paint-table-border this context g x y w h)

Paints the border of a table.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a table.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-table-header-backgroundclj

(paint-table-header-background this context g x y w h)

Paints the background of the header of a table.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of the header of a table.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-table-header-borderclj

(paint-table-header-border this context g x y w h)

Paints the border of the header of a table.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of the header of a table.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-text-area-backgroundclj

(paint-text-area-background this context g x y w h)

Paints the background of a text area.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a text area.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-text-area-borderclj

(paint-text-area-border this context g x y w h)

Paints the border of a text area.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a text area.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-text-field-backgroundclj

(paint-text-field-background this context g x y w h)

Paints the background of a text field.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a text field.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-text-field-borderclj

(paint-text-field-border this context g x y w h)

Paints the border of a text field.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a text field.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-text-pane-backgroundclj

(paint-text-pane-background this context g x y w h)

Paints the background of a text pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a text pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-text-pane-borderclj

(paint-text-pane-border this context g x y w h)

Paints the border of a text pane.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a text pane.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-toggle-button-backgroundclj

(paint-toggle-button-background this context g x y w h)

Paints the background of a toggle button.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a toggle button.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-toggle-button-borderclj

(paint-toggle-button-border this context g x y w h)

Paints the border of a toggle button.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a toggle button.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tool-bar-backgroundclj

(paint-tool-bar-background this context g x y w h)
(paint-tool-bar-background this context g x y w h orientation)

Paints the background of a tool bar. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - int

Paints the background of a tool bar. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - `int`
raw docstring

paint-tool-bar-borderclj

(paint-tool-bar-border this context g x y w h)
(paint-tool-bar-border this context g x y w h orientation)

Paints the border of a tool bar. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - int

Paints the border of a tool bar. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - `int`
raw docstring

paint-tool-bar-content-backgroundclj

(paint-tool-bar-content-background this context g x y w h)
(paint-tool-bar-content-background this context g x y w h orientation)

Paints the background of the tool bar's content area. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - int

Paints the background of the tool bar's content area. This implementation
 invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - `int`
raw docstring

paint-tool-bar-content-borderclj

(paint-tool-bar-content-border this context g x y w h)
(paint-tool-bar-content-border this context g x y w h orientation)

Paints the border of the content area of a tool bar. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - int

Paints the border of the content area of a tool bar. This implementation
 invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - `int`
raw docstring

paint-tool-bar-drag-window-backgroundclj

(paint-tool-bar-drag-window-background this context g x y w h)
(paint-tool-bar-drag-window-background this context g x y w h orientation)

Paints the background of the window containing the tool bar when it has been detached from its primary frame. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - int

Paints the background of the window containing the tool bar when it
 has been detached from its primary frame. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - `int`
raw docstring

paint-tool-bar-drag-window-borderclj

(paint-tool-bar-drag-window-border this context g x y w h)
(paint-tool-bar-drag-window-border this context g x y w h orientation)

Paints the border of the window containing the tool bar when it has been detached from it's primary frame. This implementation invokes the method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - int

Paints the border of the window containing the tool bar when it
 has been detached from it's primary frame. This implementation invokes the
 method of the same name without the orientation.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
orientation - One of JToolBar.HORIZONTAL or JToolBar.VERTICAL - `int`
raw docstring

paint-tool-tip-backgroundclj

(paint-tool-tip-background this context g x y w h)

Paints the background of a tool tip.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a tool tip.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tool-tip-borderclj

(paint-tool-tip-border this context g x y w h)

Paints the border of a tool tip.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a tool tip.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tree-backgroundclj

(paint-tree-background this context g x y w h)

Paints the background of a tree.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of a tree.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tree-borderclj

(paint-tree-border this context g x y w h)

Paints the border of a tree.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a tree.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tree-cell-backgroundclj

(paint-tree-cell-background this context g x y w h)

Paints the background of the row containing a cell in a tree.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of the row containing a cell in a tree.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tree-cell-borderclj

(paint-tree-cell-border this context g x y w h)

Paints the border of the row containing a cell in a tree.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of the row containing a cell in a tree.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-tree-cell-focusclj

(paint-tree-cell-focus this context g x y w h)

Paints the focus indicator for a cell in a tree when it has focus.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the focus indicator for a cell in a tree when it has focus.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-viewport-backgroundclj

(paint-viewport-background this context g x y w h)

Paints the background of the viewport.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the background of the viewport.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

paint-viewport-borderclj

(paint-viewport-border this context g x y w h)

Paints the border of a viewport.

context - SynthContext identifying the JComponent and Region to paint to - javax.swing.plaf.synth.SynthContext g - Graphics to paint to - java.awt.Graphics x - X coordinate of the area to paint to - int y - Y coordinate of the area to paint to - int w - Width of the area to paint to - int h - Height of the area to paint to - int

Paints the border of a viewport.

context - SynthContext identifying the JComponent and Region to paint to - `javax.swing.plaf.synth.SynthContext`
g - Graphics to paint to - `java.awt.Graphics`
x - X coordinate of the area to paint to - `int`
y - Y coordinate of the area to paint to - `int`
w - Width of the area to paint to - `int`
h - Height of the area to paint to - `int`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close