public class BlockView extends BoxView
A view implementation to display a block (as a box) with CSS specifications.
BadBreakWeight, ExcellentBreakWeight, ForcedBreakWeight, GoodBreakWeight, X_AXIS, Y_AXIS
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST
public BlockView(Element elem, int axis)
Creates a new view that represents an html box. This can be used for a number of elements.
elem
- the element to create a view foraxis
- either View.X_AXIS or View.Y_AXISpublic void setParent(View parent)
Establishes the parent view for this view. This is guaranteed to be called before any other methods if the parent view is functioning properly.
This is implemented to forward to the superclass as well as call the setPropertiesFromAttributes()
method to set the paragraph properties from the css attributes. The call is made at this time to ensure the ability to resolve upward through the parents view attributes.
setParent
in class CompositeView
parent
- the new parent, or null if the view is being removed from a parent it was previously added toprotected SizeRequirements calculateMajorAxisRequirements(int axis, SizeRequirements r)
Calculate the requirements of the block along the major axis (i.e. the axis along with it tiles). This is implemented to provide the superclass behavior and then adjust it if the CSS width or height attribute is specified and applicable to the axis.
calculateMajorAxisRequirements
in class BoxView
axis
- the axis being studiedr
- the SizeRequirements
object; if null
one will be createdSizeRequirements
objectSizeRequirements
protected SizeRequirements calculateMinorAxisRequirements(int axis, SizeRequirements r)
Calculate the requirements of the block along the minor axis (i.e. the axis orthogonal to the axis along with it tiles). This is implemented to provide the superclass behavior and then adjust it if the CSS width or height attribute is specified and applicable to the axis.
calculateMinorAxisRequirements
in class BoxView
axis
- the axis being studiedr
- the SizeRequirements
object; if null
one will be createdSizeRequirements
objectSizeRequirements
protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans)
Performs layout for the minor axis of the box (i.e. the axis orthogonal to the axis that it represents). The results of the layout (the offset and span for each children) are placed in the given arrays which represent the allocations to the children along the minor axis.
layoutMinorAxis
in class BoxView
targetSpan
- the total span given to the view, which would be used to layout the children.axis
- the axis being layed outoffsets
- 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 methodspans
- the span of each child view; this is a return value and is filled in by the implementation of this methodpublic void paint(Graphics g, Shape allocation)
Renders using the given rendering surface and area on that surface. This is implemented to delegate to the css box painter to paint the border and background prior to the interior.
paint
in class BoxView
g
- the rendering surface to useallocation
- the allocated region to render intoView.paint(java.awt.Graphics, java.awt.Shape)
public AttributeSet getAttributes()
Fetches the attributes to use when rendering. This is implemented to multiplex the attributes specified in the model with a StyleSheet.
getAttributes
in class View
public int getResizeWeight(int axis)
Gets the resize weight.
getResizeWeight
in class BoxView
axis
- may be either X_AXIS or Y_AXISIllegalArgumentException
- for an invalid axispublic float getAlignment(int axis)
Gets the alignment.
getAlignment
in class BoxView
axis
- may be either X_AXIS or Y_AXISpublic void changedUpdate(DocumentEvent changes, Shape a, ViewFactory f)
Description copied from class: View
Gives notification from the document that attributes were changed in a location that this view is responsible for. To reduce the burden to subclasses, this functionality is spread out into the following calls that subclasses can reimplement:
updateChildren
is called if there were any changes to the element this view is responsible for. If this view has child views that are represent the child elements, then this method should do whatever is necessary to make sure the child views correctly represent the model. forwardUpdate
is called to forward the DocumentEvent to the appropriate child views. updateLayout
is called to give the view a chance to either repair its layout, to reschedule layout, or do nothing. changedUpdate
in class View
changes
- the change information from the associated documenta
- the current allocation of the viewf
- the factory to use to rebuild if the view has childrenView.changedUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory)
public float getPreferredSpan(int axis)
Determines the preferred span for this view along an axis.
getPreferredSpan
in class BoxView
axis
- may be either View.X_AXIS
or View.Y_AXIS
IllegalArgumentException
- for an invalid axis typeView.getPreferredSpan(int)
public float getMinimumSpan(int axis)
Determines the minimum span for this view along an axis.
getMinimumSpan
in class BoxView
axis
- may be either View.X_AXIS
or View.Y_AXIS
IllegalArgumentException
- for an invalid axis typeView.getPreferredSpan(int)
public float getMaximumSpan(int axis)
Determines the maximum span for this view along an axis.
getMaximumSpan
in class BoxView
axis
- may be either View.X_AXIS
or View.Y_AXIS
IllegalArgumentException
- for an invalid axis typeView.getPreferredSpan(int)
protected void setPropertiesFromAttributes()
Update any cached values that come from attributes.
protected StyleSheet getStyleSheet()
© 1993–2017, 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.