|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MacWidgetsPainter | |
|---|---|
| com.explodingpixels.macwidgets | |
| com.explodingpixels.painter | |
| com.explodingpixels.swingx | |
| com.explodingpixels.widgets | |
| com.explodingpixels.widgets.plaf | |
| Uses of MacWidgetsPainter in com.explodingpixels.macwidgets |
|---|
| Methods in com.explodingpixels.macwidgets that return MacWidgetsPainter | |
|---|---|
static MacWidgetsPainter<java.awt.Component> |
MacPainterFactory.createIAppPressedSelectedHeaderPainter()
|
static MacWidgetsPainter<java.awt.Component> |
MacPainterFactory.createIAppPressedUnselectedHeaderPainter()
|
static MacWidgetsPainter<java.awt.Component> |
MacPainterFactory.createIAppUnpressedSelectedHeaderPainter()
|
static MacWidgetsPainter<java.awt.Component> |
MacPainterFactory.createIAppUnpressedUnselectedHeaderPainter()
|
static MacWidgetsPainter<java.awt.Component> |
MacPainterFactory.createTexturedWindowWorkaroundPainter()
Creates a MacWidgetsPainter that paints a Mac unified tool bar gradient. |
MacWidgetsPainter<java.awt.Component> |
SourceListStandardColorScheme.getActiveFocusedSelectedItemPainter()
|
MacWidgetsPainter<java.awt.Component> |
SourceListSeaGlassColorScheme.getActiveFocusedSelectedItemPainter()
|
MacWidgetsPainter<java.awt.Component> |
SourceListDarkColorScheme.getActiveFocusedSelectedItemPainter()
|
MacWidgetsPainter<java.awt.Component> |
SourceListColorScheme.getActiveFocusedSelectedItemPainter()
The MacWidgetsPainter to use for drawing the SourceList selection when the
SourceList is in the active window and has focus. |
MacWidgetsPainter<java.awt.Component> |
SourceListBizLafColorScheme.getActiveFocusedSelectedItemPainter()
|
MacWidgetsPainter<java.awt.Component> |
SourceListStandardColorScheme.getActiveUnfocusedSelectedItemPainter()
|
MacWidgetsPainter<java.awt.Component> |
SourceListDarkColorScheme.getActiveUnfocusedSelectedItemPainter()
|
MacWidgetsPainter<java.awt.Component> |
SourceListColorScheme.getActiveUnfocusedSelectedItemPainter()
The MacWidgetsPainter to use for drawing the SourceList selection when the
SourceList is in the active window and does not have focus. |
static MacWidgetsPainter<java.awt.Component> |
MacButtonFactory.getGradientButtonPainter()
Returns a MacWidgetsPainter that paints a gradient matching Apple's
depiction of a "Gradient style" button, depicted
here. |
MacWidgetsPainter<java.awt.Component> |
SourceListStandardColorScheme.getInactiveSelectedItemPainter()
|
MacWidgetsPainter<java.awt.Component> |
SourceListDarkColorScheme.getInactiveSelectedItemPainter()
|
MacWidgetsPainter<java.awt.Component> |
SourceListColorScheme.getInactiveSelectedItemPainter()
The MacWidgetsPainter to use for drawing the SourceList selection when the
SourceList is in an inactive window. |
| Methods in com.explodingpixels.macwidgets with parameters of type MacWidgetsPainter | |
|---|---|
void |
TriAreaComponent.setBackgroundPainter(MacWidgetsPainter<java.awt.Component> backgroundPainter)
Set's the background MacWidgetsPainter that this TriAreaComponent
uses. |
| Uses of MacWidgetsPainter in com.explodingpixels.painter |
|---|
| Classes in com.explodingpixels.painter that implement MacWidgetsPainter | |
|---|---|
class |
ButtonStatePainter<B extends AbstractButton>
A MacWidgetsPainter that can be used to paint the various states of a button. |
static class |
ButtonStatePainter.DummyPainter
An implementation of MacWidgetsPainter that does no painting. |
class |
CompoundPainter<T>
An implementation of MacWidgetsPainter that calls a series of Painters in succession. |
class |
FocusStatePainter
An implementation of MacWidgetsPainter that delegates to given Painter
based on the focused state of the Component supplied in the
FocusStatePainter.paint(java.awt.Graphics2D, java.awt.Component, int, int) method. |
class |
GradientPainter
|
class |
GradientWithBorderPainter
|
class |
ImagePainter
|
class |
RectanglePainter
An implemenation of MacWidgetsPainter that fills the given width and height of a Component with a solid color. |
| Constructors in com.explodingpixels.painter with parameters of type MacWidgetsPainter | |
|---|---|
ButtonStatePainter(MacWidgetsPainter<java.awt.Component> defaultPainter)
Creates a painter that will always use the given MacWidgetsPainter to
paint the button. |
|
ButtonStatePainter(MacWidgetsPainter<java.awt.Component> defaultPainter,
MacWidgetsPainter<java.awt.Component> rolloverPainter,
MacWidgetsPainter<java.awt.Component> pressedPainter,
MacWidgetsPainter<java.awt.Component> selectedPainter)
Creates a painter that will delegate to the given painters based on the current state of the button. |
|
ButtonStatePainter(MacWidgetsPainter<java.awt.Component> defaultPainter,
MacWidgetsPainter<java.awt.Component> rolloverPainter,
MacWidgetsPainter<java.awt.Component> pressedPainter,
MacWidgetsPainter<java.awt.Component> selectedPainter)
Creates a painter that will delegate to the given painters based on the current state of the button. |
|
ButtonStatePainter(MacWidgetsPainter<java.awt.Component> defaultPainter,
MacWidgetsPainter<java.awt.Component> rolloverPainter,
MacWidgetsPainter<java.awt.Component> pressedPainter,
MacWidgetsPainter<java.awt.Component> selectedPainter)
Creates a painter that will delegate to the given painters based on the current state of the button. |
|
ButtonStatePainter(MacWidgetsPainter<java.awt.Component> defaultPainter,
MacWidgetsPainter<java.awt.Component> rolloverPainter,
MacWidgetsPainter<java.awt.Component> pressedPainter,
MacWidgetsPainter<java.awt.Component> selectedPainter)
Creates a painter that will delegate to the given painters based on the current state of the button. |
|
CompoundPainter(MacWidgetsPainter<T>... painters)
Creates a MacWidgetsPainter that calls the given Painters in the order they are supplied when
CompoundPainter.paint(java.awt.Graphics2D, Object, int, int) is called. |
|
FocusStatePainter(MacWidgetsPainter<java.awt.Component> componentFocusedPainter,
MacWidgetsPainter<java.awt.Component> windowUnfocusedPainter)
Creates a MacWidgetsPainter that delegates to the given Painters
based on the focus state of the supplied Component or the focus
state of it's parent Window. |
|
FocusStatePainter(MacWidgetsPainter<java.awt.Component> componentFocusedPainter,
MacWidgetsPainter<java.awt.Component> windowUnfocusedPainter)
Creates a MacWidgetsPainter that delegates to the given Painters
based on the focus state of the supplied Component or the focus
state of it's parent Window. |
|
FocusStatePainter(MacWidgetsPainter<java.awt.Component> componentFocusedPainter,
MacWidgetsPainter<java.awt.Component> windowFocusedPainter,
MacWidgetsPainter<java.awt.Component> windowUnfocusedPainter)
Creates a MacWidgetsPainter that delegates to the given Painters
based on the focus state of the supplied Component or the focus
state of it's parent Window. |
|
FocusStatePainter(MacWidgetsPainter<java.awt.Component> componentFocusedPainter,
MacWidgetsPainter<java.awt.Component> windowFocusedPainter,
MacWidgetsPainter<java.awt.Component> windowUnfocusedPainter)
Creates a MacWidgetsPainter that delegates to the given Painters
based on the focus state of the supplied Component or the focus
state of it's parent Window. |
|
FocusStatePainter(MacWidgetsPainter<java.awt.Component> componentFocusedPainter,
MacWidgetsPainter<java.awt.Component> windowFocusedPainter,
MacWidgetsPainter<java.awt.Component> windowUnfocusedPainter)
Creates a MacWidgetsPainter that delegates to the given Painters
based on the focus state of the supplied Component or the focus
state of it's parent Window. |
|
| Uses of MacWidgetsPainter in com.explodingpixels.swingx |
|---|
| Methods in com.explodingpixels.swingx with parameters of type MacWidgetsPainter | |
|---|---|
void |
EPToggleButton.setBackgroundPainter(MacWidgetsPainter<javax.swing.AbstractButton> painter)
|
void |
EPButton.setBackgroundPainter(MacWidgetsPainter<javax.swing.AbstractButton> painter)
|
void |
EPPanel.setBackgroundPainter(MacWidgetsPainter<java.awt.Component> painter)
|
| Uses of MacWidgetsPainter in com.explodingpixels.widgets |
|---|
| Methods in com.explodingpixels.widgets with parameters of type MacWidgetsPainter | |
|---|---|
void |
PopdownButton.setBackgroundPainter(MacWidgetsPainter<javax.swing.AbstractButton> painter)
|
| Uses of MacWidgetsPainter in com.explodingpixels.widgets.plaf |
|---|
| Classes in com.explodingpixels.widgets.plaf that implement MacWidgetsPainter | |
|---|---|
class |
ScrollThumbImagePainter
An implementation of MacWidgetsPainter that paints a scroll thumb using images. |
| Constructors in com.explodingpixels.widgets.plaf with parameters of type MacWidgetsPainter | |
|---|---|
ButtonsSeparateScrollBarSkin(javax.swing.AbstractButton decrementButton,
javax.swing.AbstractButton incrementButton,
MacWidgetsPainter<java.awt.Component> trackPainter,
MacWidgetsPainter<java.awt.Component> scrollThumbPainter,
int decrementButtonRecess,
int incrementButtonRecess,
java.awt.Dimension minimumThumbSize,
java.awt.Dimension preferredSize)
Creates a ButtonsTogetherScrollBarSkin using the given parameters. |
|
ButtonsSeparateScrollBarSkin(javax.swing.AbstractButton decrementButton,
javax.swing.AbstractButton incrementButton,
MacWidgetsPainter<java.awt.Component> trackPainter,
MacWidgetsPainter<java.awt.Component> scrollThumbPainter,
int decrementButtonRecess,
int incrementButtonRecess,
java.awt.Dimension minimumThumbSize,
java.awt.Dimension preferredSize)
Creates a ButtonsTogetherScrollBarSkin using the given parameters. |
|
ButtonsTogetherScrollBarSkin(javax.swing.JComponent scrollBarCap,
javax.swing.AbstractButton decrementButton,
javax.swing.AbstractButton incrementButton,
MacWidgetsPainter<java.awt.Component> trackPainter,
MacWidgetsPainter<java.awt.Component> scrollThumbPainter,
int scrollBarCapRecess,
int decrementButtonRecess,
java.awt.Dimension minimumThumbSize,
java.awt.Dimension preferredSize)
Creates a ButtonsTogetherScrollBarSkin using the given parameters. |
|
ButtonsTogetherScrollBarSkin(javax.swing.JComponent scrollBarCap,
javax.swing.AbstractButton decrementButton,
javax.swing.AbstractButton incrementButton,
MacWidgetsPainter<java.awt.Component> trackPainter,
MacWidgetsPainter<java.awt.Component> scrollThumbPainter,
int scrollBarCapRecess,
int decrementButtonRecess,
java.awt.Dimension minimumThumbSize,
java.awt.Dimension preferredSize)
Creates a ButtonsTogetherScrollBarSkin using the given parameters. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||