Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
A layered pane is a Swing container that provides a third dimension for positioning components: depth, also known as Z order. When adding a component to a layered pane, you specify its depth as an integer. The higher the number, the higher the depth. If components overlap, components at a higher depth are drawn on top of components at a lower depth. The relationship between components at the same depth is determined by their positions within the depth.
Version note: In 1.5, we expect that API will be added to allow direct manipulation of aComponent
's Z order within a container. When this is available, you won't need to use aJLayeredPane
to assign a Z order to a lightweight component.Every Swing container that has a root pane such as
JFrame
,JApplet
,JDialog
, orJInternalFrame
automatically has a layered pane. Most programs don't explicitly use the root pane's layered pane, so we don't discuss it in this section. You can find information about it in The Root Pane, which provides an overview, and The Layered Pane, which has further details. This section concentrates on telling you how to create your own layered pane and use it anywhere you might use a regular Swing container.Swing provides two layered pane classes. The first,
JLayeredPane
, is the class that root panes use and is the class used by the example in this section. The second,JDesktopPane
, is aJLayeredPane
subclass that's specialized for the task of holding internal frames. For examples of usingJDesktopPane
, see How to Use Internal Frames.Here's a picture of an application that creates a layered pane and places overlapping, colored labels at different depths:
Here's the code from
Try this:
- Run LayeredPaneDemo using JavaTM Web Start. Or, to compile and run the example yourself, consult the example index.
- Move the mouse around in the lower part of the window. The image of Duke drags behind the green and red labels, but in front of the other three labels.
- Use the combo box at the top of the window to change Duke's depth. Use the check box to set whether Duke is in the top position position 0 within the current depth.
LayeredPaneDemo.java
that creates the layered pane:The code useslayeredPane = new JLayeredPane(); layeredPane.setPreferredSize(new Dimension(300, 310)); layeredPane.setBorder(BorderFactory.createTitledBorder( "Move the Mouse to Move Duke")); layeredPane.addMouseMotionListener(new MouseMotionAdapter() { ... });JLayeredPane
's only constructor the no-argument constructor to create the layered pane. The rest of the code uses methods inherited from superclasses to give the layered pane a preferred size and a border, and add a mouse-motion listener to it. The mouse-motion listener just moves the Duke image around in response to mouse movement. Although we don't show the code here, the example adds the layered pane to the frame's content pane.As we'll show you a bit later, you add components to a layered pane using an
add
method. When adding a component to a layered pane, you specify the component's depth, and optionally, its position within its depth. The layered pane in the demo program contains six labels the five colored labels and a sixth one that displays the Duke image. As the program demonstrates, both the depth of a component and its position with that depth can change dynamically.The rest of this section covers these topics:
Here's the code from the sample program that adds the colored labels to the layered pane:You can find the implementation of thefor (int i = 0; i < ...number of labels...; i++) { JLabel label = createColoredLabel(...); layeredPane.add(label, new Integer(i)); ... }createColoredLabel
method in the source code for the program. It just creates an opaqueJLabel
initialized with a background color, a border, some text, and a size.The example program uses a two-argument version of the
add
method. The first argument is the component to add, the second is anInteger
object, specifying the depth. This program uses thefor
loop's iteration variable to specify depths. The actual values don't matter much. What matters is the relative value of the depths and that you are consistent within your program in how you use each depth.
Note: If you use the root pane's layered pane, be sure to use its depth conventions. Refer to The Layered Pane for details. That section shows you how to modifyLayeredPaneDemo
to use the root pane's layered pane. With the modifications, you can see how the dragging Duke image relates to the combo box in the control panel.As you can see from the example program, if components overlap, components at a higher depth are on top of components at a lower depth. To change a component's depth dynamically, use the
setLayer
method. In the example, the user can change Duke's layer by making a selection from the combo box. Here's theactionPerformed
method of the action listener registered on the combo box:Thepublic void actionPerformed(ActionEvent e) { int position = onTop.isSelected() ? 0 : 1; layeredPane.setLayer(dukeLabel, layerList.getSelectedIndex(), position); }setLayer
method used here takes three arguments: the component whose depth is to be set, the new depth, and the position within the depth.JLayeredPane
has a two-argument version ofsetLayer
that takes only the component and the new depth. That method puts the component at the bottom position in its depth.
A note of caution: When adding a component to a layered pane you specify the layer with anInteger
. When usingsetLayer
to change a component's layer, you use anint
. You might think that if you use anint
instead of anInteger
with theadd
method, the compiler would complain or your program would throw an illegal argument exception. But the compiler says nothing, which results in a common layered pane problem. You can use the API tables at the end of this section to check the types of the arguments and return values for methods that deal with layers.
The following code creates the label that displays Duke's image, and then adds the label to the layered pane.This code uses the three-argument version of thefinal ImageIcon icon = createImageIcon("images/dukeWaveRed.gif"); ... dukeLabel = new JLabel(icon); ... dukeLabel.setBounds(15, 225, icon.getIconWidth(), icon.getIconHeight()); ... layeredPane.add(dukeLabel, new Integer(2), 0);add
method. The third argument specifies the Duke label's position within its depth, which determines the component's relationship with other components at the same depth.Positions are specified with an
int
between -1 and (n - 1), where n is the number of components at the depth. Unlike layer numbers, the smaller the position number, the higher the component within its depth. Using -1 is the same as using n - 1; it indicates the bottom-most position. Using 0 specifies that the component should be in the top-most position within its depth. As the following figure shows, with the exception of -1, a lower position number indicates a higher position within a depth.A component's position within its layer can change dynamically. In the example, you can use the check box to determine whether Duke label is in the top position at its depth. Here's the actionPerformed
method for the action listener registered on the check box:When the user selects the check box, thepublic void actionPerformed(ActionEvent e) { if (onTop.isSelected()) layeredPane.moveToFront(dukeLabel); else layeredPane.moveToBack(dukeLabel); }moveToFront
method moves Duke to the front (position 0). And when the user deselects check box, Duke gets moved to the back with themoveToBack
method. You can also use thesetPosition
method or the three-argument version ofsetLayer
to change a component's position.
By default a layered pane has no layout manager. This means that you typically have to write the code that positions and sizes the components you put in a layered pane.The example uses the
setBounds
method to set the size and position of each of the labels:When the user moves the mouse around, the program callsdukeLabel.setBounds(15, 225, icon.getIconWidth(), icon.getIconHeight()); ... label.setBounds(origin.x, origin.y, 140, 140);setPosition
to change Duke's position:Although a layered pane has no layout manager by default, you can still assign a layout manager to the layered pane. All of the layout managers provided by the Java platform arrange the components as if they were all on one layer. Here's a version of the previous demo that sets the layered pane's layout manager to an instance ofdukeLabel.setLocation(e.getX()-XFUDGE, e.getY()-YFUDGE);GridLayout
, using that layout manager to lay out six colored labels.You can find the code for this program in LayeredPaneDemo2.java
. You can run LayeredPaneDemo2 using Java Web Start. If you want to compile the example, consult the example index for a list of all necessary files.Many programs use intermediate containers (such as panels) and their layout managers to lay out components on the same layer, but use absolute positioning to lay out components on different layers. For more information about absolute positioning, see Doing Without a Layout Manager (Absolute Positioning).
The following tables list the commonly usedJLayeredPane
constructors and methods. Other methods you are most likely to invoke on aJLayeredPane
object are those it inherits from its superclasses, such assetBorder
,setPreferredSize
, and so on. See The JComponent API for tables of commonly used inherited methods.The API for using layered pane falls into these categories:
Creating or Getting a Layered Pane Method or Constructor Purpose JLayeredPane()
Create a layered pane. JLayeredPane getLayeredPane()
(inJApplet
,JDialog
,JFrame
, andJInternalFrame
)Get the automatic layered pane in an applet, dialog, frame, or internal frame.
Layering Components Method Purpose void add(Component)
void add(Component, Object)
void add(Component, Object, int)
Add the specified component to the layered pane. The second argument, when present, is an Integer
that indicates the layer. The third argument, when present, indicates the component's position within its layer. If you use the one-argument version of this method, the component is added to layer 0. If you use the one- or two-argument version of this method, the component is placed underneath all other components currently in the same layer.void setLayer(Component, int)
void setLayer(Component, int, int)
Change the component's layer. The second argument indicates the layer. The third argument, when present, indicates the component's position within its layer. int getLayer(Component)
int getLayer(JComponent)
Get the layer for the specified component. int getComponentCountInLayer(int)
Get the number of components in the specified layer. The value returned by this method can be useful for computing position values. Component[] getComponentsInLayer(int)
Get an array of all the components in the specified layer. int highestLayer()
int lowestLayer()
Compute the highest or lowest layer currently in use.
Setting Components' Intra-Layer Positions Method Purpose void setPosition(Component, int)
int getPosition(Component)
Set or get the position for the specified component within its layer. void moveToFront(Component)
void moveToBack(Component)
Move the specified component to the front or back of its layer.
This table shows the examples that useJLayeredPane
and where those examples are described.
Example Where Described Notes LayeredPaneDemo
This section Illustrates layers and intra-layer positions of a JLayeredPane
.LayeredPaneDemo2
This section Uses a layout manager to help lay out the components in a layered pane. RootLayeredPaneDemo
The Layered Pane A version of LayeredPaneDemo
modified to use the root pane's layered pane.InternalFrameDemo
How to Use Internal Frames Uses a JDesktopFrame
to manage internal frames.
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.