- java.lang.Object
-
- java.awt.font.TextHitInfo
-
public final class TextHitInfo extends Object
TheTextHitInfo
class represents a character position in a text model, and a bias, or "side," of the character. Biases are either leading (the left edge, for a left-to-right character) or trailing (the right edge, for a left-to-right character). Instances ofTextHitInfo
are used to specify caret and insertion positions within text.For example, consider the text "abc". TextHitInfo.trailing(1) corresponds to the right side of the 'b' in the text.
TextHitInfo
is used primarily byTextLayout
and clients ofTextLayout
. Clients ofTextLayout
queryTextHitInfo
instances for an insertion offset, where new text is inserted into the text model. The insertion offset is equal to the character position in theTextHitInfo
if the bias is leading, and one character after if the bias is trailing. The insertion offset for TextHitInfo.trailing(1) is 2.Sometimes it is convenient to construct a
TextHitInfo
with the same insertion offset as an existing one, but on the opposite character. ThegetOtherHit
method constructs a newTextHitInfo
with the same insertion offset as an existing one, with a hit on the character on the other side of the insertion offset. CallinggetOtherHit
on trailing(1) would return leading(2). In general,getOtherHit
for trailing(n) returns leading(n+1) andgetOtherHit
for leading(n) returns trailing(n-1).Example:
Converting a graphical point to an insertion point within a text model
TextLayout layout = ...; Point2D.Float hitPoint = ...; TextHitInfo hitInfo = layout.hitTestChar(hitPoint.x, hitPoint.y); int insPoint = hitInfo.getInsertionIndex(); // insPoint is relative to layout; may need to adjust for use // in a text model
- See Also:
TextLayout
-
-
Method Summary
Methods Modifier and Type Method and Description static TextHitInfo
afterOffset(int offset)
Creates aTextHitInfo
at the specified offset, associated with the character after the offset.static TextHitInfo
beforeOffset(int offset)
Creates aTextHitInfo
at the specified offset, associated with the character before the offset.boolean
equals(Object obj)
Returnstrue
if the specifiedObject
is aTextHitInfo
and equals thisTextHitInfo
.boolean
equals(TextHitInfo hitInfo)
Returnstrue
if the specifiedTextHitInfo
has the samecharIndex
andisLeadingEdge
as thisTextHitInfo
.int
getCharIndex()
Returns the index of the character hit.int
getInsertionIndex()
Returns the insertion index.TextHitInfo
getOffsetHit(int delta)
Creates aTextHitInfo
whose character index is offset bydelta
from thecharIndex
of thisTextHitInfo
.TextHitInfo
getOtherHit()
Creates aTextHitInfo
on the other side of the insertion point.int
hashCode()
Returns the hash code.boolean
isLeadingEdge()
Returnstrue
if the leading edge of the character was hit.static TextHitInfo
leading(int charIndex)
Creates aTextHitInfo
on the leading edge of the character at the specifiedcharIndex
.String
toString()
Returns aString
representing the hit for debugging use only.static TextHitInfo
trailing(int charIndex)
Creates a hit on the trailing edge of the character at the specifiedcharIndex
.
-
-
-
Method Detail
-
getCharIndex
public int getCharIndex()
Returns the index of the character hit.- Returns:
- the index of the character hit.
-
isLeadingEdge
public boolean isLeadingEdge()
Returnstrue
if the leading edge of the character was hit.- Returns:
true
if the leading edge of the character was hit;false
otherwise.
-
getInsertionIndex
public int getInsertionIndex()
Returns the insertion index. This is the character index if the leading edge of the character was hit, and one greater than the character index if the trailing edge was hit.- Returns:
- the insertion index.
-
hashCode
public int hashCode()
Returns the hash code.- Overrides:
hashCode
in classObject
- Returns:
- the hash code of this
TextHitInfo
, which is also thecharIndex
of thisTextHitInfo
. - See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
equals
public boolean equals(Object obj)
Returnstrue
if the specifiedObject
is aTextHitInfo
and equals thisTextHitInfo
.- Overrides:
equals
in classObject
- Parameters:
obj
- theObject
to test for equality- Returns:
true
if the specifiedObject
equals thisTextHitInfo
;false
otherwise.- See Also:
Object.hashCode()
,HashMap
-
equals
public boolean equals(TextHitInfo hitInfo)
Returnstrue
if the specifiedTextHitInfo
has the samecharIndex
andisLeadingEdge
as thisTextHitInfo
. This is not the same as having the same insertion offset.- Parameters:
hitInfo
- a specifiedTextHitInfo
- Returns:
true
if the specifiedTextHitInfo
has the samecharIndex
andisLeadingEdge
as thisTextHitInfo
.
-
toString
public String toString()
Returns aString
representing the hit for debugging use only.
-
leading
public static TextHitInfo leading(int charIndex)
Creates aTextHitInfo
on the leading edge of the character at the specifiedcharIndex
.- Parameters:
charIndex
- the index of the character hit- Returns:
- a
TextHitInfo
on the leading edge of the character at the specifiedcharIndex
.
-
trailing
public static TextHitInfo trailing(int charIndex)
Creates a hit on the trailing edge of the character at the specifiedcharIndex
.- Parameters:
charIndex
- the index of the character hit- Returns:
- a
TextHitInfo
on the trailing edge of the character at the specifiedcharIndex
.
-
beforeOffset
public static TextHitInfo beforeOffset(int offset)
Creates aTextHitInfo
at the specified offset, associated with the character before the offset.- Parameters:
offset
- an offset associated with the character before the offset- Returns:
- a
TextHitInfo
at the specified offset.
-
afterOffset
public static TextHitInfo afterOffset(int offset)
Creates aTextHitInfo
at the specified offset, associated with the character after the offset.- Parameters:
offset
- an offset associated with the character after the offset- Returns:
- a
TextHitInfo
at the specified offset.
-
getOtherHit
public TextHitInfo getOtherHit()
Creates aTextHitInfo
on the other side of the insertion point. ThisTextHitInfo
remains unchanged.- Returns:
- a
TextHitInfo
on the other side of the insertion point.
-
getOffsetHit
public TextHitInfo getOffsetHit(int delta)
Creates aTextHitInfo
whose character index is offset bydelta
from thecharIndex
of thisTextHitInfo
. ThisTextHitInfo
remains unchanged.- Parameters:
delta
- the value to offset thischarIndex
- Returns:
- a
TextHitInfo
whosecharIndex
is offset bydelta
from thecharIndex
of thisTextHitInfo
.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 17:43:25 Cette version de la page est en cache (à la date du 05/11/2024 17:43:25) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/font/TextHitInfo.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.