|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--javax.swing.text.GlyphView.GlyphPainter | +--javax.swing.text.GlyphPainter1
A class to perform rendering of the glyphs. This can be implemented to be stateless, or to hold some information as a cache to facilitate faster rendering and model/view translation. At a minimum, the GlyphPainter allows a View implementation to perform its duties independent of a particular version of JVM and selection of capabilities (i.e. shaping for i18n, etc).
This implementation is intended for operation under the JDK1.1 API of the Java Platform. Since the Java 2 SDK is backward compatible with JDK1.1 API, this class will also function on Java 2. The Java 2 SDK introduces improved API for rendering text however, so the GlyphPainter2 is recommended for the Java 2 SDK.
GlyphView
Field Summary | |
(package private) FontMetrics |
metrics
|
Constructor Summary | |
(package private) |
GlyphPainter1()
|
Method Summary | |
float |
getAscent(GlyphView v)
Fetches the ascent above the baseline for the glyphs corresponding to the given range in the model. |
int |
getBoundedPosition(GlyphView v,
int p0,
float x,
float len)
Determines the best location (in the model) to break the given view. |
float |
getDescent(GlyphView v)
Fetches the descent below the baseline for the glyphs corresponding to the given range in the model. |
float |
getHeight(GlyphView v)
|
float |
getSpan(GlyphView v,
int p0,
int p1,
TabExpander e,
float x)
Determine the span the glyphs given a start location (for tab expansion). |
Shape |
modelToView(GlyphView v,
int pos,
javax.swing.text.Position.Bias bias,
Shape a)
Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it. |
void |
paint(GlyphView v,
Graphics g,
Shape a,
int p0,
int p1)
Paints the glyphs representing the given range. |
(package private) void |
sync(GlyphView v)
|
int |
viewToModel(GlyphView v,
float x,
float y,
Shape a,
javax.swing.text.Position.Bias[] biasReturn)
Provides a mapping from the view coordinate space to the logical coordinate space of the model. |
Methods inherited from class javax.swing.text.GlyphPainter |
getNextVisualPositionFrom, getPainter |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
FontMetrics metrics
Constructor Detail |
GlyphPainter1()
Method Detail |
public float getSpan(GlyphView v, int p0, int p1, TabExpander e, float x)
getSpan
in class javax.swing.text.GlyphView.GlyphPainter
public float getHeight(GlyphView v)
getHeight
in class javax.swing.text.GlyphView.GlyphPainter
public float getAscent(GlyphView v)
getAscent
in class javax.swing.text.GlyphView.GlyphPainter
public float getDescent(GlyphView v)
getDescent
in class javax.swing.text.GlyphView.GlyphPainter
public void paint(GlyphView v, Graphics g, Shape a, int p0, int p1)
paint
in class javax.swing.text.GlyphView.GlyphPainter
public Shape modelToView(GlyphView v, int pos, javax.swing.text.Position.Bias bias, Shape a) throws BadLocationException
javax.swing.text.GlyphView.GlyphPainter
modelToView
in class javax.swing.text.GlyphView.GlyphPainter
pos
- the position to converta
- the allocated region to render into
BadLocationException
View.modelToView(int, java.awt.Shape, javax.swing.text.Position.Bias)
public int viewToModel(GlyphView v, float x, float y, Shape a, javax.swing.text.Position.Bias[] biasReturn)
viewToModel
in class javax.swing.text.GlyphView.GlyphPainter
v
- the view containing the view coordinatesx
- the X coordinatey
- the Y coordinatea
- the allocated region to render intobiasReturn
- always returns Position.Bias.Forward
as the zero-th element of this array
View.viewToModel(float, float, java.awt.Shape, javax.swing.text.Position.Bias[])
public int getBoundedPosition(GlyphView v, int p0, float x, float len)
getBoundedPosition
in class javax.swing.text.GlyphView.GlyphPainter
v
- the viewp0
- the location in the model where the
fragment should start its representation >= 0len
- specifies the distance into the view
where a potential break is desired >= 0
View.breakView(int, int, float, float)
void sync(GlyphView v)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |