public class mxVmlCanvas extends mxBasicCanvas
Modifier and Type | Field and Description |
---|---|
protected Document |
document
Holds the HTML document that represents the canvas.
|
DEFAULT_IMAGEBASEPATH, drawLabels, imageBasePath, imageCache, PRESERVE_IMAGE_ASPECT, scale, translate
Constructor and Description |
---|
mxVmlCanvas()
Constructs a new VML canvas for the specified dimension and scale.
|
mxVmlCanvas(Document document)
Constructs a new VML canvas for the specified bounds, scale and
background color.
|
Modifier and Type | Method and Description |
---|---|
void |
appendVmlElement(Element node) |
Object |
drawCell(mxCellState state)
Draws the given cell.
|
Object |
drawLabel(String label,
mxCellState state,
boolean html)
Draws the given label.
|
Element |
drawLine(List<mxPoint> pts,
Map<String,Object> style)
Draws the given lines as segments between all points of the given list
of mxPoints.
|
Element |
drawShape(int x,
int y,
int w,
int h,
Map<String,Object> style)
Draws the shape specified with the STYLE_SHAPE key in the given style.
|
Element |
drawText(String text,
int x,
int y,
int w,
int h,
Map<String,Object> style)
Draws the specified text either using drawHtmlString or using drawString.
|
Document |
getDocument()
Returns a reference to the document that represents the canvas.
|
void |
setDocument(Document document) |
flushImageCache, getImageBasePath, getImageForStyle, getScale, getTranslate, isDrawLabels, loadImage, setDrawLabels, setImageBasePath, setScale, setTranslate
protected Document document
public mxVmlCanvas()
public mxVmlCanvas(Document document)
public void setDocument(Document document)
public Document getDocument()
public void appendVmlElement(Element node)
public Object drawCell(mxCellState state)
mxICanvas
state
- State of the cell to be painted.public Object drawLabel(String label, mxCellState state, boolean html)
mxICanvas
label
- String that represents the label.state
- State of the cell whose label is to be painted.html
- Specifies if the label contains HTML markup.public Element drawShape(int x, int y, int w, int h, Map<String,Object> style)
x
- X-coordinate of the shape.y
- Y-coordinate of the shape.w
- Width of the shape.h
- Height of the shape.style
- Style of the the shape.public Element drawLine(List<mxPoint> pts, Map<String,Object> style)
pts
- List of points that define the line.style
- Style to be used for painting the line.public Element drawText(String text, int x, int y, int w, int h, Map<String,Object> style)
text
- Text to be painted.x
- X-coordinate of the text.y
- Y-coordinate of the text.w
- Width of the text.h
- Height of the text.style
- Style to be used for painting the text.Copyright (c) 2010 Gaudenz Alder, David Benson. All rights reserved.