com.imagero.gui.flowin.plaf
Class ButtonPanelUI

java.lang.Object
  extended byjavax.swing.plaf.ComponentUI
      extended bycom.imagero.gui.flowin.plaf.TabContainerUI
          extended bycom.imagero.gui.flowin.plaf.ButtonPanelUI
Direct Known Subclasses:
BasicButtonPanelUI

public abstract class ButtonPanelUI
extends TabContainerUI


Nested Class Summary
 
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
 
Field Summary
 
Fields inherited from class com.imagero.gui.flowin.plaf.TabContainerUI
COMPARATOR, MOUSE_HANDLER
 
Constructor Summary
ButtonPanelUI()
           
 
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
 

Constructor Detail

ButtonPanelUI

public ButtonPanelUI()
Method Detail

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:
  1. 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.
  2. Install a LayoutManager on the component if necessary.
  3. Create/add any required sub-components to the component.
  4. Create/install event listeners on the component.
  5. Create/install a PropertyChangeListener on the component in order to detect and respond to component property changes appropriately.
  6. Install keyboard UI (mnemonics, traversal, etc.) on the component.
  7. 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:
  1. Remove any UI-set borders from the component.
  2. Remove any UI-set layout managers on the component.
  3. Remove any UI-added sub-components from the component.
  4. Remove any UI-added event/property listeners from the component.
  5. Remove any UI-installed keyboard UI from the component.
  6. Nullify any allocated instance data objects to allow for GC.

Overrides:
uninstallUI in class TabContainerUI