|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.bounce.PercentageLayout
public class PercentageLayout
A Layout manager that can be used to layout components horizontally or
vertically. Every component will be resized relative to the value
supplied as a constraint. All the Integer values will be added together
and will be seen as 100% so if the next two components are added:
add( component1, new Integer( 150));
add( component2, new Integer( 50));
In this case 'component1' will occupy 75% of the panel and 'component2'
will occupy 25% of the panel.
| Field Summary | |
|---|---|
static int |
HORIZONTAL
Sets the layout orientation to horizontal. |
static int |
VERTICAL
Sets the layout orientation to vertical. |
| Constructor Summary | |
|---|---|
PercentageLayout()
Constructs a default PercentageLayout without a gap and with a horizontal orientation. |
|
PercentageLayout(int orientation)
Constructs a PercentageLayout with the orientation supplied and with no gap between the components. |
|
PercentageLayout(int orientation,
int gap)
Constructs a PercentageLayout with the gap and orientation supplied. |
|
| Method Summary | |
|---|---|
void |
addLayoutComponent(java.awt.Component component,
java.lang.Object constraints)
Adds the specified component to the layout, using the specified constraint object. |
void |
addLayoutComponent(java.lang.String name,
java.awt.Component comp)
Not used, components cannot be added without a constraint. |
int |
getGap()
Returns the gap between the components. |
float |
getLayoutAlignmentX(java.awt.Container target)
Returns the alignment along the x axis. |
float |
getLayoutAlignmentY(java.awt.Container target)
Returns the alignment along the y axis. |
int |
getOrientation()
Returns the orientation of the layout manager. |
void |
invalidateLayout(java.awt.Container target)
Invalidates the layout, indicating that if the layout manager has cached information it should be discarded. |
void |
layoutContainer(java.awt.Container parent)
Lays out the components on the specified container. |
java.awt.Dimension |
maximumLayoutSize(java.awt.Container target)
Returns the maximum size of this component. |
java.awt.Dimension |
minimumLayoutSize(java.awt.Container parent)
Calculates the minimum size dimensions for the specified panel given the components in the specified parent container. |
java.awt.Dimension |
preferredLayoutSize(java.awt.Container parent)
Calculates the preferred size dimensions for the specified container given the components in the specified parent container. |
void |
removeLayoutComponent(java.awt.Component component)
Removes the specified component and constraints from the layout. |
void |
setConstraints(java.awt.Component component,
java.lang.Object constraint)
Adds the specified component to the layout, using the specified constraint object. |
void |
setGap(int gap)
Sets the gap between the components. |
void |
setOrientation(int orientation)
Sets the orientation of the layout manager. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int HORIZONTAL
public static final int VERTICAL
| Constructor Detail |
|---|
public PercentageLayout()
public PercentageLayout(int orientation)
orientation - the orientation of the components.
public PercentageLayout(int orientation,
int gap)
orientation - the orientation of the components.gap - the space between the components.| Method Detail |
|---|
public int getGap()
public void setGap(int gap)
gap - the gap.public int getOrientation()
public void setOrientation(int orientation)
orientation - the orientation.
public void setConstraints(java.awt.Component component,
java.lang.Object constraint)
component - the component added to the parent container.constraint - the constraint for the added component.public void removeLayoutComponent(java.awt.Component component)
removeLayoutComponent in interface java.awt.LayoutManagercomponent - the component to be removedpublic java.awt.Dimension preferredLayoutSize(java.awt.Container parent)
preferredLayoutSize in interface java.awt.LayoutManagerparent - the component to be laid out.
public java.awt.Dimension minimumLayoutSize(java.awt.Container parent)
minimumLayoutSize in interface java.awt.LayoutManagerparent - the component to be laid out
public void layoutContainer(java.awt.Container parent)
layoutContainer in interface java.awt.LayoutManagerparent - the component which needs to be laid out
public void addLayoutComponent(java.awt.Component component,
java.lang.Object constraints)
addLayoutComponent in interface java.awt.LayoutManager2component - the component to be addedconstraints - where/how the component is added to the layout.public java.awt.Dimension maximumLayoutSize(java.awt.Container target)
maximumLayoutSize in interface java.awt.LayoutManager2target - the component to be laid out
Component.getMinimumSize(),
Component.getPreferredSize()public float getLayoutAlignmentX(java.awt.Container target)
getLayoutAlignmentX in interface java.awt.LayoutManager2target - the container to calculate X alignment for.
public float getLayoutAlignmentY(java.awt.Container target)
getLayoutAlignmentY in interface java.awt.LayoutManager2target - the container to calculate Y alignment for.
public void invalidateLayout(java.awt.Container target)
invalidateLayout in interface java.awt.LayoutManager2target - the container.
public void addLayoutComponent(java.lang.String name,
java.awt.Component comp)
addLayoutComponent in interface java.awt.LayoutManagername - the component name.comp - the component.
|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||