CompositeView (Java SE 15 & JDK 15) (original) (raw)
All Implemented Interfaces:
[SwingConstants](../SwingConstants.html "interface in javax.swing")
Direct Known Subclasses:
[BoxView](BoxView.html "class in javax.swing.text")
public abstract class CompositeView extends View
CompositeView
is an abstract View
implementation which manages one or more child views. (Note that CompositeView
is intended for managing relatively small numbers of child views.)CompositeView
is intended to be used as a starting point for View
implementations, such as BoxView
, that will contain childView
s. Subclasses that wish to manage the collection of child View
s should use thereplace(int, int, javax.swing.text.View[]) method. As View
invokesreplace
during DocumentListener
notification, you normally won't need to directly invoke replace
.
While CompositeView
does not impose a layout policy on its child View
s, it does allow for inseting the child View
s it will contain. The insets can be set by eithersetInsets(short, short, short, short) or setParagraphInsets(javax.swing.text.AttributeSet).
In addition to the abstract methods ofView, subclasses of CompositeView
will need to override:
isBefore(int, int, java.awt.Rectangle) - Used to test if a given
View
location is before the visual space of theCompositeView
.isAfter(int, int, java.awt.Rectangle) - Used to test if a given
View
location is after the visual space of theCompositeView
.getViewAtPoint(int, int, java.awt.Rectangle) - Returns the view at a given visual location.
childAllocation(int, java.awt.Rectangle) - Returns the bounds of a particular child
View
.getChildAllocation
will invokechildAllocation
after offseting the bounds by theInset
s of theCompositeView
.Field Summary
Fields declared in interface javax.swing.SwingConstants
[BOTTOM](../SwingConstants.html#BOTTOM), [CENTER](../SwingConstants.html#CENTER), [EAST](../SwingConstants.html#EAST), [HORIZONTAL](../SwingConstants.html#HORIZONTAL), [LEADING](../SwingConstants.html#LEADING), [LEFT](../SwingConstants.html#LEFT), [NEXT](../SwingConstants.html#NEXT), [NORTH](../SwingConstants.html#NORTH), [NORTH_EAST](../SwingConstants.html#NORTH%5FEAST), [NORTH_WEST](../SwingConstants.html#NORTH%5FWEST), [PREVIOUS](../SwingConstants.html#PREVIOUS), [RIGHT](../SwingConstants.html#RIGHT), [SOUTH](../SwingConstants.html#SOUTH), [SOUTH_EAST](../SwingConstants.html#SOUTH%5FEAST), [SOUTH_WEST](../SwingConstants.html#SOUTH%5FWEST), [TOP](../SwingConstants.html#TOP), [TRAILING](../SwingConstants.html#TRAILING), [VERTICAL](../SwingConstants.html#VERTICAL), [WEST](../SwingConstants.html#WEST)
Constructor Summary
Constructors
Constructor | Description |
---|---|
CompositeView(Element elem) | Constructs a CompositeView for the given element. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
protected abstract void | childAllocation(int index,Rectangle a) | Returns the allocation for a given child. |
protected boolean | flipEastAndWestAtEnds(int position,Position.Bias bias) | Determines in which direction the next view lays. |
protected short | getBottomInset() | Gets the bottom inset. |
Shape | getChildAllocation(int index,Shape a) | Fetches the allocation for the given child view to render into. |
protected Rectangle | getInsideAllocation(Shape a) | Translates the immutable allocation given to the view to a mutable allocation that represents the interior allocation (i.e. the bounds of the given allocation with the top, left, bottom, and right insets removed. |
protected short | getLeftInset() | Gets the left inset. |
protected int | getNextEastWestVisualPositionFrom(int pos,Position.Bias b,Shape a, int direction,Position.Bias[] biasRet) | Returns the next visual position for the cursor, in either the east or west direction. |
protected int | getNextNorthSouthVisualPositionFrom(int pos,Position.Bias b,Shape a, int direction,Position.Bias[] biasRet) | Returns the next visual position for the cursor, in either the north or south direction. |
int | getNextVisualPositionFrom(int pos,Position.Bias b,Shape a, int direction,Position.Bias[] biasRet) | Provides a way to determine the next visually represented model location that one might place a caret. |
protected short | getRightInset() | Gets the right inset. |
protected short | getTopInset() | Gets the top inset. |
View | getView(int n) | Returns the n-th view in this container. |
protected abstract View | getViewAtPoint(int x, int y,Rectangle alloc) | Fetches the child view at the given coordinates. |
protected View | getViewAtPosition(int pos,Rectangle a) | Fetches the child view that represents the given position in the model. |
int | getViewCount() | Returns the number of child views of this view. |
int | getViewIndex(int pos,Position.Bias b) | Returns the child view index representing the given position in the model. |
protected int | getViewIndexAtPosition(int pos) | Fetches the child view index representing the given position in the model. |
protected abstract boolean | isAfter(int x, int y,Rectangle alloc) | Tests whether a point lies after the rectangle range. |
protected abstract boolean | isBefore(int x, int y,Rectangle alloc) | Tests whether a point lies before the rectangle range. |
protected void | loadChildren(ViewFactory f) | Loads all of the children to initialize the view. |
Shape | modelToView(int pos,Shape a,Position.Bias b) | Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it. |
Shape | modelToView(int p0,Position.Bias b0, int p1,Position.Bias b1,Shape a) | Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it. |
void | replace(int offset, int length,View[] views) | Replaces child views. |
protected void | setInsets(short top, short left, short bottom, short right) | Sets the insets for the view. |
protected void | setParagraphInsets(AttributeSet attr) | Sets the insets from the paragraph attributes specified in the given attributes. |
void | setParent(View parent) | Sets the parent of the view. |
int | viewToModel(float x, float y,Shape a,Position.Bias[] bias) | Provides a mapping from the view coordinate space to the logical coordinate space of the model. |
Methods declared in class javax.swing.text.View
[append](View.html#append%28javax.swing.text.View%29), [breakView](View.html#breakView%28int,int,float,float%29), [changedUpdate](View.html#changedUpdate%28javax.swing.event.DocumentEvent,java.awt.Shape,javax.swing.text.ViewFactory%29), [createFragment](View.html#createFragment%28int,int%29), [forwardUpdate](View.html#forwardUpdate%28javax.swing.event.DocumentEvent.ElementChange,javax.swing.event.DocumentEvent,java.awt.Shape,javax.swing.text.ViewFactory%29), [forwardUpdateToView](View.html#forwardUpdateToView%28javax.swing.text.View,javax.swing.event.DocumentEvent,java.awt.Shape,javax.swing.text.ViewFactory%29), [getAlignment](View.html#getAlignment%28int%29), [getAttributes](View.html#getAttributes%28%29), [getBreakWeight](View.html#getBreakWeight%28int,float,float%29), [getContainer](View.html#getContainer%28%29), [getDocument](View.html#getDocument%28%29), [getElement](View.html#getElement%28%29), [getEndOffset](View.html#getEndOffset%28%29), [getGraphics](View.html#getGraphics%28%29), [getMaximumSpan](View.html#getMaximumSpan%28int%29), [getMinimumSpan](View.html#getMinimumSpan%28int%29), [getParent](View.html#getParent%28%29), [getPreferredSpan](View.html#getPreferredSpan%28int%29), [getResizeWeight](View.html#getResizeWeight%28int%29), [getStartOffset](View.html#getStartOffset%28%29), [getToolTipText](View.html#getToolTipText%28float,float,java.awt.Shape%29), [getViewFactory](View.html#getViewFactory%28%29), [getViewIndex](View.html#getViewIndex%28float,float,java.awt.Shape%29), [insert](View.html#insert%28int,javax.swing.text.View%29), [insertUpdate](View.html#insertUpdate%28javax.swing.event.DocumentEvent,java.awt.Shape,javax.swing.text.ViewFactory%29), [isVisible](View.html#isVisible%28%29), [modelToView](View.html#modelToView%28int,java.awt.Shape%29), [paint](View.html#paint%28java.awt.Graphics,java.awt.Shape%29), [preferenceChanged](View.html#preferenceChanged%28javax.swing.text.View,boolean,boolean%29), [remove](View.html#remove%28int%29), [removeAll](View.html#removeAll%28%29), [removeUpdate](View.html#removeUpdate%28javax.swing.event.DocumentEvent,java.awt.Shape,javax.swing.text.ViewFactory%29), [setSize](View.html#setSize%28float,float%29), [updateChildren](View.html#updateChildren%28javax.swing.event.DocumentEvent.ElementChange,javax.swing.event.DocumentEvent,javax.swing.text.ViewFactory%29), [updateLayout](View.html#updateLayout%28javax.swing.event.DocumentEvent.ElementChange,javax.swing.event.DocumentEvent,java.awt.Shape%29), [viewToModel](View.html#viewToModel%28float,float,java.awt.Shape%29)
Methods declared in class java.lang.Object
[clone](../../../../java.base/java/lang/Object.html#clone%28%29), [equals](../../../../java.base/java/lang/Object.html#equals%28java.lang.Object%29), [finalize](../../../../java.base/java/lang/Object.html#finalize%28%29), [getClass](../../../../java.base/java/lang/Object.html#getClass%28%29), [hashCode](../../../../java.base/java/lang/Object.html#hashCode%28%29), [notify](../../../../java.base/java/lang/Object.html#notify%28%29), [notifyAll](../../../../java.base/java/lang/Object.html#notifyAll%28%29), [toString](../../../../java.base/java/lang/Object.html#toString%28%29), [wait](../../../../java.base/java/lang/Object.html#wait%28%29), [wait](../../../../java.base/java/lang/Object.html#wait%28long%29), [wait](../../../../java.base/java/lang/Object.html#wait%28long,int%29)
Constructor Details
CompositeView
public CompositeView(Element elem)
Constructs aCompositeView
for the given element.
Parameters:
elem
- the element this view is responsible forMethod Details
loadChildren
Loads all of the children to initialize the view. This is called by the setParent(javax.swing.text.View) method. Subclasses can reimplement this to initialize their child views in a different manner. The default implementation creates a child view for each child element.
Parameters:
f
- the view factory
See Also:
setParent(javax.swing.text.View)setParent
public void setParent(View parent)
Sets the parent of the view. This is reimplemented to provide the superclass behavior as well as calling theloadChildren
method if this view does not already have children. The children should not be loaded in the constructor because the act of setting the parent may cause them to try to search up the hierarchy (to get the hostingContainer
for example). If this view has children (the view is being moved from one place in the view hierarchy to another), theloadChildren
method will not be called.
Overrides:
[setParent](View.html#setParent%28javax.swing.text.View%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
parent
- the parent of the view,null
if nonegetViewCount
public int getViewCount()
Returns the number of child views of this view.
Overrides:
[getViewCount](View.html#getViewCount%28%29)
in class[View](View.html "class in javax.swing.text")
Returns:
the number of views >= 0
See Also:
getView(int)getView
public View getView(int n)
Returns the n-th view in this container.
Overrides:
[getView](View.html#getView%28int%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
n
- the number of the desired view, >= 0 && < getViewCount()
Returns:
the view at indexn
replace
public void replace(int offset, int length,View[] views)
Replaces child views. If there are no views to remove this acts as an insert. If there are no views to add this acts as a remove. Views being removed will have the parent set tonull
, and the internal reference to them removed so that they may be garbage collected.
Overrides:
[replace](View.html#replace%28int,int,javax.swing.text.View%5B%5D%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
offset
- the starting index into the child views to insert the new views; >= 0 and <= getViewCount
length
- the number of existing child views to remove; this should be a value >= 0 and <= (getViewCount() - offset)
views
- the child views to add; this value can benull
to indicate no children are being added (useful to remove)getChildAllocation
public Shape getChildAllocation(int index,Shape a)
Fetches the allocation for the given child view to render into. This enables finding out where various views are located.
Overrides:
[getChildAllocation](View.html#getChildAllocation%28int,java.awt.Shape%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
index
- the index of the child, >= 0 && < getViewCount()
a
- the allocation to this view
Returns:
the allocation to the childmodelToView
Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it.
Specified by:
[modelToView](View.html#modelToView%28int,java.awt.Shape,javax.swing.text.Position.Bias%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
pos
- the position to convert >= 0
a
- the allocated region to render into
b
- a bias value of eitherPosition.Bias.Forward
orPosition.Bias.Backward
Returns:
the bounding box of the given position
Throws:
[BadLocationException](BadLocationException.html "class in javax.swing.text")
- if the given position does not represent a valid location in the associated document
See Also:
View.modelToView(int, java.awt.Shape, javax.swing.text.Position.Bias)modelToView
Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it.
Overrides:
[modelToView](View.html#modelToView%28int,javax.swing.text.Position.Bias,int,javax.swing.text.Position.Bias,java.awt.Shape%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
p0
- the position to convert >= 0
b0
- the bias toward the previous character or the next character represented by p0, in case the position is a boundary of two views; eitherPosition.Bias.Forward
orPosition.Bias.Backward
p1
- the position to convert >= 0
b1
- the bias toward the previous character or the next character represented by p1, in case the position is a boundary of two views
a
- the allocated region to render into
Returns:
the bounding box of the given position is returned
Throws:
[BadLocationException](BadLocationException.html "class in javax.swing.text")
- if the given position does not represent a valid location in the associated document
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- for an invalid bias argument
See Also:
View.viewToModel(float, float, java.awt.Shape, javax.swing.text.Position.Bias[])viewToModel
Provides a mapping from the view coordinate space to the logical coordinate space of the model.
Specified by:
[viewToModel](View.html#viewToModel%28float,float,java.awt.Shape,javax.swing.text.Position.Bias%5B%5D%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
x
- x coordinate of the view location to convert >= 0
y
- y coordinate of the view location to convert >= 0
a
- the allocated region to render into
bias
- eitherPosition.Bias.Forward
orPosition.Bias.Backward
Returns:
the location within the model that best represents the given point in the view >= 0
See Also:
View.viewToModel(float, float, java.awt.Shape, javax.swing.text.Position.Bias[])getNextVisualPositionFrom
Provides a way to determine the next visually represented model location that one might place a caret. Some views may not be visible, they might not be in the same order found in the model, or they just might not allow access to some of the locations in the model. This is a convenience method for getNextNorthSouthVisualPositionFrom(int, javax.swing.text.Position.Bias, java.awt.Shape, int, javax.swing.text.Position.Bias[]) and getNextEastWestVisualPositionFrom(int, javax.swing.text.Position.Bias, java.awt.Shape, int, javax.swing.text.Position.Bias[]). This method enables specifying a position to convert within the range of >=0. If the value is -1, a position will be calculated automatically. If the value < -1, the
BadLocationException
will be thrown.
Overrides:
[getNextVisualPositionFrom](View.html#getNextVisualPositionFrom%28int,javax.swing.text.Position.Bias,java.awt.Shape,int,javax.swing.text.Position.Bias%5B%5D%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
pos
- the position to convert
b
- a bias value of eitherPosition.Bias.Forward
orPosition.Bias.Backward
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 one of the following:
*SwingConstants.WEST
*SwingConstants.EAST
*SwingConstants.NORTH
*SwingConstants.SOUTH
biasRet
- an array containing the bias that was checked
Returns:
the location within the model that best represents the next location visual position
Throws:
[BadLocationException](BadLocationException.html "class in javax.swing.text")
- the given position is not a valid position within the document
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- ifdirection
is invalidgetViewIndex
Returns the child view index representing the given position in the model. This is implemented to call the
getViewIndexByPosition
method for backward compatibility.
Overrides:
[getViewIndex](View.html#getViewIndex%28int,javax.swing.text.Position.Bias%29)
in class[View](View.html "class in javax.swing.text")
Parameters:
pos
- the position >= 0
b
- the bias
Returns:
index of the view representing the given position, or -1 if no view represents that position
Since:
1.3isBefore
protected abstract boolean isBefore(int x, int y,Rectangle alloc)
Tests whether a point lies before the rectangle range.
Parameters:
x
- the X coordinate >= 0
y
- the Y coordinate >= 0
alloc
- the rectangle
Returns:
true if the point is before the specified rangeisAfter
protected abstract boolean isAfter(int x, int y,Rectangle alloc)
Tests whether a point lies after the rectangle range.
Parameters:
x
- the X coordinate >= 0
y
- the Y coordinate >= 0
alloc
- the rectangle
Returns:
true if the point is after the specified rangegetViewAtPoint
protected abstract View getViewAtPoint(int x, int y,Rectangle alloc)
Fetches the child view at the given coordinates.
Parameters:
x
- the X coordinate >= 0
y
- the Y coordinate >= 0
alloc
- the parent's allocation on entry, which should be changed to the child's allocation on exit
Returns:
the child viewchildAllocation
protected abstract void childAllocation(int index,Rectangle a)
Returns the allocation for a given child.
Parameters:
index
- the index of the child, >= 0 && < getViewCount()
a
- the allocation to the interior of the box on entry, and the allocation of the child view at the index on exit.getViewAtPosition
protected View getViewAtPosition(int pos,Rectangle a)
Fetches the child view that represents the given position in the model. This is implemented to fetch the view in the case where there is a child view for each child element.
Parameters:
pos
- the position >= 0
a
- the allocation to the interior of the box on entry, and the allocation of the view containing the position on exit
Returns:
the view representing the given position, ornull
if there isn't onegetViewIndexAtPosition
protected int getViewIndexAtPosition(int pos)
Fetches the child view index representing the given position in the model. This is implemented to fetch the view in the case where there is a child view for each child element.
Parameters:
pos
- the position >= 0
Returns:
index of the view representing the given position, or -1 if no view represents that positiongetInsideAllocation
Translates the immutable allocation given to the view to a mutable allocation that represents the interior allocation (i.e. the bounds of the given allocation with the top, left, bottom, and right insets removed. It is expected that the returned value would be further mutated to represent an allocation to a child view. This is implemented to reuse an instance variable so it avoids creating excessive Rectangles. Typically the result of calling this method would be fed to the
childAllocation
method.
Parameters:
a
- the allocation given to the view
Returns:
the allocation that represents the inside of the view after the margins have all been removed; if the given allocation wasnull
, the return value isnull
setParagraphInsets
protected void setParagraphInsets(AttributeSet attr)
Sets the insets from the paragraph attributes specified in the given attributes.
Parameters:
attr
- the attributessetInsets
protected void setInsets(short top, short left, short bottom, short right)
Sets the insets for the view.
Parameters:
top
- the top inset >= 0
left
- the left inset >= 0
bottom
- the bottom inset >= 0
right
- the right inset >= 0getLeftInset
protected short getLeftInset()
Gets the left inset.
Returns:
the inset >= 0getRightInset
protected short getRightInset()
Gets the right inset.
Returns:
the inset >= 0getTopInset
protected short getTopInset()
Gets the top inset.
Returns:
the inset >= 0getBottomInset
protected short getBottomInset()
Gets the bottom inset.
Returns:
the inset >= 0getNextNorthSouthVisualPositionFrom
Returns the next visual position for the cursor, in either the north or south direction.
Parameters:
pos
- the position to convert >= 0
b
- a bias value of eitherPosition.Bias.Forward
orPosition.Bias.Backward
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 one of the following:
*SwingConstants.NORTH
*SwingConstants.SOUTH
biasRet
- an array containing the bias that was checked
Returns:
the location within the model that best represents the next north or south location
Throws:
[BadLocationException](BadLocationException.html "class in javax.swing.text")
- for a bad location within a document model
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- ifdirection
is invalid
See Also:
getNextVisualPositionFrom(int, javax.swing.text.Position.Bias, java.awt.Shape, int, javax.swing.text.Position.Bias[])getNextEastWestVisualPositionFrom
Returns the next visual position for the cursor, in either the east or west direction.
Parameters:
pos
- the position to convert >= 0
b
- a bias value of eitherPosition.Bias.Forward
orPosition.Bias.Backward
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 one of the following:
*SwingConstants.WEST
*SwingConstants.EAST
biasRet
- an array containing the bias that was checked
Returns:
the location within the model that best represents the next west or east location
Throws:
[BadLocationException](BadLocationException.html "class in javax.swing.text")
- for a bad location within a document model
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- ifdirection
is invalid
See Also:
getNextVisualPositionFrom(int, javax.swing.text.Position.Bias, java.awt.Shape, int, javax.swing.text.Position.Bias[])flipEastAndWestAtEnds
protected boolean flipEastAndWestAtEnds(int position,Position.Bias bias)
Determines in which direction the next view lays. Consider theView
at index n. Typically theView
s are layed out from left to right, so that theView
to the EAST will be at index n + 1, and theView
to the WEST will be at index n - 1. In certain situations, such as with bidirectional text, it is possible that theView
to EAST is not at index n + 1, but rather at index n - 1, or that theView
to the WEST is not at index n - 1, but index n + 1. In this case this method would return true, indicating theView
s are layed out in descending order.
This unconditionally returns false, subclasses should override this method if there is the possibility for layingView
s in descending order.
Parameters:
position
- position into the model
bias
- eitherPosition.Bias.Forward
orPosition.Bias.Backward
Returns:
false