org.jvnet.substance
Class SubstanceRootPaneUI.SubstanceRootLayout

java.lang.Object
  extended by org.jvnet.substance.SubstanceRootPaneUI.SubstanceRootLayout
All Implemented Interfaces:
java.awt.LayoutManager, java.awt.LayoutManager2
Enclosing class:
SubstanceRootPaneUI

protected class SubstanceRootPaneUI.SubstanceRootLayout
extends java.lang.Object
implements java.awt.LayoutManager2

A custom layout manager that is responsible for the layout of layeredPane, glassPane, menuBar and titlePane, if one has been installed.


Constructor Summary
protected SubstanceRootPaneUI.SubstanceRootLayout()
           
 
Method Summary
 void addLayoutComponent(java.awt.Component comp, java.lang.Object constraints)
           
 void addLayoutComponent(java.lang.String name, java.awt.Component comp)
           
 float getLayoutAlignmentX(java.awt.Container target)
           
 float getLayoutAlignmentY(java.awt.Container target)
           
 void invalidateLayout(java.awt.Container target)
           
 void layoutContainer(java.awt.Container parent)
          Instructs the layout manager to perform the layout for the specified container.
 java.awt.Dimension maximumLayoutSize(java.awt.Container target)
          Returns the maximum amount of space the layout can use.
 java.awt.Dimension minimumLayoutSize(java.awt.Container parent)
          Returns the minimum amount of space the layout needs.
 java.awt.Dimension preferredLayoutSize(java.awt.Container parent)
          Returns the amount of space the layout would like to have.
 void removeLayoutComponent(java.awt.Component comp)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SubstanceRootPaneUI.SubstanceRootLayout

protected SubstanceRootPaneUI.SubstanceRootLayout()
Method Detail

preferredLayoutSize

public java.awt.Dimension preferredLayoutSize(java.awt.Container parent)
Returns the amount of space the layout would like to have. aram the Container for which this layout manager is being used

Specified by:
preferredLayoutSize in interface java.awt.LayoutManager
Returns:
a Dimension object containing the layout's preferred size

minimumLayoutSize

public java.awt.Dimension minimumLayoutSize(java.awt.Container parent)
Returns the minimum amount of space the layout needs. aram the Container for which this layout manager is being used

Specified by:
minimumLayoutSize in interface java.awt.LayoutManager
Returns:
a Dimension object containing the layout's minimum size

maximumLayoutSize

public java.awt.Dimension maximumLayoutSize(java.awt.Container target)
Returns the maximum amount of space the layout can use. aram the Container for which this layout manager is being used

Specified by:
maximumLayoutSize in interface java.awt.LayoutManager2
Returns:
a Dimension object containing the layout's maximum size

layoutContainer

public void layoutContainer(java.awt.Container parent)
Instructs the layout manager to perform the layout for the specified container. aram the Container for which this layout manager is being used

Specified by:
layoutContainer in interface java.awt.LayoutManager

addLayoutComponent

public void addLayoutComponent(java.lang.String name,
                               java.awt.Component comp)
Specified by:
addLayoutComponent in interface java.awt.LayoutManager

removeLayoutComponent

public void removeLayoutComponent(java.awt.Component comp)
Specified by:
removeLayoutComponent in interface java.awt.LayoutManager

addLayoutComponent

public void addLayoutComponent(java.awt.Component comp,
                               java.lang.Object constraints)
Specified by:
addLayoutComponent in interface java.awt.LayoutManager2

getLayoutAlignmentX

public float getLayoutAlignmentX(java.awt.Container target)
Specified by:
getLayoutAlignmentX in interface java.awt.LayoutManager2

getLayoutAlignmentY

public float getLayoutAlignmentY(java.awt.Container target)
Specified by:
getLayoutAlignmentY in interface java.awt.LayoutManager2

invalidateLayout

public void invalidateLayout(java.awt.Container target)
Specified by:
invalidateLayout in interface java.awt.LayoutManager2