org.apache.pivot.wtk.skin.terra
Class TerraMenuBarSkin

java.lang.Object
  extended by org.apache.pivot.wtk.skin.ComponentSkin
      extended by org.apache.pivot.wtk.skin.ContainerSkin
          extended by org.apache.pivot.wtk.skin.terra.TerraMenuBarSkin
All Implemented Interfaces:
ComponentKeyListener, ComponentListener, ComponentMouseButtonListener, ComponentMouseListener, ComponentMouseWheelListener, ComponentStateListener, ComponentTooltipListener, ConstrainedVisual, ContainerListener, ContainerMouseListener, MenuBarListener, Skin, Visual

public class TerraMenuBarSkin
extends ContainerSkin
implements MenuBarListener

Menu bar skin.


Nested Class Summary
 
Nested classes/interfaces inherited from class org.apache.pivot.wtk.skin.ContainerSkin
ContainerSkin.IndexFocusTraversalPolicy
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.MenuBarListener
MenuBarListener.Adapter
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ContainerListener
ContainerListener.Adapter
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ContainerMouseListener
ContainerMouseListener.Adapter
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentListener
ComponentListener.Adapter
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentStateListener
ComponentStateListener.Adapter
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentMouseListener
ComponentMouseListener.Adapter
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentMouseButtonListener
ComponentMouseButtonListener.Adapter
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentKeyListener
ComponentKeyListener.Adapter
 
Constructor Summary
TerraMenuBarSkin()
           
 
Method Summary
 void activeItemChanged(MenuBar menuBar, MenuBar.Item previousActiveItem)
          Called when a menu bar's active item has changed.
 Color getActiveBackgroundColor()
           
 Color getActiveColor()
           
 Color getColor()
           
 Color getDisabledColor()
           
 Font getFont()
           
 int getPreferredHeight(int width)
          Returns the visual's preferred height given the provided width constraint.
 Dimensions getPreferredSize()
          Returns the visual's unconstrained preferred size.
 int getPreferredWidth(int height)
          Returns the visual's preferred width given the provided height constraint.
 int getSpacing()
           
 void install(Component component)
          Associates a skin with a component.
 void itemInserted(MenuBar menuBar, int index)
          Called when a menu bar item has been inserted.
 void itemsRemoved(MenuBar menuBar, int index, Sequence<MenuBar.Item> removed)
          Called when menu bar items have been removed.
 void layout()
          If the component on which the skin is installed is a container, lays out the container's children.
 void setActiveBackgroundColor(Color activeBackgroundColor)
           
 void setActiveBackgroundColor(int color)
           
 void setActiveBackgroundColor(String activeBackgroundColor)
           
 void setActiveColor(Color activeColor)
           
 void setActiveColor(int color)
           
 void setActiveColor(String activeColor)
           
 void setBackgroundColor(int color)
           
 void setColor(Color color)
           
 void setColor(int color)
           
 void setColor(String color)
           
 void setDisabledColor(Color disabledColor)
           
 void setDisabledColor(int color)
           
 void setDisabledColor(String disabledColor)
           
 void setFont(Dictionary<String,?> font)
           
 void setFont(Font font)
           
 void setFont(String font)
           
 void setSpacing(int spacing)
           
 
Methods inherited from class org.apache.pivot.wtk.skin.ContainerSkin
componentInserted, componentMoved, componentsRemoved, focusTraversalPolicyChanged, getBackgroundColor, getBackgroundPaint, isFocusable, isOpaque, mouseDown, mouseMove, mouseUp, mouseWheel, paint, setBackgroundColor, setBackgroundColor, setBackgroundPaint, setBackgroundPaint, setBackgroundPaint
 
Methods inherited from class org.apache.pivot.wtk.skin.ComponentSkin
cursorChanged, decodeFont, dragSourceChanged, dropTargetChanged, enabledChanged, focusedChanged, getBaseline, getBaseline, getComponent, getHeight, getWidth, heightLimitsChanged, invalidateComponent, keyPressed, keyReleased, keyTyped, locationChanged, menuHandlerChanged, mouseClick, mouseDown, mouseMove, mouseOut, mouseOver, mouseUp, mouseWheel, nameChanged, parentChanged, preferredSizeChanged, repaintComponent, repaintComponent, repaintComponent, repaintComponent, repaintComponent, setSize, sizeChanged, tooltipDelayChanged, tooltipTextChanged, tooltipTriggered, visibleChanged, widthLimitsChanged
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TerraMenuBarSkin

public TerraMenuBarSkin()
Method Detail

install

public void install(Component component)
Description copied from interface: Skin
Associates a skin with a component.

Specified by:
install in interface Skin
Overrides:
install in class ContainerSkin
Parameters:
component - The component to which the skin is being attached.

getPreferredWidth

public int getPreferredWidth(int height)
Description copied from interface: ConstrainedVisual
Returns the visual's preferred width given the provided height constraint.

Specified by:
getPreferredWidth in interface ConstrainedVisual
Overrides:
getPreferredWidth in class ContainerSkin
Parameters:
height - The height by which to constrain the preferred width, or -1 for no constraint.

getPreferredHeight

public int getPreferredHeight(int width)
Description copied from interface: ConstrainedVisual
Returns the visual's preferred height given the provided width constraint.

Specified by:
getPreferredHeight in interface ConstrainedVisual
Overrides:
getPreferredHeight in class ContainerSkin
Parameters:
width - The width by which to constrain the preferred height, or -1 for no constraint.

getPreferredSize

public Dimensions getPreferredSize()
Description copied from interface: ConstrainedVisual
Returns the visual's unconstrained preferred size.

Specified by:
getPreferredSize in interface ConstrainedVisual
Overrides:
getPreferredSize in class ComponentSkin

layout

public void layout()
Description copied from interface: Skin
If the component on which the skin is installed is a container, lays out the container's children.

Specified by:
layout in interface Skin

setBackgroundColor

public final void setBackgroundColor(int color)

getFont

public Font getFont()

setFont

public void setFont(Font font)

setFont

public final void setFont(String font)

setFont

public final void setFont(Dictionary<String,?> font)

getColor

public Color getColor()

setColor

public void setColor(Color color)

setColor

public final void setColor(String color)

setColor

public final void setColor(int color)

getDisabledColor

public Color getDisabledColor()

setDisabledColor

public void setDisabledColor(Color disabledColor)

setDisabledColor

public final void setDisabledColor(String disabledColor)

setDisabledColor

public final void setDisabledColor(int color)

getActiveColor

public Color getActiveColor()

setActiveColor

public void setActiveColor(Color activeColor)

setActiveColor

public final void setActiveColor(String activeColor)

setActiveColor

public final void setActiveColor(int color)

getActiveBackgroundColor

public Color getActiveBackgroundColor()

setActiveBackgroundColor

public void setActiveBackgroundColor(Color activeBackgroundColor)

setActiveBackgroundColor

public final void setActiveBackgroundColor(String activeBackgroundColor)

setActiveBackgroundColor

public final void setActiveBackgroundColor(int color)

getSpacing

public int getSpacing()

setSpacing

public void setSpacing(int spacing)

itemInserted

public void itemInserted(MenuBar menuBar,
                         int index)
Description copied from interface: MenuBarListener
Called when a menu bar item has been inserted.

Specified by:
itemInserted in interface MenuBarListener

itemsRemoved

public void itemsRemoved(MenuBar menuBar,
                         int index,
                         Sequence<MenuBar.Item> removed)
Description copied from interface: MenuBarListener
Called when menu bar items have been removed.

Specified by:
itemsRemoved in interface MenuBarListener

activeItemChanged

public void activeItemChanged(MenuBar menuBar,
                              MenuBar.Item previousActiveItem)
Description copied from interface: MenuBarListener
Called when a menu bar's active item has changed.

Specified by:
activeItemChanged in interface MenuBarListener