All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class symantec.itools.awt.util.ToolBarPanel

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----symantec.itools.awt.BorderPanel
                                   |
                                   +----symantec.itools.awt.util.ToolBarPanel

public class ToolBarPanel
extends BorderPanel
ToolBarPanel component. This component creates a panel to which you can add buttons to create a toolbar in a window. Toolbars commonly contain buttons, but a ToolBarPanel can hold other types of components like static text, check boxes, even images. Tool bar components are separated with a ToolBarSpacer component.

See Also:
ToolBarSpacer

Constructor Index

 o ToolBarPanel()
Create ToolBarPanel.

Method Index

 o minimumSize()
Returns the minimum dimensions to properly display this component.
 o preferredSize()
Returns the recommended dimensions to properly display this component.
 o setLayout(LayoutManager)
Takes no action.

Constructors

 o ToolBarPanel
  public ToolBarPanel()
Create ToolBarPanel. Default ToolBarPanel uses a BEVEL_RAISED style.

Methods

 o setLayout
  public void setLayout(LayoutManager lm)
Takes no action. This is a standard Java AWT method which gets called to specify which layout manager should be used to layout the components in standard containers. Since layout managers CANNOT BE USED with this container the standard setLayout has been OVERRIDDEN for this container and does nothing.

Parameters:
l - the layout manager to use to layout this container's components (IGNORED)
Overrides:
setLayout in class BorderPanel
See Also:
getLayout
 o preferredSize
  public synchronized Dimension preferredSize()
Returns the recommended dimensions to properly display this component. This is a standard Java AWT method which gets called to determine the recommended size of this component.

Overrides:
preferredSize in class BorderPanel
See Also:
minimumSize
 o minimumSize
  public synchronized Dimension minimumSize()
Returns the minimum dimensions to properly display this component. This is a standard Java AWT method which gets called to determine the minimum size of this component. In this case the minimum size is the same as the preferred size.

Overrides:
minimumSize in class BorderPanel
See Also:
preferredSize

All Packages  Class Hierarchy  This Package  Previous  Next  Index