GrammarScope  4.0.0
Classes | Public Member Functions | Static Public Member Functions | Static Protected Attributes | Package Attributes | Private Member Functions | Static Private Member Functions | Private Attributes | Static Private Attributes | List of all members
grammarscope.browser.renderer.SemanticGraphRenderer Class Reference
Inheritance diagram for grammarscope.browser.renderer.SemanticGraphRenderer:
Inheritance graph
[legend]
Collaboration diagram for grammarscope.browser.renderer.SemanticGraphRenderer:
Collaboration graph
[legend]

Classes

class  Edge
 

Public Member Functions

 SemanticGraphRenderer (final Graphics g, final RelationFilter relationFilter, final RelationPalette relationPalette, final TypedDependencyProvider provider, final TypedDependencyMode mode, final HotSpots hotSpots, final boolean renderAsCurves)
 
int layout (final Document document, final JTextComponent textComponent, final int padWidth, final int padTopOffset, final int padHeight, final int lineHeight) throws BadLocationException
 
Color getBackColor ()
 
void paint (final Graphics g)
 
- Public Member Functions inherited from grammarscope.browser.renderer.ProtoRenderer
int getTopOffset ()
 
int getHeight ()
 

Static Public Member Functions

static void setBackColor (final Color color)
 
static void setLabelColor (final Color color)
 
static void setEdgeColor (final Color color)
 
static void setArrowTipColor (final Color color)
 
static void setArrowStartColor (final Color color)
 
static void setSpanColor (final Color color)
 
static void setAxisColor (final Color color)
 

Static Protected Attributes

static final Font tagFont = new Font(Font.SANS_SERIF, Font.PLAIN, 9)
 

Package Attributes

final TypedDependencyProvider provider
 
final TypedDependencyMode mode
 
final RelationFilter relationFilter
 
final RelationPalette relationPalette
 

Private Member Functions

void makeEdge (final int fromX, final int toX, final int baseY, final int fromAnchorX, final int toAnchorX, final int yAnchor, final int height, final String label, final Color color, final boolean isBackwards, final boolean isLeftTerminal, final boolean isRightTerminal, final int bottom, final boolean isVisible, final GraphEdge graphEdge)
 

Static Private Member Functions

static void drawBox (final Graphics g, final Rectangle box)
 

Private Attributes

int padWidth
 
final FontMetrics tagMetrics
 
final boolean renderAsCurves
 
final Collection< Edgeedges
 
final Collection< Rectangle > boxes
 
final HotSpots hotSpots
 

Static Private Attributes

static final String LABEL_STAND_IN_CHAR = null
 
static final int LABEL_VERTICAL_TRUNCATE = 4
 
static final Stroke SOLID = new BasicStroke()
 
static final Stroke DOTTED = new BasicStroke(1.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND, 1.0f, new float[] { 1.0f, 5.0f }, 0f)
 
static final Stroke DASHED = new BasicStroke(1.0f, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL, 1.0f, new float[] { 2.0f }, 0f)
 
static final Stroke SPAN_STROKE = SOLID
 
static final Stroke AXIS_STROKE = DASHED
 
static final Stroke EDGE_STROKE = SOLID
 
static final Stroke OVERFLOW_STROKE = DOTTED
 
static final int ARROW_TIP_WIDTH = 5
 
static final int ARROW_TIP_HEIGHT = 3
 
static final int ARROW_START_DIAMETER = 3
 
static final int PAD_TOP_INSET = 4
 
static final int PAD_BOTTOM_INSET = 2
 
static final int EDGES_INSET_TOP = 10
 
static final int EDGES_INSET_BOTTOM = 0
 
static final int LABEL_TOP_INSET = 1
 
static final int LABEL_BOTTOM_INSET = 1
 
static final int LABEL_INFLATE = 1
 
static final int X_MARGIN = 40
 
static final int X_SHIFT = 3
 
static final int TRUNCATE_MARGIN = 30
 
static final int OVERFLOW_X_OFFSET = 5
 
static final int OVERFLOW_Y_OFFSET = 5
 
static final int OVERFLOW_WIDTH = 5
 
static final int OVERFLOW_HEIGHT = 5
 
static final Color DEFAULT_BACKCOLOR = new Color(0xC6, 0xDB, 0xEE, RenderMode.ALPHA)
 
static final Color DEFAULT_EDGE_COLOR = Color.DARK_GRAY
 
static final Color DEFAULT_LABEL_COLOR = Color.DARK_GRAY
 
static final Color DEFAULT_ARROW_TIP_COLOR = Color.DARK_GRAY
 
static final Color DEFAULT_ARROW_START_COLOR = Color.GRAY
 
static final Color DEFAULT_SPAN_COLOR = Color.GRAY
 
static final Color DEFAULT_AXIS_COLOR = Color.WHITE
 
static final Color DEFAULT_OVERFLOW_COLOR = Color.GRAY
 
static Color backColor = DEFAULT_BACKCOLOR
 
static Color labelColor = DEFAULT_LABEL_COLOR
 
static Color edgeColor = DEFAULT_EDGE_COLOR
 
static Color arrowTipColor = DEFAULT_EDGE_COLOR
 
static Color arrowStartColor = DEFAULT_ARROW_START_COLOR
 
static Color spanColor = DEFAULT_SPAN_COLOR
 
static Color axisColor = DEFAULT_AXIS_COLOR
 

Additional Inherited Members

- Protected Attributes inherited from grammarscope.browser.renderer.ProtoRenderer
int topOffset
 
int height
 

Detailed Description

Semantic graph renderer

Author
Bernard Bou

Constructor & Destructor Documentation

◆ SemanticGraphRenderer()

grammarscope.browser.renderer.SemanticGraphRenderer.SemanticGraphRenderer ( final Graphics  g,
final RelationFilter  relationFilter,
final RelationPalette  relationPalette,
final TypedDependencyProvider  provider,
final TypedDependencyMode  mode,
final HotSpots  hotSpots,
final boolean  renderAsCurves 
)

Constructor

Parameters
ggraphics context
relationFilterrelation filter
relationPaletterelation palette
providertyped dependency provider
modetyped dependency mode
hotSpotshotspots
renderAsCurveswhether to render edges as curves

Member Function Documentation

◆ drawBox()

static void grammarscope.browser.renderer.SemanticGraphRenderer.drawBox ( final Graphics  g,
final Rectangle  box 
)
staticprivate

Draw box

Parameters
ggraphics context
boxbox for typed dependency node

◆ getBackColor()

Color grammarscope.browser.renderer.SemanticGraphRenderer.getBackColor ( )

Get back color

Returns
back color

Implements grammarscope.browser.renderer.IRenderer.

◆ layout()

int grammarscope.browser.renderer.SemanticGraphRenderer.layout ( final Document  document,
final JTextComponent  textComponent,
final int  padWidth,
final int  padTopOffset,
final int  padHeight,
final int  lineHeight 
) throws BadLocationException

Layout

Parameters
documentdocument
textComponenttext component
padWidthannotation pad width
padTopOffsetannotation pad top offset
padHeightannotation pad height
lineHeighttext line height
Returns
used pad height
Exceptions
BadLocationExceptionexception

Implements grammarscope.browser.renderer.IRenderer.

◆ makeEdge()

void grammarscope.browser.renderer.SemanticGraphRenderer.makeEdge ( final int  fromX,
final int  toX,
final int  baseY,
final int  fromAnchorX,
final int  toAnchorX,
final int  yAnchor,
final int  height,
final String  label,
final Color  color,
final boolean  isBackwards,
final boolean  isLeftTerminal,
final boolean  isRightTerminal,
final int  bottom,
final boolean  isVisible,
final GraphEdge  graphEdge 
)
private

Make edge

Parameters
fromXx from
toXx to
baseYbase y
fromAnchorXx anchor from
toAnchorXx anchor to
yAnchory anchor
heightheight
labellabel
colorcolor
isBackwardswhether edge is backwards
isLeftTerminalwhether this edge left-terminates
isRightTerminalwhether this edge right-terminates
bottompad bottom
isVisiblewhether this edge is visible
graphEdgegraph edge

◆ paint()

void grammarscope.browser.renderer.SemanticGraphRenderer.paint ( final Graphics  graphics)

Paint

Parameters
graphicsgraphics context

Implements grammarscope.browser.renderer.IRenderer.

◆ setArrowStartColor()

static void grammarscope.browser.renderer.SemanticGraphRenderer.setArrowStartColor ( final Color  color)
static

Set arrow start color

Parameters
colorcolor

◆ setArrowTipColor()

static void grammarscope.browser.renderer.SemanticGraphRenderer.setArrowTipColor ( final Color  color)
static

Set arrow tip color

Parameters
colorcolor

◆ setAxisColor()

static void grammarscope.browser.renderer.SemanticGraphRenderer.setAxisColor ( final Color  color)
static

Set axis color

Parameters
colorcolor

◆ setBackColor()

static void grammarscope.browser.renderer.SemanticGraphRenderer.setBackColor ( final Color  color)
static

Set back color

Parameters
colorcolor

◆ setEdgeColor()

static void grammarscope.browser.renderer.SemanticGraphRenderer.setEdgeColor ( final Color  color)
static

Set edge color

Parameters
colorcolor

◆ setLabelColor()

static void grammarscope.browser.renderer.SemanticGraphRenderer.setLabelColor ( final Color  color)
static

Set label color

Parameters
colorcolor

◆ setSpanColor()

static void grammarscope.browser.renderer.SemanticGraphRenderer.setSpanColor ( final Color  color)
static

Set span color

Parameters
colorcolor

Member Data Documentation

◆ ARROW_START_DIAMETER

final int grammarscope.browser.renderer.SemanticGraphRenderer.ARROW_START_DIAMETER = 3
staticprivate

◆ ARROW_TIP_HEIGHT

final int grammarscope.browser.renderer.SemanticGraphRenderer.ARROW_TIP_HEIGHT = 3
staticprivate

◆ ARROW_TIP_WIDTH

final int grammarscope.browser.renderer.SemanticGraphRenderer.ARROW_TIP_WIDTH = 5
staticprivate

◆ arrowStartColor

Color grammarscope.browser.renderer.SemanticGraphRenderer.arrowStartColor = DEFAULT_ARROW_START_COLOR
staticprivate

Arrow start color

◆ arrowTipColor

Color grammarscope.browser.renderer.SemanticGraphRenderer.arrowTipColor = DEFAULT_EDGE_COLOR
staticprivate

Arrow tip color

◆ AXIS_STROKE

final Stroke grammarscope.browser.renderer.SemanticGraphRenderer.AXIS_STROKE = DASHED
staticprivate

◆ axisColor

Color grammarscope.browser.renderer.SemanticGraphRenderer.axisColor = DEFAULT_AXIS_COLOR
staticprivate

Axis color

◆ backColor

Color grammarscope.browser.renderer.SemanticGraphRenderer.backColor = DEFAULT_BACKCOLOR
staticprivate

Background color

◆ boxes

final Collection<Rectangle> grammarscope.browser.renderer.SemanticGraphRenderer.boxes
private

Boxes to draw

◆ DASHED

final Stroke grammarscope.browser.renderer.SemanticGraphRenderer.DASHED = new BasicStroke(1.0f, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_BEVEL, 1.0f, new float[] { 2.0f }, 0f)
staticprivate

◆ DEFAULT_ARROW_START_COLOR

final Color grammarscope.browser.renderer.SemanticGraphRenderer.DEFAULT_ARROW_START_COLOR = Color.GRAY
staticprivate

◆ DEFAULT_ARROW_TIP_COLOR

final Color grammarscope.browser.renderer.SemanticGraphRenderer.DEFAULT_ARROW_TIP_COLOR = Color.DARK_GRAY
staticprivate

◆ DEFAULT_AXIS_COLOR

final Color grammarscope.browser.renderer.SemanticGraphRenderer.DEFAULT_AXIS_COLOR = Color.WHITE
staticprivate

◆ DEFAULT_BACKCOLOR

final Color grammarscope.browser.renderer.SemanticGraphRenderer.DEFAULT_BACKCOLOR = new Color(0xC6, 0xDB, 0xEE, RenderMode.ALPHA)
staticprivate

◆ DEFAULT_EDGE_COLOR

final Color grammarscope.browser.renderer.SemanticGraphRenderer.DEFAULT_EDGE_COLOR = Color.DARK_GRAY
staticprivate

◆ DEFAULT_LABEL_COLOR

final Color grammarscope.browser.renderer.SemanticGraphRenderer.DEFAULT_LABEL_COLOR = Color.DARK_GRAY
staticprivate

◆ DEFAULT_OVERFLOW_COLOR

final Color grammarscope.browser.renderer.SemanticGraphRenderer.DEFAULT_OVERFLOW_COLOR = Color.GRAY
staticprivate

◆ DEFAULT_SPAN_COLOR

final Color grammarscope.browser.renderer.SemanticGraphRenderer.DEFAULT_SPAN_COLOR = Color.GRAY
staticprivate

◆ DOTTED

final Stroke grammarscope.browser.renderer.SemanticGraphRenderer.DOTTED = new BasicStroke(1.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND, 1.0f, new float[] { 1.0f, 5.0f }, 0f)
staticprivate

◆ EDGE_STROKE

final Stroke grammarscope.browser.renderer.SemanticGraphRenderer.EDGE_STROKE = SOLID
staticprivate

◆ edgeColor

Color grammarscope.browser.renderer.SemanticGraphRenderer.edgeColor = DEFAULT_EDGE_COLOR
staticprivate

Edge color

◆ edges

final Collection<Edge> grammarscope.browser.renderer.SemanticGraphRenderer.edges
private

Edges to draw

◆ EDGES_INSET_BOTTOM

final int grammarscope.browser.renderer.SemanticGraphRenderer.EDGES_INSET_BOTTOM = 0
staticprivate

◆ EDGES_INSET_TOP

final int grammarscope.browser.renderer.SemanticGraphRenderer.EDGES_INSET_TOP = 10
staticprivate

◆ hotSpots

final HotSpots grammarscope.browser.renderer.SemanticGraphRenderer.hotSpots
private

Tooltip hotspots

◆ LABEL_BOTTOM_INSET

final int grammarscope.browser.renderer.SemanticGraphRenderer.LABEL_BOTTOM_INSET = 1
staticprivate

◆ LABEL_INFLATE

final int grammarscope.browser.renderer.SemanticGraphRenderer.LABEL_INFLATE = 1
staticprivate

◆ LABEL_STAND_IN_CHAR

final String grammarscope.browser.renderer.SemanticGraphRenderer.LABEL_STAND_IN_CHAR = null
staticprivate

Character used when there is not enough space. I f null, label will be truncated, and rotated 90°

◆ LABEL_TOP_INSET

final int grammarscope.browser.renderer.SemanticGraphRenderer.LABEL_TOP_INSET = 1
staticprivate

◆ LABEL_VERTICAL_TRUNCATE

final int grammarscope.browser.renderer.SemanticGraphRenderer.LABEL_VERTICAL_TRUNCATE = 4
staticprivate

Truncate length when label is vertical

◆ labelColor

Color grammarscope.browser.renderer.SemanticGraphRenderer.labelColor = DEFAULT_LABEL_COLOR
staticprivate

Label color

◆ mode

final TypedDependencyMode grammarscope.browser.renderer.SemanticGraphRenderer.mode
package

Typed dependency mode

◆ OVERFLOW_HEIGHT

final int grammarscope.browser.renderer.SemanticGraphRenderer.OVERFLOW_HEIGHT = 5
staticprivate

◆ OVERFLOW_STROKE

final Stroke grammarscope.browser.renderer.SemanticGraphRenderer.OVERFLOW_STROKE = DOTTED
staticprivate

◆ OVERFLOW_WIDTH

final int grammarscope.browser.renderer.SemanticGraphRenderer.OVERFLOW_WIDTH = 5
staticprivate

◆ OVERFLOW_X_OFFSET

final int grammarscope.browser.renderer.SemanticGraphRenderer.OVERFLOW_X_OFFSET = 5
staticprivate

◆ OVERFLOW_Y_OFFSET

final int grammarscope.browser.renderer.SemanticGraphRenderer.OVERFLOW_Y_OFFSET = 5
staticprivate

◆ PAD_BOTTOM_INSET

final int grammarscope.browser.renderer.SemanticGraphRenderer.PAD_BOTTOM_INSET = 2
staticprivate

◆ PAD_TOP_INSET

final int grammarscope.browser.renderer.SemanticGraphRenderer.PAD_TOP_INSET = 4
staticprivate

◆ padWidth

int grammarscope.browser.renderer.SemanticGraphRenderer.padWidth
private

Pad width

◆ provider

final TypedDependencyProvider grammarscope.browser.renderer.SemanticGraphRenderer.provider
package

Typed dependency provider

◆ relationFilter

final RelationFilter grammarscope.browser.renderer.SemanticGraphRenderer.relationFilter
package

Relation filter

◆ relationPalette

final RelationPalette grammarscope.browser.renderer.SemanticGraphRenderer.relationPalette
package

Relation palette

◆ renderAsCurves

final boolean grammarscope.browser.renderer.SemanticGraphRenderer.renderAsCurves
private

Draw as curve

◆ SOLID

final Stroke grammarscope.browser.renderer.SemanticGraphRenderer.SOLID = new BasicStroke()
staticprivate

◆ SPAN_STROKE

final Stroke grammarscope.browser.renderer.SemanticGraphRenderer.SPAN_STROKE = SOLID
staticprivate

◆ spanColor

Color grammarscope.browser.renderer.SemanticGraphRenderer.spanColor = DEFAULT_SPAN_COLOR
staticprivate

Span color

◆ tagFont

final Font grammarscope.browser.renderer.SemanticGraphRenderer.tagFont = new Font(Font.SANS_SERIF, Font.PLAIN, 9)
staticprotected

Font

◆ tagMetrics

final FontMetrics grammarscope.browser.renderer.SemanticGraphRenderer.tagMetrics
private

Metrics for tag

◆ TRUNCATE_MARGIN

final int grammarscope.browser.renderer.SemanticGraphRenderer.TRUNCATE_MARGIN = 30
staticprivate

◆ X_MARGIN

final int grammarscope.browser.renderer.SemanticGraphRenderer.X_MARGIN = 40
staticprivate

◆ X_SHIFT

final int grammarscope.browser.renderer.SemanticGraphRenderer.X_SHIFT = 3
staticprivate

The documentation for this class was generated from the following file: