public class CardLayout extends Object implements LayoutManager2, Serializable
A CardLayout
object is a layout manager for a container. It treats each component in the container as a card. Only one card is visible at a time, and the container acts as a stack of cards. The first component added to a CardLayout
object is the visible component when the container is first displayed.
The ordering of cards is determined by the container's own internal ordering of its component objects. CardLayout
defines a set of methods that allow an application to flip through these cards sequentially, or to show a specified card. The addLayoutComponent(java.awt.Component, java.lang.Object)
method can be used to associate a string identifier with a given card for fast random access.
Container
, Serialized Formpublic CardLayout()
Creates a new card layout with gaps of size zero.
public CardLayout(int hgap, int vgap)
Creates a new card layout with the specified horizontal and vertical gaps. The horizontal gaps are placed at the left and right edges. The vertical gaps are placed at the top and bottom edges.
hgap
- the horizontal gap.vgap
- the vertical gap.public int getHgap()
Gets the horizontal gap between components.
setHgap(int)
, getVgap()
public void setHgap(int hgap)
Sets the horizontal gap between components.
hgap
- the horizontal gap between components.getHgap()
, setVgap(int)
public int getVgap()
Gets the vertical gap between components.
setVgap(int)
, getHgap()
public void setVgap(int vgap)
Sets the vertical gap between components.
vgap
- the vertical gap between components.getVgap()
, setHgap(int)
public void addLayoutComponent(Component comp, Object constraints)
Adds the specified component to this card layout's internal table of names. The object specified by constraints
must be a string. The card layout stores this string as a key-value pair that can be used for random access to a particular card. By calling the show
method, an application can display the component with the specified name.
addLayoutComponent
in interface LayoutManager2
comp
- the component to be added.constraints
- a tag that identifies a particular card in the layout.IllegalArgumentException
- if the constraint is not a string.show(java.awt.Container, java.lang.String)
@Deprecated public void addLayoutComponent(String name, Component comp)
Deprecated. replaced by addLayoutComponent(Component, Object)
.
Description copied from interface: LayoutManager
If the layout manager uses a per-component string, adds the component comp
to the layout, associating it with the string specified by name
.
addLayoutComponent
in interface LayoutManager
name
- the string to be associated with the componentcomp
- the component to be addedpublic void removeLayoutComponent(Component comp)
Removes the specified component from the layout. If the card was visible on top, the next card underneath it is shown.
removeLayoutComponent
in interface LayoutManager
comp
- the component to be removed.Container.remove(java.awt.Component)
, Container.removeAll()
public Dimension preferredLayoutSize(Container parent)
Determines the preferred size of the container argument using this card layout.
preferredLayoutSize
in interface LayoutManager
parent
- the parent container in which to do the layoutContainer.getPreferredSize()
, minimumLayoutSize(java.awt.Container)
public Dimension minimumLayoutSize(Container parent)
Calculates the minimum size for the specified panel.
minimumLayoutSize
in interface LayoutManager
parent
- the parent container in which to do the layoutContainer.doLayout()
, preferredLayoutSize(java.awt.Container)
public Dimension maximumLayoutSize(Container target)
Returns the maximum dimensions for this layout given the components in the specified target container.
maximumLayoutSize
in interface LayoutManager2
target
- the component which needs to be laid outContainer
, minimumLayoutSize(java.awt.Container)
, preferredLayoutSize(java.awt.Container)
public float getLayoutAlignmentX(Container parent)
Returns the alignment along the x axis. This specifies how the component would like to be aligned relative to other components. The value should be a number between 0 and 1 where 0 represents alignment along the origin, 1 is aligned the furthest away from the origin, 0.5 is centered, etc.
getLayoutAlignmentX
in interface LayoutManager2
public float getLayoutAlignmentY(Container parent)
Returns the alignment along the y axis. This specifies how the component would like to be aligned relative to other components. The value should be a number between 0 and 1 where 0 represents alignment along the origin, 1 is aligned the furthest away from the origin, 0.5 is centered, etc.
getLayoutAlignmentY
in interface LayoutManager2
public void invalidateLayout(Container target)
Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
invalidateLayout
in interface LayoutManager2
public void layoutContainer(Container parent)
Lays out the specified container using this card layout.
Each component in the parent
container is reshaped to be the size of the container, minus space for surrounding insets, horizontal gaps, and vertical gaps.
layoutContainer
in interface LayoutManager
parent
- the parent container in which to do the layoutContainer.doLayout()
public void first(Container parent)
Flips to the first card of the container.
parent
- the parent container in which to do the layoutlast(java.awt.Container)
public void next(Container parent)
Flips to the next card of the specified container. If the currently visible card is the last one, this method flips to the first card in the layout.
parent
- the parent container in which to do the layoutprevious(java.awt.Container)
public void previous(Container parent)
Flips to the previous card of the specified container. If the currently visible card is the first one, this method flips to the last card in the layout.
parent
- the parent container in which to do the layoutnext(java.awt.Container)
public void last(Container parent)
Flips to the last card of the container.
parent
- the parent container in which to do the layoutfirst(java.awt.Container)
public void show(Container parent, String name)
Flips to the component that was added to this layout with the specified name
, using addLayoutComponent
. If no such component exists, then nothing happens.
parent
- the parent container in which to do the layoutname
- the component nameaddLayoutComponent(java.awt.Component, java.lang.Object)
public String toString()
Returns a string representation of the state of this card layout.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.