maxGraph/dotnet/docs/html/namespacecom_1_1mxgraph.html

334 lines
33 KiB
HTML
Raw Normal View History

2013-04-04 11:51:15 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>mxGraph: Package com.mxgraph</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">mxGraph
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.6.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li class="current"><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="namespaces.html"><span>Namespace&#160;List</span></a></li>
<li><a href="namespacemembers.html"><span>Namespace&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>com</b> </li>
<li class="navelem"><a class="el" href="namespacecom_1_1mxgraph.html">mxgraph</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#func-members">Functions</a> </div>
<div class="headertitle">
<div class="title">Package com.mxgraph</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html">mxBasicCanvas</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Basic implementation of a canvas that draws a graph. <a href="classcom_1_1mxgraph_1_1mxBasicCanvas.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas.html">mxGdiCanvas</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implementation of a canvas that uses GDI for painting. <a href="classcom_1_1mxgraph_1_1mxGdiCanvas.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D.html">mxGdiCanvas2D</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Used for exporting images. To render to an image from a given XML string, graph size and and background color, the following code is used: </p>
<div class="fragment"><pre class="fragment"> <a class="code" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D.html#a1f4bdd89121fc399ef9aaee7efb678dd" title="Draws an image.">Image</a> image = mxUtils.CreateImage(width, height, background);
Graphics g = Graphics.FromImage(image);
g.SmoothingMode = SmoothingMode.HighQuality;
mxSaxOutputHandler handler = <span class="keyword">new</span> mxSaxOutputHandler(<span class="keyword">new</span> <a class="code" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D.html#a33b4d37b4d8978f0d63ae01cfeb76110">mxGdiCanvas2D</a>(g));
handler.Read(<span class="keyword">new</span> XmlTextReader(<span class="keyword">new</span> StringReader(xml)));
</pre></div> Text rendering is available for plain text only, with optional word wrapping. <a href="classcom_1_1mxgraph_1_1mxGdiCanvas2D.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">interface &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interfacecom_1_1mxgraph_1_1mxICanvas.html">mxICanvas</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirements for a canvas that paints the vertices and edges of a graph. <a href="interfacecom_1_1mxgraph_1_1mxICanvas.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">interface &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interfacecom_1_1mxgraph_1_1mxICanvas2D.html">mxICanvas2D</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirements for a canvas that paints the vertices and edges of a graph. <a href="interfacecom_1_1mxgraph_1_1mxICanvas2D.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxImageCanvas.html">mxImageCanvas</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a canvas that draws onto an image. <a href="classcom_1_1mxgraph_1_1mxImageCanvas.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxStencil.html">mxStencil</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a stencil for the given XML definition. This class implements the <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html" title="Implements a graph object that allows to create diagrams from a graph model and stylesheet.">mxGraph</a> stencil schema. <a href="classcom_1_1mxgraph_1_1mxStencil.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxStencilRegistry.html">mxStencilRegistry</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxCellCodec.html">mxCellCodec</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Codec for mxCells. This class is created and registered dynamically at load time and used implicitely via <a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html" title="XML codec for .NET object graphs. In order to resolve forward references when reading files the XML d...">mxCodec</a> and the <a class="el" href="classcom_1_1mxgraph_1_1mxCodecRegistry.html" title="Static class that acts as a global registry for codecs. See mxCodec for an example of using this clas...">mxCodecRegistry</a>. <a href="classcom_1_1mxgraph_1_1mxCellCodec.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html">mxCodec</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">XML codec for .NET object graphs. In order to resolve forward references when reading files the XML document that contains the data must be passed to the constructor. <a href="classcom_1_1mxgraph_1_1mxCodec.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxCodecRegistry.html">mxCodecRegistry</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Static class that acts as a global registry for codecs. See <a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html" title="XML codec for .NET object graphs. In order to resolve forward references when reading files the XML d...">mxCodec</a> for an example of using this class. <a href="classcom_1_1mxgraph_1_1mxCodecRegistry.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxModelCodec.html">mxModelCodec</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Codec for mxGraphModels. This class is created and registered dynamically at load time and used implicitely via <a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html" title="XML codec for .NET object graphs. In order to resolve forward references when reading files the XML d...">mxCodec</a> and the <a class="el" href="classcom_1_1mxgraph_1_1mxCodecRegistry.html" title="Static class that acts as a global registry for codecs. See mxCodec for an example of using this clas...">mxCodecRegistry</a>. <a href="classcom_1_1mxgraph_1_1mxModelCodec.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html">mxObjectCodec</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Generic codec for C# objects. See below for a detailed description of the encoding/decoding scheme. Note: Since booleans are numbers in JavaScript, all boolean values are encoded into 1 for true and 0 for false. <a href="classcom_1_1mxgraph_1_1mxObjectCodec.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxStylesheetCodec.html">mxStylesheetCodec</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Codec for mxStylesheets. This class is created and registered dynamically at load time and used implicitely via <a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html" title="XML codec for .NET object graphs. In order to resolve forward references when reading files the XML d...">mxCodec</a> and the <a class="el" href="classcom_1_1mxgraph_1_1mxCodecRegistry.html" title="Static class that acts as a global registry for codecs. See mxCodec for an example of using this clas...">mxCodecRegistry</a>. <a href="classcom_1_1mxgraph_1_1mxStylesheetCodec.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxFastOrganicLayout.html">mxFastOrganicLayout</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Fast organic layout algorithm. <a href="classcom_1_1mxgraph_1_1mxFastOrganicLayout.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">interface &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interfacecom_1_1mxgraph_1_1mxIGraphLayout.html">mxIGraphLayout</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirements for an object that implements a graph layout. <a href="interfacecom_1_1mxgraph_1_1mxIGraphLayout.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html">mxCell</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Cells are the elements of the graph model. They represent the state of the groups, vertices and edges in a graph. <a href="classcom_1_1mxgraph_1_1mxCell.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html">mxCellPath</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a mechanism for temporary cell Ids. <a href="classcom_1_1mxgraph_1_1mxCellPath.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGeometry.html">mxGeometry</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Represents the geometry of a cell. For vertices, the geometry consists of the x- and y-location, as well as the width and height. For edges, the edge either defines the source- and target-terminal, or the geometry defines the respective terminal points. <a href="classcom_1_1mxgraph_1_1mxGeometry.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraphModel.html">mxGraphModel</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a graph model. The graph model acts as a wrapper around the cells which are in charge of storing the actual graph datastructure. The model acts as a transactional wrapper with event notification for all changes, whereas the cells contain the atomic operations for updating the actual datastructure. <a href="classcom_1_1mxgraph_1_1mxGraphModel.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">interface &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interfacecom_1_1mxgraph_1_1mxICell.html">mxICell</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirements for a cell that can be used in an <a class="el" href="classcom_1_1mxgraph_1_1mxGraphModel.html" title="Implements a graph model. The graph model acts as a wrapper around the cells which are in charge of s...">mxGraphModel</a>. <a href="interfacecom_1_1mxgraph_1_1mxICell.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">interface &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interfacecom_1_1mxgraph_1_1mxIGraphModel.html">mxIGraphModel</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirements for a graph model to be used with <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html" title="Implements a graph object that allows to create diagrams from a graph model and stylesheet.">mxGraph</a>. <a href="interfacecom_1_1mxgraph_1_1mxIGraphModel.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraphViewImageReader.html">mxGraphViewImageReader</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">A converter that renders display XML data onto a GDI canvas. <a href="classcom_1_1mxgraph_1_1mxGraphViewImageReader.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraphViewReader.html">mxGraphViewReader</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">An abstract converter that renders display XML data onto a canvas. <a href="classcom_1_1mxgraph_1_1mxGraphViewReader.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxSaxOutputHandler.html">mxSaxOutputHandler</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxSession.html">mxSession</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a session that may be attached to a shared diagram. <a href="classcom_1_1mxgraph_1_1mxSession.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxSharedDiagram.html">mxSharedDiagram</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a diagram that may be shared among multiple sessions. <a href="classcom_1_1mxgraph_1_1mxSharedDiagram.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html">mxCellRenderer</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Class that can draw an independent array of cells. <a href="classcom_1_1mxgraph_1_1mxCellRenderer.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxConstants.html">mxConstants</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines various global constants. <a href="classcom_1_1mxgraph_1_1mxConstants.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxImageBundle.html">mxImageBundle</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Maps from keys to base64 encoded images or file locations. All values must be URLs or use the format data:image/format followed by a comma and the base64 encoded image data, eg. "data:image/gif,XYZ", where XYZ is the base64 encoded image data. <a href="classcom_1_1mxgraph_1_1mxImageBundle.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">mxPoint</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a 2-dimensional point with double precision coordinates. <a href="classcom_1_1mxgraph_1_1mxPoint.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxRectangle.html">mxRectangle</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a 2-dimensional rectangle with double precision coordinates. <a href="classcom_1_1mxgraph_1_1mxRectangle.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxUtils.html">mxUtils</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Contains various helper methods for use with <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html" title="Implements a graph object that allows to create diagrams from a graph model and stylesheet.">mxGraph</a>. <a href="classcom_1_1mxgraph_1_1mxUtils.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxCellState.html">mxCellState</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Represents the current state of a cell in a given graph view. <a href="classcom_1_1mxgraph_1_1mxCellState.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxConnectionConstraint.html">mxConnectionConstraint</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines an object that contains the constraints about how to connect one side of an edge to its terminal. <a href="classcom_1_1mxgraph_1_1mxConnectionConstraint.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxEdgeStyle.html">mxEdgeStyle</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides various edge styles to be used as the values for <a class="el" href="classcom_1_1mxgraph_1_1mxConstants.html#a5782062c7c61ac2fea2bcb1b61a7b5f2" title="Takes a function that creates points. Possible values are the functions defined in mxEdgeStyle...">mxConstants.STYLE_EDGE</a> in a cell style. <a href="classcom_1_1mxgraph_1_1mxEdgeStyle.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html">mxGraph</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a graph object that allows to create diagrams from a graph model and stylesheet. <a href="classcom_1_1mxgraph_1_1mxGraph.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraphView.html">mxGraphView</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a view for the graph. This class is in charge of computing the absolute coordinates for the relative child geometries, the points for perimeters and edge styles and keeping them cached in mxCellStates for faster retrieval. The states are updated whenever the model or the view state (translate, scale) changes. The scale and translate are honoured in the bounds. <a href="classcom_1_1mxgraph_1_1mxGraphView.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxPerimeter.html">mxPerimeter</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides various perimeter functions to be used in a style as the value of <a class="el" href="classcom_1_1mxgraph_1_1mxConstants.html#af02509c433cf83e3f2e0c54dd0ec299a" title="Defines the key for the perimeter style. Possible values are the functions defined in mxPerimeter...">mxConstants.STYLE_PERIMETER</a>. <a href="classcom_1_1mxgraph_1_1mxPerimeter.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxStyleRegistry.html">mxStyleRegistry</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Static class that acts as a global registry for codecs. See <a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html" title="XML codec for .NET object graphs. In order to resolve forward references when reading files the XML d...">mxCodec</a> for an example of using this class. <a href="classcom_1_1mxgraph_1_1mxStyleRegistry.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxStylesheet.html">mxStylesheet</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the appearance of the cells in a graph. <a href="classcom_1_1mxgraph_1_1mxStylesheet.html#details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="func-members"></a>
Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">delegate void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacecom_1_1mxgraph.html#abd1246a669b8db904a28aafc0336499f">mxGraphModelChangeEventHandler</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirements for an object that listens to a graph model. <a href="#abd1246a669b8db904a28aafc0336499f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">delegate void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacecom_1_1mxgraph.html#a7d517929d5cfd90ae8526a3f946ea6f9">mxDiagramChangeEventHandler</a> (Object sender, string xml)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirementns for an object that listens to changes on the shared diagram. <a href="#a7d517929d5cfd90ae8526a3f946ea6f9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">delegate void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacecom_1_1mxgraph.html#a83e0f4d840cac3329394b038752c9e55">mxEdgeStyleFunction</a> (<a class="el" href="classcom_1_1mxgraph_1_1mxCellState.html">mxCellState</a> state, <a class="el" href="classcom_1_1mxgraph_1_1mxCellState.html">mxCellState</a> source, <a class="el" href="classcom_1_1mxgraph_1_1mxCellState.html">mxCellState</a> target, List&lt; <a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">mxPoint</a> &gt; points, List&lt; <a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">mxPoint</a> &gt; result)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirements for an edge style function. At the time the function is called, the result array contains a placeholder (null) for the first absolute point, that is, the point where the edge and source terminal are connected. The implementation of the style then adds all intermediate waypoints except for the last point, that is, the connection point between the edge and the target terminal. The first ant the last point in the result array are then replaced with mxPoints that take into account the terminal's perimeter and next point on the edge. <a href="#a83e0f4d840cac3329394b038752c9e55"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">delegate <a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">mxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacecom_1_1mxgraph.html#a602cdf1db1505f7fa83454be5a7fb30c">mxPerimeterFunction</a> (<a class="el" href="classcom_1_1mxgraph_1_1mxRectangle.html">mxRectangle</a> bounds, <a class="el" href="classcom_1_1mxgraph_1_1mxCellState.html">mxCellState</a> vertex, <a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">mxPoint</a> next, bool orthogonal)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Defines the requirements for a perimeter function. <a href="#a602cdf1db1505f7fa83454be5a7fb30c"></a><br/></td></tr>
</table>
<hr/><h2>Function Documentation</h2>
<a class="anchor" id="a7d517929d5cfd90ae8526a3f946ea6f9"></a><!-- doxytag: member="com::mxgraph::mxDiagramChangeEventHandler" ref="a7d517929d5cfd90ae8526a3f946ea6f9" args="(Object sender, string xml)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">delegate void <a class="el" href="namespacecom_1_1mxgraph.html#a7d517929d5cfd90ae8526a3f946ea6f9">com.mxgraph.mxDiagramChangeEventHandler</a> </td>
<td>(</td>
<td class="paramtype">Object&#160;</td>
<td class="paramname"><em>sender</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string&#160;</td>
<td class="paramname"><em>xml</em>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Defines the requirementns for an object that listens to changes on the shared diagram. </p>
</div>
</div>
<a class="anchor" id="a83e0f4d840cac3329394b038752c9e55"></a><!-- doxytag: member="com::mxgraph::mxEdgeStyleFunction" ref="a83e0f4d840cac3329394b038752c9e55" args="(mxCellState state, mxCellState source, mxCellState target, List&lt; mxPoint &gt; points, List&lt; mxPoint &gt; result)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">delegate void <a class="el" href="namespacecom_1_1mxgraph.html#a83e0f4d840cac3329394b038752c9e55">com.mxgraph.mxEdgeStyleFunction</a> </td>
<td>(</td>
<td class="paramtype">mxCellState&#160;</td>
<td class="paramname"><em>state</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">mxCellState&#160;</td>
<td class="paramname"><em>source</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">mxCellState&#160;</td>
<td class="paramname"><em>target</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">List&lt; mxPoint &gt;&#160;</td>
<td class="paramname"><em>points</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">List&lt; mxPoint &gt;&#160;</td>
<td class="paramname"><em>result</em>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Defines the requirements for an edge style function. At the time the function is called, the result array contains a placeholder (null) for the first absolute point, that is, the point where the edge and source terminal are connected. The implementation of the style then adds all intermediate waypoints except for the last point, that is, the connection point between the edge and the target terminal. The first ant the last point in the result array are then replaced with mxPoints that take into account the terminal's perimeter and next point on the edge. </p>
<dl class="params"><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">state</td><td>Cell state that represents the edge to be updated.</td></tr>
<tr><td class="paramname">source</td><td>Cell state that represents the source terminal.</td></tr>
<tr><td class="paramname">target</td><td>Cell state that represents the target terminal.</td></tr>
<tr><td class="paramname">points</td><td>List of relative control points.</td></tr>
<tr><td class="paramname">result</td><td>Array of points that represent the actual points of the edge.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abd1246a669b8db904a28aafc0336499f"></a><!-- doxytag: member="com::mxgraph::mxGraphModelChangeEventHandler" ref="abd1246a669b8db904a28aafc0336499f" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">delegate void <a class="el" href="namespacecom_1_1mxgraph.html#abd1246a669b8db904a28aafc0336499f">com.mxgraph.mxGraphModelChangeEventHandler</a> </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Defines the requirements for an object that listens to a graph model. </p>
</div>
</div>
<a class="anchor" id="a602cdf1db1505f7fa83454be5a7fb30c"></a><!-- doxytag: member="com::mxgraph::mxPerimeterFunction" ref="a602cdf1db1505f7fa83454be5a7fb30c" args="(mxRectangle bounds, mxCellState vertex, mxPoint next, bool orthogonal)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">delegate <a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">mxPoint</a> <a class="el" href="namespacecom_1_1mxgraph.html#a602cdf1db1505f7fa83454be5a7fb30c">com.mxgraph.mxPerimeterFunction</a> </td>
<td>(</td>
<td class="paramtype">mxRectangle&#160;</td>
<td class="paramname"><em>bounds</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">mxCellState&#160;</td>
<td class="paramname"><em>vertex</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">mxPoint&#160;</td>
<td class="paramname"><em>next</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool&#160;</td>
<td class="paramname"><em>orthogonal</em>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Defines the requirements for a perimeter function. </p>
<dl class="params"><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">bounds</td><td>Rectangle that represents the absolute bounds of the vertex.</td></tr>
<tr><td class="paramname">vertex</td><td>Cell state that represents the vertex.</td></tr>
<tr><td class="paramname">next</td><td>Point that represents the nearest neighbour point on the given edge.</td></tr>
<tr><td class="paramname">orthogonal</td><td>Boolean that specifies if the orthogonal projection onto the perimeter should be returned. If this is false then the intersection of the perimeter and the line between the next and the center point is returned.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
</div><!-- contents -->
<hr class="footer"/><address class="footer"><small>
2013-04-10 15:34:04 +00:00
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
2013-04-04 11:51:15 +00:00
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>
</body>
</html>