Uses of Class
ca.cgjennings.layout.PageShape
-
Packages that use PageShape Package Description ca.cgjennings.apps.arkham ca.cgjennings.layout resources -
-
Uses of PageShape in ca.cgjennings.apps.arkham
Methods in ca.cgjennings.apps.arkham that return PageShape Modifier and Type Method Description PageShape
RegionPicker.RegionChooser. getPageShape()
Methods in ca.cgjennings.apps.arkham with parameters of type PageShape Modifier and Type Method Description void
RegionPicker.RegionChooser. setPageShape(PageShape shape)
-
Uses of PageShape in ca.cgjennings.layout
Subclasses of PageShape in ca.cgjennings.layout Modifier and Type Class Description static class
PageShape.CompoundShape
APageShape
that switches between twoPageShape
s at a specified Y-position.static class
PageShape.CupShape
APageShape
that is optimized for the most common case: a rectangle that becomes wider or narrower after a certain y-point is reached, e.g.:static class
PageShape.GeometricShape
APageShape
that takes its form from a drawing shape (java.awt.Shape
).static class
PageShape.InsetShape
APageShape
that returns constant inset values regardless of the Y-position.static class
PageShape.MergedShape
A shape that merges two source shapes into a single shape.Fields in ca.cgjennings.layout declared as PageShape Modifier and Type Field Description static PageShape
PageShape. RECTANGLE_SHAPE
A standard shape that causes the text to conform to its layout rectangle.Methods in ca.cgjennings.layout that return PageShape Modifier and Type Method Description PageShape
MarkupRenderer. getPageShape()
Methods in ca.cgjennings.layout with parameters of type PageShape Modifier and Type Method Description void
MarkupRenderer. setPageShape(PageShape shape)
Constructors in ca.cgjennings.layout with parameters of type PageShape Constructor Description CompoundShape(PageShape topShape, double y, PageShape bottomShape)
MergedShape(PageShape shape1, PageShape shape2)
-
Uses of PageShape in resources
Methods in resources that return PageShape Modifier and Type Method Description PageShape
Settings. getCupShape(java.lang.String key)
Returns aCupShape
for changing the flow of markup text from the value of the specified key; the key name will have-region
appended if necessary.
-