|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.swing.text
类 GlyphView.GlyphPainter
java.lang.Object javax.swing.text.GlyphView.GlyphPainter
- 正在封闭类:
- GlyphView
-
public abstract static class GlyphView.GlyphPainter
- extends Object
执行字形呈现的类。此类可实现为无状态的,或将某些信息存储为缓存,以便更快地呈现和模型/视图转换。至少,GlyphPainter 允许 View 实现独立于特定的 JVM 版本和功能选择(即向国际化并轨)来执行其职责。
- 从以下版本开始:
- 1.3
构造方法摘要 | |
---|---|
GlyphView.GlyphPainter() |
方法摘要 | |
---|---|
abstract float |
getAscent(GlyphView v) |
abstract int |
getBoundedPosition(GlyphView v, int p0, float x, float len) 确定表示符合给定区域的最大 advance 的模型位置。 |
abstract float |
getDescent(GlyphView v) |
abstract float |
getHeight(GlyphView v) |
int |
getNextVisualPositionFrom(GlyphView v, int pos, Position.Bias b, Shape a, int direction, Position.Bias[] biasRet) 提供确定下一个以可视化形式表示的模型位置的方法,用户可以在此位置放置一个插入符。 |
GlyphView.GlyphPainter |
getPainter(GlyphView v, int p0, int p1) 创建用于给定 GlyphView 的 painter。 |
abstract float |
getSpan(GlyphView v, int p0, int p1, TabExpander e, float x) 确定给定开始位置(相对于选项卡扩展而言)的字形区域。 |
abstract Shape |
modelToView(GlyphView v, int pos, Position.Bias bias, Shape a) 提供从文档模型坐标空间到所映射的视图坐标空间的映射。 |
abstract void |
paint(GlyphView v, Graphics g, Shape a, int p0, int p1) 绘制表示给定范围的字形。 |
abstract int |
viewToModel(GlyphView v, float x, float y, Shape a, Position.Bias[] biasReturn) 提供从视图坐标空间到模型逻辑坐标空间的映射。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
GlyphView.GlyphPainter
public GlyphView.GlyphPainter()
方法详细信息 |
---|
getSpan
public abstract float getSpan(GlyphView v, int p0, int p1, TabExpander e, float x)
- 确定给定开始位置(相对于选项卡扩展而言)的字形区域。
-
getHeight
public abstract float getHeight(GlyphView v)
getAscent
public abstract float getAscent(GlyphView v)
getDescent
public abstract float getDescent(GlyphView v)
paint
public abstract void paint(GlyphView v, Graphics g, Shape a, int p0, int p1)
- 绘制表示给定范围的字形。
-
modelToView
public abstract Shape modelToView(GlyphView v, int pos, Position.Bias bias, Shape a) throws BadLocationException
- 提供从文档模型坐标空间到所映射的视图坐标空间的映射。这由拆分后的视图共享。
-
- 参数:
v
- 包含目标坐标空间的GlyphView
pos
- 要转换的位置bias
- 可以是Position.Bias.Forward
,也可以是Position.Bias.Backward
a
- 视图的边界- 返回:
- 给定位置的边界框
- 抛出:
BadLocationException
- 如果给定位置不表示相关文档中的有效位置- 另请参见:
View.modelToView(int, java.awt.Shape, javax.swing.text.Position.Bias)
viewToModel
public abstract int viewToModel(GlyphView v, float x, float y, Shape a, Position.Bias[] biasReturn)
- 提供从视图坐标空间到模型逻辑坐标空间的映射。
-
- 参数:
v
- 要为其提供映射的GlyphView
x
- X 坐标y
- Y 坐标a
- 要呈现的分配区域biasReturn
- 将Position.Bias.Forward
或Position.Bias.Backward
返回,作为此数组中的第零个元素- 返回:
- 模型中最能代表视图中给定点的位置
- 另请参见:
View.viewToModel(float, float, java.awt.Shape, javax.swing.text.Position.Bias[])