|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.awt.Component
java.awt.Container
javax.swing.JComponent
javax.swing.JPanel
org.jdesktop.swingx.JXPanel
org.jdesktop.swingx.renderer.WrappingIconPanel
public class WrappingIconPanel
Compound component for usage in tree renderer.
Supports setting an icon for the node and a delegate component which is used to show the text/content of the node. The delegate component can be shared across renderers.
This implements the PainterAware by delegating to the delegate component if that is of type PainterAware. Does nothing if not.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class javax.swing.JPanel |
---|
JPanel.AccessibleJPanel |
Nested classes/interfaces inherited from class javax.swing.JComponent |
---|
JComponent.AccessibleJComponent |
Nested classes/interfaces inherited from class java.awt.Container |
---|
Container.AccessibleAWTContainer |
Nested classes/interfaces inherited from class java.awt.Component |
---|
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy |
Field Summary | |
---|---|
protected JComponent |
delegate
|
Fields inherited from class javax.swing.JComponent |
---|
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
Fields inherited from class java.awt.Component |
---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface java.awt.image.ImageObserver |
---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
---|---|
WrappingIconPanel()
Instantiates and configures a WrappingIconPanel with the dropHack enabled. |
|
WrappingIconPanel(boolean dropHackEnabled)
Instantiates and configures a WrappingIconPanel with the dropHack property set as indicated by the boolean. |
Method Summary | |
---|---|
JComponent |
getComponent()
Returns the delegate component. |
Rectangle |
getDelegateBounds()
Returns the bounds of the delegate component or null if the delegate is null. |
boolean |
getExtendsComponentOpacity()
|
Icon |
getIcon()
Returns the icon used in this panel, may be null. |
Painter<?> |
getPainter()
|
boolean |
isVisible()
|
void |
setBackground(Color bg)
Sets the background color for this component by |
void |
setComponent(JComponent comp)
Sets the delegate component. |
void |
setComponentOrientation(ComponentOrientation o)
|
void |
setDropHackEnabled(boolean dropHackEnabled)
Sets the dropHackEnabled property. |
void |
setExtendsComponentOpacity(boolean extendsComponentOpacity)
Sets a boolean indicating whether or not the main component's opacity should be applied to the Icon region. |
void |
setFont(Font font)
|
void |
setForeground(Color bg)
|
void |
setIcon(Icon icon)
Sets the icon. |
void |
setPainter(Painter<?> painter)
Sets the delegate's Painter if it is of type PainterAware. |
Methods inherited from class javax.swing.JPanel |
---|
getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected JComponent delegate
Constructor Detail |
---|
public WrappingIconPanel()
public WrappingIconPanel(boolean dropHackEnabled)
dropHackEnabled
- a boolean indicating whether the drop hack should
be enabled.isVisible()
Method Detail |
---|
public void setComponentOrientation(ComponentOrientation o)
Overridden to update the icon position.
setComponentOrientation
in class Component
public void setIcon(Icon icon)
setIcon
in interface IconAware
icon
- the icon to use.public Icon getIcon()
getIcon
in interface IconAware
public void setComponent(JComponent comp)
comp
- the component to add as delegate.public JComponent getComponent()
public void setBackground(Color bg)
Overridden to set the background of the delegate and icon label as well.
setBackground
in class JXPanel
bg
- the desired background Color
Component.getBackground()
,
JComponent.setOpaque(boolean)
public void setForeground(Color bg)
Overridden to set the foreground of the delegate and icon label as well.
setForeground
in class JComponent
public void setFont(Font font)
Overridden to set the Font of the delegate as well.
setFont
in class JComponent
public boolean isVisible()
Overridden to hack around #766-swingx: cursor flickering in DnD when dragging over tree column. This is a core bug (#6700748) related to painting the rendering component on a CellRendererPane. A trick around is to let this return false.
Some LayoutManagers don't layout an invisible component, so need to make the hack-enabled configurable. This implementation will return false if isDropHackEnabled, super.isVisible otherwise.
isVisible
in class Component
public Painter<?> getPainter()
Returns the delegate's Painter if it is of type PainterAware or null otherwise.
getPainter
in interface PainterAware
public void setPainter(Painter<?> painter)
setPainter
in interface PainterAware
painter
- the Painter to apply to the delegate.public Rectangle getDelegateBounds()
public void setDropHackEnabled(boolean dropHackEnabled)
The default value is true.
dropHackEnabled
- isVisible()
public void setExtendsComponentOpacity(boolean extendsComponentOpacity)
The default value is false. This covers the main use case in a JTree.
extendsComponentOpacity
- public boolean getExtendsComponentOpacity()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |