java.lang.Object | |
↳ | javax.swing.text.AsyncBoxView.ChildLocator |
A class to manage the effective position of the child views in a localized area while changes are being made around the localized area. The AsyncBoxView may be continuously changing, but the visible area needs to remain fairly stable until the layout thread decides to publish an update to the parent.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
childAlloc | A shape to use for the child allocation to avoid creating a lot of garbage. | ||||||||||
lastAlloc | The last seen allocation (for repainting when changes are flushed upward). | ||||||||||
lastValidOffset | The location of the last offset calculation that is valid. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
construct a child locator.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Notification that a child changed.
| |||||||||||
Fetch the allocation to use for a child view.
| |||||||||||
Fetches the child view index at the given point.
| |||||||||||
Paint the children that intersect the clip area.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Fetch the allocation to use for a child view.
| |||||||||||
Locate the view responsible for an offset into the box
along the major axis.
| |||||||||||
Copy the currently allocated shape into the Rectangle
used to store the current allocation.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
A shape to use for the child allocation to avoid creating a lot of garbage.
The last seen allocation (for repainting when changes are flushed upward).
The location of the last offset calculation that is valid.
construct a child locator.
Notification that a child changed. This can effect whether or not new offset calculations are needed. This is called by a ChildState object that has changed it's major span. This can therefore be called by multiple threads.
Fetch the allocation to use for a child view. This will update the offsets for all children not yet updated before the given index.
Fetches the child view index at the given point. This is called by the various View methods that need to calculate which child to forward a message to. This should be called by a block synchronized on this object, and would typically be followed with one or more calls to getChildAllocation that should also be in the synchronized block.
x | the X coordinate >= 0 |
---|---|
y | the Y coordinate >= 0 |
a | the allocation to the View |
Paint the children that intersect the clip area.
Fetch the allocation to use for a child view. This does not update the offsets in the ChildState records.
Locate the view responsible for an offset into the box along the major axis. Make sure that offsets are set on the ChildState objects up to the given target span past the desired offset.
Copy the currently allocated shape into the Rectangle used to store the current allocation. This would be a floating point rectangle in a Java2D-specific implmentation.