Class BoxView
- All Implemented Interfaces:
SwingConstants
- Direct Known Subclasses:
-
BlockView
,FlowView
,TableView
,TableView.TableCell
,TableView.TableRow
,WrappedPlainView
,ZoneView
public class BoxView extends CompositeView
Layout for each axis is handled separately by the methods layoutMajorAxis
and layoutMinorAxis
. Subclasses can change the layout algorithm by reimplementing these methods. These methods will be called as necessary depending upon whether or not there is cached layout information and the cache is considered valid. These methods are typically called if the given size along the axis changes, or if layoutChanged
is called to force an updated layout. The layoutChanged
method invalidates cached layout information, if there is any. The requirements published to the parent view are calculated by the methods calculateMajorAxisRequirements
and calculateMinorAxisRequirements
. If the layout algorithm is changed, these methods will likely need to be reimplemented.
Field Summary
Fields declared in class javax.swing.text.View
BadBreakWeight, ExcellentBreakWeight, ForcedBreakWeight, GoodBreakWeight, X_AXIS, Y_AXIS
Fields declared in interface javax.swing.SwingConstants
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST
Constructor Summary
Constructor | Description |
---|---|
BoxView |
Constructs a BoxView . |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
protected void |
baselineLayout |
Computes the location and extent of each child view in this BoxView given the targetSpan , which is the width (or height) of the region we have to work with. |
protected SizeRequirements |
baselineRequirements |
Calculates the size requirements for this BoxView by examining the size of each child view. |
protected SizeRequirements |
calculateMajorAxisRequirements |
Calculates the size requirements for the major axis axis . |
protected SizeRequirements |
calculateMinorAxisRequirements |
Calculates the size requirements for the minor axis axis . |
protected void |
childAllocation |
Allocates a region for a child view. |
protected boolean |
flipEastAndWestAtEnds |
Determines in which direction the next view lays. |
protected void |
forwardUpdate |
Forwards the given DocumentEvent to the child views that need to be notified of the change to the model. |
float |
getAlignment |
Determines the desired alignment for this view along an axis. |
int |
getAxis() |
Fetches the tile axis property. |
Shape |
getChildAllocation |
Fetches the allocation for the given child view. |
int |
getHeight() |
Returns the current height of the box. |
float |
getMaximumSpan |
Determines the maximum span for this view along an axis. |
float |
getMinimumSpan |
Determines the minimum span for this view along an axis. |
protected int |
getOffset |
Fetches the offset of a particular child's current layout. |
float |
getPreferredSpan |
Determines the preferred span for this view along an axis. |
int |
getResizeWeight |
Gets the resize weight. |
protected int |
getSpan |
Fetches the span of a particular child's current layout. |
protected View |
getViewAtPoint |
Fetches the child view at the given coordinates. |
int |
getWidth() |
Returns the current width of the box. |
protected boolean |
isAfter |
Determines if a point falls after an allocated region. |
protected boolean |
isAllocationValid() |
Are the allocations for the children still valid? |
protected boolean |
isBefore |
Determines if a point falls before an allocated region. |
protected boolean |
isLayoutValid |
Determines if the layout is valid along the given axis. |
protected void |
layout |
Perform layout on the box |
void |
layoutChanged |
Invalidates the layout along an axis. |
protected void |
layoutMajorAxis |
Performs layout for the major axis of the box (i.e. the axis that it represents). |
protected void |
layoutMinorAxis |
Performs layout for the minor axis of the box (i.e. the axis orthogonal to the axis that it represents). |
Shape |
modelToView |
Provides a mapping from the document model coordinate space to the coordinate space of the view mapped to it. |
void |
paint |
Renders the BoxView using the given rendering surface and area on that surface. |
protected void |
paintChild |
Paints a child. |
void |
preferenceChanged |
This is called by a child to indicate its preferred span has changed. |
void |
replace |
Invalidates the layout and resizes the cache of requests/allocations. |
void |
setAxis |
Sets the tile axis property. |
void |
setSize |
Sets the size of the view. |
int |
viewToModel |
Provides a mapping from the view coordinate space to the logical coordinate space of the model. |
Methods declared in class javax.swing.text.CompositeView
getBottomInset, getInsideAllocation, getLeftInset, getNextEastWestVisualPositionFrom, getNextNorthSouthVisualPositionFrom, getNextVisualPositionFrom, getRightInset, getTopInset, getView, getViewAtPosition, getViewCount, getViewIndex, getViewIndexAtPosition, loadChildren, modelToView, setInsets, setParagraphInsets, setParent
Methods declared in class javax.swing.text.View
append, breakView, changedUpdate, createFragment, forwardUpdateToView, getAttributes, getBreakWeight, getContainer, getDocument, getElement, getEndOffset, getGraphics, getParent, getStartOffset, getToolTipText, getViewFactory, getViewIndex, insert, insertUpdate, isVisible, modelToView, remove, removeAll, removeUpdate, updateChildren, updateLayout, viewToModel
Constructor Details
BoxView
public BoxView(Element elem, int axis)
BoxView
.- Parameters:
-
elem
- the element this view is responsible for -
axis
- eitherView.X_AXIS
orView.Y_AXIS
Method Details
getAxis
public int getAxis()
- Returns:
- the major axis of the box, either
View.X_AXIS
orView.Y_AXIS
- Since:
- 1.3
setAxis
public void setAxis(int axis)
- Parameters:
-
axis
- eitherView.X_AXIS
orView.Y_AXIS
- Since:
- 1.3
layoutChanged
public void layoutChanged(int axis)
setSize
method is called on this view (typically in paint).- Parameters:
-
axis
- eitherView.X_AXIS
orView.Y_AXIS
- Since:
- 1.3
isLayoutValid
protected boolean isLayoutValid(int axis)
- Parameters:
-
axis
- eitherView.X_AXIS
orView.Y_AXIS
- Returns:
- if the layout is valid along the given axis
- Since:
- 1.4
paintChild
protected void paintChild(Graphics g, Rectangle alloc, int index)
- Parameters:
-
g
- the graphics context -
alloc
- the allocated region to paint into -
index
- the child index, >= 0 && < getViewCount()
replace
public void replace(int index, int length, View[] elems)
- Overrides:
-
replace
in classCompositeView
- Parameters:
-
index
- the starting index into the child views to insert the new views; this should be a value >= 0 and <= getViewCount -
length
- the number of existing child views to remove; This should be a value >= 0 and <= (getViewCount() - offset) -
elems
- the child views to add; this value can benull
to indicate no children are being added (useful to remove)
forwardUpdate
protected void forwardUpdate(DocumentEvent.ElementChange ec, DocumentEvent e, Shape a, ViewFactory f)
DocumentEvent
to the child views that need to be notified of the change to the model. If a child changed its requirements and the allocation was valid prior to forwarding the portion of the box from the starting child to the end of the box will be repainted.- Overrides:
-
forwardUpdate
in classView
- Parameters:
-
ec
- changes to the element this view is responsible for (may benull
if there were no changes) -
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 - Since:
- 1.3
- See Also:
preferenceChanged
public void preferenceChanged(View child, boolean width, boolean height)
- Overrides:
-
preferenceChanged
in classView
- Parameters:
-
child
- the child view -
width
- true if the width preference should change -
height
- true if the height preference should change - See Also:
getResizeWeight
public int getResizeWeight(int axis)
- Overrides:
-
getResizeWeight
in classView
- Parameters:
-
axis
- may be eitherView.X_AXIS
orView.Y_AXIS
- Returns:
- the weight
- Throws:
-
IllegalArgumentException
- for an invalid axis
setSize
public void setSize(float width, float height)
paint
public void paint(Graphics g, Shape allocation)
BoxView
using the given rendering surface and area on that surface. Only the children that intersect the clip bounds of the given Graphics
will be rendered.getChildAllocation
public Shape getChildAllocation(int index, Shape a)
null
if the layout is invalid, otherwise the superclass behavior is executed.- Overrides:
-
getChildAllocation
in classCompositeView
- Parameters:
-
index
- the index of the child, >= 0 && > getViewCount() -
a
- the allocation to this view - Returns:
- the allocation to the child; or
null
ifa
isnull
; ornull
if the layout is invalid
modelToView
public Shape modelToView(int pos, Shape a, Position.Bias b) throws BadLocationException
- Overrides:
-
modelToView
in classCompositeView
- 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
- if the given position does not represent a valid location in the associated document - See Also:
viewToModel
public int viewToModel(float x, float y, Shape a, Position.Bias[] bias)
- Overrides:
-
viewToModel
in classCompositeView
- 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:
getAlignment
public float getAlignment(int axis)
- Overrides:
-
getAlignment
in classView
- Parameters:
-
axis
- may be eitherView.X_AXIS
orView.Y_AXIS
- Returns:
- the desired alignment >= 0.0f && <= 1.0f; this should be a value between 0.0 and 1.0 where 0 indicates alignment at the origin and 1.0 indicates alignment to the full span away from the origin; an alignment of 0.5 would be the center of the view
- Throws:
-
IllegalArgumentException
- for an invalid axis
getPreferredSpan
public float getPreferredSpan(int axis)
- Specified by:
-
getPreferredSpan
in classView
- Parameters:
-
axis
- may be eitherView.X_AXIS
orView.Y_AXIS
- Returns:
- the span the view would like to be rendered into >= 0; typically the view is told to render into the span that is returned, although there is no guarantee; the parent may choose to resize or break the view
- Throws:
-
IllegalArgumentException
- for an invalid axis type
getMinimumSpan
public float getMinimumSpan(int axis)
- Overrides:
-
getMinimumSpan
in classView
- Parameters:
-
axis
- may be eitherView.X_AXIS
orView.Y_AXIS
- Returns:
- the span the view would like to be rendered into >= 0; typically the view is told to render into the span that is returned, although there is no guarantee; the parent may choose to resize or break the view
- Throws:
-
IllegalArgumentException
- for an invalid axis type - See Also:
getMaximumSpan
public float getMaximumSpan(int axis)
- Overrides:
-
getMaximumSpan
in classView
- Parameters:
-
axis
- may be eitherView.X_AXIS
orView.Y_AXIS
- Returns:
- the span the view would like to be rendered into >= 0; typically the view is told to render into the span that is returned, although there is no guarantee; the parent may choose to resize or break the view
- Throws:
-
IllegalArgumentException
- for an invalid axis type - See Also:
isAllocationValid
protected boolean isAllocationValid()
- Returns:
- true if allocations still valid
isBefore
protected boolean isBefore(int x, int y, Rectangle innerAlloc)
- Specified by:
-
isBefore
in classCompositeView
- Parameters:
-
x
- the X coordinate >= 0 -
y
- the Y coordinate >= 0 -
innerAlloc
- the allocated region; this is the area inside of the insets - Returns:
- true if the point lies before the region else false
isAfter
protected boolean isAfter(int x, int y, Rectangle innerAlloc)
- Specified by:
-
isAfter
in classCompositeView
- Parameters:
-
x
- the X coordinate >= 0 -
y
- the Y coordinate >= 0 -
innerAlloc
- the allocated region; this is the area inside of the insets - Returns:
- true if the point lies after the region else false
getViewAtPoint
protected View getViewAtPoint(int x, int y, Rectangle alloc)
- Specified by:
-
getViewAtPoint
in classCompositeView
- Parameters:
-
x
- the X coordinate >= 0 -
y
- the Y coordinate >= 0 -
alloc
- the parents inner allocation on entry, which should be changed to the child's allocation on exit - Returns:
- the view
childAllocation
protected void childAllocation(int index, Rectangle alloc)
- Specified by:
-
childAllocation
in classCompositeView
- Parameters:
-
index
- the index of the child view to allocate, >= 0 && < getViewCount() -
alloc
- the allocated region
layout
protected void layout(int width, int height)
- Parameters:
-
width
- the width (inside of the insets) >= 0 -
height
- the height (inside of the insets) >= 0
getWidth
public int getWidth()
- Returns:
- the current width of the box
getHeight
public int getHeight()
- Returns:
- the current height of the box
layoutMajorAxis
protected void layoutMajorAxis(int targetSpan, int axis, int[] offsets, int[] spans)
- Parameters:
-
targetSpan
- the total span given to the view, which would be used to layout the children -
axis
- the axis being layed out -
offsets
- the offsets from the origin of the view for each of the child views; this is a return value and is filled in by the implementation of this method -
spans
- the span of each child view; this is a return value and is filled in by the implementation of this method
layoutMinorAxis
protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans)
- Parameters:
-
targetSpan
- the total span given to the view, which would be used to layout the children -
axis
- the axis being layed out -
offsets
- the offsets from the origin of the view for each of the child views; this is a return value and is filled in by the implementation of this method -
spans
- the span of each child view; this is a return value and is filled in by the implementation of this method
calculateMajorAxisRequirements
protected SizeRequirements calculateMajorAxisRequirements(int axis, SizeRequirements r)
axis
.- Parameters:
-
axis
- the axis being studied -
r
- theSizeRequirements
object; ifnull
one will be created - Returns:
- the newly initialized
SizeRequirements
object - See Also:
calculateMinorAxisRequirements
protected SizeRequirements calculateMinorAxisRequirements(int axis, SizeRequirements r)
axis
.- Parameters:
-
axis
- the axis being studied -
r
- theSizeRequirements
object; ifnull
one will be created - Returns:
- the newly initialized
SizeRequirements
object - See Also:
baselineLayout
protected void baselineLayout(int targetSpan, int axis, int[] offsets, int[] spans)
BoxView
given the targetSpan
, which is the width (or height) of the region we have to work with.- Parameters:
-
targetSpan
- the total span given to the view, which would be used to layout the children -
axis
- the axis being studied, eitherView.X_AXIS
orView.Y_AXIS
-
offsets
- an empty array filled by this method with values specifying the location of each child view -
spans
- an empty array filled by this method with values specifying the extent of each child view
baselineRequirements
protected SizeRequirements baselineRequirements(int axis, SizeRequirements r)
BoxView
by examining the size of each child view.- Parameters:
-
axis
- the axis being studied -
r
- theSizeRequirements
object; ifnull
one will be created - Returns:
- the newly initialized
SizeRequirements
object
getOffset
protected int getOffset(int axis, int childIndex)
- Parameters:
-
axis
- the axis being studied -
childIndex
- the index of the requested child - Returns:
- the offset (location) for the specified child
getSpan
protected int getSpan(int axis, int childIndex)
- Parameters:
-
axis
- the axis being studied -
childIndex
- the index of the requested child - Returns:
- the span (width or height) of the specified child
flipEastAndWestAtEnds
protected boolean flipEastAndWestAtEnds(int position, Position.Bias bias)
View
s are layed out from left to right, so that the View
to the EAST will be at index n + 1, and the View
to the WEST will be at index n - 1. In certain situations, such as with bidirectional text, it is possible that the View
to EAST is not at index n + 1, but rather at index n - 1, or that the View
to the WEST is not at index n - 1, but index n + 1. In this case this method would return true, indicating the View
s are layed out in descending order. Otherwise the method would return false indicating the View
s are layed out in ascending order. If the receiver is laying its View
s along the Y_AXIS
, this will return the value from invoking the same method on the View
responsible for rendering position
and bias
. Otherwise this will return false.
- Overrides:
-
flipEastAndWestAtEnds
in classCompositeView
- Parameters:
-
position
- position into the model -
bias
- eitherPosition.Bias.Forward
orPosition.Bias.Backward
- Returns:
- true if the
View
s surrounding theView
responding for renderingposition
andbias
are layed out in descending order; otherwise false
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/javax/swing/text/BoxView.html