2.4.0.2 release

development
Gaudenz Alder 2014-01-17 08:16:59 +00:00
parent e264f196cc
commit 371344bad7
882 changed files with 4768 additions and 4716 deletions

View File

@ -1,3 +1,12 @@
17-JAN-2014: 2.4.0.2
- Removes mxCellPath.create usage for in hierarchical layout [JavaScript]
- Fixes mxUtils.getTextContent for Firefox, adds mxUtils.setTextContent [JavaScript]
- Adds mxUtils.getDocumentScrollOrigin, fixes deprecation warnings [JavaScript]
- Adds update of graph bounds in mxGraphView if rendering is false [JavaScript]
- Ignores edges with no points in mxGraph.getBoundingBoxFromGeometry [JavaScript]
- Creates mxShape in mxGraphView.createState if rendering is false [JavaScript]
13-JAN-2014: 2.4.0.1 13-JAN-2014: 2.4.0.1
- Improves edge crossing calculation performance in hierarchical layout [JavaScript] - Improves edge crossing calculation performance in hierarchical layout [JavaScript]

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxGraphHierarchyEdge"></a>mxGraphHierarchyEdge</h1><div class=CBody><p>An abstraction of a hierarchical edge for the hierarchy layout</p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxGraphHierarchyEdge" >mxGraphHierarchyEdge</a></td><td class=SDescription>An abstraction of a hierarchical edge for the hierarchy layout</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxGraphHierarchyEdge.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.mxGraphHierarchyEdge" id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxGraphHierarchyEdge</a></td><td class=SDescription>Constructs a hierarchy edge</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxGraphHierarchyEdge.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.edges" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">edges</a></td><td class=SDescription>The graph edge(s) this object represents. </td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.source" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">source</a></td><td class=SDescription>The node this edge is sourced at</td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.target" id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">target</a></td><td class=SDescription>The node this edge targets</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.isReversed" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">isReversed</a></td><td class=SDescription>Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxGraphHierarchyEdge.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.invert" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">invert</a></td><td class=SDescription>Inverts the direction of this internal edge(s)</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.getNextLayerConnectedCells" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">getNextLayerConnectedCells</a></td><td class=SDescription>Returns the cells this cell connects to on the next layer up</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.getPreviousLayerConnectedCells" id=link8 onMouseOver="ShowTip(event, 'tt8', 'link8')" onMouseOut="HideTip('tt8')">getPreviousLayerConnectedCells</a></td><td class=SDescription>Returns the cells this cell connects to on the next layer down</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.isEdge" id=link9 onMouseOver="ShowTip(event, 'tt9', 'link9')" onMouseOut="HideTip('tt9')">isEdge</a></td><td class=SDescription>Returns true.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.getGeneralPurposeVariable" id=link10 onMouseOver="ShowTip(event, 'tt10', 'link10')" onMouseOut="HideTip('tt10')">getGeneralPurposeVariable</a></td><td class=SDescription>Gets the value of temp for the specified layer</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.setGeneralPurposeVariable" id=link11 onMouseOver="ShowTip(event, 'tt11', 'link11')" onMouseOut="HideTip('tt11')">setGeneralPurposeVariable</a></td><td class=SDescription>Set the value of temp for the specified layer</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.getCoreCell" id=link12 onMouseOver="ShowTip(event, 'tt12', 'link12')" onMouseOut="HideTip('tt12')">getCoreCell</a></td><td class=SDescription>Gets the first core edge associated with this wrapper</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div> <div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxGraphHierarchyEdge"></a>mxGraphHierarchyEdge</h1><div class=CBody><p>An abstraction of a hierarchical edge for the hierarchy layout</p><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxGraphHierarchyEdge" >mxGraphHierarchyEdge</a></td><td class=SDescription>An abstraction of a hierarchical edge for the hierarchy layout</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxGraphHierarchyEdge.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.mxGraphHierarchyEdge" id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxGraphHierarchyEdge</a></td><td class=SDescription>Constructs a hierarchy edge</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxGraphHierarchyEdge.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.edges" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">edges</a></td><td class=SDescription>The graph edge(s) this object represents. </td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.ids" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">ids</a></td><td class=SDescription>The object identities of the wrapped cells</td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.source" id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">source</a></td><td class=SDescription>The node this edge is sourced at</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.target" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">target</a></td><td class=SDescription>The node this edge targets</td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.isReversed" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">isReversed</a></td><td class=SDescription>Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxGraphHierarchyEdge.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.invert" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">invert</a></td><td class=SDescription>Inverts the direction of this internal edge(s)</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.getNextLayerConnectedCells" id=link8 onMouseOver="ShowTip(event, 'tt8', 'link8')" onMouseOut="HideTip('tt8')">getNextLayerConnectedCells</a></td><td class=SDescription>Returns the cells this cell connects to on the next layer up</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.getPreviousLayerConnectedCells" id=link9 onMouseOver="ShowTip(event, 'tt9', 'link9')" onMouseOut="HideTip('tt9')">getPreviousLayerConnectedCells</a></td><td class=SDescription>Returns the cells this cell connects to on the next layer down</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.isEdge" id=link10 onMouseOver="ShowTip(event, 'tt10', 'link10')" onMouseOut="HideTip('tt10')">isEdge</a></td><td class=SDescription>Returns true.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.getGeneralPurposeVariable" id=link11 onMouseOver="ShowTip(event, 'tt11', 'link11')" onMouseOut="HideTip('tt11')">getGeneralPurposeVariable</a></td><td class=SDescription>Gets the value of temp for the specified layer</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxGraphHierarchyEdge.setGeneralPurposeVariable" id=link12 onMouseOver="ShowTip(event, 'tt12', 'link12')" onMouseOut="HideTip('tt12')">setGeneralPurposeVariable</a></td><td class=SDescription>Set the value of temp for the specified layer</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxGraphHierarchyEdge.getCoreCell" id=link13 onMouseOver="ShowTip(event, 'tt13', 'link13')" onMouseOut="HideTip('tt13')">getCoreCell</a></td><td class=SDescription>Gets the first core edge associated with this wrapper</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.Functions"></a>Functions</h3></div></div> <div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.Functions"></a>Functions</h3></div></div>
@ -21,6 +21,8 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.edges"></a>edges</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.edges</td></tr></table></blockquote><p>The graph edge(s) this object represents.&nbsp; Parallel edges are all grouped together within one hierarchy edge.</p></div></div></div> <div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.edges"></a>edges</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.edges</td></tr></table></blockquote><p>The graph edge(s) this object represents.&nbsp; Parallel edges are all grouped together within one hierarchy edge.</p></div></div></div>
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.ids"></a>ids</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.ids</td></tr></table></blockquote><p>The object identities of the wrapped cells</p></div></div></div>
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.source"></a>source</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.source</td></tr></table></blockquote><p>The node this edge is sourced at</p></div></div></div> <div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.source"></a>source</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.source</td></tr></table></blockquote><p>The node this edge is sourced at</p></div></div></div>
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.target"></a>target</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.target</td></tr></table></blockquote><p>The node this edge targets</p></div></div></div> <div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxGraphHierarchyEdge.target"></a>target</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.target</td></tr></table></blockquote><p>The node this edge targets</p></div></div></div>
@ -57,7 +59,7 @@ HideAllBut([4, 6, 7], 13);// --></script></div><!--Menu-->
<!--START_ND_TOOLTIPS--> <!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt1"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxGraphHierarchyEdge(</td><td class=PParameter nowrap>edges</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Constructs a hierarchy edge</div></div><div class=CToolTip id="tt2"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.edges</td></tr></table></blockquote>The graph edge(s) this object represents. </div></div><div class=CToolTip id="tt3"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.source</td></tr></table></blockquote>The node this edge is sourced at</div></div><div class=CToolTip id="tt4"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.target</td></tr></table></blockquote>The node this edge targets</div></div><div class=CToolTip id="tt5"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.isReversed</td></tr></table></blockquote>Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout</div></div><div class=CToolTip id="tt6"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.invert = function(</td><td class=PParameter nowrap>layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Inverts the direction of this internal edge(s)</div></div><div class=CToolTip id="tt7"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(</td><td class=PParameter nowrap>layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Returns the cells this cell connects to on the next layer up</div></div><div class=CToolTip id="tt8"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(</td><td class=PParameter nowrap>layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Returns the cells this cell connects to on the next layer down</div></div><div class=CToolTip id="tt9"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.isEdge = function()</td></tr></table></blockquote>Returns true.</div></div><div class=CToolTip id="tt10"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(</td><td class=PParameter nowrap>layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Gets the value of temp for the specified layer</div></div><div class=CToolTip id="tt11"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(</td><td class=PParameter nowrap>layer,</td></tr><tr><td></td><td class=PParameter nowrap>value</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Set the value of temp for the specified layer</div></div><div class=CToolTip id="tt12"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.getCoreCell = function()</td></tr></table></blockquote>Gets the first core edge associated with this wrapper</div></div><!--END_ND_TOOLTIPS--> <div class=CToolTip id="tt1"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function mxGraphHierarchyEdge(</td><td class=PParameter nowrap>edges</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Constructs a hierarchy edge</div></div><div class=CToolTip id="tt2"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.edges</td></tr></table></blockquote>The graph edge(s) this object represents. </div></div><div class=CToolTip id="tt3"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.ids</td></tr></table></blockquote>The object identities of the wrapped cells</div></div><div class=CToolTip id="tt4"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.source</td></tr></table></blockquote>The node this edge is sourced at</div></div><div class=CToolTip id="tt5"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.target</td></tr></table></blockquote>The node this edge targets</div></div><div class=CToolTip id="tt6"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.isReversed</td></tr></table></blockquote>Whether or not the direction of this edge has been reversed internally to create a DAG for the hierarchical layout</div></div><div class=CToolTip id="tt7"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.invert = function(</td><td class=PParameter nowrap>layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Inverts the direction of this internal edge(s)</div></div><div class=CToolTip id="tt8"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.getNextLayerConnectedCells = function(</td><td class=PParameter nowrap>layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Returns the cells this cell connects to on the next layer up</div></div><div class=CToolTip id="tt9"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.getPreviousLayerConnectedCells = function(</td><td class=PParameter nowrap>layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Returns the cells this cell connects to on the next layer down</div></div><div class=CToolTip id="tt10"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.isEdge = function()</td></tr></table></blockquote>Returns true.</div></div><div class=CToolTip id="tt11"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.getGeneralPurposeVariable = function(</td><td class=PParameter nowrap>layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Gets the value of temp for the specified layer</div></div><div class=CToolTip id="tt12"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraphHierarchyEdge.prototype.setGeneralPurposeVariable = function(</td><td class=PParameter nowrap>layer,</td></tr><tr><td></td><td class=PParameter nowrap>value</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Set the value of temp for the specified layer</div></div><div class=CToolTip id="tt13"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxGraphHierarchyEdge.prototype.getCoreCell = function()</td></tr></table></blockquote>Gets the first core edge associated with this wrapper</div></div><!--END_ND_TOOLTIPS-->

File diff suppressed because one or more lines are too long

View File

@ -15,7 +15,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxClient.Variables"></a>Variables</h3></div></div> <div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxClient.Variables"></a>Variables</h3></div></div>
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxClient.VERSION"></a>VERSION</h3><div class=CBody><p>Contains the current version of the mxGraph library.&nbsp; The strings that communicate versions of mxGraph use the following format.</p><p>versionMajor.versionMinor.buildNumber.revisionNumber</p><p>Current version is 2.4.0.1.</p></div></div></div> <div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxClient.VERSION"></a>VERSION</h3><div class=CBody><p>Contains the current version of the mxGraph library.&nbsp; The strings that communicate versions of mxGraph use the following format.</p><p>versionMajor.versionMinor.buildNumber.revisionNumber</p><p>Current version is 2.4.0.2.</p></div></div></div>
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxClient.IS_IE"></a>IS_IE</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>IS_IE: navigator.userAgent.indexOf(</td><td class=PParameter nowrap>'MSIE'</td><td class=PAfterParameters nowrap>) &gt;</td></tr></table></td></tr></table></blockquote><p>True if the current browser is Internet Explorer.</p></div></div></div> <div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxClient.IS_IE"></a>IS_IE</h3><div class=CBody><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>IS_IE: navigator.userAgent.indexOf(</td><td class=PParameter nowrap>'MSIE'</td><td class=PAfterParameters nowrap>) &gt;</td></tr></table></td></tr></table></blockquote><p>True if the current browser is Internet Explorer.</p></div></div></div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -11,13 +11,13 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="Functions.html#A">A</a> &middot; <a href="Functions2.html#B">B</a> &middot; <a href="Functions3.html#C">C</a> &middot; <a href="Functions4.html#D">D</a> &middot; <a href="Functions5.html#E">E</a> &middot; <a href="Functions6.html#F">F</a> &middot; <a href="Functions7.html#G">G</a> &middot; <a href="Functions8.html#H">H</a> &middot; <a href="Functions9.html#I">I</a> &middot; <a href="Functions10.html#J">J</a> &middot; <a href="Functions10.html#K">K</a> &middot; <a href="Functions10.html#L">L</a> &middot; <a href="Functions11.html#M">M</a> &middot; <a href="#N">N</a> &middot; <a href="#O">O</a> &middot; <a href="Functions13.html#P">P</a> &middot; <a href="Functions14.html#Q">Q</a> &middot; <a href="Functions15.html#R">R</a> &middot; <a href="Functions16.html#S">S</a> &middot; <a href="Functions17.html#T">T</a> &middot; <a href="Functions18.html#U">U</a> &middot; <a href="Functions19.html#V">V</a> &middot; <a href="Functions19.html#W">W</a> &middot; X &middot; Y &middot; <a href="Functions19.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="N"></a>N</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>notify</span><div class=ISubIndex><a href="../files/util/mxSession-js.html#mxSession.notify" id=link1413 onMouseOver="ShowTip(event, 'tt1408', 'link1413')" onMouseOut="HideTip('tt1408')" class=IParent>mxSession</a><a href="../files/util/mxUndoableEdit-js.html#mxUndoableEdit.notify" id=link1414 onMouseOver="ShowTip(event, 'tt1409', 'link1414')" onMouseOut="HideTip('tt1409')" class=IParent>mxUndoableEdit</a></div></td></tr><tr><td class=IHeading><a name="O"></a>O</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.offset" id=link1415 onMouseOver="ShowTip(event, 'tt1410', 'link1415')" onMouseOut="HideTip('tt1410')" class=ISymbol>offset</a>, <span class=IParent>mxCompactTreeLayout</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/io/mxRootChangeCodec-js.html#mxRootChangeCodec.onEncode" id=link1416 onMouseOver="ShowTip(event, 'tt1411', 'link1416')" onMouseOut="HideTip('tt1411')" class=ISymbol>onEncode</a>, <span class=IParent>mxRootChangeCodec</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>onInit</span><div class=ISubIndex><a href="../files/model/mxCell-js.html#mxCell.onInit" id=link1417 onMouseOver="ShowTip(event, 'tt1412', 'link1417')" onMouseOut="HideTip('tt1412')" class=IParent>mxCell</a><a href="../files/editor/mxEditor-js.html#mxEditor.onInit" id=link1418 onMouseOver="ShowTip(event, 'tt1413', 'link1418')" onMouseOut="HideTip('tt1413')" class=IParent>mxEditor</a></div></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>open</span><div class=ISubIndex><a href="../files/editor/mxEditor-js.html#mxEditor.open" id=link1419 onMouseOver="ShowTip(event, 'tt1414', 'link1419')" onMouseOut="HideTip('tt1414')" class=IParent>mxEditor</a><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.open" id=link1420 onMouseOver="ShowTip(event, 'tt1415', 'link1420')" onMouseOut="HideTip('tt1415')" class=IParent>mxPrintPreview</a><a href="../files/util/mxUtils-js.html#mxUtils.open" id=link1421 onMouseOver="ShowTip(event, 'tt1416', 'link1421')" onMouseOut="HideTip('tt1416')" class=IParent>mxUtils</a></div></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.orderCells" id=link1422 onMouseOver="ShowTip(event, 'tt1417', 'link1422')" onMouseOut="HideTip('tt1417')" class=ISymbol>orderCells</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxEdgeStyle-js.html#mxEdgeStyle.OrthConnector" id=link1423 onMouseOver="ShowTip(event, 'tt1418', 'link1423')" onMouseOut="HideTip('tt1418')" class=ISymbol>OrthConnector</a>, <span class=IParent>mxEdgeStyle</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxOutline-js.html#mxOutline.outline" id=link1424 onMouseOver="ShowTip(event, 'tt1419', 'link1424')" onMouseOut="HideTip('tt1419')" class=ISymbol>outline</a>, <span class=IParent>mxOutline</span></td></tr></table> <div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="Functions.html#A">A</a> &middot; <a href="Functions2.html#B">B</a> &middot; <a href="Functions3.html#C">C</a> &middot; <a href="Functions4.html#D">D</a> &middot; <a href="Functions5.html#E">E</a> &middot; <a href="Functions6.html#F">F</a> &middot; <a href="Functions7.html#G">G</a> &middot; <a href="Functions8.html#H">H</a> &middot; <a href="Functions9.html#I">I</a> &middot; <a href="Functions10.html#J">J</a> &middot; <a href="Functions10.html#K">K</a> &middot; <a href="Functions10.html#L">L</a> &middot; <a href="Functions11.html#M">M</a> &middot; <a href="#N">N</a> &middot; <a href="#O">O</a> &middot; <a href="Functions13.html#P">P</a> &middot; <a href="Functions14.html#Q">Q</a> &middot; <a href="Functions15.html#R">R</a> &middot; <a href="Functions16.html#S">S</a> &middot; <a href="Functions17.html#T">T</a> &middot; <a href="Functions18.html#U">U</a> &middot; <a href="Functions19.html#V">V</a> &middot; <a href="Functions19.html#W">W</a> &middot; X &middot; Y &middot; <a href="Functions19.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="N"></a>N</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>notify</span><div class=ISubIndex><a href="../files/util/mxSession-js.html#mxSession.notify" id=link1414 onMouseOver="ShowTip(event, 'tt1409', 'link1414')" onMouseOut="HideTip('tt1409')" class=IParent>mxSession</a><a href="../files/util/mxUndoableEdit-js.html#mxUndoableEdit.notify" id=link1415 onMouseOver="ShowTip(event, 'tt1410', 'link1415')" onMouseOut="HideTip('tt1410')" class=IParent>mxUndoableEdit</a></div></td></tr><tr><td class=IHeading><a name="O"></a>O</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/layout/mxCompactTreeLayout-js.html#mxCompactTreeLayout.offset" id=link1416 onMouseOver="ShowTip(event, 'tt1411', 'link1416')" onMouseOut="HideTip('tt1411')" class=ISymbol>offset</a>, <span class=IParent>mxCompactTreeLayout</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/io/mxRootChangeCodec-js.html#mxRootChangeCodec.onEncode" id=link1417 onMouseOver="ShowTip(event, 'tt1412', 'link1417')" onMouseOut="HideTip('tt1412')" class=ISymbol>onEncode</a>, <span class=IParent>mxRootChangeCodec</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>onInit</span><div class=ISubIndex><a href="../files/model/mxCell-js.html#mxCell.onInit" id=link1418 onMouseOver="ShowTip(event, 'tt1413', 'link1418')" onMouseOut="HideTip('tt1413')" class=IParent>mxCell</a><a href="../files/editor/mxEditor-js.html#mxEditor.onInit" id=link1419 onMouseOver="ShowTip(event, 'tt1414', 'link1419')" onMouseOut="HideTip('tt1414')" class=IParent>mxEditor</a></div></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>open</span><div class=ISubIndex><a href="../files/editor/mxEditor-js.html#mxEditor.open" id=link1420 onMouseOver="ShowTip(event, 'tt1415', 'link1420')" onMouseOut="HideTip('tt1415')" class=IParent>mxEditor</a><a href="../files/view/mxPrintPreview-js.html#mxPrintPreview.open" id=link1421 onMouseOver="ShowTip(event, 'tt1416', 'link1421')" onMouseOut="HideTip('tt1416')" class=IParent>mxPrintPreview</a><a href="../files/util/mxUtils-js.html#mxUtils.open" id=link1422 onMouseOver="ShowTip(event, 'tt1417', 'link1422')" onMouseOut="HideTip('tt1417')" class=IParent>mxUtils</a></div></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.orderCells" id=link1423 onMouseOver="ShowTip(event, 'tt1418', 'link1423')" onMouseOut="HideTip('tt1418')" class=ISymbol>orderCells</a>, <span class=IParent>mxGraph</span></td></tr><tr><td class=ISymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxEdgeStyle-js.html#mxEdgeStyle.OrthConnector" id=link1424 onMouseOver="ShowTip(event, 'tt1419', 'link1424')" onMouseOut="HideTip('tt1419')" class=ISymbol>OrthConnector</a>, <span class=IParent>mxEdgeStyle</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/view/mxOutline-js.html#mxOutline.outline" id=link1425 onMouseOver="ShowTip(event, 'tt1420', 'link1425')" onMouseOut="HideTip('tt1420')" class=ISymbol>outline</a>, <span class=IParent>mxOutline</span></td></tr></table>
<!--START_ND_TOOLTIPS--> <!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt1408"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxSession.prototype.notify = function(</td><td class=PParameter nowrap>xml,</td></tr><tr><td></td><td class=PParameter nowrap>onLoad,</td></tr><tr><td></td><td class=PParameter nowrap>onError</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Sends out the specified XML to urlNotify and fires a notify event.</div></div><div class=CToolTip id="tt1409"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxUndoableEdit.prototype.notify = function()</td></tr></table></blockquote>Hook to notify any listeners of the changes after an undo or redo has been carried out. </div></div><!--END_ND_TOOLTIPS--> <div class=CToolTip id="tt1409"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxSession.prototype.notify = function(</td><td class=PParameter nowrap>xml,</td></tr><tr><td></td><td class=PParameter nowrap>onLoad,</td></tr><tr><td></td><td class=PParameter nowrap>onError</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Sends out the specified XML to urlNotify and fires a notify event.</div></div><div class=CToolTip id="tt1410"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxUndoableEdit.prototype.notify = function()</td></tr></table></blockquote>Hook to notify any listeners of the changes after an undo or redo has been carried out. </div></div><!--END_ND_TOOLTIPS-->
<!--START_ND_TOOLTIPS--> <!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt1410"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxCompactTreeLayout.prototype.offset = function(</td><td class=PParameter nowrap>p1,</td></tr><tr><td></td><td class=PParameter nowrap>p2,</td></tr><tr><td></td><td class=PParameter nowrap>a1,</td></tr><tr><td></td><td class=PParameter nowrap>a2,</td></tr><tr><td></td><td class=PParameter nowrap>b1,</td></tr><tr><td></td><td class=PParameter nowrap>b2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote></div></div><div class=CToolTip id="tt1411"><div class=CFunction>Encodes the child recursively.</div></div><div class=CToolTip id="tt1412"><div class=CFunction>Called from within the constructor.</div></div><div class=CToolTip id="tt1413"><div class=CFunction>Called from within the constructor. </div></div><div class=CToolTip id="tt1414"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxEditor.prototype.open = function (</td><td class=PParameter nowrap>filename</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Opens the specified file synchronously and parses it using readGraphModel. </div></div><div class=CToolTip id="tt1415"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxPrintPreview.prototype.open = function(</td><td class=PParameter nowrap>css</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Shows the print preview window. </div></div><div class=CToolTip id="tt1416"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>open: function(</td><td class=PParameter nowrap>filename</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Opens the specified file from the local filesystem and returns the contents of the file as a string. </div></div><div class=CToolTip id="tt1417"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraph.prototype.orderCells = function(</td><td class=PParameter nowrap>back,</td></tr><tr><td></td><td class=PParameter nowrap>cells</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Moves the given cells to the front or back. </div></div><div class=CToolTip id="tt1418"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>OrthConnector: function(</td><td class=PParameter nowrap>state,</td></tr><tr><td></td><td class=PParameter nowrap>source,</td></tr><tr><td></td><td class=PParameter nowrap>target,</td></tr><tr><td></td><td class=PParameter nowrap>points,</td></tr><tr><td></td><td class=PParameter nowrap>result</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Implements a local orthogonal router between the given cells.</div></div><div class=CToolTip id="tt1419"><div class=CFunction>Reference to the mxGraph that renders the outline.</div></div><!--END_ND_TOOLTIPS--> <div class=CToolTip id="tt1411"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxCompactTreeLayout.prototype.offset = function(</td><td class=PParameter nowrap>p1,</td></tr><tr><td></td><td class=PParameter nowrap>p2,</td></tr><tr><td></td><td class=PParameter nowrap>a1,</td></tr><tr><td></td><td class=PParameter nowrap>a2,</td></tr><tr><td></td><td class=PParameter nowrap>b1,</td></tr><tr><td></td><td class=PParameter nowrap>b2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote></div></div><div class=CToolTip id="tt1412"><div class=CFunction>Encodes the child recursively.</div></div><div class=CToolTip id="tt1413"><div class=CFunction>Called from within the constructor.</div></div><div class=CToolTip id="tt1414"><div class=CFunction>Called from within the constructor. </div></div><div class=CToolTip id="tt1415"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxEditor.prototype.open = function (</td><td class=PParameter nowrap>filename</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Opens the specified file synchronously and parses it using readGraphModel. </div></div><div class=CToolTip id="tt1416"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxPrintPreview.prototype.open = function(</td><td class=PParameter nowrap>css</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Shows the print preview window. </div></div><div class=CToolTip id="tt1417"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>open: function(</td><td class=PParameter nowrap>filename</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Opens the specified file from the local filesystem and returns the contents of the file as a string. </div></div><div class=CToolTip id="tt1418"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxGraph.prototype.orderCells = function(</td><td class=PParameter nowrap>back,</td></tr><tr><td></td><td class=PParameter nowrap>cells</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Moves the given cells to the front or back. </div></div><div class=CToolTip id="tt1419"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>OrthConnector: function(</td><td class=PParameter nowrap>state,</td></tr><tr><td></td><td class=PParameter nowrap>source,</td></tr><tr><td></td><td class=PParameter nowrap>target,</td></tr><tr><td></td><td class=PParameter nowrap>points,</td></tr><tr><td></td><td class=PParameter nowrap>result</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Implements a local orthogonal router between the given cells.</div></div><div class=CToolTip id="tt1420"><div class=CFunction>Reference to the mxGraph that renders the outline.</div></div><!--END_ND_TOOLTIPS-->
</div><!--Index--> </div><!--Index-->

File diff suppressed because one or more lines are too long

View File

@ -11,9 +11,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="Functions.html#A">A</a> &middot; <a href="Functions2.html#B">B</a> &middot; <a href="Functions3.html#C">C</a> &middot; <a href="Functions4.html#D">D</a> &middot; <a href="Functions5.html#E">E</a> &middot; <a href="Functions6.html#F">F</a> &middot; <a href="Functions7.html#G">G</a> &middot; <a href="Functions8.html#H">H</a> &middot; <a href="Functions9.html#I">I</a> &middot; <a href="Functions10.html#J">J</a> &middot; <a href="Functions10.html#K">K</a> &middot; <a href="Functions10.html#L">L</a> &middot; <a href="Functions11.html#M">M</a> &middot; <a href="Functions12.html#N">N</a> &middot; <a href="Functions12.html#O">O</a> &middot; <a href="Functions13.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="Functions15.html#R">R</a> &middot; <a href="Functions16.html#S">S</a> &middot; <a href="Functions17.html#T">T</a> &middot; <a href="Functions18.html#U">U</a> &middot; <a href="Functions19.html#V">V</a> &middot; <a href="Functions19.html#W">W</a> &middot; X &middot; Y &middot; <a href="Functions19.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link1493 onMouseOver="ShowTip(event, 'tt1488', 'link1493')" onMouseOut="HideTip('tt1488')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link1494 onMouseOver="ShowTip(event, 'tt1489', 'link1494')" onMouseOut="HideTip('tt1489')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link1495 onMouseOver="ShowTip(event, 'tt1490', 'link1495')" onMouseOut="HideTip('tt1490')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table> <div id=Index><div class=IPageTitle>Function Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="Functions.html#A">A</a> &middot; <a href="Functions2.html#B">B</a> &middot; <a href="Functions3.html#C">C</a> &middot; <a href="Functions4.html#D">D</a> &middot; <a href="Functions5.html#E">E</a> &middot; <a href="Functions6.html#F">F</a> &middot; <a href="Functions7.html#G">G</a> &middot; <a href="Functions8.html#H">H</a> &middot; <a href="Functions9.html#I">I</a> &middot; <a href="Functions10.html#J">J</a> &middot; <a href="Functions10.html#K">K</a> &middot; <a href="Functions10.html#L">L</a> &middot; <a href="Functions11.html#M">M</a> &middot; <a href="Functions12.html#N">N</a> &middot; <a href="Functions12.html#O">O</a> &middot; <a href="Functions13.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="Functions15.html#R">R</a> &middot; <a href="Functions16.html#S">S</a> &middot; <a href="Functions17.html#T">T</a> &middot; <a href="Functions18.html#U">U</a> &middot; <a href="Functions19.html#V">V</a> &middot; <a href="Functions19.html#W">W</a> &middot; X &middot; Y &middot; <a href="Functions19.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link1494 onMouseOver="ShowTip(event, 'tt1489', 'link1494')" onMouseOut="HideTip('tt1489')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link1495 onMouseOver="ShowTip(event, 'tt1490', 'link1495')" onMouseOut="HideTip('tt1490')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link1496 onMouseOver="ShowTip(event, 'tt1491', 'link1496')" onMouseOut="HideTip('tt1491')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<!--START_ND_TOOLTIPS--> <!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt1488"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt1489"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt1490"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS--> <div class=CToolTip id="tt1489"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt1490"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt1491"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
</div><!--Index--> </div><!--Index-->

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -11,9 +11,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="General.html#A">A</a> &middot; <a href="General2.html#B">B</a> &middot; <a href="General3.html#C">C</a> &middot; <a href="General4.html#D">D</a> &middot; <a href="General5.html#E">E</a> &middot; <a href="General6.html#F">F</a> &middot; <a href="General7.html#G">G</a> &middot; <a href="General8.html#H">H</a> &middot; <a href="General9.html#I">I</a> &middot; <a href="General10.html#J">J</a> &middot; <a href="General10.html#K">K</a> &middot; <a href="General10.html#L">L</a> &middot; <a href="General11.html#M">M</a> &middot; <a href="General12.html#N">N</a> &middot; <a href="General12.html#O">O</a> &middot; <a href="General13.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="General15.html#R">R</a> &middot; <a href="General16.html#S">S</a> &middot; <a href="General17.html#T">T</a> &middot; <a href="General18.html#U">U</a> &middot; <a href="General19.html#V">V</a> &middot; <a href="General20.html#W">W</a> &middot; <a href="General20.html#X">X</a> &middot; <a href="General20.html#Y">Y</a> &middot; <a href="General20.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadOp" id=link2486 onMouseOver="ShowTip(event, 'tt2477', 'link2486')" onMouseOut="HideTip('tt2477')" class=ISymbol>quadOp</a>, <span class=IParent>mxAbstractCanvas2D</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link2487 onMouseOver="ShowTip(event, 'tt2478', 'link2487')" onMouseOut="HideTip('tt2478')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link2488 onMouseOver="ShowTip(event, 'tt2479', 'link2488')" onMouseOut="HideTip('tt2479')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2489 onMouseOver="ShowTip(event, 'tt2480', 'link2489')" onMouseOut="HideTip('tt2480')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table> <div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="General.html#A">A</a> &middot; <a href="General2.html#B">B</a> &middot; <a href="General3.html#C">C</a> &middot; <a href="General4.html#D">D</a> &middot; <a href="General5.html#E">E</a> &middot; <a href="General6.html#F">F</a> &middot; <a href="General7.html#G">G</a> &middot; <a href="General8.html#H">H</a> &middot; <a href="General9.html#I">I</a> &middot; <a href="General10.html#J">J</a> &middot; <a href="General10.html#K">K</a> &middot; <a href="General10.html#L">L</a> &middot; <a href="General11.html#M">M</a> &middot; <a href="General12.html#N">N</a> &middot; <a href="General12.html#O">O</a> &middot; <a href="General13.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="General15.html#R">R</a> &middot; <a href="General16.html#S">S</a> &middot; <a href="General17.html#T">T</a> &middot; <a href="General18.html#U">U</a> &middot; <a href="General19.html#V">V</a> &middot; <a href="General20.html#W">W</a> &middot; <a href="General20.html#X">X</a> &middot; <a href="General20.html#Y">Y</a> &middot; <a href="General20.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadOp" id=link2489 onMouseOver="ShowTip(event, 'tt2480', 'link2489')" onMouseOut="HideTip('tt2480')" class=ISymbol>quadOp</a>, <span class=IParent>mxAbstractCanvas2D</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link2490 onMouseOver="ShowTip(event, 'tt2481', 'link2490')" onMouseOut="HideTip('tt2481')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link2491 onMouseOver="ShowTip(event, 'tt2482', 'link2491')" onMouseOut="HideTip('tt2482')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2492 onMouseOver="ShowTip(event, 'tt2483', 'link2492')" onMouseOut="HideTip('tt2483')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<!--START_ND_TOOLTIPS--> <!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt2477"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxAbstractCanvas2D.prototype.quadOp</td></tr></table></blockquote>Contains the string used for quadratic paths. </div></div><div class=CToolTip id="tt2478"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt2479"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt2480"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS--> <div class=CToolTip id="tt2480"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxAbstractCanvas2D.prototype.quadOp</td></tr></table></blockquote>Contains the string used for quadratic paths. </div></div><div class=CToolTip id="tt2481"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt2482"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt2483"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
</div><!--Index--> </div><!--Index-->

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@
<h1>mxGraph User Manual &ndash; JavaScript Client</h1> <h1>mxGraph User Manual &ndash; JavaScript Client</h1>
<br/> <br/>
<br/> <br/>
<p>mxGraph Version 2.4.0.1 &ndash; 13. January 2014</p> <p>mxGraph Version 2.4.0.2 &ndash; 17. January 2014</p>
<p>Copyright (c) JGraph Ltd 2006-2013</p> <p>Copyright (c) JGraph Ltd 2006-2013</p>
<br/> <br/>
<p>All rights reserved. No part of this publication may be <p>All rights reserved. No part of this publication may be

View File

@ -9,7 +9,7 @@
<h1>JGraphX (JGraph 6) User Manual</h1> <h1>JGraphX (JGraph 6) User Manual</h1>
<br/> <br/>
<br/> <br/>
<p>JGraphX Version 2.4.0.1 &ndash; 13. January 2014</p> <p>JGraphX Version 2.4.0.2 &ndash; 17. January 2014</p>
<p>Copyright (c) JGraph Ltd 2006-2012</p> <p>Copyright (c) JGraph Ltd 2006-2012</p>
<br/> <br/>
<p>All rights reserved. No part of this publication may be <p>All rights reserved. No part of this publication may be

View File

@ -113,7 +113,7 @@
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -81,7 +81,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -360,7 +360,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -118,7 +118,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -1286,7 +1286,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -111,7 +111,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -114,7 +114,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -73,7 +73,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -200,7 +200,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -72,7 +72,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -257,7 +257,7 @@ Static Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -71,7 +71,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -128,7 +128,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -75,7 +75,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -229,7 +229,7 @@ Protected Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -123,7 +123,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -674,7 +674,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -91,7 +91,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -716,7 +716,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -79,7 +79,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -332,7 +332,7 @@ Static Protected Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -76,7 +76,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -240,7 +240,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -217,7 +217,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -2617,7 +2617,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -74,7 +74,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -170,7 +170,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -102,7 +102,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -743,7 +743,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -107,7 +107,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -1481,7 +1481,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -137,7 +137,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -1908,7 +1908,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -71,7 +71,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -99,7 +99,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -114,7 +114,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -555,7 +555,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -162,7 +162,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -224,8 +224,8 @@ Public Member Functions</h2></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the graph model has changed to invalidate the view. <a href="#ab396255800eb40d05b39bc129cfe579d"></a><br/></td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the graph model has changed to invalidate the view. <a href="#ab396255800eb40d05b39bc129cfe579d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-attribs"></a> <tr><td colspan="2"><h2><a name="pub-attribs"></a>
Public Attributes</h2></td></tr> Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = &quot;2.4.0.1&quot;</td></tr> <tr><td class="memItemLeft" align="right" valign="top">const String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = &quot;2.4.0.2&quot;</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 2.4.0.1. <a href="#a12b4a8dcf881951589ccca36c7ebfccb"></a><br/></td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 2.4.0.2. <a href="#a12b4a8dcf881951589ccca36c7ebfccb"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a> <tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr> Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classcom_1_1mxgraph_1_1mxStylesheet.html">mxStylesheet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a54e7b28a0964d2d39ef9f4607ff39604">CreateStylesheet</a> ()</td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classcom_1_1mxgraph_1_1mxStylesheet.html">mxStylesheet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a54e7b28a0964d2d39ef9f4607ff39604">CreateStylesheet</a> ()</td></tr>
@ -2968,13 +2968,13 @@ Properties</h2></td></tr>
<div class="memproto"> <div class="memproto">
<table class="memname"> <table class="memname">
<tr> <tr>
<td class="memname">const String <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">com.mxgraph.mxGraph.VERSION</a> = &quot;2.4.0.1&quot;</td> <td class="memname">const String <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">com.mxgraph.mxGraph.VERSION</a> = &quot;2.4.0.2&quot;</td>
</tr> </tr>
</table> </table>
</div> </div>
<div class="memdoc"> <div class="memdoc">
<p>Holds the version number of this release. Current version is 2.4.0.1. </p> <p>Holds the version number of this release. Current version is 2.4.0.2. </p>
</div> </div>
</div> </div>
@ -3121,7 +3121,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -137,7 +137,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -2300,7 +2300,7 @@ Events</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -119,7 +119,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -1538,7 +1538,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -95,7 +95,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -521,7 +521,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -79,7 +79,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -358,7 +358,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -73,7 +73,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -185,7 +185,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -80,7 +80,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

View File

@ -364,7 +364,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small> <hr class="footer"/><address class="footer"><small>
Generated on Mon Jan 13 2014 16:09:25 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html"> Generated on Fri Jan 17 2014 08:11:38 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/> <img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1 </a> 1.7.6.1
</small></address> </small></address>

Some files were not shown because too many files have changed in this diff Show More