Package org.flexdock.view
Class View.ViewLayout
- java.lang.Object
-
- org.flexdock.view.View.ViewLayout
-
- All Implemented Interfaces:
java.awt.LayoutManager,java.awt.LayoutManager2,java.io.Serializable
- Enclosing class:
- View
protected class View.ViewLayout extends java.lang.Object implements java.awt.LayoutManager2, java.io.Serializable- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedViewLayout()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddLayoutComponent(java.awt.Component comp, java.lang.Object constraints)voidaddLayoutComponent(java.lang.String name, java.awt.Component comp)floatgetLayoutAlignmentX(java.awt.Container target)floatgetLayoutAlignmentY(java.awt.Container target)voidinvalidateLayout(java.awt.Container target)voidlayoutContainer(java.awt.Container parent)Instructs the layout manager to perform the layout for the specified container.java.awt.DimensionmaximumLayoutSize(java.awt.Container target)Returns the maximum amount of space the layout can use.java.awt.DimensionminimumLayoutSize(java.awt.Container parent)Returns the minimum amount of space the layout needs.java.awt.DimensionpreferredLayoutSize(java.awt.Container parent)Returns the amount of space the layout would like to have.voidremoveLayoutComponent(java.awt.Component comp)
-
-
-
Method Detail
-
preferredLayoutSize
public java.awt.Dimension preferredLayoutSize(java.awt.Container parent)
Returns the amount of space the layout would like to have.- Specified by:
preferredLayoutSizein interfacejava.awt.LayoutManager- Parameters:
parent- the Container for which this layout manager is being used- 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.- Specified by:
minimumLayoutSizein interfacejava.awt.LayoutManager- Parameters:
parent- the Container for which this layout manager is being used- 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.- Specified by:
maximumLayoutSizein interfacejava.awt.LayoutManager2- Parameters:
target- the Container for which this layout manager is being used- 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.- Specified by:
layoutContainerin interfacejava.awt.LayoutManager- Parameters:
parent- the Container for which this layout manager is being used
-
addLayoutComponent
public void addLayoutComponent(java.lang.String name, java.awt.Component comp)- Specified by:
addLayoutComponentin interfacejava.awt.LayoutManager
-
removeLayoutComponent
public void removeLayoutComponent(java.awt.Component comp)
- Specified by:
removeLayoutComponentin interfacejava.awt.LayoutManager
-
addLayoutComponent
public void addLayoutComponent(java.awt.Component comp, java.lang.Object constraints)- Specified by:
addLayoutComponentin interfacejava.awt.LayoutManager2
-
getLayoutAlignmentX
public float getLayoutAlignmentX(java.awt.Container target)
- Specified by:
getLayoutAlignmentXin interfacejava.awt.LayoutManager2
-
getLayoutAlignmentY
public float getLayoutAlignmentY(java.awt.Container target)
- Specified by:
getLayoutAlignmentYin interfacejava.awt.LayoutManager2
-
invalidateLayout
public void invalidateLayout(java.awt.Container target)
- Specified by:
invalidateLayoutin interfacejava.awt.LayoutManager2
-
-