1.10.4.0 release

development
David Benson 2012-10-29 20:17:12 +00:00
parent ff52ba0010
commit 64fc90d13e
864 changed files with 7054 additions and 4484 deletions

View File

@ -1,3 +1,15 @@
29-OCT-2012: 1.10.4.0
- Adds mxGraph.zoomToRect for zoom and scroll to an area [JavaScript]
- Fixes consistent point handling for routing in mxEdgeStyle.SideToSide [JavaScript]
- Adds mxResources.resourcesEncoded to disable unescaping of values [JavaScript]
- Adds Chinese translations for graph and editor core resource files [JavaScript]
- Fixes mxCellStatePreview.revalidateState for relative child cells [JavaScript]
- Uses UTF8 characters in built-in properties files [JavaScript]
- Corrects missing $ signs in mxPerimeter.php [Php]
- mxResources.parse ignores lines starting with # sign (comments) [JavaScript]
- Adds support for normal unicode (like \u8fd1) in mxResources.parse [JavaScript]
28-SEP-2012: 1.10.3.2
- Reenables clipping for plain text labels in Chrome [JavaScript]

View File

@ -1,6 +1,6 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><title>/home/gaudenz/project/mxgraph/build/mxgraph/javascript/src/src/js/handler/mxEdgeSegmentHandler.js</title><link rel="stylesheet" type="text/css" href="../../styles/main.css"><script language=JavaScript src="../../javascript/main.js"></script><script language=JavaScript src="../../javascript/prettify.js"></script><script language=JavaScript src="../../javascript/searchdata.js"></script></head><body class="ContentPage" onLoad="NDOnLoad();prettyPrint();"><script language=JavaScript><!--
<html><head><title>/home/david/project/mxgraph/build/mxgraph/javascript/src/src/js/handler/mxEdgeSegmentHandler.js</title><link rel="stylesheet" type="text/css" href="../../styles/main.css"><script language=JavaScript src="../../javascript/main.js"></script><script language=JavaScript src="../../javascript/prettify.js"></script><script language=JavaScript src="../../javascript/searchdata.js"></script></head><body class="ContentPage" onLoad="NDOnLoad();prettyPrint();"><script language=JavaScript><!--
if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
<!-- Generated by Natural Docs, version 1.5 -->

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.10.3.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.10.4.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>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,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="mxResources"></a>mxResources</h1><div class=CBody><p>Implements internationalization.&nbsp; You can provide any number of resource files on the server using the following format for the filename: name[-en].properties.&nbsp; The en stands for any lowercase 2-character language shortcut (eg. de for german, fr for french).</p><p>If the optional language extension is omitted, then the file is used as a default resource which is loaded in all cases.&nbsp; If a properties file for a specific language exists, then it is used to override the settings in the default resource.&nbsp; All entries in the file are of the form key=value.&nbsp; The values may then be accessed in code via <a href="#mxResources.get" class=LFunction id=link6 onMouseOver="ShowTip(event, 'tt5', 'link6')" onMouseOut="HideTip('tt5')">get</a>.&nbsp; Lines without equal signs in the properties files are ignored.</p><p>Resource files may either be added programmatically using <a href="#mxResources.add" class=LFunction id=link7 onMouseOver="ShowTip(event, 'tt3', 'link7')" onMouseOut="HideTip('tt3')">add</a> or via a resource tag in the UI section of the editor configuration file, eg:</p><blockquote><pre class="prettyprint">&lt;mxEditor&gt;
&lt;ui&gt;
&lt;resource basename=&quot;examples/resources/mxWorkflow&quot;/&gt;</pre></blockquote><p>The above element will load examples/resources/mxWorkflow.properties as well as the language specific file for the current language, if it exists.</p><p>Values may contain placeholders of the form {1}...{n} where each placeholder is replaced with the value of the corresponding array element in the params argument passed to <a href="#mxResources.get" class=LFunction id=link8 onMouseOver="ShowTip(event, 'tt5', 'link8')" onMouseOut="HideTip('tt5')">mxResources.get</a>.&nbsp; The placeholder {1} maps to the first element in the array (at index 0).</p><p>See <a href="../mxClient-js.html#mxClient.language" class=LVariable id=link9 onMouseOver="ShowTip(event, 'tt6', 'link9')" onMouseOut="HideTip('tt6')">mxClient.language</a> for more information on specifying the default language or disabling all loading of resources.</p><p>Special characters</p><p>To use unicode characters use %u as a prefix, eg.&nbsp; %u20AC will display a Euro sign.&nbsp; For normal hex encoded strings, use % as a prefix, eg.&nbsp; %F6 will display a ö (&amp;ouml;).</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="#mxResources" >mxResources</a></td><td class=SDescription>Implements internationalization. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxResources.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxResources.resources" >resources</a></td><td class=SDescription>Associative array that maps from keys to values.</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxResources.extension" >extension</a></td><td class=SDescription>Specifies the extension used for language files. </td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxResources.loadDefaultBundle" >loadDefaultBundle</a></td><td class=SDescription>Specifies if the default file for a given basename should be loaded. </td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxResources.loadDefaultBundle" >loadDefaultBundle</a></td><td class=SDescription>Specifies if the specific language file file for a given basename should be loaded. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxResources.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxResources.isBundleSupported" >isBundleSupported</a></td><td class=SDescription>Hook for subclassers to disable support for a given language. </td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxResources.getDefaultBundle" id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">getDefaultBundle</a></td><td class=SDescription>Hook for subclassers to return the URL for the special bundle. </td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxResources.getSpecialBundle" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">getSpecialBundle</a></td><td class=SDescription>Hook for subclassers to return the URL for the special bundle. </td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxResources.add" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">add</a></td><td class=SDescription>Adds the default and current language properties file for the specified basename. </td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxResources.parse" id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">parse</a></td><td class=SDescription>Parses the key, value pairs in the specified text and stores them as local resources.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxResources.get" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">get</a></td><td class=SDescription>Returns the value for the specified resource key.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
&lt;resource basename=&quot;examples/resources/mxWorkflow&quot;/&gt;</pre></blockquote><p>The above element will load examples/resources/mxWorkflow.properties as well as the language specific file for the current language, if it exists.</p><p>Values may contain placeholders of the form {1}...{n} where each placeholder is replaced with the value of the corresponding array element in the params argument passed to <a href="#mxResources.get" class=LFunction id=link8 onMouseOver="ShowTip(event, 'tt5', 'link8')" onMouseOut="HideTip('tt5')">mxResources.get</a>.&nbsp; The placeholder {1} maps to the first element in the array (at index 0).</p><p>See <a href="../mxClient-js.html#mxClient.language" class=LVariable id=link9 onMouseOver="ShowTip(event, 'tt6', 'link9')" onMouseOut="HideTip('tt6')">mxClient.language</a> for more information on specifying the default language or disabling all loading of resources.</p><p>Lines that start with a # sign will be ignored.</p><p>Special characters</p><p>To use unicode characters, use the standard notation (eg.&nbsp; \u8fd1) or %u as a prefix (eg.&nbsp; %u20AC will display a Euro sign).&nbsp; For normal hex encoded strings, use % as a prefix, eg.&nbsp; %F6 will display a <EFBFBD> (&amp;ouml;).</p><p>See <a href="#mxResources.resourcesEncoded" class=LVariable id=link10 onMouseOver="ShowTip(event, 'tt7', 'link10')" onMouseOut="HideTip('tt7')">resourcesEncoded</a> to disable this.&nbsp; If you disable this, make sure that your files are UTF-8 encoded.</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="#mxResources" >mxResources</a></td><td class=SDescription>Implements internationalization. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxResources.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxResources.resources" >resources</a></td><td class=SDescription>Associative array that maps from keys to values.</td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxResources.extension" >extension</a></td><td class=SDescription>Specifies the extension used for language files. </td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxResources.resourcesEncoded" >resourcesEncoded</a></td><td class=SDescription>Specifies whether or not values in resource files are encoded with \u or percentage. </td></tr><tr class="SVariable SIndent2"><td class=SEntry><a href="#mxResources.loadDefaultBundle" >loadDefaultBundle</a></td><td class=SDescription>Specifies if the default file for a given basename should be loaded. </td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxResources.loadDefaultBundle" >loadDefaultBundle</a></td><td class=SDescription>Specifies if the specific language file file for a given basename should be loaded. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxResources.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxResources.isBundleSupported" >isBundleSupported</a></td><td class=SDescription>Hook for subclassers to disable support for a given language. </td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxResources.getDefaultBundle" id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">getDefaultBundle</a></td><td class=SDescription>Hook for subclassers to return the URL for the special bundle. </td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxResources.getSpecialBundle" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">getSpecialBundle</a></td><td class=SDescription>Hook for subclassers to return the URL for the special bundle. </td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxResources.add" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">add</a></td><td class=SDescription>Adds the default and current language properties file for the specified basename. </td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxResources.parse" id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">parse</a></td><td class=SDescription>Parses the key, value pairs in the specified text and stores them as local resources.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxResources.get" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">get</a></td><td class=SDescription>Returns the value for the specified resource key.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxResources.Variables"></a>Variables</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="mxResources.extension"></a>extension</h3><div class=CBody><p>Specifies the extension used for language files.&nbsp; Default is &lsquo;.properties&rsquo;.</p></div></div></div>
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxResources.resourcesEncoded"></a>resourcesEncoded</h3><div class=CBody><p>Specifies whether or not values in resource files are encoded with \u or percentage.&nbsp; Default is true.</p></div></div></div>
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxResources.loadDefaultBundle"></a>loadDefaultBundle</h3><div class=CBody><p>Specifies if the default file for a given basename should be loaded.&nbsp; Default is true.</p></div></div></div>
<div class="CVariable"><div class=CTopic><h3 class=CTitle><a name="mxResources.loadDefaultBundle"></a>loadDefaultBundle</h3><div class=CBody><p>Specifies if the specific language file file for a given basename should be loaded.&nbsp; Default is true.</p></div></div></div>
@ -29,9 +31,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxResources.isBundleSupported"></a>isBundleSupported</h3><div class=CBody><p>Hook for subclassers to disable support for a given language.&nbsp; This implementation always returns true.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>basename</td><td class=CDLDescription>The basename for which the file should be loaded.</td></tr><tr><td class=CDLEntry>lan</td><td class=CDLDescription>The current language.</td></tr></table></div></div></div>
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxResources.getDefaultBundle"></a>getDefaultBundle</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>getDefaultBundle: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Hook for subclassers to return the URL for the special bundle.&nbsp; This implementation returns basename + <a href="#mxResources.extension" class=LVariable id=link10 onMouseOver="ShowTip(event, 'tt7', 'link10')" onMouseOut="HideTip('tt7')">extension</a> or null if <a href="#mxResources.loadDefaultBundle" class=LVariable id=link11 onMouseOver="ShowTip(event, 'tt8', 'link11')" onMouseOut="HideTip('tt8')">loadDefaultBundle</a> is false.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>basename</td><td class=CDLDescription>The basename for which the file should be loaded.</td></tr><tr><td class=CDLEntry>lan</td><td class=CDLDescription>The current language.</td></tr></table></div></div></div>
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxResources.getDefaultBundle"></a>getDefaultBundle</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>getDefaultBundle: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Hook for subclassers to return the URL for the special bundle.&nbsp; This implementation returns basename + <a href="#mxResources.extension" class=LVariable id=link11 onMouseOver="ShowTip(event, 'tt8', 'link11')" onMouseOut="HideTip('tt8')">extension</a> or null if <a href="#mxResources.loadDefaultBundle" class=LVariable id=link12 onMouseOver="ShowTip(event, 'tt9', 'link12')" onMouseOut="HideTip('tt9')">loadDefaultBundle</a> is false.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>basename</td><td class=CDLDescription>The basename for which the file should be loaded.</td></tr><tr><td class=CDLEntry>lan</td><td class=CDLDescription>The current language.</td></tr></table></div></div></div>
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxResources.getSpecialBundle"></a>getSpecialBundle</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>getSpecialBundle: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Hook for subclassers to return the URL for the special bundle.&nbsp; This implementation returns basename + &lsquo;_&rsquo; + lan + <a href="#mxResources.extension" class=LVariable id=link12 onMouseOver="ShowTip(event, 'tt7', 'link12')" onMouseOut="HideTip('tt7')">extension</a> or null if &lt;loadSpecialBundle&gt; is false or lan equals <a href="../mxClient-js.html#mxClient.defaultLanguage" class=LVariable id=link13 onMouseOver="ShowTip(event, 'tt9', 'link13')" onMouseOut="HideTip('tt9')">mxClient.defaultLanguage</a>.</p><p>If &lt;mxResources.languages&gt; is not null and <a href="../mxClient-js.html#mxClient.language" class=LVariable id=link14 onMouseOver="ShowTip(event, 'tt6', 'link14')" onMouseOut="HideTip('tt6')">mxClient.language</a> contains a dash, then this method checks if &lt;isLanguageSupported&gt; returns true for the full language (including the dash).&nbsp; If that returns false the first part of the language (up to the dash) will be tried as an extension.</p><p>If &lt;mxResources.language&gt; is null then the first part of the language is used to maintain backwards compatibility.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>basename</td><td class=CDLDescription>The basename for which the file should be loaded.</td></tr><tr><td class=CDLEntry>lan</td><td class=CDLDescription>The language for which the file should be loaded.</td></tr></table></div></div></div>
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxResources.getSpecialBundle"></a>getSpecialBundle</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>getSpecialBundle: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Hook for subclassers to return the URL for the special bundle.&nbsp; This implementation returns basename + &lsquo;_&rsquo; + lan + <a href="#mxResources.extension" class=LVariable id=link13 onMouseOver="ShowTip(event, 'tt8', 'link13')" onMouseOut="HideTip('tt8')">extension</a> or null if &lt;loadSpecialBundle&gt; is false or lan equals <a href="../mxClient-js.html#mxClient.defaultLanguage" class=LVariable id=link14 onMouseOver="ShowTip(event, 'tt10', 'link14')" onMouseOut="HideTip('tt10')">mxClient.defaultLanguage</a>.</p><p>If &lt;mxResources.languages&gt; is not null and <a href="../mxClient-js.html#mxClient.language" class=LVariable id=link15 onMouseOver="ShowTip(event, 'tt6', 'link15')" onMouseOut="HideTip('tt6')">mxClient.language</a> contains a dash, then this method checks if &lt;isLanguageSupported&gt; returns true for the full language (including the dash).&nbsp; If that returns false the first part of the language (up to the dash) will be tried as an extension.</p><p>If &lt;mxResources.language&gt; is null then the first part of the language is used to maintain backwards compatibility.</p><h4 class=CHeading>Parameters</h4><table border=0 cellspacing=0 cellpadding=0 class=CDescriptionList><tr><td class=CDLEntry>basename</td><td class=CDLDescription>The basename for which the file should be loaded.</td></tr><tr><td class=CDLEntry>lan</td><td class=CDLDescription>The language for which the file should be loaded.</td></tr></table></div></div></div>
<div class="CFunction"><div class=CTopic><h3 class=CTitle><a name="mxResources.add"></a>add</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>add: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote><p>Adds the default and current language properties file for the specified basename.&nbsp; Existing keys are overridden as new files are added.</p><h4 class=CHeading>Example</h4><p>At application startup, additional resources may be added using the following code:</p><blockquote><pre class="prettyprint">mxResources.add('resources/editor');</pre></blockquote></div></div></div>
@ -53,7 +55,7 @@ HideAllBut([10], 13);// --></script></div><!--Menu-->
<!--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>getDefaultBundle: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Hook for subclassers to return the URL for the special bundle. </div></div><div class=CToolTip id="tt2"><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>getSpecialBundle: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Hook for subclassers to return the URL for the special bundle. </div></div><div class=CToolTip id="tt3"><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>add: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds the default and current language properties file for the specified basename. </div></div><div class=CToolTip id="tt4"><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>parse: function(</td><td class=PParameter nowrap>text</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Parses the key, value pairs in the specified text and stores them as local resources.</div></div><div class=CToolTip id="tt5"><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>get: function(</td><td class=PParameter nowrap>key,</td></tr><tr><td></td><td class=PParameter nowrap>params,</td></tr><tr><td></td><td class=PParameter nowrap>defaultValue</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Returns the value for the specified resource key.</div></div><div class=CToolTip id="tt6"><div class=CVariable>Defines the language of the client, eg. </div></div><div class=CToolTip id="tt7"><div class=CVariable>Specifies the extension used for language files. </div></div><div class=CToolTip id="tt8"><div class=CVariable>Specifies if the default file for a given basename should be loaded. </div></div><div class=CToolTip id="tt9"><div class=CVariable>Defines the default language which is used in the common resource files. </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>getDefaultBundle: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Hook for subclassers to return the URL for the special bundle. </div></div><div class=CToolTip id="tt2"><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>getSpecialBundle: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Hook for subclassers to return the URL for the special bundle. </div></div><div class=CToolTip id="tt3"><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>add: function(</td><td class=PParameter nowrap>basename,</td></tr><tr><td></td><td class=PParameter nowrap>lan</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds the default and current language properties file for the specified basename. </div></div><div class=CToolTip id="tt4"><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>parse: function(</td><td class=PParameter nowrap>text</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Parses the key, value pairs in the specified text and stores them as local resources.</div></div><div class=CToolTip id="tt5"><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>get: function(</td><td class=PParameter nowrap>key,</td></tr><tr><td></td><td class=PParameter nowrap>params,</td></tr><tr><td></td><td class=PParameter nowrap>defaultValue</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Returns the value for the specified resource key.</div></div><div class=CToolTip id="tt6"><div class=CVariable>Defines the language of the client, eg. </div></div><div class=CToolTip id="tt7"><div class=CVariable>Specifies whether or not values in resource files are encoded with \u or percentage. </div></div><div class=CToolTip id="tt8"><div class=CVariable>Specifies the extension used for language files. </div></div><div class=CToolTip id="tt9"><div class=CVariable>Specifies if the default file for a given basename should be loaded. </div></div><div class=CToolTip id="tt10"><div class=CVariable>Defines the default language which is used in the common resource files. </div></div><!--END_ND_TOOLTIPS-->

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=link2346 onMouseOver="ShowTip(event, 'tt2343', 'link2346')" onMouseOut="HideTip('tt2343')" class=IParent>mxPath</a><a href="../files/util/mxSvgCanvas2D-js.html#mxSvgCanvas2D.quadTo" id=link2347 onMouseOver="ShowTip(event, 'tt2344', 'link2347')" onMouseOut="HideTip('tt2344')" class=IParent>mxSvgCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2348 onMouseOver="ShowTip(event, 'tt2345', 'link2348')" onMouseOut="HideTip('tt2345')" 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=link2357 onMouseOver="ShowTip(event, 'tt2354', 'link2357')" onMouseOut="HideTip('tt2354')" class=IParent>mxPath</a><a href="../files/util/mxSvgCanvas2D-js.html#mxSvgCanvas2D.quadTo" id=link2358 onMouseOver="ShowTip(event, 'tt2355', 'link2358')" onMouseOut="HideTip('tt2355')" class=IParent>mxSvgCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2359 onMouseOver="ShowTip(event, 'tt2356', 'link2359')" onMouseOut="HideTip('tt2356')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt2343"><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="tt2344"><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="tt2345"><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="tt2354"><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="tt2355"><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="tt2356"><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

View File

@ -189,7 +189,7 @@ var indexSectionsWithContent = {
"E": true,
"F": true,
"G": true,
"H": false,
"H": true,
"I": false,
"J": false,
"K": false,

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_ADD><div class=IEntry><a href="javascript:searchResults.Toggle('SR_ADD')" class=ISymbol>ADD</a><div class=ISubIndex><a href="../files/handler/mxSelectionCellsHandler-js.html#mxSelectionCellsHandler.mxEvent.ADD" target=_parent class=IParent>mxSelectionCellsHandler.<wbr>mxEvent</a><a href="../files/util/mxUndoManager-js.html#mxUndoManager.mxEvent.ADD" target=_parent class=IParent>mxUndoManager.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_ADD_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.ADD_CELLS" target=_parent class=ISymbol>ADD_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ADD_undOVERLAY><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.ADD_OVERLAY" target=_parent class=ISymbol>ADD_OVERLAY</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ADD_undVERTEX><div class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.ADD_VERTEX" target=_parent class=ISymbol>ADD_VERTEX</a>, <span class=IParent>mxEditor.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_AFTER_undADD_undVERTEX><div class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.AFTER_ADD_VERTEX" target=_parent class=ISymbol>AFTER_ADD_VERTEX</a>, <span class=IParent>mxEditor.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ALIGN_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.ALIGN_CELLS" target=_parent class=ISymbol>ALIGN_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_ACTIVATE><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.ACTIVATE" target=_parent class=ISymbol>ACTIVATE</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ADD><div class=IEntry><a href="javascript:searchResults.Toggle('SR_ADD')" class=ISymbol>ADD</a><div class=ISubIndex><a href="../files/handler/mxSelectionCellsHandler-js.html#mxSelectionCellsHandler.mxEvent.ADD" target=_parent class=IParent>mxSelectionCellsHandler.<wbr>mxEvent</a><a href="../files/util/mxUndoManager-js.html#mxUndoManager.mxEvent.ADD" target=_parent class=IParent>mxUndoManager.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_ADD_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.ADD_CELLS" target=_parent class=ISymbol>ADD_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ADD_undOVERLAY><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.ADD_OVERLAY" target=_parent class=ISymbol>ADD_OVERLAY</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ADD_undVERTEX><div class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.ADD_VERTEX" target=_parent class=ISymbol>ADD_VERTEX</a>, <span class=IParent>mxEditor.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_AFTER_undADD_undVERTEX><div class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.AFTER_ADD_VERTEX" target=_parent class=ISymbol>AFTER_ADD_VERTEX</a>, <span class=IParent>mxEditor.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ALIGN_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.ALIGN_CELLS" target=_parent class=ISymbol>ALIGN_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_CELL_undCONNECTED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELL_CONNECTED" target=_parent class=ISymbol>CELL_CONNECTED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undADDED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_ADDED" target=_parent class=ISymbol>CELLS_ADDED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undFOLDED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_FOLDED" target=_parent class=ISymbol>CELLS_FOLDED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undMOVED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_MOVED" target=_parent class=ISymbol>CELLS_MOVED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undORDERED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_ORDERED" target=_parent class=ISymbol>CELLS_ORDERED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undREMOVED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_REMOVED" target=_parent class=ISymbol>CELLS_REMOVED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undRESIZED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_RESIZED" target=_parent class=ISymbol>CELLS_RESIZED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CHANGE><div class=IEntry><a href="javascript:searchResults.Toggle('SR_CHANGE')" class=ISymbol>CHANGE</a><div class=ISubIndex><a href="../files/model/mxGraphModel-js.html#mxGraphModel.mxEvent.CHANGE" target=_parent class=IParent>mxGraphModel.<wbr>mxEvent</a><a href="../files/view/mxGraphSelectionModel-js.html#mxGraphSelectionModel.mxEvent.CHANGE" target=_parent class=IParent>mxGraphSelectionModel.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_CLEAR><div class=IEntry><a href="../files/util/mxUndoManager-js.html#mxUndoManager.mxEvent.CLEAR" target=_parent class=ISymbol>CLEAR</a>, <span class=IParent>mxUndoManager.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CLICK><div class=IEntry><a href="javascript:searchResults.Toggle('SR_CLICK')" class=ISymbol>CLICK</a><div class=ISubIndex><a href="../files/view/mxCellOverlay-js.html#mxCellOverlay.mxEvent.CLICK" target=_parent class=IParent>mxCellOverlay.<wbr>mxEvent</a><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CLICK" target=_parent class=IParent>mxGraph.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_CONNECT><div class=IEntry><a href="javascript:searchResults.Toggle('SR_CONNECT')" class=ISymbol>CONNECT</a><div class=ISubIndex><a href="../files/handler/mxConnectionHandler-js.html#mxConnectionHandler.mxEvent.CONNECT" target=_parent class=IParent>mxConnectionHandler.<wbr>mxEvent</a><a href="../files/util/mxSession-js.html#mxSession.mxEvent.CONNECT" target=_parent class=IParent>mxSession.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_CONNECT_undCELL><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CONNECT_CELL" target=_parent class=ISymbol>CONNECT_CELL</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_CELL_undCONNECTED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELL_CONNECTED" target=_parent class=ISymbol>CELL_CONNECTED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undADDED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_ADDED" target=_parent class=ISymbol>CELLS_ADDED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undFOLDED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_FOLDED" target=_parent class=ISymbol>CELLS_FOLDED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undMOVED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_MOVED" target=_parent class=ISymbol>CELLS_MOVED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undORDERED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_ORDERED" target=_parent class=ISymbol>CELLS_ORDERED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undREMOVED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_REMOVED" target=_parent class=ISymbol>CELLS_REMOVED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CELLS_undRESIZED><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CELLS_RESIZED" target=_parent class=ISymbol>CELLS_RESIZED</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CHANGE><div class=IEntry><a href="javascript:searchResults.Toggle('SR_CHANGE')" class=ISymbol>CHANGE</a><div class=ISubIndex><a href="../files/model/mxGraphModel-js.html#mxGraphModel.mxEvent.CHANGE" target=_parent class=IParent>mxGraphModel.<wbr>mxEvent</a><a href="../files/view/mxGraphSelectionModel-js.html#mxGraphSelectionModel.mxEvent.CHANGE" target=_parent class=IParent>mxGraphSelectionModel.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_CLEAR><div class=IEntry><a href="../files/util/mxUndoManager-js.html#mxUndoManager.mxEvent.CLEAR" target=_parent class=ISymbol>CLEAR</a>, <span class=IParent>mxUndoManager.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CLICK><div class=IEntry><a href="javascript:searchResults.Toggle('SR_CLICK')" class=ISymbol>CLICK</a><div class=ISubIndex><a href="../files/view/mxCellOverlay-js.html#mxCellOverlay.mxEvent.CLICK" target=_parent class=IParent>mxCellOverlay.<wbr>mxEvent</a><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CLICK" target=_parent class=IParent>mxGraph.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_CLOSE><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.CLOSE" target=_parent class=ISymbol>CLOSE</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_CONNECT><div class=IEntry><a href="javascript:searchResults.Toggle('SR_CONNECT')" class=ISymbol>CONNECT</a><div class=ISubIndex><a href="../files/handler/mxConnectionHandler-js.html#mxConnectionHandler.mxEvent.CONNECT" target=_parent class=IParent>mxConnectionHandler.<wbr>mxEvent</a><a href="../files/util/mxSession-js.html#mxSession.mxEvent.CONNECT" target=_parent class=IParent>mxSession.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_CONNECT_undCELL><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.CONNECT_CELL" target=_parent class=ISymbol>CONNECT_CELL</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_DISCONNECT><div class=IEntry><a href="../files/util/mxSession-js.html#mxSession.mxEvent.DISCONNECT" target=_parent class=ISymbol>DISCONNECT</a>, <span class=IParent>mxSession.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_DOUBLE_undCLICK><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.DOUBLE_CLICK" target=_parent class=ISymbol>DOUBLE_CLICK</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_DESTROY><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.DESTROY" target=_parent class=ISymbol>DESTROY</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_DISCONNECT><div class=IEntry><a href="../files/util/mxSession-js.html#mxSession.mxEvent.DISCONNECT" target=_parent class=ISymbol>DISCONNECT</a>, <span class=IParent>mxSession.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_DOUBLE_undCLICK><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.DOUBLE_CLICK" target=_parent class=ISymbol>DOUBLE_CLICK</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

View File

@ -0,0 +1,20 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
<!-- Generated by Natural Docs, version 1.5 -->
<!-- http://www.naturaldocs.org -->
<!-- saved from url=(0026)http://www.naturaldocs.org -->
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_HIDE><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.HIDE" target=_parent class=ISymbol>HIDE</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");
searchResults.Search();
--></script></div><script language=JavaScript><!--
if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_MARK><div class=IEntry><a href="../files/handler/mxCellMarker-js.html#mxCellMarker.mxEvent.MARK" target=_parent class=ISymbol>MARK</a>, <span class=IParent>mxCellMarker.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_MOVE_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.MOVE_CELLS" target=_parent class=ISymbol>MOVE_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_MARK><div class=IEntry><a href="../files/handler/mxCellMarker-js.html#mxCellMarker.mxEvent.MARK" target=_parent class=ISymbol>MARK</a>, <span class=IParent>mxCellMarker.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_MAXIMIZE><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.MAXIMIZE" target=_parent class=ISymbol>MAXIMIZE</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_MINIMIZE><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.MINIMIZE" target=_parent class=ISymbol>MINIMIZE</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_MOVE><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.MOVE" target=_parent class=ISymbol>MOVE</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_MOVE_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.MOVE_CELLS" target=_parent class=ISymbol>MOVE_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_MOVE_undEND><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.MOVE_END" target=_parent class=ISymbol>MOVE_END</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_MOVE_undSTART><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.MOVE_START" target=_parent class=ISymbol>MOVE_START</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_NOTIFY><div class=IEntry><a href="javascript:searchResults.Toggle('SR_NOTIFY')" class=ISymbol>NOTIFY</a><div class=ISubIndex><a href="../files/model/mxGraphModel-js.html#mxGraphModel.mxEvent.NOTIFY" target=_parent class=IParent>mxGraphModel.<wbr>mxEvent</a><a href="../files/util/mxSession-js.html#mxSession.mxEvent.NOTIFY" target=_parent class=IParent>mxSession.<wbr>mxEvent</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_NORMALIZE><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.NORMALIZE" target=_parent class=ISymbol>NORMALIZE</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_NOTIFY><div class=IEntry><a href="javascript:searchResults.Toggle('SR_NOTIFY')" class=ISymbol>NOTIFY</a><div class=ISubIndex><a href="../files/model/mxGraphModel-js.html#mxGraphModel.mxEvent.NOTIFY" target=_parent class=IParent>mxGraphModel.<wbr>mxEvent</a><a href="../files/util/mxSession-js.html#mxSession.mxEvent.NOTIFY" target=_parent class=IParent>mxSession.<wbr>mxEvent</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_RECEIVE><div class=IEntry><a href="../files/util/mxSession-js.html#mxSession.mxEvent.RECEIVE" target=_parent class=ISymbol>RECEIVE</a>, <span class=IParent>mxSession.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REDO><div class=IEntry><a href="../files/util/mxUndoManager-js.html#mxUndoManager.mxEvent.REDO" target=_parent class=ISymbol>REDO</a>, <span class=IParent>mxUndoManager.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REFRESH><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.REFRESH" target=_parent class=ISymbol>REFRESH</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REMOVE><div class=IEntry><a href="../files/handler/mxSelectionCellsHandler-js.html#mxSelectionCellsHandler.mxEvent.REMOVE" target=_parent class=ISymbol>REMOVE</a>, <span class=IParent>mxSelectionCellsHandler.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REMOVE_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.REMOVE_CELLS" target=_parent class=ISymbol>REMOVE_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REMOVE_undCELLS_undFROM_undPARENT><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.REMOVE_CELLS_FROM_PARENT" target=_parent class=ISymbol>REMOVE_CELLS_FROM_PARENT</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REMOVE_undOVERLAY><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.REMOVE_OVERLAY" target=_parent class=ISymbol>REMOVE_OVERLAY</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESET><div class=IEntry><a href="../files/handler/mxConnectionHandler-js.html#mxConnectionHandler.mxEvent.RESET" target=_parent class=ISymbol>RESET</a>, <span class=IParent>mxConnectionHandler.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESIZE_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.RESIZE_CELLS" target=_parent class=ISymbol>RESIZE_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESUME><div class=IEntry><a href="../files/util/mxSession-js.html#mxSession.mxEvent.RESUME" target=_parent class=ISymbol>RESUME</a>, <span class=IParent>mxSession.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ROOT><div class=IEntry><a href="javascript:searchResults.Toggle('SR_ROOT')" class=ISymbol>ROOT</a><div class=ISubIndex><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.ROOT" target=_parent class=IParent>mxEditor.<wbr>mxEvent</a><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.ROOT" target=_parent class=IParent>mxGraph.<wbr>mxEvent</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_RECEIVE><div class=IEntry><a href="../files/util/mxSession-js.html#mxSession.mxEvent.RECEIVE" target=_parent class=ISymbol>RECEIVE</a>, <span class=IParent>mxSession.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REDO><div class=IEntry><a href="../files/util/mxUndoManager-js.html#mxUndoManager.mxEvent.REDO" target=_parent class=ISymbol>REDO</a>, <span class=IParent>mxUndoManager.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REFRESH><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.REFRESH" target=_parent class=ISymbol>REFRESH</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REMOVE><div class=IEntry><a href="../files/handler/mxSelectionCellsHandler-js.html#mxSelectionCellsHandler.mxEvent.REMOVE" target=_parent class=ISymbol>REMOVE</a>, <span class=IParent>mxSelectionCellsHandler.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REMOVE_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.REMOVE_CELLS" target=_parent class=ISymbol>REMOVE_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REMOVE_undCELLS_undFROM_undPARENT><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.REMOVE_CELLS_FROM_PARENT" target=_parent class=ISymbol>REMOVE_CELLS_FROM_PARENT</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_REMOVE_undOVERLAY><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.REMOVE_OVERLAY" target=_parent class=ISymbol>REMOVE_OVERLAY</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESET><div class=IEntry><a href="../files/handler/mxConnectionHandler-js.html#mxConnectionHandler.mxEvent.RESET" target=_parent class=ISymbol>RESET</a>, <span class=IParent>mxConnectionHandler.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESIZE><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.RESIZE" target=_parent class=ISymbol>RESIZE</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESIZE_undCELLS><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.RESIZE_CELLS" target=_parent class=ISymbol>RESIZE_CELLS</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESIZE_undEND><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.RESIZE_END" target=_parent class=ISymbol>RESIZE_END</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESIZE_undSTART><div class=IEntry><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.RESIZE_START" target=_parent class=ISymbol>RESIZE_START</a>, <span class=IParent>mxWindow.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_RESUME><div class=IEntry><a href="../files/util/mxSession-js.html#mxSession.mxEvent.RESUME" target=_parent class=ISymbol>RESUME</a>, <span class=IParent>mxSession.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_ROOT><div class=IEntry><a href="javascript:searchResults.Toggle('SR_ROOT')" class=ISymbol>ROOT</a><div class=ISubIndex><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.ROOT" target=_parent class=IParent>mxEditor.<wbr>mxEvent</a><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.ROOT" target=_parent class=IParent>mxGraph.<wbr>mxEvent</a></div></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_SAVE><div class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.SAVE" target=_parent class=ISymbol>SAVE</a>, <span class=IParent>mxEditor.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SCALE><div class=IEntry><a href="../files/view/mxGraphView-js.html#mxGraphView.mxEvent.SCALE" target=_parent class=ISymbol>SCALE</a>, <span class=IParent>mxGraphView.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SCALE_undAND_undTRANSLATE><div class=IEntry><a href="../files/view/mxGraphView-js.html#mxGraphView.mxEvent.SCALE_AND_TRANSLATE" target=_parent class=ISymbol>SCALE_AND_TRANSLATE</a>, <span class=IParent>mxGraphView.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SELECT><div class=IEntry><a href="../files/util/mxToolbar-js.html#mxToolbar.mxEvent.SELECT" target=_parent class=ISymbol>SELECT</a>, <span class=IParent>mxToolbar.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SESSION><div class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.SESSION" target=_parent class=ISymbol>SESSION</a>, <span class=IParent>mxEditor.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SHOW><div class=IEntry><a href="../files/util/mxPopupMenu-js.html#mxPopupMenu.mxEvent.SHOW" target=_parent class=ISymbol>SHOW</a>, <span class=IParent>mxPopupMenu.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SIZE><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.SIZE" target=_parent class=ISymbol>SIZE</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SPLIT_undEDGE><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.SPLIT_EDGE" target=_parent class=ISymbol>SPLIT_EDGE</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_START><div class=IEntry><a href="../files/handler/mxConnectionHandler-js.html#mxConnectionHandler.mxEvent.START" target=_parent class=ISymbol>START</a>, <span class=IParent>mxConnectionHandler.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_START_undEDITING><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.START_EDITING" target=_parent class=ISymbol>START_EDITING</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SUSPEND><div class=IEntry><a href="../files/util/mxSession-js.html#mxSession.mxEvent.SUSPEND" target=_parent class=ISymbol>SUSPEND</a>, <span class=IParent>mxSession.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_SAVE><div class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.SAVE" target=_parent class=ISymbol>SAVE</a>, <span class=IParent>mxEditor.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SCALE><div class=IEntry><a href="../files/view/mxGraphView-js.html#mxGraphView.mxEvent.SCALE" target=_parent class=ISymbol>SCALE</a>, <span class=IParent>mxGraphView.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SCALE_undAND_undTRANSLATE><div class=IEntry><a href="../files/view/mxGraphView-js.html#mxGraphView.mxEvent.SCALE_AND_TRANSLATE" target=_parent class=ISymbol>SCALE_AND_TRANSLATE</a>, <span class=IParent>mxGraphView.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SELECT><div class=IEntry><a href="../files/util/mxToolbar-js.html#mxToolbar.mxEvent.SELECT" target=_parent class=ISymbol>SELECT</a>, <span class=IParent>mxToolbar.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SESSION><div class=IEntry><a href="../files/editor/mxEditor-js.html#mxEditor.mxEvent.SESSION" target=_parent class=ISymbol>SESSION</a>, <span class=IParent>mxEditor.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SHOW><div class=IEntry><a href="javascript:searchResults.Toggle('SR_SHOW')" class=ISymbol>SHOW</a><div class=ISubIndex><a href="../files/util/mxPopupMenu-js.html#mxPopupMenu.mxEvent.SHOW" target=_parent class=IParent>mxPopupMenu.<wbr>mxEvent</a><a href="../files/util/mxWindow-js.html#mxWindow.mxEvent.SHOW" target=_parent class=IParent>mxWindow.<wbr>mxEvent</a></div></div></div><div class=SRResult id=SR_SIZE><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.SIZE" target=_parent class=ISymbol>SIZE</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SPLIT_undEDGE><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.SPLIT_EDGE" target=_parent class=ISymbol>SPLIT_EDGE</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_START><div class=IEntry><a href="../files/handler/mxConnectionHandler-js.html#mxConnectionHandler.mxEvent.START" target=_parent class=ISymbol>START</a>, <span class=IParent>mxConnectionHandler.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_START_undEDITING><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.mxEvent.START_EDITING" target=_parent class=ISymbol>START_EDITING</a>, <span class=IParent>mxGraph.<wbr>mxEvent</span></div></div><div class=SRResult id=SR_SUSPEND><div class=IEntry><a href="../files/util/mxSession-js.html#mxSession.mxEvent.SUSPEND" target=_parent class=ISymbol>SUSPEND</a>, <span class=IParent>mxSession.<wbr>mxEvent</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_zoom><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoom" target=_parent class=ISymbol>zoom</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomActual><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomActual" target=_parent class=ISymbol>zoomActual</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomIn><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomIn" target=_parent class=ISymbol>zoomIn</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomOut><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomOut" target=_parent class=ISymbol>zoomOut</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomTo><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomTo" target=_parent class=ISymbol>zoomTo</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_zoom><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoom" target=_parent class=ISymbol>zoom</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomActual><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomActual" target=_parent class=ISymbol>zoomActual</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomIn><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomIn" target=_parent class=ISymbol>zoomIn</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomOut><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomOut" target=_parent class=ISymbol>zoomOut</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomTo><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomTo" target=_parent class=ISymbol>zoomTo</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomToRect><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomToRect" target=_parent class=ISymbol>zoomToRect</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

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,7 +11,7 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_zIndex><div class=IEntry><a href="javascript:searchResults.Toggle('SR_zIndex')" class=ISymbol>zIndex</a><div class=ISubIndex><a href="../files/util/mxPopupMenu-js.html#mxPopupMenu.zIndex" target=_parent class=IParent>mxPopupMenu</a><a href="../files/handler/mxTooltipHandler-js.html#mxTooltipHandler.zIndex" target=_parent class=IParent>mxTooltipHandler</a></div></div></div><div class=SRResult id=SR_zoom><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoom" target=_parent class=ISymbol>zoom</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomActual><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomActual" target=_parent class=ISymbol>zoomActual</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomFactor><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomFactor" target=_parent class=ISymbol>zoomFactor</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomIn><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomIn" target=_parent class=ISymbol>zoomIn</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomOut><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomOut" target=_parent class=ISymbol>zoomOut</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomTo><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomTo" target=_parent class=ISymbol>zoomTo</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_zIndex><div class=IEntry><a href="javascript:searchResults.Toggle('SR_zIndex')" class=ISymbol>zIndex</a><div class=ISubIndex><a href="../files/util/mxPopupMenu-js.html#mxPopupMenu.zIndex" target=_parent class=IParent>mxPopupMenu</a><a href="../files/handler/mxTooltipHandler-js.html#mxTooltipHandler.zIndex" target=_parent class=IParent>mxTooltipHandler</a></div></div></div><div class=SRResult id=SR_zoom><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoom" target=_parent class=ISymbol>zoom</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomActual><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomActual" target=_parent class=ISymbol>zoomActual</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomFactor><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomFactor" target=_parent class=ISymbol>zoomFactor</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomIn><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomIn" target=_parent class=ISymbol>zoomIn</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomOut><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomOut" target=_parent class=ISymbol>zoomOut</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomTo><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomTo" target=_parent class=ISymbol>zoomTo</a>, <span class=IParent>mxGraph</span></div></div><div class=SRResult id=SR_zoomToRect><div class=IEntry><a href="../files/view/mxGraph-js.html#mxGraph.zoomToRect" target=_parent class=ISymbol>zoomToRect</a>, <span class=IParent>mxGraph</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults", "HTML");

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.10.3.2 &ndash; 28. September 2012</p>
<p>mxGraph Version 1.10.4.0 &ndash; 29. October 2012</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.10.3.2 &ndash; 28. September 2012</p>
<p>JGraphX Version 1.10.4.0 &ndash; 29. October 2012</p>
<p>Copyright (c) JGraph Ltd 2006-2012</p>
<br/>
<p>All rights reserved. No part of this publication may be

View File

@ -1,6 +1,6 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><title>/home/gaudenz/project/mxgraph/build/mxgraph/php/src/canvas/mxGdCanvas.php</title><link rel="stylesheet" type="text/css" href="../../styles/main.css"><script language=JavaScript src="../../javascript/main.js"></script><script language=JavaScript src="../../javascript/prettify.js"></script><script language=JavaScript src="../../javascript/searchdata.js"></script></head><body class="ContentPage" onLoad="NDOnLoad();prettyPrint();"><script language=JavaScript><!--
<html><head><title>/home/david/project/mxgraph/build/mxgraph/php/src/canvas/mxGdCanvas.php</title><link rel="stylesheet" type="text/css" href="../../styles/main.css"><script language=JavaScript src="../../javascript/main.js"></script><script language=JavaScript src="../../javascript/prettify.js"></script><script language=JavaScript src="../../javascript/searchdata.js"></script></head><body class="ContentPage" onLoad="NDOnLoad();prettyPrint();"><script language=JavaScript><!--
if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
<!-- Generated by Natural Docs, version 1.5 -->

View File

@ -78,7 +78,7 @@
<tr><td class="indexkey"><a class="el" href="classcom_1_1mxgraph_1_1mxUtils.html">com::mxgraph::mxUtils</a></td><td class="indexvalue">Contains various helper methods for use with <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html" title="Implements a graph object that allows to create diagrams from a graph model and stylesheet...">mxGraph</a> </td></tr>
</table>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -39,7 +39,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html#ab95273a90d8165c4925b4141754bc730">Translate</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html">com::mxgraph::mxBasicCanvas</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html#aa71888f9cebf04ac84e71c302f4124f8">translate</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html">com::mxgraph::mxBasicCanvas</a></td><td><code> [protected]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -312,7 +312,7 @@ Inheritance diagram for com::mxgraph::mxBasicCanvas:</div>
<li>src/canvas/mxBasicCanvas.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -76,7 +76,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html#ac5c3eb4463bdcef39e0bc28a71647e49">visible</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html">com::mxgraph::mxCell</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html#a4ff3745efccdf976c50c60440110384e">Visible</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCell.html">com::mxgraph::mxCell</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -1256,7 +1256,7 @@ Inheritance diagram for com::mxgraph::mxCell:</div>
<li>src/model/mxCell.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -69,7 +69,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html#abc3bef1feb53dc34ed9e8ba93da5edd1">WriteComplexAttribute</a>(mxCodec enc, Object obj, string attr, Object value, XmlNode node)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html">com::mxgraph::mxObjectCodec</a></td><td><code> [inline, protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html#a7831f956126ef0b5da4920824d9b9bb5">WritePrimitiveAttribute</a>(mxCodec enc, Object obj, string attr, Object value, XmlNode node)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxObjectCodec.html">com::mxgraph::mxObjectCodec</a></td><td><code> [inline, protected]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -73,7 +73,7 @@ Inheritance diagram for com::mxgraph::mxCellCodec:</div>
<li>src/io/mxCellCodec.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -31,7 +31,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html#a8308de65cdb622585ffdf7a5cb05a8a8">PATH_SEPARATOR</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html">com::mxgraph::mxCellPath</a></td><td><code> [static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html#ad5059bd5081b1a2f127eb95cc63b51dd">Resolve</a>(mxICell root, string path)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellPath.html">com::mxgraph::mxCellPath</a></td><td><code> [inline, static]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -157,7 +157,7 @@
<li>src/model/mxCellPath.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -30,7 +30,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html#afc487aac0fb7931ae14c2e0c0d62704b">CreateImage</a>(mxGraph graph, Object[] cells, double scale, Color?background, bool antiAlias, mxRectangle clip, mxGdiCanvas graphicsCanvas)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html">com::mxgraph::mxCellRenderer</a></td><td><code> [inline, static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html#a2008e95a7cd828b21771613316fe8f37">DrawCells</a>(mxGraph graph, Object[] cells, double scale, mxRectangle clip, CanvasFactory factory)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer.html">com::mxgraph::mxCellRenderer</a></td><td><code> [inline, static]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -212,7 +212,7 @@
<li>src/utils/mxCellRenderer.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -28,7 +28,7 @@
<h1>com::mxgraph::mxCellRenderer::CanvasFactory Member List</h1>This is the complete list of members for <a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html">com::mxgraph::mxCellRenderer::CanvasFactory</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html#acae5f43ac3665c8cd4b4d22c555bca75">CreateCanvas</a>(int width, int height)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1CanvasFactory.html">com::mxgraph::mxCellRenderer::CanvasFactory</a></td><td><code> [pure virtual]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -85,7 +85,7 @@ Inheritance diagram for com::mxgraph::mxCellRenderer::CanvasFactory:</div>
<li>src/utils/mxCellRenderer.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -32,7 +32,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html#ab7ce28796bb23a7bc25e99255f7faa02">graphicsCanvas</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html">com::mxgraph::mxCellRenderer::ImageCanvasFactory</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html#ad81144814ab6cdc9664eb28cd63f8373">ImageCanvasFactory</a>(mxGdiCanvas graphicsCanvas, Color?background, bool antiAlias)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCellRenderer_1_1ImageCanvasFactory.html">com::mxgraph::mxCellRenderer::ImageCanvasFactory</a></td><td><code> [inline]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -184,7 +184,7 @@ Inheritance diagram for com::mxgraph::mxCellRenderer::ImageCanvasFactory:</div>
<li>src/utils/mxCellRenderer.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -81,7 +81,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html#a67b180bcd4e2e691c9a0c7ed38c16c38">Y</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">com::mxgraph::mxPoint</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html#a48641b42a2187e4d6fedca61c359be77">y</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxPoint.html">com::mxgraph::mxPoint</a></td><td><code> [protected]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:50 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -633,7 +633,7 @@ Inheritance diagram for com::mxgraph::mxCellState:</div>
<li>src/view/mxCellState.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:50 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -49,7 +49,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html#a65dacbf11b9be370b293b8256ef116fe">Reference</a>(Object obj)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html">com::mxgraph::mxCodec</a></td><td><code> [inline]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html#a155ebb610b21e83dfc28eb30ace11dfa">SetAttribute</a>(XmlNode node, string attribute, Object value)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCodec.html">com::mxgraph::mxCodec</a></td><td><code> [inline, static]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -677,7 +677,7 @@
<li>src/io/mxCodec.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -37,7 +37,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCodecRegistry.html#a705daf930467bc4a397c31a97f735449">namespaces</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCodecRegistry.html">com::mxgraph::mxCodecRegistry</a></td><td><code> [protected, static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxCodecRegistry.html#acb79fb9e18c8c61e45eb1c698252a3e3">Register</a>(mxObjectCodec codec)</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxCodecRegistry.html">com::mxgraph::mxCodecRegistry</a></td><td><code> [inline, static]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -293,7 +293,7 @@
<li>src/io/mxCodecRegistry.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -34,7 +34,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxConnectionConstraint.html#a1032705c081348cc5b1f07f20d1508ef">Point</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxConnectionConstraint.html">com::mxgraph::mxConnectionConstraint</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxConnectionConstraint.html#ae0735f826168921bcf66d7ee7617bf62">point</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxConnectionConstraint.html">com::mxgraph::mxConnectionConstraint</a></td><td><code> [protected]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:50 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -195,7 +195,7 @@
<li>src/view/mxConnectionConstraint.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:50 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -174,7 +174,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxConstants.html#a6d76138f18fdcaeb174ee0409644ddf1">STYLE_WHITE_SPACE</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxConstants.html">com::mxgraph::mxConstants</a></td><td><code> [static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxConstants.html#a386f9b5690337d6a92bf57b7672ab492">W3C_SHADOWCOLOR</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxConstants.html">com::mxgraph::mxConstants</a></td><td><code> [static]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:50 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -2555,7 +2555,7 @@
<li>src/utils/mxConstants.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:50 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -32,7 +32,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxEdgeStyle.html#a67fb360a6331b9ec3b65f0f1cfcb161d">SideToSide</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxEdgeStyle.html">com::mxgraph::mxEdgeStyle</a></td><td><code> [static]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxEdgeStyle.html#a9c046cb096d401b3665d2ccc096bf145">TopToBottom</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxEdgeStyle.html">com::mxgraph::mxEdgeStyle</a></td><td><code> [static]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:50 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -127,7 +127,7 @@
<li>src/view/mxEdgeStyle.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:50 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -60,7 +60,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxFastOrganicLayout.html#ab361f5308d1d48d3de5f5f4520a37b58">temperature</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxFastOrganicLayout.html">com::mxgraph::mxFastOrganicLayout</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxFastOrganicLayout.html#a46527e41184476f1b59fe00ca1218dd1">vertexArray</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxFastOrganicLayout.html">com::mxgraph::mxFastOrganicLayout</a></td><td><code> [protected]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -702,7 +702,7 @@ Inheritance diagram for com::mxgraph::mxFastOrganicLayout:</div>
<li>src/layout/mxFastOrganicLayout.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -65,7 +65,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html#ab95273a90d8165c4925b4141754bc730">Translate</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html">com::mxgraph::mxBasicCanvas</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html#aa71888f9cebf04ac84e71c302f4124f8">translate</a></td><td><a class="el" href="classcom_1_1mxgraph_1_1mxBasicCanvas.html">com::mxgraph::mxBasicCanvas</a></td><td><code> [protected]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -1434,7 +1434,7 @@ Inheritance diagram for com::mxgraph::mxGdiCanvas:</div>
<li>src/canvas/mxGdiCanvas.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -87,7 +87,7 @@
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D.html#a8f3187310e70282e8d2c9a662e8ea92b">UpdateFont</a>()</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D.html">com::mxgraph::mxGdiCanvas2D</a></td><td><code> [inline, protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D.html#a97a780d6f3b4b24f6bc62ad524cccca4">UpdatePen</a>()</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D.html">com::mxgraph::mxGdiCanvas2D</a></td><td><code> [inline, protected]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -1892,7 +1892,7 @@ Inheritance diagram for com::mxgraph::mxGdiCanvas2D:</div>
<li>src/canvas/mxGdiCanvas2D.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -28,7 +28,7 @@
<h1>com::mxgraph::mxGdiCanvas2D::CanvasState Member List</h1>This is the complete list of members for <a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html">com::mxgraph::mxGdiCanvas2D::CanvasState</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html#a2af4c4098c9d976033aebeb693208633">Clone</a>()</td><td><a class="el" href="classcom_1_1mxgraph_1_1mxGdiCanvas2D_1_1CanvasState.html">com::mxgraph::mxGdiCanvas2D::CanvasState</a></td><td><code> [inline]</code></td></tr>
</table></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

View File

@ -56,7 +56,7 @@
<li>src/canvas/mxGdiCanvas2D.cs</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Sep 28 07:43:43 2012 for mxGraph by&nbsp;
<hr class="footer"/><address style="text-align: right;"><small>Generated on Mon Oct 29 20:11:49 2012 for mxGraph by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>

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