1.13.0.0 release

development
root 2013-05-03 14:17:05 +01:00
parent d2324715a1
commit c113608426
891 changed files with 4624 additions and 4394 deletions

View File

@ -1,3 +1,20 @@
03-MAY-2013: 1.13.0.0
- Adds mxConstraintHandler.isStateIgnored hook [JavaScript]
- Fixes initial bounds computation in mxFastOrganicLayout.execute [JavaScript]
- Changes mxGraph.getDefaultParent to use view.currentRoot over defaultParent [JavaScript]
- Fixes HTML rendering of scaled title bar in mxSwimlane [JavaScript]
- Adds mxOutline.getTranslateForEvent hook [JavaScript]
- Makes comparators transitive in layouts [Java]
- Adds mxCompactTreeLayout.sortEdges switch, sortOutgoingEdges hook [JavaScript]
- Checks enabled state, resizable flag in mxGraph.handleGesture [JavaScript]
- Adds optional textWidth argument in mxUtils.getSizeForString [JavaScript]
- Stops text editing if cell deleted while editor active in mxCellEditor [JavaScript]
- Removes icons argument in mxConnectionHandler.destroyIcons [JavaScript]
- Handles drill down while connecting in mxConnectionHandler [JavaScript]
- Adds support for SVG as data URI in mxImageBundle [JavaScript]
- Adds fixed attribute for strokewidth element in stencils [JavaScript]
10-APR-2013: 1.12.0.2
- Handles deleted source while connecting in mxConnectionHandler [JavaScript]

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

@ -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="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 1.12.0.2.</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 1.13.0.0.</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>

View File

@ -16,6 +16,11 @@ bundle.putImage('myImage', 'data:image/gif,R0lGODlhEAAQAMIGAAAAAICAAICAgP' +
'//AOzp2O3r2////////yH+FUNyZWF0ZWQgd2l0aCBUaGUgR0lNUAAh+QQBCgAHACwAAAAA' +
'EAAQAAADTXi63AowynnAMDfjPUDlnAAJhmeBFxAEloliKltWmiYCQvfVr6lBPB1ggxN1hi' +
'laSSASFQpIV5HJBDyHpqK2ejVRm2AAgZCdmCGO9CIBADs=', fallback);
bundle.putImage('mySvgImage', 'data:image/svg+xml,' + encodeURIComponent(
'&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; width=&quot;100%&quot; height=&quot;100%&quot;&gt;' +
'&lt;linearGradient id=&quot;gradient&quot;&gt;&lt;stop offset=&quot;10%&quot; stop-color=&quot;#F00&quot;/&gt;' +
'&lt;stop offset=&quot;90%&quot; stop-color=&quot;#fcc&quot;/&gt;&lt;/linearGradient&gt;' +
'&lt;rect fill=&quot;url(#gradient)&quot; width=&quot;100%&quot; height=&quot;100%&quot;/&gt;&lt;/svg&gt;'), fallback);
graph.addImageBundle(bundle);
(end);

File diff suppressed because one or more lines are too long

View File

@ -101,13 +101,10 @@ dec.decode(node, graph.getModel());</pre></blockquote><p>For creating a page tha
var e = evt.getProperty('event'); // mouse event
var cell = evt.getProperty('cell'); // cell may be null
if (!evt.isConsumed())
if (cell != null)
{
if (cell != null)
{
// Do something useful with cell and consume the event
evt.consume();
}
// Do something useful with cell and consume the event
evt.consume();
}
});</pre></blockquote></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

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

@ -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=IOnlySymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxPath-js.html#mxPath.quadTo" id=link2367 onMouseOver="ShowTip(event, 'tt2364', 'link2367')" onMouseOut="HideTip('tt2364')" class=IParent>mxPath</a><a href="../files/util/mxSvgCanvas2D-js.html#mxSvgCanvas2D.quadTo" id=link2368 onMouseOver="ShowTip(event, 'tt2365', 'link2368')" onMouseOut="HideTip('tt2365')" class=IParent>mxSvgCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2369 onMouseOver="ShowTip(event, 'tt2366', 'link2369')" onMouseOut="HideTip('tt2366')" 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=IOnlySymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxPath-js.html#mxPath.quadTo" id=link2369 onMouseOver="ShowTip(event, 'tt2366', 'link2369')" onMouseOut="HideTip('tt2366')" class=IParent>mxPath</a><a href="../files/util/mxSvgCanvas2D-js.html#mxSvgCanvas2D.quadTo" id=link2370 onMouseOver="ShowTip(event, 'tt2367', 'link2370')" onMouseOut="HideTip('tt2367')" class=IParent>mxSvgCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2371 onMouseOver="ShowTip(event, 'tt2368', 'link2371')" onMouseOut="HideTip('tt2368')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt2364"><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>mxPath.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>x,</td></tr><tr><td></td><td class=PParameter nowrap>y</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Draws a quadratic Bézier curve from the current point to (x, y) using (x1, y1) as the control point.</div></div><div class=CToolTip id="tt2365"><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>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="tt2366"><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>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="tt2366"><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>mxPath.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>x,</td></tr><tr><td></td><td class=PParameter nowrap>y</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Draws a quadratic Bézier curve from the current point to (x, y) using (x1, y1) as the control point.</div></div><div class=CToolTip id="tt2367"><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>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="tt2368"><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>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-->

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

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>
<br/>
<br/>
<p>mxGraph Version 1.12.0.2 &ndash; 10. April 2013</p>
<p>mxGraph Version 1.13.0.0 &ndash; 03. May 2013</p>
<p>Copyright (c) JGraph Ltd 2006-2012</p>
<br/>
<p>All rights reserved. No part of this publication may be

View File

@ -9,7 +9,7 @@
<h1>JGraphX (JGraph 6) User Manual</h1>
<br/>
<br/>
<p>JGraphX Version 1.12.0.2 &ndash; 10. April 2013</p>
<p>JGraphX Version 1.13.0.0 &ndash; 03. May 2013</p>
<p>Copyright (c) JGraph Ltd 2006-2012</p>
<br/>
<p>All rights reserved. No part of this publication may be

View File

@ -161,7 +161,8 @@
<xs:attribute name="y" use="required" type="xs:decimal"/>
<xs:attribute name="align" use="optional" type="xs:string" default="left"/>
<xs:attribute name="valign" use="optional" type="xs:string" default="top"/>
<xs:attribute name="localized" use="optional" type="xs:integer"/>
<xs:attribute name="localized" use="optional" type="xs:integer" default="0"/>
<xs:attribute name="vertical" use="optional" type="xs:integer" default="0"/>
</xs:complexType>
</xs:element>
<xs:element name="image">
@ -171,6 +172,8 @@
<xs:attribute name="y" use="required" type="xs:decimal"/>
<xs:attribute name="w" use="required" type="xs:decimal"/>
<xs:attribute name="h" use="required" type="xs:decimal"/>
<xs:attribute name="flipH" use="optional" type="xs:integer" default="0"/>
<xs:attribute name="flipV" use="optional" type="xs:integer" default="0"/>
</xs:complexType>
</xs:element>
<xs:element name="include-shape">
@ -190,6 +193,7 @@
<xs:element name="strokewidth">
<xs:complexType>
<xs:attribute name="width" use="required" type="xs:decimal"/>
<xs:attribute name="fixed" use="optional" type="xs:integer" default="0"/>
</xs:complexType>
</xs:element>
<xs:element name="dashed">

View File

@ -113,7 +113,7 @@
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -360,7 +360,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -1286,7 +1286,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -114,7 +114,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -200,7 +200,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -257,7 +257,7 @@ Static Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -128,7 +128,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -229,7 +229,7 @@ Protected Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -674,7 +674,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -716,7 +716,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -332,7 +332,7 @@ Static Protected Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -240,7 +240,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -2617,7 +2617,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -170,7 +170,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -743,7 +743,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -1481,7 +1481,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -130,7 +130,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -1950,7 +1950,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -99,7 +99,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -555,7 +555,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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 colspan="2"><h2><a name="pub-attribs"></a>
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;1.12.0.2&quot;</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 1.12.0.2. <a href="#a12b4a8dcf881951589ccca36c7ebfccb"></a><br/></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;1.13.0.0&quot;</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 1.13.0.0. <a href="#a12b4a8dcf881951589ccca36c7ebfccb"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
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>
@ -2968,13 +2968,13 @@ Properties</h2></td></tr>
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const String <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">com.mxgraph.mxGraph.VERSION</a> = &quot;1.12.0.2&quot;</td>
<td class="memname">const String <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">com.mxgraph.mxGraph.VERSION</a> = &quot;1.13.0.0&quot;</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Holds the version number of this release. Current version is 1.12.0.2. </p>
<p>Holds the version number of this release. Current version is 1.13.0.0. </p>
</div>
</div>
@ -3121,7 +3121,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -2300,7 +2300,7 @@ Events</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -1538,7 +1538,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Wed Apr 10 2013 16:31:04 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</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>
Generated on Wed Apr 10 2013 16:31:03 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 3 2013 14:13:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

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