com.mxgraph.canvas.mxICanvas2D Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AptSpringProcessor Show documentation
Show all versions of AptSpringProcessor Show documentation
This project contains the apt processor that implements all the checks enumerated in @Verify. It is a self contained, and
shaded jar.
The newest version!
package com.mxgraph.canvas;
import com.mxgraph.util.mxConstants;
/**
* Requirements for implementing technologies:
*
* - Path rendering (move, line, quad, curve, arc)
* - Images, flip v/h, aspect, alpha (PNG, JPG, GIF)
* - Linear gradients (in all four directions)
* - Transparency, fill and stroke
* - Rotation, flip v/h
* - Font rendering
* - Dash patterns
* - Clipping by path (not just rectangle)
* - Alpha gradients (for glass effect)
* - Encode result as image (PNG, JPG)
*/
public interface mxICanvas2D
{
/**
* Saves the current state of the canvas.
*/
void save();
/**
* Restores the previous state of the canvas.
*/
void restore();
/**
* Uniformaly scales the canvas by the given amount.
*
* @param value The new scale value.
*/
void scale(double value);
/**
* Translates the canvas by the given amount.
*
* @param dx X-coordinate of the translation.
* @param dy Y-coordinate of the translation.
*/
void translate(double dx, double dy);
/**
* Rotates the canvas by the given angle around the given center. This
* method may add rendering overhead and should be used with care.
*
* @param theta Rotation angle in degrees (0 - 360).
* @param flipH Specifies if drawing should be flipped horizontally.
* @param flipV Specifies if drawing should be flipped vertically.
* @param cx X-coordinate of the center point.
* @param cy Y-coordinate of the center point.
*/
void rotate(double theta, boolean flipH, boolean flipV, double cx, double cy);
/**
* Sets the stroke width. This should default to 1 if unset.
*
* @param value Width of the stroke. The value should be multiplied by the
* current scale.
*/
void setStrokeWidth(double value);
/**
* Sets the stroke color. This should default to {@link mxConstants#NONE}
* if unset.
*
* @param value Hex representation of the color or {@link mxConstants#NONE}.
*/
void setStrokeColor(String value);
/**
* Sets the dashed state. This should default to false if unset.
*
* @param value Boolean representing the dashed state.
*/
void setDashed(boolean value);
/**
* Sets the dashed state. This should default to false if unset.
*
* @param value Boolean representing the dashed state.
*/
void setDashed(boolean value, boolean fixDash);
/**
* Sets the dash pattern. This should default to "3 3" if unset.
*
* @param value Space separated list of floats representing the dash
* pattern. The value should be multiplied by the current scale.
*/
void setDashPattern(String value);
/**
* Sets the linecap. This should default to "flat" if unset.
*
* @param value "flat", "square" or "round".
*/
void setLineCap(String value);
/**
* Sets the linejoin. This should default to "miter" if unset.
*
* @param value "miter", "round" or "bevel".
*/
void setLineJoin(String value);
/**
* Sets the miterlimit. This should default to 10 if unset.
*
* @param value
*/
void setMiterLimit(double value);
/**
* Default value {@link mxConstants#DEFAULT_FONTSIZE}.
*
* @param value
*/
void setFontSize(double value);
/**
* Default value "#000000".
*
* @param value Hex representation of the color or {@link mxConstants#NONE}.
*/
void setFontColor(String value);
/**
* Default value {@link mxConstants#DEFAULT_FONTFAMILY}.
*
* @param value
*/
void setFontFamily(String value);
/**
* Default value 0. See {@link mxConstants#STYLE_FONTSTYLE}.
*
* @param value
*/
void setFontStyle(int value);
/**
* Default value "#000000".
*
* @param value Hex representation of the color or {@link mxConstants#NONE}.
*/
void setFontBackgroundColor(String value);
/**
* Default value "#000000".
*
* @param value Hex representation of the color or {@link mxConstants#NONE}.
*/
void setFontBorderColor(String value);
/**
* Default value 1. This method may add rendering overhead and should be
* used with care.
*
* @param value
*/
void setAlpha(double value);
/**
* Default value 1. This method may add rendering overhead and should be
* used with care.
*
* @param value
*/
void setFillAlpha(double value);
/**
* Default value 1. This method may add rendering overhead and should be
* used with care.
*
* @param value
*/
void setStrokeAlpha(double value);
/**
* Default value {@link mxConstants#NONE}.
*
* @param value Hex representation of the color or {@link mxConstants#NONE}.
*/
void setFillColor(String value);
/**
* Prepares the canvas to draw a gradient.
*
* @param color1
* @param color2
* @param x
* @param y
* @param w
* @param h
* @param direction Direction may be null. Use default value
* {@link mxConstants#DIRECTION_SOUTH}.
*/
void setGradient(String color1, String color2, double x, double y,
double w, double h, String direction, double alpha1, double alpha2);
/**
* Enables or disables the painting of shadows.
*
* @param enabled Whether the shadow should be enabled.
*/
void setShadow(boolean enabled);
/**
* Default value {@link mxConstants#NONE}.
*
* @param value Hex representation of the color or {@link mxConstants#NONE}.
*/
void setShadowColor(String value);
/**
* Default value {@link mxConstants#NONE}.
*
* @param value Hex representation of the color or {@link mxConstants#NONE}.
*/
void setShadowAlpha(double value);
/**
* Default value {@link mxConstants#NONE}.
*
* @param value Hex representation of the color or {@link mxConstants#NONE}.
*/
void setShadowOffset(double dx, double dy);
/**
* Next fill or stroke should draw a rectangle.
*
* @param x
* @param y
* @param w
* @param h
*/
void rect(double x, double y, double w, double h);
/**
*
* Next fill or stroke should draw a round rectangle.
*
* @param x
* @param y
* @param w
* @param h
* @param dx
* @param dy
*/
void roundrect(double x, double y, double w, double h, double dx, double dy);
/**
*
* Next fill or stroke should draw an ellipse.
*
* @param x
* @param y
* @param w
* @param h
*/
void ellipse(double x, double y, double w, double h);
/**
* Draws the given image.
*
* @param x
* @param y
* @param w
* @param h
* @param src
* @param aspect
* @param flipH
* @param flipV
*/
void image(double x, double y, double w, double h, String src,
boolean aspect, boolean flipH, boolean flipV);
/**
* Draws the given string. Possible values for format are empty string for
* plain text and html for HTML markup.
*
* @param x
* @param y
* @param w
* @param h
* @param str
* @param align
* @param valign
* @param wrap
* @param format
* @param overflow
* @param clip
* @param rotation
* @param dir
*/
void text(double x, double y, double w, double h, String str, String align,
String valign, boolean wrap, String format, String overflow,
boolean clip, double rotation, String dir);
/**
* Begins a new path.
*/
void begin();
/**
* Moves to the given path.
*
* @param x
* @param y
*/
void moveTo(double x, double y);
/**
* Draws a line to the given path.
*
* @param x
* @param y
*/
void lineTo(double x, double y);
/**
* Draws a quadratic curve to the given point.
*
* @param x1
* @param y1
* @param x2
* @param y2
*/
void quadTo(double x1, double y1, double x2, double y2);
/**
* Draws a bezier curve to the given point.
*
* @param x1
* @param y1
* @param x2
* @param y2
* @param x3
* @param y3
*/
void curveTo(double x1, double y1, double x2, double y2, double x3,
double y3);
/**
* Closes the current path.
*/
void close();
/**
* Paints the outline of the current path.
*/
void stroke();
/**
* Fills the current path.
*/
void fill();
/**
* Fills and paints the outline of the current path.
*/
void fillAndStroke();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy