com.imagero.gui.flowin.plaf
Class ButtonPanelUI
java.lang.Object
javax.swing.plaf.ComponentUI
com.imagero.gui.flowin.plaf.TabContainerUI
com.imagero.gui.flowin.plaf.ButtonPanelUI
- Direct Known Subclasses:
- BasicButtonPanelUI
- public abstract class ButtonPanelUI
- extends TabContainerUI
| Nested classes inherited from class com.imagero.gui.flowin.plaf.TabContainerUI |
TabContainerUI.DefaultTextComparator, TabContainerUI.EnumComparator, TabContainerUI.EnumMouseHandler, TabContainerUI.FancyMouseHandler, TabContainerUI.HoverMouseHandler, TabContainerUI.InvertedTextComparator, TabContainerUI.MouseHandler, TabContainerUI.PropertyChangeHandler, TabContainerUI.SimpleMouseHandler, TabContainerUI.StringComparator, TabContainerUI.TabPanelMouseHandler |
|
Method Summary |
abstract javax.swing.border.Border |
getBorder(javax.swing.AbstractButton b)
|
abstract javax.swing.border.Border |
getRolloverBorder(javax.swing.AbstractButton b)
|
abstract javax.swing.border.Border |
getToggleBorder(javax.swing.AbstractButton b)
|
void |
installBorder(javax.swing.AbstractButton b,
boolean rollover)
|
void |
installUI(javax.swing.JComponent c)
Configures the specified component appropriate for the look and feel.
|
void |
resetBorder(javax.swing.AbstractButton b)
|
protected void |
resetBorders(ButtonPanel c)
|
void |
setBorders(ButtonPanel c)
|
void |
uninstallUI(javax.swing.JComponent c)
Reverses configuration which was done on the specified component during
installUI. |
| Methods inherited from class com.imagero.gui.flowin.plaf.TabContainerUI |
createUI, getComparator, getDefaultTextComparator, getEnumComparator, getFancyMouseHandler, getHoverMouseHandler, getInvertedTextComparator, getMouseHandler, getPropertyChangeHandler, getSimpleMouseHandler, getStringComparator, getTabBorder, getTabPanelMouseHandler, installListeners, maybeShowPopup, unistallListeners |
| Methods inherited from class javax.swing.plaf.ComponentUI |
contains, getAccessibleChild, getAccessibleChildrenCount, getMaximumSize, getMinimumSize, getPreferredSize, paint, update |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ButtonPanelUI
public ButtonPanelUI()
getBorder
public abstract javax.swing.border.Border getBorder(javax.swing.AbstractButton b)
getRolloverBorder
public abstract javax.swing.border.Border getRolloverBorder(javax.swing.AbstractButton b)
getToggleBorder
public abstract javax.swing.border.Border getToggleBorder(javax.swing.AbstractButton b)
installBorder
public void installBorder(javax.swing.AbstractButton b,
boolean rollover)
installUI
public void installUI(javax.swing.JComponent c)
- Description copied from class:
javax.swing.plaf.ComponentUI
- Configures the specified component appropriate for the look and feel.
This method is invoked when the
ComponentUI instance is being installed
as the UI delegate on the specified component. This method should
completely configure the component for the look and feel,
including the following:
- Install any default property values for color, fonts, borders,
icons, opacity, etc. on the component. Whenever possible,
property values initialized by the client program should not
be overridden.
- Install a
LayoutManager on the component if necessary.
- Create/add any required sub-components to the component.
- Create/install event listeners on the component.
- Create/install a
PropertyChangeListener on the component in order
to detect and respond to component property changes appropriately.
- Install keyboard UI (mnemonics, traversal, etc.) on the component.
- Initialize any appropriate instance data.
- Overrides:
installUI in class TabContainerUI
resetBorder
public void resetBorder(javax.swing.AbstractButton b)
resetBorders
protected void resetBorders(ButtonPanel c)
setBorders
public void setBorders(ButtonPanel c)
uninstallUI
public void uninstallUI(javax.swing.JComponent c)
- Description copied from class:
javax.swing.plaf.ComponentUI
- Reverses configuration which was done on the specified component during
installUI. This method is invoked when this
UIComponent instance is being removed as the UI delegate
for the specified component. This method should undo the
configuration performed in installUI, being careful to
leave the JComponent instance in a clean state (no
extraneous listeners, look-and-feel-specific property objects, etc.).
This should include the following:
- Remove any UI-set borders from the component.
- Remove any UI-set layout managers on the component.
- Remove any UI-added sub-components from the component.
- Remove any UI-added event/property listeners from the component.
- Remove any UI-installed keyboard UI from the component.
- Nullify any allocated instance data objects to allow for GC.
- Overrides:
uninstallUI in class TabContainerUI