- java.lang.Object
-
- javax.swing.text.AsyncBoxView.ChildLocator
-
- Enclosing class:
- AsyncBoxView
public class AsyncBoxView.ChildLocator extends Object
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.- Since:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field and Description protected Rectangle
childAlloc
A shape to use for the child allocation to avoid creating a lot of garbage.protected Rectangle
lastAlloc
The last seen allocation (for repainting when changes are flushed upward).protected AsyncBoxView.ChildState
lastValidOffset
The location of the last offset calculation that is valid.
-
Constructor Summary
Constructors Constructor and Description AsyncBoxView.ChildLocator()
construct a child locator.
-
Method Summary
Methods Modifier and Type Method and Description void
childChanged(AsyncBoxView.ChildState cs)
Notification that a child changed.protected Shape
getChildAllocation(int index)
Fetch the allocation to use for a child view.Shape
getChildAllocation(int index, Shape a)
Fetch the allocation to use for a child view.int
getViewIndexAtPoint(float x, float y, Shape a)
Fetches the child view index at the given point.protected int
getViewIndexAtVisualOffset(float targetOffset)
Locate the view responsible for an offset into the box along the major axis.void
paintChildren(Graphics g)
Paint the children that intersect the clip area.protected void
setAllocation(Shape a)
Copy the currently allocated shape into the Rectangle used to store the current allocation.
-
-
-
Field Detail
-
lastValidOffset
protected AsyncBoxView.ChildState lastValidOffset
The location of the last offset calculation that is valid.
-
lastAlloc
protected Rectangle lastAlloc
The last seen allocation (for repainting when changes are flushed upward).
-
childAlloc
protected Rectangle childAlloc
A shape to use for the child allocation to avoid creating a lot of garbage.
-
-
Constructor Detail
-
AsyncBoxView.ChildLocator
public AsyncBoxView.ChildLocator()
construct a child locator.
-
-
Method Detail
-
childChanged
public void childChanged(AsyncBoxView.ChildState cs)
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.
-
paintChildren
public void paintChildren(Graphics g)
Paint the children that intersect the clip area.
-
getChildAllocation
public Shape getChildAllocation(int index, Shape a)
Fetch the allocation to use for a child view. This will update the offsets for all children not yet updated before the given index.
-
getViewIndexAtPoint
public int getViewIndexAtPoint(float x, float y, Shape a)
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.- Parameters:
x
- the X coordinate >= 0y
- the Y coordinate >= 0a
- the allocation to the View- Returns:
- the nearest child index
-
getChildAllocation
protected Shape getChildAllocation(int index)
Fetch the allocation to use for a child view. This does not update the offsets in the ChildState records.
-
setAllocation
protected void setAllocation(Shape a)
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.
-
getViewIndexAtVisualOffset
protected int getViewIndexAtVisualOffset(float targetOffset)
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.- Returns:
- index of the view representing the given visual location (targetOffset), or -1 if no view represents that location
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/swing/text/asyncboxview.childlocator.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.