Class BasicCommandButtonStripUI
- java.lang.Object
-
- javax.swing.plaf.ComponentUI
-
- org.pushingpixels.flamingo.internal.ui.common.CommandButtonStripUI
-
- org.pushingpixels.flamingo.internal.ui.common.BasicCommandButtonStripUI
-
public class BasicCommandButtonStripUI extends CommandButtonStripUI
Basic UI for button stripJCommandButtonStrip.
-
-
Field Summary
Fields Modifier and Type Field Description protected JCommandButtonStripbuttonStripThe associated button strip.protected ChangeListenerchangeListener
-
Constructor Summary
Constructors Constructor Description BasicCommandButtonStripUI()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected LayoutManagercreateLayoutManager()Invoked byinstallUIto create a layout manager object to manage theJCommandButtonStrip.static ComponentUIcreateUI(JComponent c)protected voidinstallComponents()Installs subcomponents on the associated button strip.protected voidinstallDefaults()Installs defaults on the associated button strip.protected voidinstallListeners()Installs listeners on the associated button strip.voidinstallUI(JComponent c)protected voiduninstallComponents()Uninstalls subcomponents from the associated ribbon.protected voiduninstallDefaults()Uninstalls defaults from the associated button strip.protected voiduninstallListeners()Uninstalls listeners from the associated button strip.voiduninstallUI(JComponent c)-
Methods inherited from class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, paint, update
-
-
-
-
Field Detail
-
buttonStrip
protected JCommandButtonStrip buttonStrip
The associated button strip.
-
changeListener
protected ChangeListener changeListener
-
-
Method Detail
-
createUI
public static ComponentUI createUI(JComponent c)
-
installUI
public void installUI(JComponent c)
- Overrides:
installUIin classComponentUI
-
uninstallUI
public void uninstallUI(JComponent c)
- Overrides:
uninstallUIin classComponentUI
-
installListeners
protected void installListeners()
Installs listeners on the associated button strip.
-
uninstallListeners
protected void uninstallListeners()
Uninstalls listeners from the associated button strip.
-
installDefaults
protected void installDefaults()
Installs defaults on the associated button strip.
-
uninstallDefaults
protected void uninstallDefaults()
Uninstalls defaults from the associated button strip.
-
installComponents
protected void installComponents()
Installs subcomponents on the associated button strip.
-
uninstallComponents
protected void uninstallComponents()
Uninstalls subcomponents from the associated ribbon.
-
createLayoutManager
protected LayoutManager createLayoutManager()
Invoked byinstallUIto create a layout manager object to manage theJCommandButtonStrip.- Returns:
- a layout manager object
-
-