Class SubstanceRadioButtonUI
- java.lang.Object
-
- javax.swing.plaf.ComponentUI
-
- javax.swing.plaf.ButtonUI
-
- javax.swing.plaf.basic.BasicButtonUI
-
- javax.swing.plaf.basic.BasicToggleButtonUI
-
- javax.swing.plaf.basic.BasicRadioButtonUI
-
- org.pushingpixels.substance.internal.ui.SubstanceRadioButtonUI
-
- All Implemented Interfaces:
TransitionAwareUI
- Direct Known Subclasses:
SubstanceCheckBoxUI
public class SubstanceRadioButtonUI extends BasicRadioButtonUI implements TransitionAwareUI
UI for radio buttons in Substance look and feel.
-
-
Field Summary
Fields Modifier and Type Field Description protected JToggleButton
button
Associated toggle button.protected StateTransitionTracker
stateTransitionTracker
protected PropertyChangeListener
substancePropertyListener
Property change listener.-
Fields inherited from class javax.swing.plaf.basic.BasicRadioButtonUI
icon
-
Fields inherited from class javax.swing.plaf.basic.BasicButtonUI
defaultTextIconGap, defaultTextShiftOffset
-
-
Constructor Summary
Constructors Constructor Description SubstanceRadioButtonUI(JToggleButton button)
Simple constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected BasicButtonListener
createButtonListener(AbstractButton b)
static ComponentUI
createUI(JComponent comp)
Icon
getDefaultIcon()
static String
getMemoryUsage()
Returns memory usage string.StateTransitionTracker
getTransitionTracker()
Returns the model for tracking the transitions.protected void
installDefaults(AbstractButton b)
protected void
installListeners(AbstractButton b)
boolean
isInside(MouseEvent me)
Checks whether the mouse position of the specified event lies inside the area of the component designated for transition effects.void
paint(Graphics g, JComponent c)
protected void
paintButtonText(Graphics g, AbstractButton button, Rectangle textRect, String text)
Paints the text.protected void
uninstallListeners(AbstractButton b)
-
Methods inherited from class javax.swing.plaf.basic.BasicRadioButtonUI
getPreferredSize, getPropertyPrefix, paintFocus, uninstallDefaults
-
Methods inherited from class javax.swing.plaf.basic.BasicToggleButtonUI
getTextShiftOffset, paintIcon
-
Methods inherited from class javax.swing.plaf.basic.BasicButtonUI
clearTextShiftOffset, getBaseline, getBaselineResizeBehavior, getDefaultTextIconGap, getMaximumSize, getMinimumSize, installKeyboardActions, installUI, paintButtonPressed, paintFocus, paintIcon, paintText, paintText, setTextShiftOffset, uninstallKeyboardActions, uninstallUI
-
Methods inherited from class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, update
-
-
-
-
Field Detail
-
substancePropertyListener
protected PropertyChangeListener substancePropertyListener
Property change listener. Listens on changes toAbstractButton.MODEL_CHANGED_PROPERTY
property.
-
button
protected JToggleButton button
Associated toggle button.
-
stateTransitionTracker
protected StateTransitionTracker stateTransitionTracker
-
-
Constructor Detail
-
SubstanceRadioButtonUI
public SubstanceRadioButtonUI(JToggleButton button)
Simple constructor.- Parameters:
button
- Associated radio button.
-
-
Method Detail
-
installListeners
protected void installListeners(AbstractButton b)
- Overrides:
installListeners
in classBasicRadioButtonUI
-
installDefaults
protected void installDefaults(AbstractButton b)
- Overrides:
installDefaults
in classBasicRadioButtonUI
-
uninstallListeners
protected void uninstallListeners(AbstractButton b)
- Overrides:
uninstallListeners
in classBasicRadioButtonUI
-
createUI
public static ComponentUI createUI(JComponent comp)
-
createButtonListener
protected BasicButtonListener createButtonListener(AbstractButton b)
- Overrides:
createButtonListener
in classBasicButtonUI
-
getDefaultIcon
public Icon getDefaultIcon()
- Overrides:
getDefaultIcon
in classBasicRadioButtonUI
-
paint
public void paint(Graphics g, JComponent c)
- Overrides:
paint
in classBasicRadioButtonUI
-
getMemoryUsage
public static String getMemoryUsage()
Returns memory usage string.- Returns:
- Memory usage string.
-
paintButtonText
protected void paintButtonText(Graphics g, AbstractButton button, Rectangle textRect, String text)
Paints the text.- Parameters:
g
- Graphic contextbutton
- ButtontextRect
- Text rectangletext
- Text to paint
-
isInside
public boolean isInside(MouseEvent me)
Description copied from interface:TransitionAwareUI
Checks whether the mouse position of the specified event lies inside the area of the component designated for transition effects.- Specified by:
isInside
in interfaceTransitionAwareUI
- Parameters:
me
- Mouse event.- Returns:
true
if the mouse position of the specified event lies inside the area of the component designated for transition effects,false
otherwise.
-
getTransitionTracker
public StateTransitionTracker getTransitionTracker()
Description copied from interface:TransitionAwareUI
Returns the model for tracking the transitions.- Specified by:
getTransitionTracker
in interfaceTransitionAwareUI
- Returns:
- Model for tracking the transitions.
-
-