-
Enhancement
-
Resolution: Fixed
-
P4
-
1.1, 1.1.1, 1.1.4, 1.1.6, 1.2.0, 1.3.0, 1.4.0, 1.4.2, 5.0
-
tiger
-
generic, unknown, x86
-
generic, solaris_2.5.1, solaris_10, windows_nt, windows_xp
Name: pa48320 Date: 11/29/2001
When an application that uses partial or completely overlapping stacked canvases is implemented using Java, it usually
requires creating a lightweight panel for each stacked canvas and
adding all those panels as children of some top level lightweight
window. Each panel can in turn contain a number of components.
During application execution, those canvases need to be raised
and lowered programmatically. A common case is that the user
uses the keyboard to navigate to a text component on a canvas
which is currently obscured by another canvas, and therefore
needs that canvas to come to the top of the Z-order.
The current implementation of Z-ordering in a container is static
in the sense that Z-order of each child relative to the others is
decided once at the time the child is added to the container, and
never altered. This means the only way we can alter the Z-order
of existing components in a container is by removing some set of
components and adding them again to the same container at with
different indices. This is not ideal, because the removal process
causes handlers to be called, resources to be destroyed, and focus
to shift, which in turn requires a workarounds to get everything
back to the state where it was before the Z-order modification.
We propose that an API be added to the Container class to allow
Z-order to be changed dynamically. _Raising_ a child component in
the Z-order of its parent container using this API should not
generate focus events or cause any other unnecessary handlers
to be called, though lowering a child could potentially have
more ramifications, and perhaps it might make sense to add new
listeners and events to track movement in the Z direction.
This API could mirror "add(component, index)" on Container and
perhaps be called "setZOrder(component, index)".
(Review ID: 136396)
======================================================================
- duplicates
-
JDK-4016585 would like api to change component's z-order position with respect to siblings
- Closed
-
JDK-4638303 Z Order API in Containers
- Closed
- relates to
-
JDK-4835327 componentShown only received for first doc in MDI
- Closed
-
JDK-6809227 poor performance on Panel.Add() method in jdk6
- Closed