Uses of Interface
cz.vutbr.fit.layout.model.ContentRect
-
-
Uses of ContentRect in cz.vutbr.fit.layout.api
Methods in cz.vutbr.fit.layout.api that return types with arguments of type ContentRect Modifier and Type Method Description static List<ContentRect>
AreaUtils. getChildrenAsContentRects(Area parent)
Creates a list content rectangles from the child areas of a given area.Methods in cz.vutbr.fit.layout.api with parameters of type ContentRect Modifier and Type Method Description void
OutputDisplay. colorizeByClass(ContentRect rect, String cname)
Draws the colorized are bounds.void
OutputDisplay. colorizeByTags(ContentRect rect, Set<Tag> s)
Draws the colorized are bounds.void
OutputDisplay. drawConnection(ContentRect a1, ContentRect a2, Color color)
Draws a connection between two content rectangles.static boolean
AreaUtils. isOnSameLine(ContentRect a1, ContentRect a2)
Checks if the given areas are on the same line.Method parameters in cz.vutbr.fit.layout.api with type arguments of type ContentRect Modifier and Type Method Description static void
AreaUtils. findAreasBeforeAfter(Area a, AreaTopology topology, List<ContentRect> destBefore, List<ContentRect> destAfter)
Scans a list of areas and finds the areas that are befor or after a given area on the same line.static void
AreaUtils. findAreasBelow(Area a, AreaTopology topology, List<ContentRect> destBelow)
-
Uses of ContentRect in cz.vutbr.fit.layout.cssbox.impl
Classes in cz.vutbr.fit.layout.cssbox.impl that implement ContentRect Modifier and Type Class Description class
BoxNode
A node of a tree of visual blocks. -
Uses of ContentRect in cz.vutbr.fit.layout.impl
Classes in cz.vutbr.fit.layout.impl that implement ContentRect Modifier and Type Class Description class
DefaultArea
Default generic Area implementation.class
DefaultBox
Default generic box implementation.class
DefaultContentRect
A default ContentRect implementation which is not used in a tree.class
DefaultTextChunk
A default text chunk implementation.class
DefaultTreeContentRect<T extends GenericTreeNode<T>>
A default ContentRect implementation that is a tree node at the same time.Methods in cz.vutbr.fit.layout.impl that return ContentRect Modifier and Type Method Description ContentRect
AreaListGridTopology. findAreaAt(int x, int y)
ContentRect
DefaultGridTopology. findAreaAt(int x, int y)
ContentRect
DefaultContentLine. getAreaAfter(ContentRect area)
ContentRect
DefaultContentLine. getAreaBefore(ContentRect area)
Methods in cz.vutbr.fit.layout.impl that return types with arguments of type ContentRect Modifier and Type Method Description Collection<ContentRect>
AreaListGridTopology. findAllAreasAt(int x, int y)
Collection<ContentRect>
AreaListGridTopology. findAllAreasIntersecting(Rectangular r)
Collection<ContentRect>
AreaListGridTopology. getAreas()
Map<ContentRect,Rectangular>
AreaListGridTopology. getPositionMap()
Methods in cz.vutbr.fit.layout.impl with parameters of type ContentRect Modifier and Type Method Description void
DefaultContentLine. add(int index, ContentRect area)
boolean
DefaultContentLine. add(ContentRect area)
ContentRect
DefaultContentLine. getAreaAfter(ContentRect area)
ContentRect
DefaultContentLine. getAreaBefore(ContentRect area)
Rectangular
AreaListGridTopology. getPosition(ContentRect area)
Rectangular
DefaultGridTopology. getPosition(ContentRect area)
void
AreaListGridTopology. setPosition(ContentRect area, Rectangular gp)
Method parameters in cz.vutbr.fit.layout.impl with type arguments of type ContentRect Modifier and Type Method Description boolean
DefaultContentLine. addAll(int index, Collection<? extends ContentRect> c)
boolean
DefaultContentLine. addAll(Collection<? extends ContentRect> c)
void
AreaListGridTopology. setAreas(List<ContentRect> areas)
void
DefaultGridTopology. setAreas(List<ContentRect> areas)
Constructors in cz.vutbr.fit.layout.impl with parameters of type ContentRect Constructor Description DefaultContentRect(ContentRect src)
DefaultTreeContentRect(Class<T> myType, ContentRect src)
Constructor parameters in cz.vutbr.fit.layout.impl with type arguments of type ContentRect Constructor Description AreaGrid(Rectangular position, Collection<ContentRect> areas, AreaTopology targetTopology)
Constructs a grid from the list of areas.AreaListGridTopology(Collection<ContentRect> areas)
AreaListGridTopology(Collection<ContentRect> areas, boolean doInit)
-
Uses of ContentRect in cz.vutbr.fit.layout.io
Methods in cz.vutbr.fit.layout.io with parameters of type ContentRect Modifier and Type Method Description void
Graphics2DDisplay. colorizeByClass(ContentRect rect, String cname)
void
Graphics2DDisplay. colorizeByTags(ContentRect rect, Set<Tag> s)
void
Graphics2DDisplay. drawConnection(ContentRect a1, ContentRect a2, Color color)
protected HTMLOutputOperator.Style
HTMLOutputOperator. getBoxStyle(ContentRect parent, Box box)
-
Uses of ContentRect in cz.vutbr.fit.layout.model
Subinterfaces of ContentRect in cz.vutbr.fit.layout.model Modifier and Type Interface Description interface
Area
An area containing several visual boxes.interface
Box
This class represents a box in the rendered page tree.interface
TextChunk
An rectangular area representing a text chunk.Methods in cz.vutbr.fit.layout.model that return ContentRect Modifier and Type Method Description ContentRect
AreaTopology. findAreaAt(int x, int y)
Finds an area at the specified position in the grid.ContentRect
ContentLine. getAreaAfter(ContentRect area)
Finds the area that follows the given area on the line.ContentRect
ContentLine. getAreaBefore(ContentRect area)
Finds the area that precedes the given area on the line.Methods in cz.vutbr.fit.layout.model that return types with arguments of type ContentRect Modifier and Type Method Description Collection<ContentRect>
AreaTopology. findAllAreasAt(int x, int y)
Finds all the areas at the specified position in the grid.Collection<ContentRect>
AreaTopology. findAllAreasIntersecting(Rectangular r)
Finds all the areas that intersect with the specified rectangle in the grid.Collection<ContentRect>
AreaTopology. getAreas()
Gets the list of areas that are being managed by this topology.Map<ContentRect,Rectangular>
AreaTopology. getPositionMap()
Obtains a map assigning a position to each area.Methods in cz.vutbr.fit.layout.model with parameters of type ContentRect Modifier and Type Method Description ContentRect
ContentLine. getAreaAfter(ContentRect area)
Finds the area that follows the given area on the line.ContentRect
ContentLine. getAreaBefore(ContentRect area)
Finds the area that precedes the given area on the line.Rectangular
AreaTopology. getPosition(ContentRect area)
Obtains the position of the given area within this topology.void
AreaTopology. setPosition(ContentRect area, Rectangular gp)
Sets the position of the given area in this topology.Constructors in cz.vutbr.fit.layout.model with parameters of type ContentRect Constructor Description AreaConnection(ContentRect a1, ContentRect a2, Relation relation, float weight)
-
Uses of ContentRect in cz.vutbr.fit.layout.patterns
Methods in cz.vutbr.fit.layout.patterns that return types with arguments of type ContentRect Modifier and Type Method Description Collection<ContentRect>
RelationAnalyzer. getAreas()
Constructor parameters in cz.vutbr.fit.layout.patterns with type arguments of type ContentRect Constructor Description RelationAnalyzer(Page page, Collection<ContentRect> areas)
RelationAnalyzerSymmetric(Page page, Collection<ContentRect> areas)
-
Uses of ContentRect in cz.vutbr.fit.layout.pdf.impl
Classes in cz.vutbr.fit.layout.pdf.impl that implement ContentRect Modifier and Type Class Description class
BoxImpl
-
Uses of ContentRect in cz.vutbr.fit.layout.puppeteer.impl
Classes in cz.vutbr.fit.layout.puppeteer.impl that implement ContentRect Modifier and Type Class Description class
BoxImpl
A standard box implementation extended by additional properties necessary for building the resulting tree correctly. -
Uses of ContentRect in cz.vutbr.fit.layout.rdf
Methods in cz.vutbr.fit.layout.rdf with parameters of type ContentRect Modifier and Type Method Description void
ModelBuilderBase. addContentRectData(org.eclipse.rdf4j.model.Model graph, org.eclipse.rdf4j.model.IRI rectIri, ContentRect rect)
Stores the common information about a content rectangle.void
ModelBuilderBase. addTextStyle(org.eclipse.rdf4j.model.Model graph, org.eclipse.rdf4j.model.IRI rectIri, ContentRect rect)
void
ModelBuilderBase. insertBorders(ContentRect box, org.eclipse.rdf4j.model.IRI boxIri, org.eclipse.rdf4j.model.Model graph)
void
ModelBuilderBase. insertSameAs(ContentRect node, org.eclipse.rdf4j.model.IRI nodeIri, org.eclipse.rdf4j.model.Model graph)
Adds owl:sameAs links to referenced objects if they are RDF resources. -
Uses of ContentRect in cz.vutbr.fit.layout.rdf.model
Classes in cz.vutbr.fit.layout.rdf.model that implement ContentRect Modifier and Type Class Description class
RDFArea
class
RDFBox
class
RDFTextChunk
-