Uses of Interface
org.jdesktop.swingx.painter.Painter
-
Packages that use Painter Package Description org.jdesktop.swingx Contains extensions to the Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich, data-centric client applications.org.jdesktop.swingx.decorator Contains API used to implement coordinated sorting, filtering and highlighting of the extended Swing cell-rendering component classes JXTable, JXTreeTable, JXTree, and JXList.org.jdesktop.swingx.editors org.jdesktop.swingx.icon Contains Swing Icon classes used by JDNC's Swing Extensions.org.jdesktop.swingx.painter Contains classes and interfaces used by painter enabled components.org.jdesktop.swingx.plaf Provides pluggable look-and-feel for SwingX components together with a mechanism to support custom component look-and-feels.org.jdesktop.swingx.plaf.basic Provides basic implementation of pluggable look-and-feel for SwingX components together with a mechanism to support custom component look-and-feels.org.jdesktop.swingx.prompt org.jdesktop.swingx.renderer Contains implementation of renderers used by JXTable, JXTreeTable and related classes. -
-
Uses of Painter in org.jdesktop.swingx
Classes in org.jdesktop.swingx that implement Painter Modifier and Type Class Description static classJXMultiSplitPane.DividerPainterDraws a single Divider.classURLPainterMethods in org.jdesktop.swingx that return Painter Modifier and Type Method Description PainterJXButton. getBackgroundPainter()PainterJXLabel. getBackgroundPainter()Returns the current background painter.PainterJXMultiSplitPane. getBackgroundPainter()PainterJXPanel. getBackgroundPainter()Returns the current background painter.PainterJXButton. getForegroundPainter()PainterJXLabel. getForegroundPainter()Returns the current foregroundPainter.PainterJXTitledPanel. getTitlePainter()Methods in org.jdesktop.swingx with parameters of type Painter Modifier and Type Method Description voidJXButton. setBackgroundPainter(Painter p)voidJXLabel. setBackgroundPainter(Painter p)Sets a Painter to use to paint the background of this component By default there is already a single painter installed which draws the normal background for this component according to the current Look and Feel.voidJXMultiSplitPane. setBackgroundPainter(Painter p)Specifies a Painter to use to paint the background of this JXPanel.voidJXPanel. setBackgroundPainter(Painter p)Sets a Painter to use to paint the background of this JXPanel.voidJXButton. setForegroundPainter(Painter p)voidJXLabel. setForegroundPainter(Painter painter)Sets a new foregroundPainter on the label.voidJXTitledPanel. setTitlePainter(Painter p)Set the Painter to use for painting the title section of the JXTitledPanel. -
Uses of Painter in org.jdesktop.swingx.decorator
Methods in org.jdesktop.swingx.decorator that return Painter Modifier and Type Method Description PainterPainterHighlighter. getPainter()Returns to Painter used in this Highlighter.Methods in org.jdesktop.swingx.decorator with parameters of type Painter Modifier and Type Method Description voidPainterHighlighter. setPainter(Painter painter)Sets the Painter to use in this Highlighter, may be null.Constructors in org.jdesktop.swingx.decorator with parameters of type Painter Constructor Description PainterHighlighter(HighlightPredicate predicate, Painter painter)Instantiates a PainterHighlighter with the given painter and predicate.PainterHighlighter(Painter painter)Instantiates a PainterHighlighter with the given Painter and default predicate. -
Uses of Painter in org.jdesktop.swingx.editors
Methods in org.jdesktop.swingx.editors that return Painter Modifier and Type Method Description static PainterPainterUtil. getBGP(javax.swing.JComponent comp)static PainterPainterUtil. getFGP(javax.swing.JComponent comp)PainterPainter2PropertyEditor. getValue()PainterPainterPropertyEditor. getValue()static PainterPainterUtil. loadPainter(java.io.File file)static PainterPainterUtil. loadPainter(java.net.URL url)Methods in org.jdesktop.swingx.editors with parameters of type Painter Modifier and Type Method Description static voidPainterUtil. savePainterToFile(Painter compoundPainter, java.io.File file)static voidPainterUtil. savePainterToFile(Painter compoundPainter, java.io.File file, java.net.URL baseURL)static voidPainterUtil. setBGP(javax.swing.JComponent comp, Painter painter)static voidPainterUtil. setFGP(javax.swing.JComponent comp, Painter painter) -
Uses of Painter in org.jdesktop.swingx.icon
Methods in org.jdesktop.swingx.icon that return Painter Modifier and Type Method Description PainterPainterIcon. getPainter()Methods in org.jdesktop.swingx.icon with parameters of type Painter Modifier and Type Method Description voidPainterIcon. setPainter(Painter painter) -
Uses of Painter in org.jdesktop.swingx.painter
Classes in org.jdesktop.swingx.painter that implement Painter Modifier and Type Class Description classAbstractAreaPainter<T>The abstract base class for all painters that fill a vector path area.classAbstractLayoutPainter<T>An abstract base class for any painter which can be positioned.classAbstractPainter<T>A convenient base class from which concretePainterimplementations may extend.classAlphaPainter<T>Applies an alpha value to an entire stack of painters.classBusyPainterA specific painter that paints an "infinite progress" like animation.classCapsulePainterDraws a capsule.classCheckerboardPainterA Painter implementation that paints a checkerboard pattern.classCompoundPainter<T>APainterimplementation composed of an array ofPainters.classGlossPainterA Painter implementation that simulates a gloss effect.classImagePainterA Painter instance that paints an image.classMattePainterA Painter implementation that uses a Paint to fill the entire background area.classPinstripePainterA fun Painter that paints pinstripes.classRectanglePainterA painter which paints square and rounded rectanglesclassShapePainterA Painter that paints java.awt.Shapes.classTextPainterA painter which draws text.Fields in org.jdesktop.swingx.painter declared as Painter Modifier and Type Field Description static Painter<java.lang.Object>Painters. EMPTY_PAINTERMethods in org.jdesktop.swingx.painter that return Painter Modifier and Type Method Description PainterPainterGlasspane. getPainter()Painter[]CompoundPainter. getPainters()Gets the array of painters used by this CompoundPainterMethods in org.jdesktop.swingx.painter with parameters of type Painter Modifier and Type Method Description voidPainterGlasspane. setPainter(Painter painter)voidCompoundPainter. setPainters(Painter... painters)Sets the array of Painters to use.Constructors in org.jdesktop.swingx.painter with parameters of type Painter Constructor Description CompoundPainter(Painter... painters)Convenience constructor for creating a CompoundPainter for an array of painters.PainterPaint(Painter<T> painter, T object)PainterPaintContext(Painter<T> painter, T object) -
Uses of Painter in org.jdesktop.swingx.plaf
Classes in org.jdesktop.swingx.plaf that implement Painter Modifier and Type Class Description classPainterUIResource<T extends javax.swing.JComponent>An implementation of Painter as a UIResource.Methods in org.jdesktop.swingx.plaf that return Painter Modifier and Type Method Description static Painter<?>UIManagerExt. getPainter(java.lang.Object key)Returns a painter from the defaults.static Painter<?>UIManagerExt. getPainter(java.lang.Object key, java.util.Locale l)Returns a painter from the defaults that is appropriate for the given locale.Constructors in org.jdesktop.swingx.plaf with parameters of type Painter Constructor Description PainterHighlighter(Painter painter)PainterUIResource(Painter<? super T> p)Creates a new instance of PainterUIResource with the specified delegate painter. -
Uses of Painter in org.jdesktop.swingx.plaf.basic
Methods in org.jdesktop.swingx.plaf.basic that return Painter Modifier and Type Method Description protected PainterBasicHeaderUI. createBackgroundPainter() -
Uses of Painter in org.jdesktop.swingx.prompt
Methods in org.jdesktop.swingx.prompt that return Painter Modifier and Type Method Description static <T extends javax.swing.text.JTextComponent>
Painter<? super T>PromptSupport. getBackgroundPainter(T textComponent)Get the background painter of thetextComponent, when no text is present.Methods in org.jdesktop.swingx.prompt with parameters of type Painter Modifier and Type Method Description static <T extends javax.swing.text.JTextComponent>
voidPromptSupport. setBackgroundPainter(Painter<? super T> background, T textComponent)Sets the prompts background painter ontextComponentand repaints the component to reflect the changes. -
Uses of Painter in org.jdesktop.swingx.renderer
Fields in org.jdesktop.swingx.renderer declared as Painter Modifier and Type Field Description protected PainterJRendererCheckBox. painterprotected PainterJRendererLabel. painterprotected PainterJXRendererHyperlink. painterMethods in org.jdesktop.swingx.renderer that return Painter Modifier and Type Method Description PainterJRendererCheckBox. getPainter()PainterJRendererLabel. getPainter()PainterJXRendererHyperlink. getPainter()Painter<?>PainterAware. getPainter()Painter<?>WrappingIconPanel. getPainter()Methods in org.jdesktop.swingx.renderer with parameters of type Painter Modifier and Type Method Description voidJRendererCheckBox. setPainter(Painter painter)voidJRendererLabel. setPainter(Painter painter)voidJXRendererHyperlink. setPainter(Painter painter)voidPainterAware. setPainter(Painter<?> painter)voidWrappingIconPanel. setPainter(Painter<?> painter)Sets the delegate's Painter if it is of type PainterAware.
-