public class GlyphView extends Viewimplements TabableView , Cloneable
The view supports breaking for the purpose of formatting. The fragments produced by breaking share the view that has primary responsibility for the element (i.e. they are nested classes and carry only a small amount of state of their own) so they can share its resources.
Since this view represents text that may have tabs embedded in it, it implements the TabableView interface. Tabs will only be expanded if this view is embedded in a container that does tab expansion. ParagraphView is an example of a container that does tab expansion.
| Modifier and Type | Class and Description |
|---|---|
static class |
GlyphView
A class to perform rendering of the glyphs.
|
BadBreakWeight, ExcellentBreakWeight, ForcedBreakWeight, GoodBreakWeight, X_AXIS, Y_AXISBOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST| Constructor and Description |
|---|
GlyphView(Element
Constructs a new view wrapped on an element.
|
| Modifier and Type | Method and Description |
|---|---|
View |
breakView(int axis, int p0, float pos, float len)
Breaks this view on the given axis at the given length.
|
void |
changedUpdate(DocumentEvent
Gives notification from the document that attributes were changed in a location that this view is responsible for.
|
protected void |
checkPainter()
Check to see that a glyph painter exists.
|
protected Object |
clone()
Creates a shallow copy.
|
View |
createFragment(int p0, int p1)
Creates a view that represents a portion of the element.
|
float |
getAlignment(int axis)
Determines the desired alignment for this view along an axis.
|
Color |
getBackground()
Fetch the background color to use to render the glyphs.
|
int |
getBreakWeight(int axis, float pos, float len)
Determines how attractive a break opportunity in this view is.
|
int |
getEndOffset()
Fetches the portion of the model that this view is responsible for.
|
Font |
getFont()
Fetch the font that the glyphs should be based upon.
|
Color |
getForeground()
Fetch the foreground color to use to render the glyphs.
|
GlyphView |
getGlyphPainter()
Fetch the currently installed glyph painter.
|
float |
getMinimumSpan(int axis)
Determines the minimum span for this view along an axis.
|
int |
getNextVisualPositionFrom(int pos, Position
Provides a way to determine the next visually represented model location that one might place a caret.
|
float |
getPartialSpan(int p0, int p1)
Determines the span along the same axis as tab expansion for a portion of the view.
|
float |
getPreferredSpan(int axis)
Determines the preferred span for this view along an axis.
|
int |
getStartOffset()
Fetches the portion of the model that this view is responsible for.
|
float |
getTabbedSpan(float x, TabExpander
Determines the desired span when using the given tab expansion implementation.
|
TabExpander |
getTabExpander()
Fetch the TabExpander to use if tabs are present in this view.
|
Segment |
getText(int p0, int p1)
Fetch a reference to the text that occupies the given range.
|
void |
insertUpdate(DocumentEvent
Gives notification that something was inserted into the document in a location that this view is responsible for.
|
boolean |
isStrikeThrough()
Determine if the glyphs should have a strikethrough line.
|
boolean |
isSubscript()
Determine if the glyphs should be rendered as superscript.
|
boolean |
isSuperscript()
Determine if the glyphs should be rendered as subscript.
|
boolean |
isUnderline()
Determine if the glyphs should be underlined.
|
Shape |
modelToView(int pos, Shape
Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it.
|
void |
paint(Graphics
Renders a portion of a text style run.
|
void |
removeUpdate(DocumentEvent
Gives notification that something was removed from the document in a location that this view is responsible for.
|
void |
setGlyphPainter(GlyphView
Sets the painter to use for rendering glyphs.
|
int |
viewToModel(float x, float y, Shape
Provides a mapping from the view coordinate space to the logical coordinate space of the model.
|
append, forwardUpdate, forwardUpdateToView, getAttributes, getChildAllocation, getContainer, getDocument, getElement, getGraphics, getMaximumSpan, getParent, getResizeWeight, getToolTipText, getView, getViewCount, getViewFactory, getViewIndex, getViewIndex, insert, isVisible, modelToView, modelToView, preferenceChanged, remove, removeAll, replace, setParent, setSize, updateChildren, updateLayout, viewToModelpublic GlyphView(Elementelem)
elem - the element
protected final Objectclone()
public GlyphView.GlyphPainter getGlyphPainter()
public void setGlyphPainter(GlyphView.GlyphPainter p)
public SegmentgetText(int p0, int p1)
p0 - the starting document offset >= 0
p1 - the ending document offset >= p0
Segment containing the text
public ColorgetBackground()
StyledDocument.getBackground if the associated document is a styled document, otherwise it returns null.
public ColorgetForeground()
StyledDocument.getBackground if the associated document is a StyledDocument. If the associated document is not a StyledDocument, the associated components foreground color is used. If there is no associated component, null is returned.
public FontgetFont()
StyledDocument.getFont if the associated document is a StyledDocument. If the associated document is not a StyledDocument, the associated components font is used. If there is no associated component, null is returned.
public boolean isUnderline()
public boolean isStrikeThrough()
public boolean isSubscript()
public boolean isSuperscript()
public TabExpandergetTabExpander()
protected void checkPainter()
public float getTabbedSpan(float x,
TabExpander e)
getTabbedSpan in interface
TabableView
x - the position the view would be located at for the purpose of tab expansion >= 0.
e - how to expand the tabs when encountered.
TabableView.getTabbedSpan(float, javax.swing.text.TabExpander)
public float getPartialSpan(int p0,
int p1)
This method can be called while servicing the getTabbedSpan or getPreferredSize. It has to arrange for its own text buffer to make the measurements.
getPartialSpan in interface
TabableView
p0 - the starting document offset >= 0
p1 - the ending document offset >= p0
public int getStartOffset()
getStartOffset in class
View
View.getStartOffset()
public int getEndOffset()
getEndOffset in class
View
View.getEndOffset()
public float getMinimumSpan(int axis)
This implementation returns the longest non-breakable area within the view as a minimum span for View.X_AXIS.
getMinimumSpan in class
View
axis - may be either
View.X_AXIS or
View.Y_AXIS
IllegalArgumentException - if the
axis parameter is invalid
View.getMinimumSpan(int)
public float getPreferredSpan(int axis)
getPreferredSpan in class
View
axis - may be either View.X_AXIS or View.Y_AXIS
View.getPreferredSpan(int)
public float getAlignment(int axis)
getAlignment in class
View
axis - may be either View.X_AXIS or View.Y_AXIS
public ShapemodelToView(int pos, Shape a, Position .Bias b) throws BadLocationException
modelToView in class
View
pos - the position to convert >= 0
a - the allocated region to render into
b - either
Position.Bias.Forward or
Position.Bias.Backward
BadLocationException - if the given position does not represent a valid location in the associated document
View.modelToView(int, java.awt.Shape, javax.swing.text.Position.Bias)
public int viewToModel(float x,
float y,
Shape a,
Position.Bias [] biasReturn)
viewToModel in class
View
x - the X coordinate >= 0
y - the Y coordinate >= 0
a - the allocated region to render into
biasReturn - either
Position.Bias.Forward or
Position.Bias.Backward is returned as the zero-th element of this array
View.viewToModel(float, float, java.awt.Shape, javax.swing.text.Position.Bias[])
public int getBreakWeight(int axis,
float pos,
float len)
breakView on in the process of formatting. The higher the weight, the more attractive the break. A value equal to or lower than
View.BadBreakWeight should not be considered for a break. A value greater than or equal to
View.ForcedBreakWeight should be broken.
This is implemented to forward to the superclass for the Y_AXIS. Along the X_AXIS the following values may be returned.
getBreakWeight in class
View
axis - may be either View.X_AXIS or View.Y_AXIS
pos - the potential location of the start of the broken view >= 0. This may be useful for calculating tab positions.
len - specifies the relative length from
pos where a potential break is desired >= 0.
LabelView,
ParagraphView,
View.BadBreakWeight ,
View.GoodBreakWeight ,
View.ExcellentBreakWeight ,
View.ForcedBreakWeight
public ViewbreakView(int axis, int p0, float pos, float len)
breakView in class
View
axis - may be either View.X_AXIS or View.Y_AXIS
p0 - the location in the model where the fragment should start it's representation >= 0.
pos - the position along the axis that the broken view would occupy >= 0. This may be useful for things like tab calculations.
len - specifies the distance along the axis where a potential break is desired >= 0.
View.breakView(int, int, float, float)
public ViewcreateFragment(int p0, int p1)
This view does support fragmenting. It is implemented to return a nested class that shares state in this view representing only a portion of the view.
createFragment in class
View
p0 - the starting offset >= 0. This should be a value greater or equal to the element starting offset and less than the element ending offset.
p1 - the ending offset > p0. This should be a value less than or equal to the elements end offset and greater than the elements starting offset.
LabelView
public int getNextVisualPositionFrom(int pos,
Position.Bias b,
Shape a,
int direction,
Position.Bias [] biasRet)
throws BadLocationException
BadLocationException will be thrown.
getNextVisualPositionFrom in class
View
pos - the position to convert
a - the allocated region to render into
direction - the direction from the current position that can be thought of as the arrow keys typically found on a keyboard. This may be SwingConstants.WEST, SwingConstants.EAST, SwingConstants.NORTH, or SwingConstants.SOUTH.
BadLocationException - the given position is not a valid position within the document
IllegalArgumentException - for an invalid direction
public void insertUpdate(DocumentEvente, Shape a, ViewFactory f)
insertUpdate in class
View
e - the change information from the associated document
a - the current allocation of the view
f - the factory to use to rebuild if the view has children
View.insertUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)
public void removeUpdate(DocumentEvente, Shape a, ViewFactory f)
removeUpdate in class
View
e - the change information from the associated document
a - the current allocation of the view
f - the factory to use to rebuild if the view has children
View.removeUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)
public void changedUpdate(DocumentEvente, Shape a, ViewFactory f)
changedUpdate in class
View
e - the change information from the associated document
a - the current allocation of the view
f - the factory to use to rebuild if the view has children
View.changedUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)