public abstract class FlowView extends BoxView
View
| Modifier and Type | Class and Description |
|---|---|
static class |
FlowView
Strategy for maintaining the physical form of the flow.
|
| Modifier and Type | Field and Description |
|---|---|
protected View |
layoutPool
These are the views that represent the child elements of the element this view represents (The logical view to translate to a physical view).
|
protected int |
layoutSpan
Default constraint against which the flow is created against.
|
protected FlowView |
strategy
The behavior for keeping the flow updated.
|
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 |
|---|
FlowView(Element
Constructs a FlowView for the given element.
|
| Modifier and Type | Method and Description |
|---|---|
protected SizeRequirements |
calculateMinorAxisRequirements(int axis, SizeRequirements
Calculate requirements along the minor axis.
|
void |
changedUpdate(DocumentEvent
Gives notification from the document that attributes were changed in a location that this view is responsible for.
|
protected abstract View |
createRow()
Create a View that should be used to hold a a rows worth of children in a flow.
|
int |
getFlowAxis()
Fetches the axis along which views should be flowed.
|
int |
getFlowSpan(int index)
Fetch the constraining span to flow against for the given child index.
|
int |
getFlowStart(int index)
Fetch the location along the flow axis that the flow span will start at.
|
protected int |
getViewIndexAtPosition(int pos)
Fetches the child view index representing the given position in the model.
|
void |
insertUpdate(DocumentEvent
Gives notification that something was inserted into the document in a location that this view is responsible for.
|
protected void |
layout(int width, int height)
Lays out the children.
|
protected void |
loadChildren(ViewFactory
Loads all of the children to initialize the view.
|
void |
removeUpdate(DocumentEvent
Gives notification that something was removed from the document in a location that this view is responsible for.
|
void |
setParent(View
Sets the parent of the view.
|
baselineLayout, baselineRequirements, calculateMajorAxisRequirements, childAllocation, flipEastAndWestAtEnds, forwardUpdate, getAlignment, getAxis, getChildAllocation, getHeight, getMaximumSpan, getMinimumSpan, getOffset, getPreferredSpan, getResizeWeight, getSpan, getViewAtPoint, getWidth, isAfter, isAllocationValid, isBefore, isLayoutValid, layoutChanged, layoutMajorAxis, layoutMinorAxis, modelToView, paint, paintChild, preferenceChanged, replace, setAxis, setSize, viewToModelgetBottomInset, getInsideAllocation, getLeftInset, getNextEastWestVisualPositionFrom, getNextNorthSouthVisualPositionFrom, getNextVisualPositionFrom, getRightInset, getTopInset, getView, getViewAtPosition, getViewCount, getViewIndex, modelToView, setInsets, setParagraphInsetsappend, breakView, createFragment, forwardUpdateToView, getAttributes, getBreakWeight, getContainer, getDocument, getElement, getEndOffset, getGraphics, getParent, getStartOffset, getToolTipText, getViewFactory, getViewIndex, insert, isVisible, modelToView, remove, removeAll, updateChildren, updateLayout, viewToModelprotected int layoutSpan
protected ViewlayoutPool
protected FlowView.FlowStrategy strategy
public FlowView(Elementelem, int axis)
elem - the element that this view is responsible for
axis - may be either View.X_AXIS or View.Y_AXIS
public int getFlowAxis()
FlowStrategy.
public int getFlowSpan(int index)
index - the index of the row being updated. This should be a value >= 0 and < getViewCount().
getFlowStart(int)
public int getFlowStart(int index)
index - the index of the row being updated. This should be a value >= 0 and < getViewCount().
getFlowSpan(int)
protected abstract ViewcreateRow()
protected void loadChildren(ViewFactoryf)
setParent method. This is reimplemented to not load any children directly (as they are created in the process of formatting). If the layoutPool variable is null, an instance of LogicalView is created to represent the logical view that is used in the process of formatting.
loadChildren in class
CompositeView
f - the view factory
CompositeView.setParent(javax.swing.text.View)
protected int getViewIndexAtPosition(int pos)
getViewIndexAtPosition in class
CompositeView
pos - the position >= 0
protected void layout(int width,
int height)
protected SizeRequirementscalculateMinorAxisRequirements(int axis, SizeRequirements r)
calculateMinorAxisRequirements in class
BoxView
axis - the axis being studied
r - the
SizeRequirements object; if
null one will be created
SizeRequirements object
SizeRequirements
public void insertUpdate(DocumentEventchanges, Shape a, ViewFactory f)
insertUpdate in class
View
changes - 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(DocumentEventchanges, Shape a, ViewFactory f)
removeUpdate in class
View
changes - 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(DocumentEventchanges, Shape a, ViewFactory f)
changedUpdate in class
View
changes - 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)
public void setParent(Viewparent)
loadChildren 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 hosting
Container for example). If this view has children (the view is being moved from one place in the view hierarchy to another), the
loadChildren method will not be called.
setParent in class
CompositeView
parent - the parent of the view,
null if none