7.3.9 release
This commit is contained in:
parent
8b1b09bff7
commit
2255afcc7b
17 changed files with 1457 additions and 347 deletions
|
@ -1,3 +1,11 @@
|
|||
13-SEP-2017: 7.3.9
|
||||
|
||||
- Fixes missing insert page tab
|
||||
|
||||
12-SEP-2017: 7.3.8
|
||||
|
||||
- Improvements to Gliffy import
|
||||
|
||||
08-SEP-2017: 7.3.7
|
||||
|
||||
- Uses mxGraph 3.7.6 beta 1
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
7.3.7
|
||||
7.3.9
|
|
@ -295,7 +295,7 @@ public class GliffyDiagramConverter
|
|||
}
|
||||
|
||||
// don't collect for swimlanes and mindmaps, their children are treated differently
|
||||
if (object.isGroup() || (object.isLine() && object.hasChildren()))
|
||||
if (object.isGroup() || object.isSelection() || (object.isLine() && object.hasChildren()))
|
||||
{
|
||||
collectVerticesAndConvert(vertices, object.children, object);
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@ import java.util.Set;
|
|||
import com.mxgraph.io.gliffy.importer.PostDeserializer.PostDeserializable;
|
||||
import com.mxgraph.model.mxCell;
|
||||
import com.mxgraph.model.mxGeometry;
|
||||
import com.mxgraph.online.Utils;
|
||||
|
||||
/**
|
||||
* Class representing Gliffy diagram object
|
||||
|
@ -156,6 +157,7 @@ public class GliffyObject implements PostDeserializable
|
|||
SHAPES_COORD_FIX.put("com.gliffy.shape.uml.uml_v2.deployment.node", new double[]{0, -10, 10, 10});
|
||||
SHAPES_COORD_FIX.put("com.gliffy.shape.uml.uml_v2.deployment.device_node", new double[]{0, -10, 10, 10});
|
||||
SHAPES_COORD_FIX.put("com.gliffy.shape.uml.uml_v2.deployment.execution_environment_node", new double[]{0, -10, 10, 10});
|
||||
SHAPES_COORD_FIX.put("com.gliffy.shape.flowchart.flowchart_v1.default.data_storage", new double[]{0, 0, 0.115, 0});
|
||||
}
|
||||
|
||||
public GliffyObject()
|
||||
|
@ -248,6 +250,11 @@ public class GliffyObject implements PostDeserializable
|
|||
//Since we treat text in a different way (added as cell value instead of another child cell, this is probably the best way to detect groups when uid is null)
|
||||
|| (uid == null && hasChildren() && !children.get(0).isText());
|
||||
}
|
||||
|
||||
public boolean isSelection()
|
||||
{
|
||||
return uid.contains("default.selection");
|
||||
}
|
||||
|
||||
public boolean isMindmap()
|
||||
{
|
||||
|
@ -424,6 +431,35 @@ public class GliffyObject implements PostDeserializable
|
|||
child.y += -yMin;
|
||||
}
|
||||
}
|
||||
|
||||
private mxGeometry getAdjustShifts(double[] arr, double x, double y, double w, double h)
|
||||
{
|
||||
double xShift = (Math.abs(arr[0]) < 1 ? w * arr[0] : arr[0]);
|
||||
double yShift = (Math.abs(arr[1]) < 1 ? h * arr[1] : arr[1]);
|
||||
double wShift = (Math.abs(arr[2]) < 1 ? w * arr[2] : arr[2]);
|
||||
double hShift = (Math.abs(arr[3]) < 1 ? h * arr[3] : arr[3]);
|
||||
|
||||
mxGeometry mod = new mxGeometry(x + xShift, y + yShift, w + wShift, h + hShift);
|
||||
|
||||
//TODO test all possible cases!
|
||||
if (rotation > 0)
|
||||
{
|
||||
mxGeometry orig = new mxGeometry(x, y, w, h);
|
||||
|
||||
Utils.rotatedGeometry(orig, rotation, 0, 0);
|
||||
Utils.rotatedGeometry(mod, rotation, 0, 0);
|
||||
|
||||
xShift += mod.getX() - orig.getX();
|
||||
yShift += mod.getY() - orig.getY();
|
||||
}
|
||||
|
||||
mod.setX(xShift);
|
||||
mod.setY(yShift);
|
||||
mod.setWidth(wShift);
|
||||
mod.setHeight(hShift);
|
||||
|
||||
return mod;
|
||||
}
|
||||
|
||||
public void adjustGeo(mxGeometry geo)
|
||||
{
|
||||
|
@ -433,10 +469,12 @@ public class GliffyObject implements PostDeserializable
|
|||
{
|
||||
double x = geo.getX(), y = geo.getY(), w = geo.getWidth(), h = geo.getHeight();
|
||||
|
||||
geo.setX(x + (Math.abs(arr[0]) < 1 ? w * arr[0]: arr[0]));
|
||||
geo.setY(y + (Math.abs(arr[1]) < 1 ? h * arr[1]: arr[1]));
|
||||
geo.setWidth(w + (Math.abs(arr[2]) < 1 ? w * arr[2]: arr[2]));
|
||||
geo.setHeight(h + (Math.abs(arr[3]) < 1 ? h * arr[3]: arr[3]));
|
||||
mxGeometry shifts = getAdjustShifts(arr, x, y, w, h);
|
||||
|
||||
geo.setX(x + shifts.getX());
|
||||
geo.setY(y + shifts.getY());
|
||||
geo.setWidth(w + shifts.getWidth());
|
||||
geo.setHeight(h + shifts.getHeight());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -446,8 +484,10 @@ public class GliffyObject implements PostDeserializable
|
|||
|
||||
if (arr != null)
|
||||
{
|
||||
textObject.x -= (Math.abs(arr[0]) < 1 ? width * arr[0]: arr[0]);
|
||||
textObject.y -= (Math.abs(arr[1]) < 1 ? height * arr[1]: arr[1]);
|
||||
mxGeometry shifts = getAdjustShifts(arr, x, y, width, height);
|
||||
|
||||
textObject.x -= shifts.getX();
|
||||
textObject.y -= shifts.getY();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
CACHE MANIFEST
|
||||
|
||||
# THIS FILE WAS GENERATED. DO NOT MODIFY!
|
||||
# 09/08/2017 09:36 AM
|
||||
# 09/13/2017 10:45 AM
|
||||
|
||||
app.html
|
||||
index.html?offline=1
|
||||
|
|
|
@ -401,7 +401,7 @@
|
|||
</td>
|
||||
<td id="geFooterItem1" align="center" style="width:282px;">
|
||||
<a id="geFooterLink1" title="#1 Rated Confluence Add-on" target="_blank"
|
||||
href="https://marketplace.atlassian.com/plugins/com.mxgraph.confluence.plugins.diagramly/server/overview">
|
||||
href="https://about.draw.io/integrations/confluence-integration/">
|
||||
<img border="0" width="24" height="24" align="absmiddle" style="padding-right:10px;"
|
||||
src="images/logo-confluence.png"/>#1 Rated Confluence App
|
||||
</a>
|
||||
|
|
8
war/js/app.min.js
vendored
8
war/js/app.min.js
vendored
|
@ -6213,7 +6213,7 @@ O.setAttribute("min","1");O.setAttribute("type","number");O.style.width="40px";J
|
|||
L.appendChild(J);L.appendChild(W);N.appendChild(P);N.appendChild(Y);N.appendChild(U);T.appendChild(L);T.appendChild(N);t.appendChild(T);m.appendChild(t);h.appendChild(m);m=document.createElement("div");l=document.createElement("div");l.style.fontWeight="bold";l.style.marginBottom="12px";mxUtils.write(l,mxResources.get("paperSize"));m.appendChild(l);l=document.createElement("div");l.style.marginBottom="12px";var V=PageSetupDialog.addPageFormatPanel(l,"printdialog",a.editor.graph.pageFormat||mxConstants.PAGE_FORMAT_A4_PORTRAIT);
|
||||
m.appendChild(l);l=document.createElement("span");mxUtils.write(l,mxResources.get("pageScale"));m.appendChild(l);var S=document.createElement("input");S.style.cssText="margin:0 8px 0 8px;";S.setAttribute("value","100 %");S.style.width="60px";m.appendChild(S);h.appendChild(m);l=document.createElement("div");l.style.cssText="text-align:right;margin:62px 0 0 0;";m=mxUtils.button(mxResources.get("cancel"),function(){a.hideDialog()});m.className="geBtn";a.editor.cancelFirst&&l.appendChild(m);a.isOffline()||
|
||||
(t=mxUtils.button(mxResources.get("help"),function(){window.open("https://desk.draw.io/support/solutions/articles/16000048947")}),t.className="geBtn",l.appendChild(t));PrintDialog.previewEnabled&&(t=mxUtils.button(mxResources.get("preview"),function(){a.hideDialog();c(!1)}),t.className="geBtn",l.appendChild(t));t=mxUtils.button(mxResources.get(PrintDialog.previewEnabled?"print":"ok"),function(){a.hideDialog();c(!0)});t.className="geBtn gePrimaryBtn";l.appendChild(t);a.editor.cancelFirst||l.appendChild(m);
|
||||
h.appendChild(l);this.container=h}})();(function(){EditorUi.VERSION="7.3.7";EditorUi.compactUi="atlas"!=uiTheme;EditorUi.enableLogging=/.*\.draw\.io$/.test(window.location.hostname);EditorUi.isElectronApp=null!=window&&null!=window.process&&null!=window.process.versions&&null!=window.process.versions.electron;EditorUi.prototype.emptyDiagramXml='<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/></root></mxGraphModel>';EditorUi.prototype.emptyLibraryXml="<mxlibrary>[]</mxlibrary>";EditorUi.prototype.mode=null;EditorUi.prototype.sidebarFooterHeight=
|
||||
h.appendChild(l);this.container=h}})();(function(){EditorUi.VERSION="7.3.9";EditorUi.compactUi="atlas"!=uiTheme;EditorUi.enableLogging=/.*\.draw\.io$/.test(window.location.hostname);EditorUi.isElectronApp=null!=window&&null!=window.process&&null!=window.process.versions&&null!=window.process.versions.electron;EditorUi.prototype.emptyDiagramXml='<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/></root></mxGraphModel>';EditorUi.prototype.emptyLibraryXml="<mxlibrary>[]</mxlibrary>";EditorUi.prototype.mode=null;EditorUi.prototype.sidebarFooterHeight=
|
||||
36;EditorUi.prototype.defaultCustomShapeStyle="shape=stencil(tZRtTsQgEEBPw1+DJR7AoN6DbWftpAgE0Ortd/jYRGq72R+YNE2YgTePloEJGWblgA18ZuKFDcMj5/Sm8boZq+BgjCX4pTyqk6ZlKROitwusOMXKQDODx5iy4pXxZ5qTHiFHawxB0JrQZH7lCabQ0Fr+XWC1/E8zcsT/gAi+Subo2/3Mh6d/oJb5nU1b5tW7r2knautaa3T+U32o7f7vZwpJkaNDLORJjcu7t59m2jXxqX9un+tt022acsfmoKaQZ+vhhswZtS6Ne/ThQGt0IV0N3Yyv6P3CeT9/tHO0XFI5cAE=);whiteSpace=wrap;html=1;";EditorUi.prototype.maxBackgroundSize=1600;EditorUi.prototype.maxImageSize=520;EditorUi.prototype.resampleThreshold=
|
||||
1E5;EditorUi.prototype.maxImageBytes=1E6;EditorUi.prototype.maxBackgroundBytes=25E5;EditorUi.prototype.currentFile=null;EditorUi.prototype.printPdfExport=!1;EditorUi.prototype.pdfPageExport=!0;EditorUi.prototype.formatEnabled="0"!=urlParams.format;(function(){EditorUi.prototype.useCanvasForExport=!1;EditorUi.prototype.jpgSupported=!1;try{var a=document.createElement("canvas"),b=new Image;b.onload=function(){try{a.getContext("2d").drawImage(b,0,0);var e=a.toDataURL("image/png");EditorUi.prototype.useCanvasForExport=
|
||||
null!=e&&6<e.length}catch(n){}};b.src="data:image/svg+xml;base64,"+btoa(unescape(encodeURIComponent('<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1px" height="1px" version="1.1"><foreignObject pointer-events="all" width="1" height="1"><div xmlns="http://www.w3.org/1999/xhtml"></div></foreignObject></svg>')))}catch(m){}try{a=document.createElement("canvas");a.width=a.height=1;var c=a.toDataURL("image/jpeg");EditorUi.prototype.jpgSupported=null!==c.match("image/jpeg")}catch(m){}})();
|
||||
|
@ -7079,9 +7079,9 @@ EditorUi.prototype.createTabContainer=function(){var a=document.createElement("d
|
|||
EditorUi.prototype.updateTabContainer=function(){if(null!=this.tabContainer&&null!=this.pages){var a=this.editor.graph,b=document.createElement("div");b.style.position="relative";b.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";b.style.verticalAlign="top";b.style.height=this.tabContainer.style.height;b.style.whiteSpace="nowrap";b.style.overflow="hidden";b.style.fontSize="12px";b.style.marginLeft="30px";for(var c=this.editor.chromeless?29:59,d=Math.min(140,Math.max(20,(this.tabContainer.clientWidth-
|
||||
c)/this.pages.length)+1),f=null,g=0;g<this.pages.length;g++)mxUtils.bind(this,function(c,d){this.pages[c]==this.currentPage&&(d.style.backgroundColor="#eeeeee",d.style.fontWeight="bold",d.style.borderTopStyle="none");d.setAttribute("draggable","true");mxEvent.addListener(d,"dragstart",mxUtils.bind(this,function(b){a.isEnabled()?(mxClient.IS_FF&&b.dataTransfer.setData("Text","<diagram/>"),f=c):mxEvent.consume(b)}));mxEvent.addListener(d,"dragend",mxUtils.bind(this,function(a){f=null;a.stopPropagation();
|
||||
a.preventDefault()}));mxEvent.addListener(d,"dragover",mxUtils.bind(this,function(a){null!=f&&(a.dataTransfer.dropEffect="move");a.stopPropagation();a.preventDefault()}));mxEvent.addListener(d,"drop",mxUtils.bind(this,function(a){null!=f&&c!=f&&this.movePage(f,c);a.stopPropagation();a.preventDefault()}));b.appendChild(d)})(g,this.createTabForPage(this.pages[g],d,this.pages[g]!=this.currentPage));this.tabContainer.innerHTML="";this.tabContainer.appendChild(b);d=this.createPageMenuTab();this.tabContainer.appendChild(d);
|
||||
d=null;a.isEnabled()&&(d=this.createPageInsertTab(),this.tabContainer.appendChild(d));if(b.clientWidth>this.tabContainer.clientWidth-c){null!=d&&(d.style.position="absolute",d.style.right="0px",b.style.marginRight="30px");var k=this.createControlTab(4," ❮ ");k.style.position="absolute";k.style.right=this.editor.chromeless?"29px":"55px";k.style.fontSize="13pt";this.tabContainer.appendChild(k);var e=this.createControlTab(4," ❯");e.style.position="absolute";e.style.right=
|
||||
this.editor.chromeless?"0px":"29px";e.style.fontSize="13pt";this.tabContainer.appendChild(e);var h=Math.max(0,this.tabContainer.clientWidth-(this.editor.chromeless?86:116));b.style.width=h+"px";mxEvent.addListener(k,"click",mxUtils.bind(this,function(a){b.scrollLeft-=Math.max(20,h-20);mxUtils.setOpacity(k,0<b.scrollLeft?100:50);mxUtils.setOpacity(e,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}));mxUtils.setOpacity(k,0<b.scrollLeft?100:50);mxUtils.setOpacity(e,b.scrollLeft<b.scrollWidth-
|
||||
b.clientWidth?100:50);mxEvent.addListener(e,"click",mxUtils.bind(this,function(a){b.scrollLeft+=Math.max(20,h-20);mxUtils.setOpacity(k,0<b.scrollLeft?100:50);mxUtils.setOpacity(e,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}))}}};
|
||||
d=null;if(1==urlParams.embed||null!=this.getCurrentFile()&&this.getCurrentFile().isEditable())d=this.createPageInsertTab(),this.tabContainer.appendChild(d);if(b.clientWidth>this.tabContainer.clientWidth-c){null!=d&&(d.style.position="absolute",d.style.right="0px",b.style.marginRight="30px");var k=this.createControlTab(4," ❮ ");k.style.position="absolute";k.style.right=this.editor.chromeless?"29px":"55px";k.style.fontSize="13pt";this.tabContainer.appendChild(k);var e=this.createControlTab(4,
|
||||
" ❯");e.style.position="absolute";e.style.right=this.editor.chromeless?"0px":"29px";e.style.fontSize="13pt";this.tabContainer.appendChild(e);var h=Math.max(0,this.tabContainer.clientWidth-(this.editor.chromeless?86:116));b.style.width=h+"px";mxEvent.addListener(k,"click",mxUtils.bind(this,function(a){b.scrollLeft-=Math.max(20,h-20);mxUtils.setOpacity(k,0<b.scrollLeft?100:50);mxUtils.setOpacity(e,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}));mxUtils.setOpacity(k,
|
||||
0<b.scrollLeft?100:50);mxUtils.setOpacity(e,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.addListener(e,"click",mxUtils.bind(this,function(a){b.scrollLeft+=Math.max(20,h-20);mxUtils.setOpacity(k,0<b.scrollLeft?100:50);mxUtils.setOpacity(e,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}))}}};
|
||||
EditorUi.prototype.createTab=function(a){var b=document.createElement("div");b.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";b.style.whiteSpace="nowrap";b.style.boxSizing="border-box";b.style.position="relative";b.style.overflow="hidden";b.style.marginLeft="-1px";b.style.height=this.tabContainer.clientHeight+"px";b.style.padding="8px 4px 8px 4px";b.style.border="1px solid #c0c0c0";b.style.borderBottomStyle="solid";b.style.backgroundColor=this.tabContainer.style.backgroundColor;b.style.cursor=
|
||||
"default";b.style.color="gray";a&&(mxEvent.addListener(b,"mouseenter",mxUtils.bind(this,function(a){this.editor.graph.isMouseDown||(b.style.backgroundColor="#d3d3d3",mxEvent.consume(a))})),mxEvent.addListener(b,"mouseleave",mxUtils.bind(this,function(a){b.style.backgroundColor=this.tabContainer.style.backgroundColor;mxEvent.consume(a)})));return b};
|
||||
EditorUi.prototype.createControlTab=function(a,b){var c=this.createTab(!0);c.style.paddingTop=a+"px";c.style.cursor="pointer";c.style.width="30px";c.style.lineHeight="30px";c.innerHTML=b;null!=c.firstChild&&null!=c.firstChild.style&&mxUtils.setOpacity(c.firstChild,40);return c};
|
||||
|
|
6
war/js/atlas-viewer.min.js
vendored
6
war/js/atlas-viewer.min.js
vendored
|
@ -2917,9 +2917,9 @@ EditorUi.prototype.createTabContainer=function(){var a=document.createElement("d
|
|||
EditorUi.prototype.updateTabContainer=function(){if(null!=this.tabContainer&&null!=this.pages){var a=this.editor.graph,b=document.createElement("div");b.style.position="relative";b.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";b.style.verticalAlign="top";b.style.height=this.tabContainer.style.height;b.style.whiteSpace="nowrap";b.style.overflow="hidden";b.style.fontSize="12px";b.style.marginLeft="30px";for(var e=this.editor.chromeless?29:59,d=Math.min(140,Math.max(20,(this.tabContainer.clientWidth-
|
||||
e)/this.pages.length)+1),k=null,n=0;n<this.pages.length;n++)mxUtils.bind(this,function(c,d){this.pages[c]==this.currentPage&&(d.style.backgroundColor="#eeeeee",d.style.fontWeight="bold",d.style.borderTopStyle="none");d.setAttribute("draggable","true");mxEvent.addListener(d,"dragstart",mxUtils.bind(this,function(b){a.isEnabled()?(mxClient.IS_FF&&b.dataTransfer.setData("Text","<diagram/>"),k=c):mxEvent.consume(b)}));mxEvent.addListener(d,"dragend",mxUtils.bind(this,function(a){k=null;a.stopPropagation();
|
||||
a.preventDefault()}));mxEvent.addListener(d,"dragover",mxUtils.bind(this,function(a){null!=k&&(a.dataTransfer.dropEffect="move");a.stopPropagation();a.preventDefault()}));mxEvent.addListener(d,"drop",mxUtils.bind(this,function(a){null!=k&&c!=k&&this.movePage(k,c);a.stopPropagation();a.preventDefault()}));b.appendChild(d)})(n,this.createTabForPage(this.pages[n],d,this.pages[n]!=this.currentPage));this.tabContainer.innerHTML="";this.tabContainer.appendChild(b);d=this.createPageMenuTab();this.tabContainer.appendChild(d);
|
||||
d=null;a.isEnabled()&&(d=this.createPageInsertTab(),this.tabContainer.appendChild(d));if(b.clientWidth>this.tabContainer.clientWidth-e){null!=d&&(d.style.position="absolute",d.style.right="0px",b.style.marginRight="30px");var m=this.createControlTab(4," ❮ ");m.style.position="absolute";m.style.right=this.editor.chromeless?"29px":"55px";m.style.fontSize="13pt";this.tabContainer.appendChild(m);var c=this.createControlTab(4," ❯");c.style.position="absolute";c.style.right=
|
||||
this.editor.chromeless?"0px":"29px";c.style.fontSize="13pt";this.tabContainer.appendChild(c);var f=Math.max(0,this.tabContainer.clientWidth-(this.editor.chromeless?86:116));b.style.width=f+"px";mxEvent.addListener(m,"click",mxUtils.bind(this,function(a){b.scrollLeft-=Math.max(20,f-20);mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}));mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-
|
||||
b.clientWidth?100:50);mxEvent.addListener(c,"click",mxUtils.bind(this,function(a){b.scrollLeft+=Math.max(20,f-20);mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}))}}};
|
||||
d=null;if(1==urlParams.embed||null!=this.getCurrentFile()&&this.getCurrentFile().isEditable())d=this.createPageInsertTab(),this.tabContainer.appendChild(d);if(b.clientWidth>this.tabContainer.clientWidth-e){null!=d&&(d.style.position="absolute",d.style.right="0px",b.style.marginRight="30px");var m=this.createControlTab(4," ❮ ");m.style.position="absolute";m.style.right=this.editor.chromeless?"29px":"55px";m.style.fontSize="13pt";this.tabContainer.appendChild(m);var c=this.createControlTab(4,
|
||||
" ❯");c.style.position="absolute";c.style.right=this.editor.chromeless?"0px":"29px";c.style.fontSize="13pt";this.tabContainer.appendChild(c);var f=Math.max(0,this.tabContainer.clientWidth-(this.editor.chromeless?86:116));b.style.width=f+"px";mxEvent.addListener(m,"click",mxUtils.bind(this,function(a){b.scrollLeft-=Math.max(20,f-20);mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}));mxUtils.setOpacity(m,
|
||||
0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.addListener(c,"click",mxUtils.bind(this,function(a){b.scrollLeft+=Math.max(20,f-20);mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}))}}};
|
||||
EditorUi.prototype.createTab=function(a){var b=document.createElement("div");b.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";b.style.whiteSpace="nowrap";b.style.boxSizing="border-box";b.style.position="relative";b.style.overflow="hidden";b.style.marginLeft="-1px";b.style.height=this.tabContainer.clientHeight+"px";b.style.padding="8px 4px 8px 4px";b.style.border="1px solid #c0c0c0";b.style.borderBottomStyle="solid";b.style.backgroundColor=this.tabContainer.style.backgroundColor;b.style.cursor=
|
||||
"default";b.style.color="gray";a&&(mxEvent.addListener(b,"mouseenter",mxUtils.bind(this,function(a){this.editor.graph.isMouseDown||(b.style.backgroundColor="#d3d3d3",mxEvent.consume(a))})),mxEvent.addListener(b,"mouseleave",mxUtils.bind(this,function(a){b.style.backgroundColor=this.tabContainer.style.backgroundColor;mxEvent.consume(a)})));return b};
|
||||
EditorUi.prototype.createControlTab=function(a,b){var e=this.createTab(!0);e.style.paddingTop=a+"px";e.style.cursor="pointer";e.style.width="30px";e.style.lineHeight="30px";e.innerHTML=b;null!=e.firstChild&&null!=e.firstChild.style&&mxUtils.setOpacity(e.firstChild,40);return e};
|
||||
|
|
315
war/js/atlas.min.js
vendored
315
war/js/atlas.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
|
@ -942,12 +942,13 @@ EditorUi.prototype.updateTabContainer = function()
|
|||
var insertTab = null;
|
||||
|
||||
// Not chromeless and not read-only file
|
||||
if (graph.isEnabled())
|
||||
if (urlParams['embed'] == 1 || (this.getCurrentFile() != null &&
|
||||
this.getCurrentFile().isEditable()))
|
||||
{
|
||||
insertTab = this.createPageInsertTab();
|
||||
this.tabContainer.appendChild(insertTab);
|
||||
}
|
||||
|
||||
|
||||
if (wrapper.clientWidth > this.tabContainer.clientWidth - btnWidth)
|
||||
{
|
||||
if (insertTab != null)
|
||||
|
|
2
war/js/embed-static.min.js
vendored
2
war/js/embed-static.min.js
vendored
|
@ -184,7 +184,7 @@ f)+"\n"+t+"}":"{"+y.join(",")+"}";f=t;return l}}"function"!==typeof Date.prototy
|
|||
e=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,f,g,h={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},k;"function"!==typeof JSON.stringify&&(JSON.stringify=function(a,b,d){var e;g=f="";if("number"===typeof d)for(e=0;e<d;e+=1)g+=" ";else"string"===typeof d&&(g=d);if((k=b)&&"function"!==typeof b&&("object"!==typeof b||"number"!==typeof b.length))throw Error("JSON.stringify");return c("",{"":a})});
|
||||
"function"!==typeof JSON.parse&&(JSON.parse=function(a,b){function c(a,d){var e,f,g=a[d];if(g&&"object"===typeof g)for(e in g)Object.prototype.hasOwnProperty.call(g,e)&&(f=c(g,e),void 0!==f?g[e]=f:delete g[e]);return b.call(a,d,g)}var e;a=""+a;d.lastIndex=0;d.test(a)&&(a=a.replace(d,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)}));if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,
|
||||
"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return e=eval("("+a+")"),"function"===typeof b?c({"":e},""):e;throw new SyntaxError("JSON.parse");})})();"undefined"===typeof window.mxBasePath&&(window.mxBasePath="https://www.draw.io/mxgraph/");window.mxLoadStylesheets=window.mxLoadStylesheets||!1;window.mxLoadResources=window.mxLoadResources||!1;window.mxLanguage=window.mxLanguage||"en";window.urlParams=window.urlParams||{};window.MAX_REQUEST_SIZE=window.MAX_REQUEST_SIZE||10485760;window.MAX_AREA=window.MAX_AREA||225E6;window.EXPORT_URL=window.EXPORT_URL||"/export";window.SAVE_URL=window.SAVE_URL||"/save";window.OPEN_URL=window.OPEN_URL||"/open";window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||window.RESOURCES_PATH+"/grapheditor";window.STENCIL_PATH=window.STENCIL_PATH||"stencils";window.IMAGE_PATH=window.IMAGE_PATH||"images";
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"7.3.7",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"7.3.9",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
0>navigator.userAgent.indexOf("Edge/"),IS_OP:0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("OPR/"),IS_OT:0<=navigator.userAgent.indexOf("Presto/")&&0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&
|
||||
0>navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_CHROMEAPP:null!=window.chrome&&null!=chrome.app&&null!=chrome.app.runtime,IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&
|
||||
0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")||0<=navigator.userAgent.indexOf("Galeon/")||
|
||||
|
|
307
war/js/extensions.min.js
vendored
307
war/js/extensions.min.js
vendored
|
@ -1,83 +1,115 @@
|
|||
(function(){function h(f){var c=null!=f.Text?f.Text:null!=f.Value?f.Value:f.Lane_0;null==c&&null!=f.State?null!=f.State.t&&(c=f.State):null==c&&null!=f.Note?null!=f.Note.t&&(c=f.Note):null!=f.t&&(c=f);null==c&&null!=f.TextAreas&&null!=f.TextAreas.Text&&null!=f.TextAreas.Text.Value&&null!=f.TextAreas.Text.Value.t&&(c=f.TextAreas.Text.Value);if(null!=c){if(null!=c.t)return c.t=c.t.replace(/</g,"<"),c.t=c.t.replace(/>/g,">"),c.t;if(null!=c.Value&&null!=c.Value.t)return c.Value.t=c.Value.t.replace(/</g,
|
||||
"<"),c.Value.t=c.Value.t.replace(/>/g,">"),c.Value.t}return""}function B(f){return null!=f.Action?f.Action:f}function x(f){if(null!=f.Text){if(null!=f.Text.m)return f.Text.m}else if(null!=f.TextAreas){if(null!=f.TextAreas.Text&&null!=f.TextAreas.Text.Value&&null!=f.TextAreas.Text.Value.m)return f.TextAreas.Text.Value.m}else if(null!=f.m)return f.m;return null}function k(f){return q(f)+p(f)+t(f)+C(f)+D(f)+E(f)+F(f)+G(f)+H(f)+I(f)}function q(f){f=x(f);if(null!=f)for(var c=0;c<f.length;){var a=
|
||||
f[c];if("s"==a.n&&null!=a.v)return"fontSize="+Math.round(.6*a.v)+";";c++}return"fontSize=10;"}function p(f){f=x(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("c"==a.n&&null!=a.v)return f=a.v,"#"!=f.charAt(0)&&(f="#"+f),f=f.substring(0,7),mxConstants.STYLE_FONTCOLOR+"="+f+";";c++}return""}function t(f){f=x(f);if(null!=f){var c=0,a=!1;if(null!=f)for(var g=0;!a&&g<f.length;){var d=f[g];"b"==d.n&&null!=d.v&&d.v&&(a=!0,c+=1);g++}a=!1;if(null!=f)for(g=0;!a&&g<f.length;)d=f[g],"i"==d.n&&null!=d.v&&
|
||||
d.v&&(a=!0,c+=2),g++;a=!1;if(null!=f)for(g=0;!a&&g<f.length;)d=f[g],"u"==d.n&&null!=d.v&&d.v&&(a=!0,c+=4),g++;if(0<c)return"fontStyle="+c+";"}return""}function C(f){f=x(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("a"==a.n&&null!=a.v)return"align="+a.v+";";c++}return"align=center;"}function D(f){var c=x(f);if(null!=c)for(var a=0;a<c.length;){var g=c[a];if("il"==g.n){if(null!=g.v)return"spacingLeft="+.6*g.v+";"}else if("s"==g.n&&"align=center;"!=C(f)&&null!=g.v)return"spacingLeft="+.6*g.v+
|
||||
";";a++}return""}function E(f){f=x(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("ir"==a.n&&null!=a.v)return"spacingRight="+a.v+";";c++}return""}function F(f){f=x(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("mt"==a.n&&null!=a.v)return"spacingTop="+a.v+";";c++}return""}function G(f){f=x(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("mb"==a.n&&null!=a.v)return"spacingBottom="+a.v+";";c++}return""}function H(f){return"number"===typeof f.InsetMargin?"spacing="+parseInt(f.InsetMargin)+
|
||||
";":""}function I(f){return null!=f.Text_VAlign&&"string"===typeof f.Text_VAlign?"verticalAlign="+f.Text_VAlign+";":w(mxConstants.STYLE_VERTICAL_ALIGN,f.TextVAlign,"middle")}function y(f,c){return T.includes(c.Class)?"Venn"==c.Class.substring(0,4)?w(mxConstants.STYLE_STROKECOLOR,f.FillColor.substring(0,7),"#FFFFFF"):"":0==f.LineWidth?mxConstants.STYLE_STROKECOLOR+"=none;":w(mxConstants.STYLE_STROKECOLOR,f.LineColor.substring(0,7),"#000000")}function u(f,c){var a="";U.includes(c.Class)||(a+=w(mxConstants.STYLE_OPACITY,
|
||||
f.Opacity,"100"));if("string"===typeof f.LineColor&&7<f.LineColor.length)var g="0x"+f.LineColor.substring(f.LineColor.length-2,f.LineColor.length),a=a+("strokeOpacity="+Math.round(parseInt(g)/2.55)+";");"string"===typeof f.FillColor&&7<f.FillColor.length&&(g="0x"+f.FillColor.substring(f.FillColor.length-2,f.FillColor.length),a+="fillOpacity="+Math.round(parseInt(g)/2.55)+";");return a}function K(f,c){if(null!=f.Rounding&&!V.includes(c.Class)){if(0<f.Rounding)return"rounded=1;absoluteArcSize=1;arcSize="+
|
||||
.6*f.Rounding+";"}else if(null==f.Rounding&&W.includes(c.Class))return"rounded=1;absoluteArcSize=1;arcSize=8;";return""}function L(f,c,a){return null!=f.Rotation&&(f=mxUtils.toDegree(parseFloat(f.Rotation)),"AdvancedSwimLaneBlockRotated"==c.Class?(f+=90,a.geometry.rotate90()):X.includes(c.Class)&&(f-=90,a.geometry.rotate90(),a.geometry.rotate90(),a.geometry.rotate90()),0!=f)?"rotation="+f+";":""}function z(f){return null!=f.Shadow?mxConstants.STYLE_SHADOW+"=1;":""}function r(f,c){if(null!=f.FillColor&&
|
||||
!Y.includes(c.Class))if("object"===typeof f.FillColor){if(null!=f.FillColor.cs&&1<f.FillColor.cs.length)return w(mxConstants.STYLE_FILLCOLOR,f.FillColor.cs[0].c.substring(0,7))+w(mxConstants.STYLE_GRADIENTCOLOR,f.FillColor.cs[1].c.substring(0,7))}else return"string"===typeof f.FillColor?w(mxConstants.STYLE_FILLCOLOR,f.FillColor.substring(0,7),"#FFFFFF"):w(mxConstants.STYLE_FILLCOLOR,"none");return""}function M(f){return"dashed"==f.StrokeStyle?"dashed=1;":"dotted"==f.StrokeStyle?"dashed=1;dashPattern=1 4;":
|
||||
""}function A(f){return w(mxConstants.STYLE_STROKEWIDTH,.6*parseFloat(f.LineWidth),"1")}function O(f,c){var a=B(c);if(null!=a){var g=N[a.Class]+";";null!=g&&(f.style+=g);g=null!=a.Properties?a.Properties:a;if(null!=g){f.value=h(g);var d=f.style,e=q(g)+p(g)+t(g)+C(g,f)+D(g)+E(g)+F(g)+G(g)+H(g)+I(g)+y(g,a)+u(g,a)+K(g,a)+L(g,a,f)+(g.FlipX?"flipH=1;":"")+(g.FlipY?"flipV=1;":"")+z(g)+r(g,a)+M(g)+A(g);a="ImageSearchBlock2"==a.Class?"image="+g.URL+";":"";f.style=d+(e+a);if(f.edge){f.style+="rounded=1;arcSize=6;";
|
||||
if("diagonal"!=g.Shape)if(null!=g.ElbowPoints)for(f.geometry.points=[],a=0;a<g.ElbowPoints.length;a++)f.geometry.points.push(new mxPoint(Math.round(.6*g.ElbowPoints[a].x+0),Math.round(.6*g.ElbowPoints[a].y+0)));else"elbow"==g.Shape?f.style=null!=g.Endpoint1.Block&&null!=g.Endpoint1.Block?f.style+"edgeStyle=orthogonalEdgeStyle;":f.style+"edgeStyle=elbowEdgeStyle;":null!=g.Endpoint1.Block&&null!=g.Endpoint1.Block&&(f.style+="edgeStyle=orthogonalEdgeStyle;","curve"==g.Shape&&(f.style+="curved=1;"));
|
||||
null!=g.Endpoint1.Style&&(f.style+="startArrow="+P[g.Endpoint1.Style]+";");null!=g.Endpoint2.Style&&(f.style+="endArrow="+P[g.Endpoint2.Style].replace(/startSize/g,"endSize")+";");Q(f,g.Endpoint1,!0);Q(f,g.Endpoint2,!1)}}}}function R(f){var c=B(f).Properties.BoundingBox;null!=f.Class&&"AWS"===f.Class.substring(0,3)&&(c.h-=20);v=new mxCell("",new mxGeometry(Math.round(.6*c.x+0),Math.round(.6*c.y+0),Math.round(.6*c.w),Math.round(.6*c.h)),"html=1;whiteSpace=wrap;");v.vertex=!0;O(v,f);return v}function J(f,
|
||||
c,a){a=2*(parseFloat(f.Location)-.5);f=new mxCell(h(f),new mxGeometry(a,0,0,0),"text;html=1;resizable=0;labelBackgroundColor=#ffffff;");f.geometry.relative=!0;f.vertex=!0;c.insert(f);return c}function w(f,c,a,g){null!=c&&null!=g&&(c=g(c));return null!=c&&c!=a?f+"="+c+";":""}function Q(f,c,a){null!=c&&null!=c.LinkX&&null!=c.LinkY&&(f.style+=(a?"exitX":"entryX")+"="+c.LinkX+";"+(a?"exitY":"entryY")+"="+c.LinkY+";"+(a?"exitPerimeter":"entryPerimeter")+"=0;")}function Z(f){var c=B(f),a=c.Properties,g=
|
||||
a.BoundingBox,d=Math.round(.6*g.w),e=Math.round(.6*g.h),b=Math.round(.6*g.x+0),g=Math.round(.6*g.y+0);v=new mxCell("",new mxGeometry(b,g,d,e),"html=1;whiteSpace=wrap;");v.vertex=!0;switch(f.Class){case "BraceNoteBlock":b=!1;null!=a.BraceDirection&&"Right"==a.BraceDirection&&(b=!0);b?(b=new mxCell("",new mxGeometry(d-.125*e,0,.125*e,e),"shape=curlyBracket;rounded=1;"),d=new mxCell("",new mxGeometry(0,0,d-.125*e,e),"strokeColor=none;fillColor=none;")):(b=new mxCell("",new mxGeometry(0,0,.125*e,e),"shape=curlyBracket;rounded=1;flipH=1;"),
|
||||
d=new mxCell("",new mxGeometry(.125*e,0,d-.125*e,e),"strokeColor=none;fillColor=none;"));v.style="strokeColor=none;fillColor=none;";v.style+=L(a,c,v);b.vertex=!0;v.insert(b);b.style+=y(a,c)+u(a,c)+z(a)+M(a)+A(a);d.vertex=!0;d.value=h(a);v.insert(d);d.style+=q(a)+p(a)+t(a)+C(a,d)+D(a)+E(a)+F(a)+G(a)+H(a)+I(a);break;case "AdvancedSwimLaneBlockRotated":case "AdvancedSwimLaneBlock":g=0;null!=a.Lanes&&(g=a.Lanes.length);v.style="strokeColor=none;fillColor=none;";var m=0;f=[];for(b=0;b<g;b++){var l=parseFloat(a.Lanes[b].p);
|
||||
f.push(new mxCell("",new mxGeometry(d*m,0,d*l,e),"shape=swimlane;startSize=25;"));f[b].vertex=!0;v.insert(f[b]);f[b].value=h(a["Lane_"+b]);f[b].style+=q(a["Lane_"+b])+p(a["Lane_"+b])+t(a["Lane_"+b])+C(a["Lane_"+b],f[b])+D(a["Lane_"+b])+E(a["Lane_"+b])+F(a["Lane_"+b])+G(a["Lane_"+b])+H(a["Lane_"+b])+I(a["Lane_"+b])+y(a,c)+u(a,c)+K(a,c)+L(a,c,f[b])+(a.FlipX?"flipH=1;":"")+(a.FlipY?"flipV=1;":"")+z(a)+r(a,c)+M(a)+A(a);m+=l}break;case "AndroidDevice":if(null!=a.AndroidDeviceName){v.style="fillColor=#000000;strokeColor=#000000;";
|
||||
g=b=c=null;if("Tablet"==a.AndroidDeviceName||"Mini Tablet"==a.AndroidDeviceName)v.style+="shape=mxgraph.android.tab2;",c=new mxCell("",new mxGeometry(.112*d,.077*e,.77*d,.85*e),""),a.KeyboardShown&&(b=new mxCell("",new mxGeometry(.112*d,.727*e,.77*d,.2*e),"shape=mxgraph.android.keyboard;")),a.FullScreen||(g=new mxCell("",new mxGeometry(.112*d,.077*e,.77*d,.03*e),"shape=mxgraph.android.statusBar;strokeColor=#33b5e5;fillColor=#000000;fontColor=#33b5e5;fontSize="+.015*e+";"));else if("Large Phone"==
|
||||
a.AndroidDeviceName||"Phone"==a.AndroidDeviceName)v.style+="shape=mxgraph.android.phone2;",c=new mxCell("",new mxGeometry(.04*d,.092*e,.92*d,.816*e),""),a.KeyboardShown&&(b=new mxCell("",new mxGeometry(.04*d,.708*e,.92*d,.2*e),"shape=mxgraph.android.keyboard;")),a.FullScreen||(g=new mxCell("",new mxGeometry(.04*d,.092*e,.92*d,.03*e),"shape=mxgraph.android.statusBar;strokeColor=#33b5e5;fillColor=#000000;fontColor=#33b5e5;fontSize="+.015*e+";"));c.vertex=!0;v.insert(c);"Dark"==a.Scheme?c.style+="fillColor=#111111;":
|
||||
"Light"==a.Scheme&&(c.style+="fillColor=#ffffff;");null!=b&&(b.vertex=!0,v.insert(b));null!=g&&(g.vertex=!0,v.insert(g))}break;case "AndroidAlertDialog":b=new mxCell("",new mxGeometry(0,0,d,30),"strokeColor=none;fillColor=none;spacingLeft=9;");b.vertex=!0;v.insert(b);c=new mxCell("",new mxGeometry(0,25,d,10),"shape=line;strokeColor=#33B5E5;");c.vertex=!0;v.insert(c);g=new mxCell("",new mxGeometry(0,30,d,e-30),"strokeColor=none;fillColor=none;verticalAlign=top;");g.vertex=!0;v.insert(g);c=new mxCell("",
|
||||
new mxGeometry(0,e-25,.5*d,25),"fillColor=none;");c.vertex=!0;v.insert(c);e=new mxCell("",new mxGeometry(.5*d,e-25,.5*d,25),"fillColor=none;");e.vertex=!0;v.insert(e);b.value=h(a.DialogTitle);b.style+=k(a.DialogTitle);g.value=h(a.DialogText);g.style+=k(a.DialogText);c.value=h(a.Button_0);c.style+=k(a.Button_0);e.value=h(a.Button_1);e.style+=k(a.Button_1);"Dark"==a.Scheme?(v.style+="strokeColor=#353535;fillColor=#282828;shadow=1;",c.style+="strokeColor=#353535;",e.style+="strokeColor=#353535;"):(v.style+=
|
||||
"strokeColor=none;fillColor=#ffffff;shadow=1;",c.style+="strokeColor=#E2E2E2;",e.style+="strokeColor=#E2E2E2;");break;case "AndroidDateDialog":case "AndroidTimeDialog":b=new mxCell("",new mxGeometry(0,0,d,30),"strokeColor=none;fillColor=none;spacingLeft=9;");b.vertex=!0;v.insert(b);b.value=h(a.DialogTitle);b.style+=k(a.DialogTitle);c=new mxCell("",new mxGeometry(0,25,d,10),"shape=line;strokeColor=#33B5E5;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(0,e-25,.5*d,25),"fillColor=none;");
|
||||
c.vertex=!0;v.insert(c);c.value=h(a.Button_0);c.style+=k(a.Button_0);e=new mxCell("",new mxGeometry(.5*d,e-25,.5*d,25),"fillColor=none;");e.vertex=!0;v.insert(e);e.value=h(a.Button_1);e.style+=k(a.Button_1);b=new mxCell("",new mxGeometry(.5*d-4,41,8,4),"shape=triangle;direction=north;");b.vertex=!0;v.insert(b);g=new mxCell("",new mxGeometry(.25*d-4,41,8,4),"shape=triangle;direction=north;");g.vertex=!0;v.insert(g);m=new mxCell("",new mxGeometry(.75*d-4,41,8,4),"shape=triangle;direction=north;");m.vertex=
|
||||
!0;v.insert(m);l=new mxCell("",new mxGeometry(.375*d,50,.2*d,15),"strokeColor=none;fillColor=none;");l.vertex=!0;v.insert(l);l.value=h(a.Label_1);l.style+=k(a.Label_1);l=new mxCell("",new mxGeometry(.125*d,50,.2*d,15),"strokeColor=none;fillColor=none;");l.vertex=!0;v.insert(l);l.value=h(a.Label_0);l.style+=k(a.Label_0);"AndroidDateDialog"==f.Class&&(l=new mxCell("",new mxGeometry(.625*d,50,.2*d,15),"strokeColor=none;fillColor=none;"),l.vertex=!0,v.insert(l),l.value=h(a.Label_2),l.style+=k(a.Label_2));
|
||||
l=new mxCell("",new mxGeometry(.43*d,60,.14*d,10),"shape=line;strokeColor=#33B5E5;");l.vertex=!0;v.insert(l);l=new mxCell("",new mxGeometry(.18*d,60,.14*d,10),"shape=line;strokeColor=#33B5E5;");l.vertex=!0;v.insert(l);l=new mxCell("",new mxGeometry(.68*d,60,.14*d,10),"shape=line;strokeColor=#33B5E5;");l.vertex=!0;v.insert(l);l=new mxCell("",new mxGeometry(.375*d,65,.2*d,15),"strokeColor=none;fillColor=none;");l.vertex=!0;v.insert(l);l.value=h(a.Label_4);l.style+=k(a.Label_4);"AndroidTimeDialog"==
|
||||
f.Class&&(f=new mxCell("",new mxGeometry(.3*d,65,.1*d,15),"strokeColor=none;fillColor=none;"),f.vertex=!0,v.insert(f),f.value=h(a.Label_Colon),f.style+=k(a.Label_Colon));f=new mxCell("",new mxGeometry(.125*d,65,.2*d,15),"strokeColor=none;fillColor=none;");f.vertex=!0;v.insert(f);f.value=h(a.Label_3);f.style+=k(a.Label_3);f=new mxCell("",new mxGeometry(.625*d,65,.2*d,15),"strokeColor=none;fillColor=none;");f.vertex=!0;v.insert(f);f.value=h(a.Label_5);f.style+=k(a.Label_5);f=new mxCell("",new mxGeometry(.43*
|
||||
d,75,.14*d,10),"shape=line;strokeColor=#33B5E5;");f.vertex=!0;v.insert(f);f=new mxCell("",new mxGeometry(.18*d,75,.14*d,10),"shape=line;strokeColor=#33B5E5;");f.vertex=!0;v.insert(f);f=new mxCell("",new mxGeometry(.68*d,75,.14*d,10),"shape=line;strokeColor=#33B5E5;");f.vertex=!0;v.insert(f);f=new mxCell("",new mxGeometry(.375*d,80,.2*d,15),"strokeColor=none;fillColor=none;");f.vertex=!0;v.insert(f);f.value=h(a.Label_7);f.style+=k(a.Label_7);f=new mxCell("",new mxGeometry(.125*d,80,.2*d,15),"strokeColor=none;fillColor=none;");
|
||||
f.vertex=!0;v.insert(f);f.value=h(a.Label_6);f.style+=k(a.Label_6);f=new mxCell("",new mxGeometry(.625*d,80,.2*d,15),"strokeColor=none;fillColor=none;");f.vertex=!0;v.insert(f);f.value=h(a.Label_8);f.style+=k(a.Label_8);f=new mxCell("",new mxGeometry(.5*d-4,99,8,4),"shape=triangle;direction=south;");f.vertex=!0;v.insert(f);l=new mxCell("",new mxGeometry(.25*d-4,99,8,4),"shape=triangle;direction=south;");l.vertex=!0;v.insert(l);d=new mxCell("",new mxGeometry(.75*d-4,99,8,4),"shape=triangle;direction=south;");
|
||||
d.vertex=!0;v.insert(d);"Dark"==a.Scheme?(v.style+="strokeColor=#353535;fillColor=#282828;shadow=1;",c.style+="strokeColor=#353535;",e.style+="strokeColor=#353535;",b.style+="strokeColor=none;fillColor=#7E7E7E;",g.style+="strokeColor=none;fillColor=#7E7E7E;",m.style+="strokeColor=none;fillColor=#7E7E7E;",f.style+="strokeColor=none;fillColor=#7E7E7E;",l.style+="strokeColor=none;fillColor=#7E7E7E;",d.style+="strokeColor=none;fillColor=#7E7E7E;"):(v.style+="strokeColor=none;fillColor=#ffffff;shadow=1;",
|
||||
c.style+="strokeColor=#E2E2E2;",e.style+="strokeColor=#E2E2E2;",b.style+="strokeColor=none;fillColor=#939393;",g.style+="strokeColor=none;fillColor=#939393;",m.style+="strokeColor=none;fillColor=#939393;",f.style+="strokeColor=none;fillColor=#939393;",l.style+="strokeColor=none;fillColor=#939393;",d.style+="strokeColor=none;fillColor=#939393;");break;case "AndroidListItems":g=0;a.ShowHeader&&(g=8,c=new mxCell("",new mxGeometry(0,0,d,g),"strokeColor=none;fillColor=none;"),c.vertex=!0,v.insert(c),c.value=
|
||||
h(a.Header),c.style+=k(a.Header),e-=g,c=new mxCell("",new mxGeometry(0,g-2,d,4),"shape=line;strokeColor=#999999;"),c.vertex=!0,v.insert(c));m=parseInt(a.Items);0<m&&(e/=m);f=[];c=[];for(b=0;b<m;b++)f[b]=new mxCell("",new mxGeometry(0,g+b*e,d,e),"strokeColor=none;fillColor=none;"),f[b].vertex=!0,v.insert(f[b]),f[b].value=h(a["Item_"+b]),f[b].style+=k(a["Item_"+b]),0<b&&(c[b]=new mxCell("",new mxGeometry(0,g+b*e-2,d,4),"shape=line;"),c[b].vertex=!0,v.insert(c[b]),c[b].style="Dark"==a.Scheme?c[b].style+
|
||||
"strokeColor=#ffffff;":c[b].style+"strokeColor=#D9D9D9;");v.style="Dark"==a.Scheme?v.style+"strokeColor=none;fillColor=#111111;":v.style+"strokeColor=none;fillColor=#ffffff;";break;case "AndroidTabs":g=parseInt(a.Tabs);0<g&&(d/=g);m=[];c=[];for(b=0;b<g;b++)m[b]=new mxCell("",new mxGeometry(b*d,0,d,e),"strokeColor=none;fillColor=none;"),m[b].vertex=!0,v.insert(m[b]),m[b].value=h(a["Tab_"+b]),m[b].style+=k(a["Tab_"+b]),0<b&&(c[b]=new mxCell("",new mxGeometry(b*d-2,.2*e,4,.6*e),"shape=line;direction=north;"),
|
||||
c[b].vertex=!0,v.insert(c[b]),c[b].style="Dark"==a.Scheme?c[b].style+"strokeColor=#484848;":c[b].style+"strokeColor=#CCCCCC;");d=new mxCell("",new mxGeometry(a.Selected*d+2,e-3,d-4,3),"strokeColor=none;fillColor=#33B5E5;");d.vertex=!0;v.insert(d);v.style="Dark"==a.Scheme?v.style+"strokeColor=none;fillColor=#333333;":v.style+"strokeColor=none;fillColor=#DDDDDD;";break;case "AndroidProgressBar":v=new mxCell("",new mxGeometry(Math.round(b),Math.round(g+.25*e),Math.round(d),Math.round(.5*e)),"html=1;whiteSpace=wrap;");
|
||||
(function(){function k(f){var c=null!=f.Text?f.Text:null!=f.Value?f.Value:f.Lane_0;null==c&&null!=f.State?null!=f.State.t&&(c=f.State):null==c&&null!=f.Note?null!=f.Note.t&&(c=f.Note):null!=f.t&&(c=f);null==c&&null!=f.TextAreas&&null!=f.TextAreas.Text&&null!=f.TextAreas.Text.Value&&null!=f.TextAreas.Text.Value.t&&(c=f.TextAreas.Text.Value);if(null!=c){if(null!=c.t)return c.t=c.t.replace(/</g,"<"),c.t=c.t.replace(/>/g,">"),c.t;if(null!=c.Value&&null!=c.Value.t)return c.Value.t=c.Value.t.replace(/</g,
|
||||
"<"),c.Value.t=c.Value.t.replace(/>/g,">"),c.Value.t}return""}function I(f){return null!=f.Action?f.Action:f}function G(f){if(null!=f.Text){if(null!=f.Text.m)return f.Text.m}else if(null!=f.TextAreas){if(null!=f.TextAreas.Text&&null!=f.TextAreas.Text.Value&&null!=f.TextAreas.Text.Value.m)return f.TextAreas.Text.Value.m}else if(null!=f.m)return f.m;return null}function l(f){return w(f)+x(f)+y(f)+z(f)+A(f)+B(f)+E(f)+C(f)+D(f)+H(f)}function w(f){f=G(f);if(null!=f)for(var c=0;c<f.length;){var a=
|
||||
f[c];if("s"==a.n&&null!=a.v)return"fontSize="+Math.round(.6*a.v)+";";c++}return"fontSize=10;"}function x(f){f=G(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("c"==a.n&&null!=a.v)return f=a.v,"#"!=f.charAt(0)&&(f="#"+f),f=f.substring(0,7),mxConstants.STYLE_FONTCOLOR+"="+f+";";c++}return""}function y(f){f=G(f);if(null!=f){var c=0,a=!1;if(null!=f)for(var g=0;!a&&g<f.length;){var d=f[g];"b"==d.n&&null!=d.v&&d.v&&(a=!0,c+=1);g++}a=!1;if(null!=f)for(g=0;!a&&g<f.length;)d=f[g],"i"==d.n&&null!=d.v&&
|
||||
d.v&&(a=!0,c+=2),g++;a=!1;if(null!=f)for(g=0;!a&&g<f.length;)d=f[g],"u"==d.n&&null!=d.v&&d.v&&(a=!0,c+=4),g++;if(0<c)return"fontStyle="+c+";"}return""}function z(f){f=G(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("a"==a.n&&null!=a.v)return"align="+a.v+";";c++}return"align=center;"}function A(f){var c=G(f);if(null!=c)for(var a=0;a<c.length;){var g=c[a];if("il"==g.n){if(null!=g.v)return"spacingLeft="+.6*g.v+";"}else if("s"==g.n&&"align=center;"!=z(f)&&null!=g.v)return"spacingLeft="+.6*g.v+
|
||||
";";a++}return""}function B(f){f=G(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("ir"==a.n&&null!=a.v)return"spacingRight="+a.v+";";c++}return""}function E(f){f=G(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("mt"==a.n&&null!=a.v)return"spacingTop="+a.v+";";c++}return""}function C(f){f=G(f);if(null!=f)for(var c=0;c<f.length;){var a=f[c];if("mb"==a.n&&null!=a.v)return"spacingBottom="+a.v+";";c++}return""}function D(f){return"number"===typeof f.InsetMargin?"spacing="+parseInt(f.InsetMargin)+
|
||||
";":""}function H(f){return null!=f.Text_VAlign&&"string"===typeof f.Text_VAlign?"verticalAlign="+f.Text_VAlign+";":F(mxConstants.STYLE_VERTICAL_ALIGN,f.TextVAlign,"middle")}function n(f,c){return S.includes(c.Class)?"Venn"==c.Class.substring(0,4)?F(mxConstants.STYLE_STROKECOLOR,f.FillColor.substring(0,7),"#FFFFFF"):"":0==f.LineWidth?mxConstants.STYLE_STROKECOLOR+"=none;":F(mxConstants.STYLE_STROKECOLOR,f.LineColor.substring(0,7),"#000000")}function m(f,c){var a="";T.includes(c.Class)||(a+=F(mxConstants.STYLE_OPACITY,
|
||||
f.Opacity,"100"));if("string"===typeof f.LineColor&&7<f.LineColor.length)var g="0x"+f.LineColor.substring(f.LineColor.length-2,f.LineColor.length),a=a+("strokeOpacity="+Math.round(parseInt(g)/2.55)+";");"string"===typeof f.FillColor&&7<f.FillColor.length&&(g="0x"+f.FillColor.substring(f.FillColor.length-2,f.FillColor.length),a+="fillOpacity="+Math.round(parseInt(g)/2.55)+";");return a}function L(f,c){if(null!=f.Rounding&&!U.includes(c.Class)){if(0<f.Rounding)return"rounded=1;absoluteArcSize=1;arcSize="+
|
||||
.6*f.Rounding+";"}else if(null==f.Rounding&&V.includes(c.Class))return"rounded=1;absoluteArcSize=1;arcSize=8;";return""}function J(f,c,a){return null!=f.Rotation&&(f=mxUtils.toDegree(parseFloat(f.Rotation)),"AdvancedSwimLaneBlockRotated"==c.Class?(f+=90,a.geometry.rotate90()):W.includes(c.Class)&&(f-=90,a.geometry.rotate90(),a.geometry.rotate90(),a.geometry.rotate90()),0!=f)?"rotation="+f+";":""}function t(f){return null!=f.Shadow?mxConstants.STYLE_SHADOW+"=1;":""}function p(f,c){if(null!=f.FillColor&&
|
||||
!X.includes(c.Class))if("object"===typeof f.FillColor){if(null!=f.FillColor.cs&&1<f.FillColor.cs.length)return F(mxConstants.STYLE_FILLCOLOR,f.FillColor.cs[0].c.substring(0,7))+F(mxConstants.STYLE_GRADIENTCOLOR,f.FillColor.cs[1].c.substring(0,7))}else return"string"===typeof f.FillColor?F(mxConstants.STYLE_FILLCOLOR,f.FillColor.substring(0,7),"#FFFFFF"):F(mxConstants.STYLE_FILLCOLOR,"none");return""}function u(f){return"dashed"==f.StrokeStyle?"dashed=1;":"dotted"==f.StrokeStyle?"dashed=1;dashPattern=1 4;":
|
||||
"dashdot"==f.StrokeStyle?"dashed=1;dashPattern=10 5 1 5;":"dotdotdot"==f.StrokeStyle?"dashed=1;dashPattern=1 1;":""}function r(f){return F(mxConstants.STYLE_STROKEWIDTH,.6*parseFloat(f.LineWidth),"1")}function N(f,c){var a=I(c);if(null!=a){var g=M[a.Class]+";";null!=g&&(f.style+=g);g=null!=a.Properties?a.Properties:a;if(null!=g){f.value=k(g);var d=f.style,e=w(g)+x(g)+y(g)+z(g,f)+A(g)+B(g)+E(g)+C(g)+D(g)+H(g)+n(g,a)+m(g,a)+L(g,a)+J(g,a,f)+(g.FlipX?"flipH=1;":"")+(g.FlipY?"flipV=1;":"")+t(g)+p(g,a)+
|
||||
u(g)+r(g);a="ImageSearchBlock2"==a.Class?"image="+g.URL+";":"";f.style=d+(e+a);if(f.edge){f.style+="rounded=1;arcSize=6;";if("diagonal"!=g.Shape)if(null!=g.ElbowPoints)for(f.geometry.points=[],a=0;a<g.ElbowPoints.length;a++)f.geometry.points.push(new mxPoint(Math.round(.6*g.ElbowPoints[a].x+0),Math.round(.6*g.ElbowPoints[a].y+0)));else"elbow"==g.Shape?f.style=null!=g.Endpoint1.Block&&null!=g.Endpoint1.Block?f.style+"edgeStyle=orthogonalEdgeStyle;":f.style+"edgeStyle=elbowEdgeStyle;":null!=g.Endpoint1.Block&&
|
||||
null!=g.Endpoint1.Block&&(f.style+="edgeStyle=orthogonalEdgeStyle;","curve"==g.Shape&&(f.style+="curved=1;"));null!=g.Endpoint1.Style&&(f.style+="startArrow="+O[g.Endpoint1.Style]+";");null!=g.Endpoint2.Style&&(f.style+="endArrow="+O[g.Endpoint2.Style].replace(/startSize/g,"endSize")+";");P(f,g.Endpoint1,!0);P(f,g.Endpoint2,!1)}}}}function Q(f){var c=I(f).Properties.BoundingBox;null!=f.Class&&"AWS"===f.Class.substring(0,3)&&(c.h-=20);v=new mxCell("",new mxGeometry(Math.round(.6*c.x+0),Math.round(.6*
|
||||
c.y+0),Math.round(.6*c.w),Math.round(.6*c.h)),"html=1;whiteSpace=wrap;");v.vertex=!0;N(v,f);return v}function K(f,c,a){a=2*(parseFloat(f.Location)-.5);f=new mxCell(k(f),new mxGeometry(a,0,0,0),"text;html=1;resizable=0;labelBackgroundColor=#ffffff;");f.geometry.relative=!0;f.vertex=!0;c.insert(f);return c}function F(f,c,a,g){null!=c&&null!=g&&(c=g(c));return null!=c&&c!=a?f+"="+c+";":""}function P(f,c,a){null!=c&&null!=c.LinkX&&null!=c.LinkY&&(f.style+=(a?"exitX":"entryX")+"="+c.LinkX+";"+(a?"exitY":
|
||||
"entryY")+"="+c.LinkY+";"+(a?"exitPerimeter":"entryPerimeter")+"=0;")}function Y(f){var c=I(f),a=c.Properties,g=a.BoundingBox,d=Math.round(.6*g.w),e=Math.round(.6*g.h),h=Math.round(.6*g.x+0),g=Math.round(.6*g.y+0);v=new mxCell("",new mxGeometry(h,g,d,e),"html=1;whiteSpace=wrap;");v.vertex=!0;switch(f.Class){case "BraceNoteBlock":var b=!1;null!=a.BraceDirection&&"Right"==a.BraceDirection&&(b=!0);b?(b=new mxCell("",new mxGeometry(d-.125*e,0,.125*e,e),"shape=curlyBracket;rounded=1;"),d=new mxCell("",
|
||||
new mxGeometry(0,0,d-.125*e,e),"strokeColor=none;fillColor=none;")):(b=new mxCell("",new mxGeometry(0,0,.125*e,e),"shape=curlyBracket;rounded=1;flipH=1;"),d=new mxCell("",new mxGeometry(.125*e,0,d-.125*e,e),"strokeColor=none;fillColor=none;"));v.style="strokeColor=none;fillColor=none;";v.style+=J(a,c,v);b.vertex=!0;v.insert(b);b.style+=n(a,c)+m(a,c)+t(a)+u(a)+r(a);d.vertex=!0;d.value=k(a);v.insert(d);d.style+=w(a)+x(a)+y(a)+z(a,d)+A(a)+B(a)+E(a)+C(a)+D(a)+H(a);break;case "AdvancedSwimLaneBlockRotated":case "AdvancedSwimLaneBlock":h=
|
||||
0;null!=a.Lanes&&(h=a.Lanes.length);v.style="strokeColor=none;fillColor=none;";g=0;f=[];for(b=0;b<h;b++){var q=parseFloat(a.Lanes[b].p);f.push(new mxCell("",new mxGeometry(d*g,0,d*q,e),"shape=swimlane;startSize=25;"));f[b].vertex=!0;v.insert(f[b]);f[b].value=k(a["Lane_"+b]);f[b].style+=w(a["Lane_"+b])+x(a["Lane_"+b])+y(a["Lane_"+b])+z(a["Lane_"+b],f[b])+A(a["Lane_"+b])+B(a["Lane_"+b])+E(a["Lane_"+b])+C(a["Lane_"+b])+D(a["Lane_"+b])+H(a["Lane_"+b])+n(a,c)+m(a,c)+L(a,c)+J(a,c,f[b])+(a.FlipX?"flipH=1;":
|
||||
"")+(a.FlipY?"flipV=1;":"")+t(a)+p(a,c)+u(a)+r(a);g+=q}break;case "AndroidDevice":if(null!=a.AndroidDeviceName){v.style="fillColor=#000000;strokeColor=#000000;";h=b=c=null;if("Tablet"==a.AndroidDeviceName||"Mini Tablet"==a.AndroidDeviceName)v.style+="shape=mxgraph.android.tab2;",c=new mxCell("",new mxGeometry(.112*d,.077*e,.77*d,.85*e),""),a.KeyboardShown&&(b=new mxCell("",new mxGeometry(.112*d,.727*e,.77*d,.2*e),"shape=mxgraph.android.keyboard;")),a.FullScreen||(h=new mxCell("",new mxGeometry(.112*
|
||||
d,.077*e,.77*d,.03*e),"shape=mxgraph.android.statusBar;strokeColor=#33b5e5;fillColor=#000000;fontColor=#33b5e5;fontSize="+.015*e+";"));else if("Large Phone"==a.AndroidDeviceName||"Phone"==a.AndroidDeviceName)v.style+="shape=mxgraph.android.phone2;",c=new mxCell("",new mxGeometry(.04*d,.092*e,.92*d,.816*e),""),a.KeyboardShown&&(b=new mxCell("",new mxGeometry(.04*d,.708*e,.92*d,.2*e),"shape=mxgraph.android.keyboard;")),a.FullScreen||(h=new mxCell("",new mxGeometry(.04*d,.092*e,.92*d,.03*e),"shape=mxgraph.android.statusBar;strokeColor=#33b5e5;fillColor=#000000;fontColor=#33b5e5;fontSize="+
|
||||
.015*e+";"));c.vertex=!0;v.insert(c);"Dark"==a.Scheme?c.style+="fillColor=#111111;":"Light"==a.Scheme&&(c.style+="fillColor=#ffffff;");null!=b&&(b.vertex=!0,v.insert(b));null!=h&&(h.vertex=!0,v.insert(h))}break;case "AndroidAlertDialog":b=new mxCell("",new mxGeometry(0,0,d,30),"strokeColor=none;fillColor=none;spacingLeft=9;");b.vertex=!0;v.insert(b);c=new mxCell("",new mxGeometry(0,25,d,10),"shape=line;strokeColor=#33B5E5;");c.vertex=!0;v.insert(c);h=new mxCell("",new mxGeometry(0,30,d,e-30),"strokeColor=none;fillColor=none;verticalAlign=top;");
|
||||
h.vertex=!0;v.insert(h);c=new mxCell("",new mxGeometry(0,e-25,.5*d,25),"fillColor=none;");c.vertex=!0;v.insert(c);e=new mxCell("",new mxGeometry(.5*d,e-25,.5*d,25),"fillColor=none;");e.vertex=!0;v.insert(e);b.value=k(a.DialogTitle);b.style+=l(a.DialogTitle);h.value=k(a.DialogText);h.style+=l(a.DialogText);c.value=k(a.Button_0);c.style+=l(a.Button_0);e.value=k(a.Button_1);e.style+=l(a.Button_1);"Dark"==a.Scheme?(v.style+="strokeColor=#353535;fillColor=#282828;shadow=1;",c.style+="strokeColor=#353535;",
|
||||
e.style+="strokeColor=#353535;"):(v.style+="strokeColor=none;fillColor=#ffffff;shadow=1;",c.style+="strokeColor=#E2E2E2;",e.style+="strokeColor=#E2E2E2;");break;case "AndroidDateDialog":case "AndroidTimeDialog":b=new mxCell("",new mxGeometry(0,0,d,30),"strokeColor=none;fillColor=none;spacingLeft=9;");b.vertex=!0;v.insert(b);b.value=k(a.DialogTitle);b.style+=l(a.DialogTitle);c=new mxCell("",new mxGeometry(0,25,d,10),"shape=line;strokeColor=#33B5E5;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(0,
|
||||
e-25,.5*d,25),"fillColor=none;");c.vertex=!0;v.insert(c);c.value=k(a.Button_0);c.style+=l(a.Button_0);e=new mxCell("",new mxGeometry(.5*d,e-25,.5*d,25),"fillColor=none;");e.vertex=!0;v.insert(e);e.value=k(a.Button_1);e.style+=l(a.Button_1);b=new mxCell("",new mxGeometry(.5*d-4,41,8,4),"shape=triangle;direction=north;");b.vertex=!0;v.insert(b);h=new mxCell("",new mxGeometry(.25*d-4,41,8,4),"shape=triangle;direction=north;");h.vertex=!0;v.insert(h);g=new mxCell("",new mxGeometry(.75*d-4,41,8,4),"shape=triangle;direction=north;");
|
||||
g.vertex=!0;v.insert(g);q=new mxCell("",new mxGeometry(.375*d,50,.2*d,15),"strokeColor=none;fillColor=none;");q.vertex=!0;v.insert(q);q.value=k(a.Label_1);q.style+=l(a.Label_1);q=new mxCell("",new mxGeometry(.125*d,50,.2*d,15),"strokeColor=none;fillColor=none;");q.vertex=!0;v.insert(q);q.value=k(a.Label_0);q.style+=l(a.Label_0);"AndroidDateDialog"==f.Class&&(q=new mxCell("",new mxGeometry(.625*d,50,.2*d,15),"strokeColor=none;fillColor=none;"),q.vertex=!0,v.insert(q),q.value=k(a.Label_2),q.style+=
|
||||
l(a.Label_2));q=new mxCell("",new mxGeometry(.43*d,60,.14*d,10),"shape=line;strokeColor=#33B5E5;");q.vertex=!0;v.insert(q);q=new mxCell("",new mxGeometry(.18*d,60,.14*d,10),"shape=line;strokeColor=#33B5E5;");q.vertex=!0;v.insert(q);q=new mxCell("",new mxGeometry(.68*d,60,.14*d,10),"shape=line;strokeColor=#33B5E5;");q.vertex=!0;v.insert(q);q=new mxCell("",new mxGeometry(.375*d,65,.2*d,15),"strokeColor=none;fillColor=none;");q.vertex=!0;v.insert(q);q.value=k(a.Label_4);q.style+=l(a.Label_4);"AndroidTimeDialog"==
|
||||
f.Class&&(f=new mxCell("",new mxGeometry(.3*d,65,.1*d,15),"strokeColor=none;fillColor=none;"),f.vertex=!0,v.insert(f),f.value=k(a.Label_Colon),f.style+=l(a.Label_Colon));f=new mxCell("",new mxGeometry(.125*d,65,.2*d,15),"strokeColor=none;fillColor=none;");f.vertex=!0;v.insert(f);f.value=k(a.Label_3);f.style+=l(a.Label_3);f=new mxCell("",new mxGeometry(.625*d,65,.2*d,15),"strokeColor=none;fillColor=none;");f.vertex=!0;v.insert(f);f.value=k(a.Label_5);f.style+=l(a.Label_5);f=new mxCell("",new mxGeometry(.43*
|
||||
d,75,.14*d,10),"shape=line;strokeColor=#33B5E5;");f.vertex=!0;v.insert(f);f=new mxCell("",new mxGeometry(.18*d,75,.14*d,10),"shape=line;strokeColor=#33B5E5;");f.vertex=!0;v.insert(f);f=new mxCell("",new mxGeometry(.68*d,75,.14*d,10),"shape=line;strokeColor=#33B5E5;");f.vertex=!0;v.insert(f);f=new mxCell("",new mxGeometry(.375*d,80,.2*d,15),"strokeColor=none;fillColor=none;");f.vertex=!0;v.insert(f);f.value=k(a.Label_7);f.style+=l(a.Label_7);f=new mxCell("",new mxGeometry(.125*d,80,.2*d,15),"strokeColor=none;fillColor=none;");
|
||||
f.vertex=!0;v.insert(f);f.value=k(a.Label_6);f.style+=l(a.Label_6);f=new mxCell("",new mxGeometry(.625*d,80,.2*d,15),"strokeColor=none;fillColor=none;");f.vertex=!0;v.insert(f);f.value=k(a.Label_8);f.style+=l(a.Label_8);f=new mxCell("",new mxGeometry(.5*d-4,99,8,4),"shape=triangle;direction=south;");f.vertex=!0;v.insert(f);q=new mxCell("",new mxGeometry(.25*d-4,99,8,4),"shape=triangle;direction=south;");q.vertex=!0;v.insert(q);d=new mxCell("",new mxGeometry(.75*d-4,99,8,4),"shape=triangle;direction=south;");
|
||||
d.vertex=!0;v.insert(d);"Dark"==a.Scheme?(v.style+="strokeColor=#353535;fillColor=#282828;shadow=1;",c.style+="strokeColor=#353535;",e.style+="strokeColor=#353535;",b.style+="strokeColor=none;fillColor=#7E7E7E;",h.style+="strokeColor=none;fillColor=#7E7E7E;",g.style+="strokeColor=none;fillColor=#7E7E7E;",f.style+="strokeColor=none;fillColor=#7E7E7E;",q.style+="strokeColor=none;fillColor=#7E7E7E;",d.style+="strokeColor=none;fillColor=#7E7E7E;"):(v.style+="strokeColor=none;fillColor=#ffffff;shadow=1;",
|
||||
c.style+="strokeColor=#E2E2E2;",e.style+="strokeColor=#E2E2E2;",b.style+="strokeColor=none;fillColor=#939393;",h.style+="strokeColor=none;fillColor=#939393;",g.style+="strokeColor=none;fillColor=#939393;",f.style+="strokeColor=none;fillColor=#939393;",q.style+="strokeColor=none;fillColor=#939393;",d.style+="strokeColor=none;fillColor=#939393;");break;case "AndroidListItems":g=0;a.ShowHeader&&(g=8,c=new mxCell("",new mxGeometry(0,0,d,g),"strokeColor=none;fillColor=none;"),c.vertex=!0,v.insert(c),c.value=
|
||||
k(a.Header),c.style+=l(a.Header),e-=g,c=new mxCell("",new mxGeometry(0,g-2,d,4),"shape=line;strokeColor=#999999;"),c.vertex=!0,v.insert(c));h=parseInt(a.Items);0<h&&(e/=h);f=[];c=[];for(b=0;b<h;b++)f[b]=new mxCell("",new mxGeometry(0,g+b*e,d,e),"strokeColor=none;fillColor=none;"),f[b].vertex=!0,v.insert(f[b]),f[b].value=k(a["Item_"+b]),f[b].style+=l(a["Item_"+b]),0<b&&(c[b]=new mxCell("",new mxGeometry(0,g+b*e-2,d,4),"shape=line;"),c[b].vertex=!0,v.insert(c[b]),c[b].style="Dark"==a.Scheme?c[b].style+
|
||||
"strokeColor=#ffffff;":c[b].style+"strokeColor=#D9D9D9;");v.style="Dark"==a.Scheme?v.style+"strokeColor=none;fillColor=#111111;":v.style+"strokeColor=none;fillColor=#ffffff;";break;case "AndroidTabs":h=parseInt(a.Tabs);0<h&&(d/=h);g=[];c=[];for(b=0;b<h;b++)g[b]=new mxCell("",new mxGeometry(b*d,0,d,e),"strokeColor=none;fillColor=none;"),g[b].vertex=!0,v.insert(g[b]),g[b].value=k(a["Tab_"+b]),g[b].style+=l(a["Tab_"+b]),0<b&&(c[b]=new mxCell("",new mxGeometry(b*d-2,.2*e,4,.6*e),"shape=line;direction=north;"),
|
||||
c[b].vertex=!0,v.insert(c[b]),c[b].style="Dark"==a.Scheme?c[b].style+"strokeColor=#484848;":c[b].style+"strokeColor=#CCCCCC;");d=new mxCell("",new mxGeometry(a.Selected*d+2,e-3,d-4,3),"strokeColor=none;fillColor=#33B5E5;");d.vertex=!0;v.insert(d);v.style="Dark"==a.Scheme?v.style+"strokeColor=none;fillColor=#333333;":v.style+"strokeColor=none;fillColor=#DDDDDD;";break;case "AndroidProgressBar":v=new mxCell("",new mxGeometry(Math.round(h),Math.round(g+.25*e),Math.round(d),Math.round(.5*e)),"html=1;whiteSpace=wrap;");
|
||||
v.vertex=!0;d=new mxCell("",new mxGeometry(0,0,d*a.BarPosition,Math.round(.5*e)),"strokeColor=none;fillColor=#33B5E5;");d.vertex=!0;v.insert(d);v.style="Dark"==a.Scheme?v.style+"strokeColor=none;fillColor=#474747;":v.style+"strokeColor=none;fillColor=#BBBBBB;";break;case "AndroidImageBlock":v.style="Dark"==a.Scheme?v.style+"shape=mxgraph.mockup.graphics.simpleIcon;strokeColor=#7E7E7E;fillColor=#111111;":v.style+"shape=mxgraph.mockup.graphics.simpleIcon;strokeColor=#939393;fillColor=#ffffff;";break;
|
||||
case "AndroidTextBlock":v.style="Dark"==a.Scheme?a.ShowBorder?v.style+"fillColor=#111111;strokeColor=#ffffff;":v.style+"fillColor=#111111;strokeColor=none;":a.ShowBorder?v.style+"fillColor=#ffffff;strokeColor=#000000;":v.style+"fillColor=#ffffff;strokeColor=none;";v.value=h(a.Label);v.style+=k(a.Label);break;case "AndroidActionBar":v.style+="strokeColor=none;";switch(a.BarBackground){case "Blue":v.style+="fillColor=#002E3E;";break;case "Gray":v.style+="fillColor=#DDDDDD;";break;case "Dark Gray":v.style+=
|
||||
case "AndroidTextBlock":v.style="Dark"==a.Scheme?a.ShowBorder?v.style+"fillColor=#111111;strokeColor=#ffffff;":v.style+"fillColor=#111111;strokeColor=none;":a.ShowBorder?v.style+"fillColor=#ffffff;strokeColor=#000000;":v.style+"fillColor=#ffffff;strokeColor=none;";v.value=k(a.Label);v.style+=l(a.Label);break;case "AndroidActionBar":v.style+="strokeColor=none;";switch(a.BarBackground){case "Blue":v.style+="fillColor=#002E3E;";break;case "Gray":v.style+="fillColor=#DDDDDD;";break;case "Dark Gray":v.style+=
|
||||
"fillColor=#474747;";break;case "White":v.style+="fillColor=#ffffff;"}if(a.HighlightShow)switch(d=a.HighlightTop?new mxCell("",new mxGeometry(0,0,d,2),"strokeColor=none;"):new mxCell("",new mxGeometry(0,e-2,d,2),"strokeColor=none;"),d.vertex=!0,v.insert(d),a.HighlightColor){case "Blue":d.style+="fillColor=#33B5E5;";break;case "Dark Gray":d.style+="fillColor=#B0B0B0;";break;case "White":d.style+="fillColor=#ffffff;"}if(a.VlignShow)switch(d=new mxCell("",new mxGeometry(20,5,2,e-10),"shape=line;direction=north;"),
|
||||
d.vertex=!0,v.insert(d),a.VlignColor){case "Blue":d.style+="strokeColor=#244C5A;";break;case "White":d.style+="strokeColor=#ffffff;"}break;case "AndroidButton":v.value=h(a.Label);v.style+=k(a.Label)+"shape=partialRectangle;left=0;right=0;";v.style="Dark"==a.Scheme?v.style+"fillColor=#474747;strokeColor=#C6C5C6;bottom=0;":v.style+"fillColor=#DFE0DF;strokeColor=#C6C5C6;top=0;";break;case "AndroidTextBox":v.value=h(a.Label);v.style+=k(a.Label);d=new mxCell("",new mxGeometry(2,e-6,d-4,4),"shape=partialRectangle;top=0;fillColor=none;");
|
||||
d.vertex=!0,v.insert(d),a.VlignColor){case "Blue":d.style+="strokeColor=#244C5A;";break;case "White":d.style+="strokeColor=#ffffff;"}break;case "AndroidButton":v.value=k(a.Label);v.style+=l(a.Label)+"shape=partialRectangle;left=0;right=0;";v.style="Dark"==a.Scheme?v.style+"fillColor=#474747;strokeColor=#C6C5C6;bottom=0;":v.style+"fillColor=#DFE0DF;strokeColor=#C6C5C6;top=0;";break;case "AndroidTextBox":v.value=k(a.Label);v.style+=l(a.Label);d=new mxCell("",new mxGeometry(2,e-6,d-4,4),"shape=partialRectangle;top=0;fillColor=none;");
|
||||
d.vertex=!0;v.insert(d);v.style="Dark"==a.Scheme?v.style+"fillColor=#111111;strokeColor=none;":v.style+"fillColor=#ffffff;strokeColor=none;";d.style=a.TextFocused?d.style+"strokeColor=#33B5E5;":d.style+"strokeColor=#A9A9A9;";break;case "AndroidRadioButton":c=null;a.Checked&&(c=new mxCell("",new mxGeometry(.15*d,.15*e,.7*d,.7*e),"shape=ellipse;fillColor=#33B5E5;strokeWidth=0.6;"),c.vertex=!0,v.insert(c));"Dark"==a.Scheme?(v.style+="shape=ellipse;strokeWidth=0.6;strokeColor=#272727;",a.Checked?(c.style+=
|
||||
"strokeColor=#1F5C73;",v.style+="fillColor=#193C49;"):v.style+="fillColor=#111111;"):(v.style+="shape=ellipse;strokeWidth=0.6;fillColor=#ffffff;strokeColor=#5C5C5C;",a.Checked&&(c.style+="strokeColor=#999999;"));break;case "AndroidCheckBox":a.Checked&&(d=new mxCell("",new mxGeometry(.25*d,.05*-e,d,.8*e),"shape=mxgraph.ios7.misc.check;strokeColor=#33B5E5;strokeWidth=2;"),d.vertex=!0,v.insert(d));v.style="Dark"==a.Scheme?v.style+"strokeWidth=0.6;strokeColor=#272727;fillColor=#111111;":v.style+"strokeWidth=0.6;strokeColor=#5C5C5C;fillColor=#ffffff;";
|
||||
break;case "AndroidToggle":v.style="Dark"==a.Scheme?a.Checked?v.style+"shape=mxgraph.android.switch_on;fillColor=#666666;":v.style+"shape=mxgraph.android.switch_off;fillColor=#666666;":a.Checked?v.style+"shape=mxgraph.android.switch_on;fillColor=#E6E6E6;":v.style+"shape=mxgraph.android.switch_off;fillColor=#E6E6E6;";break;case "AndroidSlider":v.style+="shape=mxgraph.android.progressScrubberFocused;dx="+a.BarPosition+";fillColor=#33b5e5;";break;case "iOSSegmentedControl":g=parseInt(a.Tabs);v.style+=
|
||||
"strokeColor=none;fillColor=none;";0<g&&(d/=g);m=[];for(b=0;b<g;b++)m[b]=new mxCell("",new mxGeometry(b*d,0,d,e),"strokeColor="+a.FillColor+";"),m[b].vertex=!0,v.insert(m[b]),m[b].value=h(a["Tab_"+b]),m[b].style+=k(a["Tab_"+b]),m[b].style=a.Selected==b?m[b].style+r(a,c):m[b].style+"fillColor=none;";break;case "iOSSlider":v.style+="shape=mxgraph.ios7ui.slider;strokeColor="+a.FillColor+";fillColor=#ffffff;strokeWidth=2;barPos="+100*a.BarPosition+";";break;case "iOSProgressBar":v=new mxCell("",new mxGeometry(Math.round(b),
|
||||
Math.round(g+.25*e),Math.round(d),Math.round(.5*e)),"html=1;whiteSpace=wrap;strokeColor=none;fillColor=#B5B5B5;");v.vertex=!0;d=new mxCell("",new mxGeometry(0,0,d*a.BarPosition,Math.round(.5*e)),"strokeColor=none;"+r(a,c));d.vertex=!0;v.insert(d);break;case "iOSPageControls":v.style+="shape=mxgraph.ios7ui.pageControl;"+r(a,c)+"strokeColor=#D6D6D6;";break;case "iOSStatusBar":v.style+="shape=mxgraph.ios7ui.appBar;"+r(a,c)+"strokeColor=#000000;";c=new mxCell(h(a.Text),new mxGeometry(.35*d,0,.3*d,e),
|
||||
"strokeColor=none;fillColor=none;");c.vertex=!0;v.insert(c);c.style+=k(a.Text);c=new mxCell(h(a.Carrier),new mxGeometry(.09*d,0,.2*d,e),"strokeColor=none;fillColor=none;");c.vertex=!0;v.insert(c);c.style+=k(a.Carrier);break;case "iOSSearchBar":v.style+="strokeColor=none;"+r(a,c)+u(a,c)+K(a,c)+k(a.Search);v.value=h(a.Search);c=new mxCell("",new mxGeometry(.3*d,.3*e,.4*e,.4*e),"shape=mxgraph.ios7.icons.looking_glass;strokeColor=#000000;fillColor=none;");c.vertex=!0;v.insert(c);break;case "iOSNavBar":v.style+=
|
||||
"shape=partialRectangle;top=0;right=0;left=0;strokeColor=#979797;"+r(a,c)+u(a,c)+k(a.Title);v.value=h(a.Title);c=new mxCell(h(a.LeftText),new mxGeometry(.03*d,0,.3*d,e),"strokeColor=none;fillColor=none;");c.vertex=!0;v.insert(c);c.style+=k(a.LeftText);c=new mxCell(h(a.RightText),new mxGeometry(.65*d,0,.3*d,e),"strokeColor=none;fillColor=none;");c.vertex=!0;v.insert(c);c.style+=k(a.RightText);c=new mxCell("",new mxGeometry(.02*d,.2*e,.3*e,.5*e),"shape=mxgraph.ios7.misc.left;strokeColor=#007AFF;strokeWidth=2;");
|
||||
c.vertex=!0;v.insert(c);break;case "iOSTabs":g=parseInt(a.Tabs);v.style+="shape=partialRectangle;right=0;left=0;bottom=0;strokeColor=#979797;"+r(a,c)+u(a,c);0<g&&(d/=g);m=[];for(b=0;b<g;b++)m[b]=new mxCell("",new mxGeometry(b*d,0,d,e),"strokeColor=none;"),m[b].vertex=!0,v.insert(m[b]),m[b].value=h(a["Tab_"+b]),m[b].style+=q(a["Tab_"+b]),m[b].style+=p(a["Tab_"+b])+t(a["Tab_"+b])+C(a["Tab_"+b])+D(a["Tab_"+b])+E(a["Tab_"+b])+F(a["Tab_"+b])+G(a["Tab_"+b])+H(a["Tab_"+b]),m[b].style+="verticalAlign=bottom;",
|
||||
m[b].style=a.Selected==b?m[b].style+"fillColor=#BBBBBB;":m[b].style+"fillColor=none;";break;case "iOSDatePicker":b=new mxCell("",new mxGeometry(0,0,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option11);b.style+=k(a.Option11);b=new mxCell("",new mxGeometry(.5*d,0,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option21);b.style+=k(a.Option21);b=new mxCell("",new mxGeometry(.65*d,0,.15*d,.2*e),"strokeColor=none;fillColor=none;");
|
||||
b.vertex=!0;v.insert(b);b.value=h(a.Option31);b.style+=k(a.Option31);b=new mxCell("",new mxGeometry(0,.2*e,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option12);b.style+=k(a.Option12);b=new mxCell("",new mxGeometry(.5*d,.2*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option22);b.style+=k(a.Option22);b=new mxCell("",new mxGeometry(.65*d,.2*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=
|
||||
h(a.Option32);b.style+=k(a.Option32);b=new mxCell("",new mxGeometry(0,.4*e,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option13);b.style+=k(a.Option13);b=new mxCell("",new mxGeometry(.5*d,.4*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option23);b.style+=k(a.Option23);b=new mxCell("",new mxGeometry(.65*d,.4*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option33);b.style+=k(a.Option33);
|
||||
b=new mxCell("",new mxGeometry(.8*d,.4*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option43);b.style+=k(a.Option43);b=new mxCell("",new mxGeometry(0,.6*e,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option14);b.style+=k(a.Option14);b=new mxCell("",new mxGeometry(.5*d,.6*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option24);b.style+=k(a.Option24);b=new mxCell("",new mxGeometry(.65*
|
||||
d,.6*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option34);b.style+=k(a.Option34);b=new mxCell("",new mxGeometry(.8*d,.6*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option44);b.style+=k(a.Option44);b=new mxCell("",new mxGeometry(0,.8*e,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option15);b.style+=k(a.Option15);b=new mxCell("",new mxGeometry(.5*d,.8*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");
|
||||
b.vertex=!0;v.insert(b);b.value=h(a.Option25);b.style+=k(a.Option25);b=new mxCell("",new mxGeometry(.65*d,.8*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option35);b.style+=k(a.Option35);l=new mxCell("",new mxGeometry(0,.4*e-2,d,4),"shape=line;strokeColor=#888888;");l.vertex=!0;v.insert(l);l=new mxCell("",new mxGeometry(0,.6*e-2,d,4),"shape=line;strokeColor=#888888;");l.vertex=!0;v.insert(l);v.style+=r(a,c)+u(a,c)+"strokeColor=none;";break;case "iOSTimePicker":b=
|
||||
new mxCell("",new mxGeometry(0,0,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option11);b.style+=k(a.Option11);b=new mxCell("",new mxGeometry(.25*d,0,.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option21);b.style+=k(a.Option21);b=new mxCell("",new mxGeometry(0,.2*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option12);b.style+=k(a.Option12);b=new mxCell("",new mxGeometry(.25*d,.2*e,
|
||||
.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option22);b.style+=k(a.Option22);b=new mxCell("",new mxGeometry(0,.4*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option13);b.style+=k(a.Option13);b=new mxCell("",new mxGeometry(.25*d,.4*e,.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option23);b.style+=k(a.Option23);b=new mxCell("",new mxGeometry(.7*d,.4*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");
|
||||
b.vertex=!0;v.insert(b);b.value=h(a.Option33);b.style+=k(a.Option33);b=new mxCell("",new mxGeometry(0,.6*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option14);b.style+=k(a.Option14);b=new mxCell("",new mxGeometry(.25*d,.6*e,.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option24);b.style+=k(a.Option24);b=new mxCell("",new mxGeometry(.7*d,.6*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=
|
||||
h(a.Option34);b.style+=k(a.Option34);b=new mxCell("",new mxGeometry(0,.8*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option15);b.style+=k(a.Option15);b=new mxCell("",new mxGeometry(.25*d,.8*e,.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option25);b.style+=k(a.Option25);l=new mxCell("",new mxGeometry(0,.4*e-2,d,4),"shape=line;strokeColor=#888888;");l.vertex=!0;v.insert(l);l=new mxCell("",new mxGeometry(0,.6*e-2,d,4),"shape=line;strokeColor=#888888;");
|
||||
l.vertex=!0;v.insert(l);v.style+=r(a,c)+u(a,c)+"strokeColor=none;";break;case "iOSCountdownPicker":b=new mxCell("",new mxGeometry(.45*d,0,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option31);b.style+=k(a.Option31);b=new mxCell("",new mxGeometry(.45*d,.2*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option32);b.style+=k(a.Option32);b=new mxCell("",new mxGeometry(0,.4*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=
|
||||
!0;v.insert(b);b.value=h(a.Option13);b.style+=k(a.Option13);b=new mxCell("",new mxGeometry(.2*d,.4*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option23);b.style+=k(a.Option23);b=new mxCell("",new mxGeometry(.45*d,.4*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option33);b.style+=k(a.Option33);b=new mxCell("",new mxGeometry(.6*d,.4*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option43);
|
||||
b.style+=k(a.Option43);b=new mxCell("",new mxGeometry(0,.6*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option14);b.style+=k(a.Option14);b=new mxCell("",new mxGeometry(.45*d,.6*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option34);b.style+=k(a.Option34);b=new mxCell("",new mxGeometry(0,.8*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option15);b.style+=k(a.Option15);b=new mxCell("",
|
||||
new mxGeometry(.45*d,.8*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=h(a.Option35);b.style+=k(a.Option35);l=new mxCell("",new mxGeometry(0,.4*e-2,d,4),"shape=line;strokeColor=#888888;");l.vertex=!0;v.insert(l);l=new mxCell("",new mxGeometry(0,.6*e-2,d,4),"shape=line;strokeColor=#888888;");l.vertex=!0;v.insert(l);v.style+=r(a,c)+u(a,c)+"strokeColor=none;";break;case "iOSBasicCell":v.style+="shape=partialRectangle;left=0;top=0;right=0;fillColor=#ffffff;strokeColor=#C8C7CC;spacing=0;align=left;spacingLeft="+
|
||||
.6*a.SeparatorInset+";";v.style+=q(a.text)+p(a.text)+t(a.text)+I(a.text);v.value=h(a.text);switch(a.AccessoryIndicatorType){case "Disclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);break;case "DetailDisclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.79*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");
|
||||
break;case "AndroidToggle":v.style="Dark"==a.Scheme?a.Checked?v.style+"shape=mxgraph.android.switch_on;fillColor=#666666;":v.style+"shape=mxgraph.android.switch_off;fillColor=#666666;":a.Checked?v.style+"shape=mxgraph.android.switch_on;fillColor=#E6E6E6;":v.style+"shape=mxgraph.android.switch_off;fillColor=#E6E6E6;";break;case "AndroidSlider":v.style+="shape=mxgraph.android.progressScrubberFocused;dx="+a.BarPosition+";fillColor=#33b5e5;";break;case "iOSSegmentedControl":h=parseInt(a.Tabs);v.style+=
|
||||
"strokeColor=none;fillColor=none;";0<h&&(d/=h);g=[];for(b=0;b<h;b++)g[b]=new mxCell("",new mxGeometry(b*d,0,d,e),"strokeColor="+a.FillColor+";"),g[b].vertex=!0,v.insert(g[b]),g[b].value=k(a["Tab_"+b]),g[b].style+=l(a["Tab_"+b]),g[b].style=a.Selected==b?g[b].style+p(a,c):g[b].style+"fillColor=none;";break;case "iOSSlider":v.style+="shape=mxgraph.ios7ui.slider;strokeColor="+a.FillColor+";fillColor=#ffffff;strokeWidth=2;barPos="+100*a.BarPosition+";";break;case "iOSProgressBar":v=new mxCell("",new mxGeometry(Math.round(h),
|
||||
Math.round(g+.25*e),Math.round(d),Math.round(.5*e)),"html=1;whiteSpace=wrap;strokeColor=none;fillColor=#B5B5B5;");v.vertex=!0;d=new mxCell("",new mxGeometry(0,0,d*a.BarPosition,Math.round(.5*e)),"strokeColor=none;"+p(a,c));d.vertex=!0;v.insert(d);break;case "iOSPageControls":v.style+="shape=mxgraph.ios7ui.pageControl;"+p(a,c)+"strokeColor=#D6D6D6;";break;case "iOSStatusBar":v.style+="shape=mxgraph.ios7ui.appBar;"+p(a,c)+"strokeColor=#000000;";b=new mxCell(k(a.Text),new mxGeometry(.35*d,0,.3*d,e),
|
||||
"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.style+=l(a.Text);c=new mxCell(k(a.Carrier),new mxGeometry(.09*d,0,.2*d,e),"strokeColor=none;fillColor=none;");c.vertex=!0;v.insert(c);c.style+=l(a.Carrier);break;case "iOSSearchBar":v.style+="strokeColor=none;"+p(a,c)+m(a,c)+L(a,c)+l(a.Search);v.value=k(a.Search);c=new mxCell("",new mxGeometry(.3*d,.3*e,.4*e,.4*e),"shape=mxgraph.ios7.icons.looking_glass;strokeColor=#000000;fillColor=none;");c.vertex=!0;v.insert(c);break;case "iOSNavBar":v.style+=
|
||||
"shape=partialRectangle;top=0;right=0;left=0;strokeColor=#979797;"+p(a,c)+m(a,c)+l(a.Title);v.value=k(a.Title);b=new mxCell(k(a.LeftText),new mxGeometry(.03*d,0,.3*d,e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.style+=l(a.LeftText);c=new mxCell(k(a.RightText),new mxGeometry(.65*d,0,.3*d,e),"strokeColor=none;fillColor=none;");c.vertex=!0;v.insert(c);c.style+=l(a.RightText);c=new mxCell("",new mxGeometry(.02*d,.2*e,.3*e,.5*e),"shape=mxgraph.ios7.misc.left;strokeColor=#007AFF;strokeWidth=2;");
|
||||
c.vertex=!0;v.insert(c);break;case "iOSTabs":h=parseInt(a.Tabs);v.style+="shape=partialRectangle;right=0;left=0;bottom=0;strokeColor=#979797;"+p(a,c)+m(a,c);0<h&&(d/=h);g=[];for(b=0;b<h;b++)g[b]=new mxCell("",new mxGeometry(b*d,0,d,e),"strokeColor=none;"),g[b].vertex=!0,v.insert(g[b]),g[b].value=k(a["Tab_"+b]),g[b].style+=w(a["Tab_"+b]),g[b].style+=x(a["Tab_"+b])+y(a["Tab_"+b])+z(a["Tab_"+b])+A(a["Tab_"+b])+B(a["Tab_"+b])+E(a["Tab_"+b])+C(a["Tab_"+b])+D(a["Tab_"+b]),g[b].style+="verticalAlign=bottom;",
|
||||
g[b].style=a.Selected==b?g[b].style+"fillColor=#BBBBBB;":g[b].style+"fillColor=none;";break;case "iOSDatePicker":b=new mxCell("",new mxGeometry(0,0,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option11);b.style+=l(a.Option11);b=new mxCell("",new mxGeometry(.5*d,0,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option21);b.style+=l(a.Option21);b=new mxCell("",new mxGeometry(.65*d,0,.15*d,.2*e),"strokeColor=none;fillColor=none;");
|
||||
b.vertex=!0;v.insert(b);b.value=k(a.Option31);b.style+=l(a.Option31);b=new mxCell("",new mxGeometry(0,.2*e,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option12);b.style+=l(a.Option12);b=new mxCell("",new mxGeometry(.5*d,.2*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option22);b.style+=l(a.Option22);b=new mxCell("",new mxGeometry(.65*d,.2*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=
|
||||
k(a.Option32);b.style+=l(a.Option32);b=new mxCell("",new mxGeometry(0,.4*e,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option13);b.style+=l(a.Option13);b=new mxCell("",new mxGeometry(.5*d,.4*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option23);b.style+=l(a.Option23);b=new mxCell("",new mxGeometry(.65*d,.4*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option33);b.style+=l(a.Option33);
|
||||
b=new mxCell("",new mxGeometry(.8*d,.4*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option43);b.style+=l(a.Option43);b=new mxCell("",new mxGeometry(0,.6*e,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option14);b.style+=l(a.Option14);b=new mxCell("",new mxGeometry(.5*d,.6*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option24);b.style+=l(a.Option24);b=new mxCell("",new mxGeometry(.65*
|
||||
d,.6*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option34);b.style+=l(a.Option34);b=new mxCell("",new mxGeometry(.8*d,.6*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option44);b.style+=l(a.Option44);b=new mxCell("",new mxGeometry(0,.8*e,.5*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option15);b.style+=l(a.Option15);b=new mxCell("",new mxGeometry(.5*d,.8*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");
|
||||
b.vertex=!0;v.insert(b);b.value=k(a.Option25);b.style+=l(a.Option25);b=new mxCell("",new mxGeometry(.65*d,.8*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option35);b.style+=l(a.Option35);q=new mxCell("",new mxGeometry(0,.4*e-2,d,4),"shape=line;strokeColor=#888888;");q.vertex=!0;v.insert(q);q=new mxCell("",new mxGeometry(0,.6*e-2,d,4),"shape=line;strokeColor=#888888;");q.vertex=!0;v.insert(q);v.style+=p(a,c)+m(a,c)+"strokeColor=none;";break;case "iOSTimePicker":b=
|
||||
new mxCell("",new mxGeometry(0,0,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option11);b.style+=l(a.Option11);b=new mxCell("",new mxGeometry(.25*d,0,.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option21);b.style+=l(a.Option21);b=new mxCell("",new mxGeometry(0,.2*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option12);b.style+=l(a.Option12);b=new mxCell("",new mxGeometry(.25*d,.2*e,
|
||||
.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option22);b.style+=l(a.Option22);b=new mxCell("",new mxGeometry(0,.4*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option13);b.style+=l(a.Option13);b=new mxCell("",new mxGeometry(.25*d,.4*e,.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option23);b.style+=l(a.Option23);b=new mxCell("",new mxGeometry(.7*d,.4*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");
|
||||
b.vertex=!0;v.insert(b);b.value=k(a.Option33);b.style+=l(a.Option33);b=new mxCell("",new mxGeometry(0,.6*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option14);b.style+=l(a.Option14);b=new mxCell("",new mxGeometry(.25*d,.6*e,.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option24);b.style+=l(a.Option24);b=new mxCell("",new mxGeometry(.7*d,.6*e,.15*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=
|
||||
k(a.Option34);b.style+=l(a.Option34);b=new mxCell("",new mxGeometry(0,.8*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option15);b.style+=l(a.Option15);b=new mxCell("",new mxGeometry(.25*d,.8*e,.3*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option25);b.style+=l(a.Option25);q=new mxCell("",new mxGeometry(0,.4*e-2,d,4),"shape=line;strokeColor=#888888;");q.vertex=!0;v.insert(q);q=new mxCell("",new mxGeometry(0,.6*e-2,d,4),"shape=line;strokeColor=#888888;");
|
||||
q.vertex=!0;v.insert(q);v.style+=p(a,c)+m(a,c)+"strokeColor=none;";break;case "iOSCountdownPicker":b=new mxCell("",new mxGeometry(.45*d,0,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option31);b.style+=l(a.Option31);b=new mxCell("",new mxGeometry(.45*d,.2*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option32);b.style+=l(a.Option32);b=new mxCell("",new mxGeometry(0,.4*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=
|
||||
!0;v.insert(b);b.value=k(a.Option13);b.style+=l(a.Option13);b=new mxCell("",new mxGeometry(.2*d,.4*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option23);b.style+=l(a.Option23);b=new mxCell("",new mxGeometry(.45*d,.4*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option33);b.style+=l(a.Option33);b=new mxCell("",new mxGeometry(.6*d,.4*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option43);
|
||||
b.style+=l(a.Option43);b=new mxCell("",new mxGeometry(0,.6*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option14);b.style+=l(a.Option14);b=new mxCell("",new mxGeometry(.45*d,.6*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option34);b.style+=l(a.Option34);b=new mxCell("",new mxGeometry(0,.8*e,.25*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option15);b.style+=l(a.Option15);b=new mxCell("",
|
||||
new mxGeometry(.45*d,.8*e,.2*d,.2*e),"strokeColor=none;fillColor=none;");b.vertex=!0;v.insert(b);b.value=k(a.Option35);b.style+=l(a.Option35);q=new mxCell("",new mxGeometry(0,.4*e-2,d,4),"shape=line;strokeColor=#888888;");q.vertex=!0;v.insert(q);q=new mxCell("",new mxGeometry(0,.6*e-2,d,4),"shape=line;strokeColor=#888888;");q.vertex=!0;v.insert(q);v.style+=p(a,c)+m(a,c)+"strokeColor=none;";break;case "iOSBasicCell":v.style+="shape=partialRectangle;left=0;top=0;right=0;fillColor=#ffffff;strokeColor=#C8C7CC;spacing=0;align=left;spacingLeft="+
|
||||
.6*a.SeparatorInset+";";v.style+=w(a.text)+x(a.text)+y(a.text)+H(a.text);v.value=k(a.text);switch(a.AccessoryIndicatorType){case "Disclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);break;case "DetailDisclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.79*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");
|
||||
c.vertex=!0;v.insert(c);break;case "DetailIndicator":c=new mxCell("",new mxGeometry(.87*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");c.vertex=!0;v.insert(c);break;case "CheckMark":c=new mxCell("",new mxGeometry(.89*d,.37*e,.4*e,.26*e),"shape=mxgraph.ios7.misc.check;strokeColor=#007AFF;strokeWidth=2;"),c.vertex=!0,v.insert(c)}break;case "iOSSubtitleCell":v.style+="shape=partialRectangle;left=0;top=0;right=0;fillColor=#ffffff;strokeColor=#C8C7CC;align=left;spacing=0;verticalAlign=top;spacingLeft="+
|
||||
.6*a.SeparatorInset+";";v.style+=q(a.subtext)+p(a.subtext)+t(a.subtext);v.value=h(a.subtext);c=new mxCell("",new mxGeometry(0,.4*e,d,.6*e),"fillColor=none;strokeColor=none;spacing=0;align=left;verticalAlign=bottom;spacingLeft="+.6*a.SeparatorInset+";");c.vertex=!0;v.insert(c);c.style+=q(a.text)+p(a.text)+t(a.text);c.value=h(a.text);switch(a.AccessoryIndicatorType){case "Disclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=
|
||||
.6*a.SeparatorInset+";";v.style+=w(a.subtext)+x(a.subtext)+y(a.subtext);v.value=k(a.subtext);c=new mxCell("",new mxGeometry(0,.4*e,d,.6*e),"fillColor=none;strokeColor=none;spacing=0;align=left;verticalAlign=bottom;spacingLeft="+.6*a.SeparatorInset+";");c.vertex=!0;v.insert(c);c.style+=w(a.text)+x(a.text)+y(a.text);c.value=k(a.text);switch(a.AccessoryIndicatorType){case "Disclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=
|
||||
!0;v.insert(c);break;case "DetailDisclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.79*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");c.vertex=!0;v.insert(c);break;case "DetailIndicator":c=new mxCell("",new mxGeometry(.87*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");c.vertex=!0;v.insert(c);
|
||||
break;case "CheckMark":c=new mxCell("",new mxGeometry(.89*d,.37*e,.4*e,.26*e),"shape=mxgraph.ios7.misc.check;strokeColor=#007AFF;strokeWidth=2;"),c.vertex=!0,v.insert(c)}break;case "iOSRightDetailCell":v.style+="shape=partialRectangle;left=0;top=0;right=0;fillColor=#ffffff;strokeColor=#C8C7CC;align=left;spacing=0;verticalAlign=middle;spacingLeft="+.6*a.SeparatorInset+";";v.style+=q(a.subtext)+p(a.subtext)+t(a.subtext);v.value=h(a.subtext);switch(a.AccessoryIndicatorType){case "Disclosure":c=new mxCell("",
|
||||
break;case "CheckMark":c=new mxCell("",new mxGeometry(.89*d,.37*e,.4*e,.26*e),"shape=mxgraph.ios7.misc.check;strokeColor=#007AFF;strokeWidth=2;"),c.vertex=!0,v.insert(c)}break;case "iOSRightDetailCell":v.style+="shape=partialRectangle;left=0;top=0;right=0;fillColor=#ffffff;strokeColor=#C8C7CC;align=left;spacing=0;verticalAlign=middle;spacingLeft="+.6*a.SeparatorInset+";";v.style+=w(a.subtext)+x(a.subtext)+y(a.subtext);v.value=k(a.subtext);switch(a.AccessoryIndicatorType){case "Disclosure":c=new mxCell("",
|
||||
new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.55*d,0,.3*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;");break;case "DetailDisclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.79*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");
|
||||
c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.45*d,0,.3*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;");break;case "DetailIndicator":c=new mxCell("",new mxGeometry(.87*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.52*d,0,.3*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;");break;case "CheckMark":c=new mxCell("",new mxGeometry(.89*d,.37*e,.4*e,.26*e),"shape=mxgraph.ios7.misc.check;strokeColor=#007AFF;strokeWidth=2;");
|
||||
c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.55*d,0,.3*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;");break;default:c=new mxCell("",new mxGeometry(.65*d,0,.3*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;")}c.vertex=!0;v.insert(c);c.style+=q(a.text)+p(a.text)+t(a.text);c.value=h(a.text);break;case "iOSLeftDetailCell":v.style+="shape=partialRectangle;left=0;top=0;right=0;fillColor=#ffffff;strokeColor=#C8C7CC;";c=new mxCell("",new mxGeometry(0,0,.25*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;verticalAlign=middle;spacingRight=3;");
|
||||
c.vertex=!0;v.insert(c);c.style+=q(a.subtext)+p(a.subtext)+t(a.subtext);c.value=h(a.subtext);c=new mxCell("",new mxGeometry(.25*d,0,.5*d,e),"fillColor=none;strokeColor=none;spacing=0;align=left;verticalAlign=middle;spacingLeft=3;");c.vertex=!0;v.insert(c);c.style+=q(a.text)+p(a.text)+t(a.text);c.value=h(a.text);switch(a.AccessoryIndicatorType){case "Disclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);break;
|
||||
c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.55*d,0,.3*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;");break;default:c=new mxCell("",new mxGeometry(.65*d,0,.3*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;")}c.vertex=!0;v.insert(c);c.style+=w(a.text)+x(a.text)+y(a.text);c.value=k(a.text);break;case "iOSLeftDetailCell":v.style+="shape=partialRectangle;left=0;top=0;right=0;fillColor=#ffffff;strokeColor=#C8C7CC;";g=new mxCell("",new mxGeometry(0,0,.25*d,e),"fillColor=none;strokeColor=none;spacing=0;align=right;verticalAlign=middle;spacingRight=3;");
|
||||
g.vertex=!0;v.insert(g);g.style+=w(a.subtext)+x(a.subtext)+y(a.subtext);g.value=k(a.subtext);c=new mxCell("",new mxGeometry(.25*d,0,.5*d,e),"fillColor=none;strokeColor=none;spacing=0;align=left;verticalAlign=middle;spacingLeft=3;");c.vertex=!0;v.insert(c);c.style+=w(a.text)+x(a.text)+y(a.text);c.value=k(a.text);switch(a.AccessoryIndicatorType){case "Disclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);break;
|
||||
case "DetailDisclosure":c=new mxCell("",new mxGeometry(.91*d,.35*e,.15*e,.3*e),"shape=mxgraph.ios7.misc.right;strokeColor=#D2D2D6;");c.vertex=!0;v.insert(c);c=new mxCell("",new mxGeometry(.79*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");c.vertex=!0;v.insert(c);break;case "DetailIndicator":c=new mxCell("",new mxGeometry(.87*d,.25*e,.5*e,.5*e),"shape=mxgraph.ios7.icons.info;strokeColor=#007AFF;fillColor=#ffffff;");c.vertex=!0;v.insert(c);break;case "CheckMark":c=
|
||||
new mxCell("",new mxGeometry(.89*d,.37*e,.4*e,.26*e),"shape=mxgraph.ios7.misc.check;strokeColor=#007AFF;strokeWidth=2;"),c.vertex=!0,v.insert(c)}break;case "iOSTableGroupedSectionBreak":v.style+="shape=partialRectangle;left=0;right=0;fillColor=#EFEFF4;strokeColor=#C8C7CC;";c=new mxCell("",new mxGeometry(0,0,d,.4*e),"fillColor=none;strokeColor=none;spacing=10;align=left;");c.vertex=!0;v.insert(c);c.style+=q(a.text)+p(a.text)+t(a.text);c.value=h(a.text);c=new mxCell("",new mxGeometry(0,.6*e,d,.4*e),
|
||||
"fillColor=none;strokeColor=none;spacing=10;align=left;");c.vertex=!0;v.insert(c);c.style+=q(a["bottom-text"])+p(a["bottom-text"])+t(a["bottom-text"]);c.value=h(a["bottom-text"]);break;case "iOSTablePlainHeaderFooter":v.style+="fillColor=#F7F7F7;strokeColor=none;align=left;spacingLeft=5;spacing=0;";v.style+=q(a.text)+p(a.text)+t(a.text);v.value=h(a.text);break;case "SMPage":a.Group?(v.style+="strokeColor=none;fillColor=none;",b=new mxCell("",new mxGeometry(0,0,.9*d,.9*e),"part=1;"),b.vertex=!0,v.insert(b),
|
||||
b.style+=y(a,c)+r(a,c)+u(a,c)+z(a)+A(a),d=new mxCell("",new mxGeometry(.1*d,.1*e,.9*d,.9*e),"part=1;"),d.vertex=!0,v.insert(d),d.style+=y(a,c)+r(a,c)+u(a,c)+z(a)+A(a)+k(a),d.value=h(a.Text),a.Future&&(b.style+="dashed=1;",d.style+="dashed=1;")):(a.Future&&(v.style+="dashed=1;"),v.style+=y(a,c)+r(a,c)+u(a,c)+z(a)+A(a)+k(a),v.value=h(a.Text));break;case "SMHome":case "SMPrint":case "SMSearch":case "SMSettings":case "SMSitemap":case "SMSuccess":case "SMVideo":case "SMAudio":case "SMCalendar":case "SMChart":case "SMCloud":case "SMDocument":case "SMForm":case "SMGame":case "SMUpload":v.style+=
|
||||
y(a,c)+r(a,c)+u(a,c)+z(a)+A(a);b=null;switch(f.Class){case "SMHome":b=new mxCell("",new mxGeometry(.5*d-.4*e,.1*e,.8*e,.8*e),"part=1;shape=mxgraph.office.concepts.home;flipH=1;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMPrint":b=new mxCell("",new mxGeometry(.5*d-.4*e,.19*e,.8*e,.62*e),"part=1;shape=mxgraph.office.devices.printer;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMSearch":b=new mxCell("",new mxGeometry(.5*d-.4*e,.1*e,.8*e,.8*e),"part=1;shape=mxgraph.office.concepts.search;flipH=1;fillColor=#e6e6e6;opacity=50;strokeColor=none;");
|
||||
new mxCell("",new mxGeometry(.89*d,.37*e,.4*e,.26*e),"shape=mxgraph.ios7.misc.check;strokeColor=#007AFF;strokeWidth=2;"),c.vertex=!0,v.insert(c)}break;case "iOSTableGroupedSectionBreak":v.style+="shape=partialRectangle;left=0;right=0;fillColor=#EFEFF4;strokeColor=#C8C7CC;";b=new mxCell("",new mxGeometry(0,0,d,.4*e),"fillColor=none;strokeColor=none;spacing=10;align=left;");b.vertex=!0;v.insert(b);b.style+=w(a.text)+x(a.text)+y(a.text);b.value=k(a.text);c=new mxCell("",new mxGeometry(0,.6*e,d,.4*e),
|
||||
"fillColor=none;strokeColor=none;spacing=10;align=left;");c.vertex=!0;v.insert(c);c.style+=w(a["bottom-text"])+x(a["bottom-text"])+y(a["bottom-text"]);c.value=k(a["bottom-text"]);break;case "iOSTablePlainHeaderFooter":v.style+="fillColor=#F7F7F7;strokeColor=none;align=left;spacingLeft=5;spacing=0;";v.style+=w(a.text)+x(a.text)+y(a.text);v.value=k(a.text);break;case "SMPage":a.Group?(v.style+="strokeColor=none;fillColor=none;",b=new mxCell("",new mxGeometry(0,0,.9*d,.9*e),"part=1;"),b.vertex=!0,v.insert(b),
|
||||
b.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a),h=new mxCell("",new mxGeometry(.1*d,.1*e,.9*d,.9*e),"part=1;"),h.vertex=!0,v.insert(h),h.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+l(a),h.value=k(a.Text),a.Future&&(b.style+="dashed=1;",h.style+="dashed=1;")):(a.Future&&(v.style+="dashed=1;"),v.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+l(a),v.value=k(a.Text));break;case "SMHome":case "SMPrint":case "SMSearch":case "SMSettings":case "SMSitemap":case "SMSuccess":case "SMVideo":case "SMAudio":case "SMCalendar":case "SMChart":case "SMCloud":case "SMDocument":case "SMForm":case "SMGame":case "SMUpload":v.style+=
|
||||
n(a,c)+p(a,c)+m(a,c)+t(a)+r(a);b=null;switch(f.Class){case "SMHome":b=new mxCell("",new mxGeometry(.5*d-.4*e,.1*e,.8*e,.8*e),"part=1;shape=mxgraph.office.concepts.home;flipH=1;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMPrint":b=new mxCell("",new mxGeometry(.5*d-.4*e,.19*e,.8*e,.62*e),"part=1;shape=mxgraph.office.devices.printer;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMSearch":b=new mxCell("",new mxGeometry(.5*d-.4*e,.1*e,.8*e,.8*e),"part=1;shape=mxgraph.office.concepts.search;flipH=1;fillColor=#e6e6e6;opacity=50;strokeColor=none;");
|
||||
break;case "SMSettings":b=new mxCell("",new mxGeometry(.5*d-.35*e,.15*e,.7*e,.7*e),"part=1;shape=mxgraph.mscae.enterprise.settings;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMSitemap":b=new mxCell("",new mxGeometry(.5*d-.35*e,.2*e,.7*e,.6*e),"part=1;shape=mxgraph.office.sites.site_collection;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMSuccess":b=new mxCell("",new mxGeometry(.5*d-.3*e,.25*e,.6*e,.5*e),"part=1;shape=mxgraph.mscae.general.checkmark;fillColor=#e6e6e6;opacity=50;strokeColor=none;");
|
||||
break;case "SMVideo":b=new mxCell("",new mxGeometry(.5*d-.4*e,.2*e,.8*e,.6*e),"part=1;shape=mxgraph.office.concepts.video_play;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMAudio":b=new mxCell("",new mxGeometry(.5*d-.3*e,.2*e,.6*e,.6*e),"part=1;shape=mxgraph.mscae.general.audio;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMCalendar":b=new mxCell("",new mxGeometry(.5*d-.4*e,.15*e,.8*e,.7*e),"part=1;shape=mxgraph.office.concepts.form;fillColor=#e6e6e6;opacity=50;strokeColor=none;");
|
||||
break;case "SMChart":c=r(a,c);c=""==c?"#ffffff;":c.replace("fillColor=","");b=new mxCell("",new mxGeometry(.5*d-.35*e,.15*e,.7*e,.7*e),"part=1;shape=mxgraph.ios7.icons.pie_chart;fillColor=#e6e6e6;fillOpacity=50;strokeWidth=4;strokeColor="+c);break;case "SMCloud":b=new mxCell("",new mxGeometry(.5*d-.4*e,.27*e,.8*e,.46*e),"part=1;shape=mxgraph.networks.cloud;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMDocument":b=new mxCell("",new mxGeometry(.5*d-.25*e,.15*e,.5*e,.7*e),"part=1;shape=mxgraph.mscae.enterprise.document;fillColor=#e6e6e6;opacity=50;strokeColor=none;");
|
||||
break;case "SMChart":h=p(a,c);h=""==h?"#ffffff;":h.replace("fillColor=","");b=new mxCell("",new mxGeometry(.5*d-.35*e,.15*e,.7*e,.7*e),"part=1;shape=mxgraph.ios7.icons.pie_chart;fillColor=#e6e6e6;fillOpacity=50;strokeWidth=4;strokeColor="+h);break;case "SMCloud":b=new mxCell("",new mxGeometry(.5*d-.4*e,.27*e,.8*e,.46*e),"part=1;shape=mxgraph.networks.cloud;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMDocument":b=new mxCell("",new mxGeometry(.5*d-.25*e,.15*e,.5*e,.7*e),"part=1;shape=mxgraph.mscae.enterprise.document;fillColor=#e6e6e6;opacity=50;strokeColor=none;");
|
||||
break;case "SMForm":b=new mxCell("",new mxGeometry(.5*d-.4*e,.15*e,.8*e,.7*e),"part=1;shape=mxgraph.office.concepts.form;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMGame":b=new mxCell("",new mxGeometry(.5*d-.4*e,.2*e,.8*e,.6*e),"part=1;shape=mxgraph.mscae.general.game_controller;fillColor=#e6e6e6;opacity=50;strokeColor=none;");break;case "SMUpload":b=new mxCell("",new mxGeometry(.5*d-.4*e,.2*e,.8*e,.6*e),"part=1;shape=mxgraph.mscae.enterprise.backup_online;fillColor=#e6e6e6;opacity=50;strokeColor=none;")}b.vertex=
|
||||
!0;v.insert(b);b.style+=k(a);b.value=h(a.Text)}return v}var V=["GSDFDProcessBlock","RoundedRectangleContainerBlock","UI2ButtonBlock","UMLStateBlock"],W=["ProcessBlock","UMLActivationBlock"],T="VennPlainColor1 VennPlainColor2 VennPlainColor3 VennPlainColor4 VennPlainColor5 VennPlainColor6 VennPlainColor7 VennPlainColor8 VennGradientColor1 VennGradientColor2 VennGradientColor3 VennGradientColor4 VennGradientColor5 VennGradientColor6 VennGradientColor7 VennGradientColor8 UMLEndBlock DefaultTextBlockNew iOSButton".split(" "),
|
||||
Y="AWSAndroidBlock3 AWSiOSBlock3 AWSJavaBlock3 AWSJavaScript AWSNetBlock3 AWSNodeJSBlock3 AWSPHPBlock3 AWSPythonBlock3 AWSRubyBlock3 AWSXamarin AWSCLIBlock3 AWSEclipseToolkitBlock3 AWSVisualStudioToolkitBlock3 AWSWindowsPowershellToolkitBlock3 DefaultTextBlock RectangleContainerBlock UMLStartBlock UMLEndBlock DefaultTextBlockNew UMLHForkJoinBlock iOSButton".split(" "),U="VennPlainColor1 VennPlainColor2 VennPlainColor3 VennPlainColor4 VennPlainColor5 VennPlainColor6 VennPlainColor7 VennPlainColor8 VennGradientColor1 VennGradientColor2 VennGradientColor3 VennGradientColor4 VennGradientColor5 VennGradientColor6 VennGradientColor7 VennGradientColor8".split(" "),
|
||||
X=["AEUSBBlock","AGSCutandpasteBlock","iOSDeviceiPadLandscape","iOSDeviceiPadProLandscape"],P={None:"none",Arrow:"block;endFill=1","Hollow Arrow":"block;endFill=0","Open Arrow":"open;","CFN ERD Zero Or More Arrow":"ERzeroToMany;startSize=10","CFN ERD One Or More Arrow":"ERoneToMany;startSize=10","CFN ERD Many Arrow":"ERmany;startSize=10","CFN ERD Exactly One Arrow":"ERmandOne;startSize=10","CFN ERD Zero Or One Arrow":"ERzeroToOne;startSize=10","CFN ERD One Arrow":"ERone;startSize=16",Generalization:"block;endFill=0;startSize=12",
|
||||
"Big Open Arrow":"open;startSize=10",Asynch1:"openAsync;flipH=1;startSize=10",Asynch2:"openAsync;startSize=10",Aggregation:"diamond;endFill=0;startSize=16",Composition:"diamond;endFill=1;startSize=16",BlockEnd:"none;endFill=1;startSize=16"},N={DefaultTextBlockNew:"text;strokeColor=none;fillColor=none",DefaultTextBlock:"text;strokeColor=none;fillColor=none",DefaultSquareBlock:"",DefaultNoteBlock:"shape=note;size=15",DefaultNoteBlockV2:"shape=note;size=15",HotspotBlock:"strokeColor=none;opacity=50",
|
||||
!0;v.insert(b);b.style+=l(a);b.value=k(a.Text);break;case "UMLMultiplicityBlock":v.style+="strokeColor=none;fillColor=none;";b=new mxCell("",new mxGeometry(.1*d,0,.9*d,.9*e),"part=1;");b.vertex=!0;v.insert(b);b.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a);h=new mxCell("",new mxGeometry(0,.1*e,.9*d,.9*e),"part=1;");h.vertex=!0;v.insert(h);h.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+l(a.Text);h.value=k(a.Text);break;case "UMLConstraintBlock":b=new mxCell("",new mxGeometry(0,0,.25*e,e),"shape=curlyBracket;rounded=1;");
|
||||
b.vertex=!0;v.insert(b);h=new mxCell("",new mxGeometry(d-.25*e,0,.25*e,e),"shape=curlyBracket;rounded=1;flipH=1;");h.vertex=!0;v.insert(h);d=new mxCell("",new mxGeometry(.25*e,0,d-.5*e,e),"strokeColor=none;fillColor=none;");d.vertex=!0;d.value=k(a);v.insert(d);v.style="strokeColor=none;fillColor=none;";v.style+=J(a,c,v);b.style+=n(a,c)+m(a,c)+t(a)+u(a)+r(a);h.style+=n(a,c)+m(a,c)+t(a)+u(a)+r(a);d.style+=w(a)+x(a)+y(a)+z(a)+A(a)+B(a)+E(a)+C(a)+D(a)+H(a);break;case "UMLTextBlock":v.style+="strokeColor=none;"+
|
||||
m(a,c)+t(a)+u(a)+r(a)+l(a.Text);v.value=k(a.Text);break;case "BPMNActivity":switch(a.bpmnActivityType){case 1:v.style+=p(a,c)+n(a,c)+m(a,c)+t(a)+u(a)+r(a)+l(a.Text);v.value=k(a.Text);break;case 2:v.style+="shape=ext;double=1;"+p(a,c)+n(a,c)+m(a,c)+t(a)+u(a)+r(a)+l(a.Text);v.value=k(a.Text);break;case 3:v.style+="shape=ext;dashed=1;dashPattern=2 1;"+p(a,c)+n(a,c)+m(a,c)+t(a)+r(a)+l(a.Text);v.value=k(a.Text);break;case 4:v.style+="shape=ext;strokeWidth=2;"+p(a,c)+n(a,c)+m(a,c)+t(a)+u(a)+l(a.Text),v.value=
|
||||
k(a.Text)}if(0!=a.bpmnTaskType){switch(a.bpmnTaskType){case 1:b=new mxCell("",new mxGeometry(0,0,19,12),"shape=message;");b.geometry.offset=new mxPoint(4,7);break;case 2:b=new mxCell("",new mxGeometry(0,0,19,12),"shape=message;");b.geometry.offset=new mxPoint(4,7);break;case 3:b=new mxCell("",new mxGeometry(0,0,15,15),"shape=mxgraph.bpmn.user_task;");b.geometry.offset=new mxPoint(4,5);break;case 4:b=new mxCell("",new mxGeometry(0,0,15,10),"shape=mxgraph.bpmn.manual_task;");b.geometry.offset=new mxPoint(4,
|
||||
7);break;case 5:b=new mxCell("",new mxGeometry(0,0,18,13),"shape=mxgraph.bpmn.business_rule_task;");b.geometry.offset=new mxPoint(4,7);break;case 6:b=new mxCell("",new mxGeometry(0,0,15,15),"shape=mxgraph.bpmn.service_task;");b.geometry.offset=new mxPoint(4,5);break;case 7:b=new mxCell("",new mxGeometry(0,0,15,15),"shape=mxgraph.bpmn.script_task;"),b.geometry.offset=new mxPoint(4,5)}1==a.bpmnTaskType?(d=p(a,c),h=n(a,c),h=h.replace("strokeColor","fillColor"),d=d.replace("fillColor","strokeColor"),
|
||||
""==h&&(h="fillColor=#000000;"),""==d&&(d="strokeColor=#ffffff;"),b.style+=d+h+"part=1;"):b.style+=p(a,c)+n(a,c)+"part=1;";b.geometry.relative=!0;b.vertex=!0;v.insert(b)}d=0;0!=a.bpmnActivityMarker1&&d++;0!=a.bpmnActivityMarker2&&d++;e=0;1==d?e=-7.5:2==d&&(e=-19);if(0!=a.bpmnActivityMarker1){switch(a.bpmnActivityMarker1){case 1:b=new mxCell("",new mxGeometry(.5,1,15,15),"shape=plus;part=1;");b.geometry.offset=new mxPoint(e,-20);b.style+=p(a,c)+n(a,c);break;case 2:b=new mxCell("",new mxGeometry(.5,
|
||||
1,15,15),"shape=mxgraph.bpmn.loop;part=1;");b.geometry.offset=new mxPoint(e,-20);b.style+=p(a,c)+n(a,c);break;case 3:b=new mxCell("",new mxGeometry(.5,1,15,15),"shape=parallelMarker;part=1;");b.geometry.offset=new mxPoint(e,-20);b.style+=p(a,c)+n(a,c);break;case 4:b=new mxCell("",new mxGeometry(.5,1,15,15),"shape=parallelMarker;direction=south;part=1;");b.geometry.offset=new mxPoint(e,-20);b.style+=p(a,c)+n(a,c);break;case 5:b=new mxCell("",new mxGeometry(.5,1,15,10),"shape=mxgraph.bpmn.ad_hoc;strokeColor=none;flipH=1;part=1;");
|
||||
b.geometry.offset=new mxPoint(e,-17);h=n(a,c);h=h.replace("strokeColor","fillColor");""==h&&(h="fillColor=#000000;");b.style+=h;break;case 6:b=new mxCell("",new mxGeometry(.5,1,15,11),"shape=mxgraph.bpmn.compensation;part=1;"),b.geometry.offset=new mxPoint(e,-18),b.style+=p(a,c)+n(a,c)}b.geometry.relative=!0;b.vertex=!0;v.insert(b)}2==d&&(e=5);if(0!=a.bpmnActivityMarker2){switch(a.bpmnActivityMarker2){case 1:b=new mxCell("",new mxGeometry(.5,1,15,15),"shape=plus;part=1;");b.geometry.offset=new mxPoint(e,
|
||||
-20);b.style+=p(a,c)+n(a,c);break;case 2:b=new mxCell("",new mxGeometry(.5,1,15,15),"shape=mxgraph.bpmn.loop;part=1;");b.geometry.offset=new mxPoint(e,-20);b.style+=p(a,c)+n(a,c);break;case 3:b=new mxCell("",new mxGeometry(.5,1,15,15),"shape=parallelMarker;part=1;");b.geometry.offset=new mxPoint(e,-20);b.style+=p(a,c)+n(a,c);break;case 4:b=new mxCell("",new mxGeometry(.5,1,15,15),"shape=parallelMarker;direction=south;part=1;");b.geometry.offset=new mxPoint(e,-20);b.style+=p(a,c)+n(a,c);break;case 5:b=
|
||||
new mxCell("",new mxGeometry(.5,1,15,10),"shape=mxgraph.bpmn.ad_hoc;strokeColor=none;flipH=1;part=1;");b.geometry.offset=new mxPoint(e,-17);h=n(a,c);h=h.replace("strokeColor","fillColor");""==h&&(h="fillColor=#000000;");b.style+=h;break;case 6:b=new mxCell("",new mxGeometry(.5,1,15,11),"shape=mxgraph.bpmn.compensation;part=1;"),b.geometry.offset=new mxPoint(e,-18),b.style+=p(a,c)+n(a,c)}b.geometry.relative=!0;b.vertex=!0;v.insert(b)}break;case "BPMNEvent":v.style+="shape=mxgraph.bpmn.shape;verticalLabelPosition=bottom;verticalAlign=top;"+
|
||||
p(a,c)+n(a,c)+m(a,c)+t(a)+u(a)+r(a)+w(a)+x(a)+y(a)+z(a)+A(a)+B(a)+E(a)+C(a)+D(a);v.value=k(a.Text);if(1==a.bpmnDashed)switch(a.bpmnEventGroup){case 0:v.style+="outline=eventNonint;";break;case 1:v.style+="outline=boundNonint;";break;case 2:v.style+="outline=end;"}else switch(a.bpmnEventGroup){case 0:v.style+="outline=standard;";break;case 1:v.style+="outline=throwing;";break;case 2:v.style+="outline=end;"}switch(a.bpmnEventType){case 1:v.style+="symbol=message;";break;case 2:v.style+="symbol=timer;";
|
||||
break;case 3:v.style+="symbol=escalation;";break;case 4:v.style+="symbol=conditional;";break;case 5:v.style+="symbol=link;";break;case 6:v.style+="symbol=error;";break;case 7:v.style+="symbol=cancel;";break;case 8:v.style+="symbol=compensation;";break;case 9:v.style+="symbol=signal;";break;case 10:v.style+="symbol=multiple;";break;case 11:v.style+="symbol=parallelMultiple;";break;case 12:v.style+="symbol=terminate;"}break;case "BPMNConversation":v.style+="shape=hexagon;"+p(a,c)+n(a,c)+m(a,c)+t(a)+
|
||||
u(a)+l(a);v.value=k(a.Text);v.style=0==a.bpmnConversationType?v.style+r(a):v.style+"strokeWidth=2;";a.bpmnIsSubConversation&&(b=new mxCell("",new mxGeometry(.5,1,12,12),"shape=plus;part=1;"),b.geometry.offset=new mxPoint(-6,-17),b.style+=p(a,c)+n(a,c),b.geometry.relative=!0,b.vertex=!0,v.insert(b));break;case "BPMNGateway":v.style+="shape=mxgraph.bpmn.shape;perimeter=rhombusPerimeter;background=gateway;"+p(a,c)+n(a,c)+m(a,c)+t(a)+u(a)+l(a);switch(a.bpmnGatewayType){case 0:v.style+="outline=none;symbol=general;";
|
||||
break;case 1:v.style+="outline=none;symbol=exclusiveGw;";break;case 2:v.style+="outline=catching;symbol=multiple;";break;case 3:v.style+="outline=none;symbol=parallelGw;";break;case 4:v.style+="outline=end;symbol=general;";break;case 5:v.style+="outline=standard;symbol=multiple;";break;case 6:v.style+="outline=none;symbol=complexGw;";break;case 7:v.style+="outline=standard;symbol=parallelMultiple;"}break;case "BPMNData":v.style+="shape=note;size=14;"+p(a,c)+n(a,c)+m(a,c)+t(a)+u(a)+l(a);switch(a.bpmnDataType){case 1:b=
|
||||
new mxCell("",new mxGeometry(.5,1,12,10),"shape=parallelMarker;part=1;");b.geometry.offset=new mxPoint(-6,-15);b.style+=p(a,c)+n(a,c);b.geometry.relative=!0;b.vertex=!0;v.insert(b);break;case 2:b=new mxCell("",new mxGeometry(0,0,12,10),"shape=singleArrow;part=1;arrowWidth=0.4;arrowSize=0.4;");b.geometry.offset=new mxPoint(3,3);b.style+=p(a,c)+n(a,c);b.geometry.relative=!0;b.vertex=!0;v.insert(b);v.style+="verticalLabelPosition=bottom;verticalAlign=top;";b=new mxCell("",new mxGeometry(0,0,d,20),"strokeColor=none;fillColor=none;");
|
||||
b.geometry.offset=new mxPoint(0,14);b.geometry.relative=!0;b.vertex=!0;v.insert(b);b.value=k(a.Text);b.style+=l(a);break;case 3:b=new mxCell("",new mxGeometry(0,0,12,10),"shape=singleArrow;part=1;arrowWidth=0.4;arrowSize=0.4;"),b.geometry.offset=new mxPoint(3,3),b.style+=n(a,c),b.geometry.relative=!0,b.vertex=!0,v.insert(b),h=n(a,c),h=h.replace("strokeColor","fillColor"),""==h&&(h="fillColor=#000000;"),b.style+=h,b=new mxCell("",new mxGeometry(0,0,d,20),"strokeColor=none;fillColor=none;"),b.geometry.offset=
|
||||
new mxPoint(0,14),b.geometry.relative=!0,b.vertex=!0,v.insert(b),b.value=k(a.Text),b.style+=l(a)}break;case "BPMNBlackPool":v.style+=p(a,c)+n(a,c)+m(a,c)+t(a)+u(a)+l(a);v.value=k(a.Text);b=new mxCell("",new mxGeometry(0,0,d,e),"fillColor=#000000;strokeColor=none;opacity=30;");b.vertex=!0;v.insert(b);break;case "DFDExternalEntityBlock":v.style+="strokeColor=none;fillColor=none;";b=new mxCell("",new mxGeometry(0,0,.95*d,.95*e),"part=1;");b.vertex=!0;v.insert(b);b.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a);
|
||||
h=new mxCell("",new mxGeometry(.05*d,.05*e,.95*d,.95*e),"part=1;");h.vertex=!0;v.insert(h);h.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+l(a.Text);h.value=k(a.Text);break;case "GSDFDDataStoreBlock":v.style+="shape=partialRectangle;right=0;"+n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+l(a.Text);v.value=k(a.Text);b=new mxCell("",new mxGeometry(0,0,.2*d,e),"part=1;");b.vertex=!0;v.insert(b);b.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+l(a.Number);b.value=k(a.Number);break;case "VSMDedicatedProcessBlock":case "VSMProductionControlBlock":v.style+=
|
||||
"shape=mxgraph.lean_mapping.manufacturing_process;spacingTop=15;";"VSMDedicatedProcessBlock"==f.Class?v.value=k(a.Text):"VSMProductionControlBlock"==f.Class&&(v.value=k(a.Resources));v.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+w(a)+x(a)+y(a)+z(a)+A(a)+B(a)+C(a)+D(a)+H(a);"VSMDedicatedProcessBlock"==f.Class&&(b=new mxCell("",new mxGeometry(0,1,11,9),"part=1;shape=mxgraph.lean_mapping.operator;"),b.geometry.relative=!0,b.geometry.offset=new mxPoint(4,-13),b.vertex=!0,v.insert(b),b.style+=n(a,c)+p(a,c)+
|
||||
m(a,c)+t(a)+r(a));b=new mxCell("",new mxGeometry(0,0,d,15),"strokeColor=none;fillColor=none;part=1;");b.vertex=!0;v.insert(b);b.value=k(a.Title);b.style+=l(a.Title);break;case "VSMSharedProcessBlock":v.style+="shape=mxgraph.lean_mapping.manufacturing_process_shared;spacingTop=-5;verticalAlign=top;";v.value=k(a.Text);v.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+w(a)+x(a)+y(a)+z(a)+A(a)+B(a)+C(a)+E(a)+D(a);b=new mxCell("",new mxGeometry(.1*d,.3*e,.8*d,.6*e),"part=1;");b.vertex=!0;v.insert(b);b.value=k(a.Resource);
|
||||
b.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+l(a.Resource);break;case "VSMWorkcellBlock":v.style+="shape=mxgraph.lean_mapping.work_cell;verticalAlign=top;spacingTop=-2;";v.style+=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+w(a)+x(a)+y(a)+z(a)+A(a)+B(a)+C(a)+D(a);v.value=k(a.Text);break;case "VSMSafetyBufferStockBlock":case "VSMDatacellBlock":v.style+="strokeColor=none;fillColor=none;";h=parseInt(a.Cells);c=n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+"part=1;";0<h&&(e/=h);f=[];for(b=1;b<=h;b++)f[b]=new mxCell("",new mxGeometry(0,
|
||||
(b-1)*e,d,e),c),f[b].vertex=!0,v.insert(f[b]),f[b].value=k(a["cell_"+b]),f[b].style+=l(a["cell_"+b]);break;case "VSMInventoryBlock":v.style+="shape=mxgraph.lean_mapping.inventory_box;verticalLabelPosition=bottom;verticalAlign=top;"+n(a,c)+p(a,c)+m(a,c)+t(a)+r(a)+w(a)+x(a)+y(a)+z(a)+A(a)+B(a)+E(a)+C(a)+D(a);v.value=k(a.Text);break;case "VSMSupermarketBlock":v.style+="strokeColor=none;"+p(a,c);h=parseInt(a.Cells);c=n(a,c)+m(a,c)+r(a)+"part=1;fillColor=none;";0<h&&(e/=h);f=[];g=[];for(b=1;b<=h;b++)f[b]=
|
||||
new mxCell("",new mxGeometry(.5*d,(b-1)*e,.5*d,e),"shape=partialRectangle;left=0;"+c),f[b].vertex=!0,v.insert(f[b]),g[b]=new mxCell("",new mxGeometry(0,(b-1)*e,d,e),"strokeColor=none;fillColor=none;part=1;"),g[b].vertex=!0,v.insert(g[b]),g[b].value=k(a["cell_"+b]),g[b].style+=l(a["cell_"+b]);break;case "VSMFIFOLaneBlock":v.style+="shape=mxgraph.lean_mapping.fifo_sequence_flow;fontStyle=0;fontSize=18";v.value="FIFO";break;case "VSMGoSeeProductionBlock":v.style+="shape=ellipse;"+n(a,c)+p(a,c)+m(a,c)+
|
||||
t(a)+r(a)+l(a);v.value=k(a.Text);b=new mxCell("",new mxGeometry(.17*d,.2*e,13,6),"shape=mxgraph.lean_mapping.go_see_production_scheduling;flipH=1;part=1;whiteSpace=wrap;html=1;");b.vertex=!0;v.insert(b);b.style+=n(a,c)+p(a,c)+m(a,c)+r(a);break;case "VSMProductionKanbanBatchBlock":v.style+="strokeColor=none;fillColor=none;";c="shape=card;size=18;flipH=1;part=1;"+n(a,c)+p(a,c)+m(a,c)+r(a);b=new mxCell("",new mxGeometry(.1*d,0,.9*d,.8*e),"shape=mxgraph.lean_mapping.go_see_production_scheduling;flipH=1;part=1;");
|
||||
b.vertex=!0;v.insert(b);b.style+=c;h=new mxCell("",new mxGeometry(.05*d,.1*e,.9*d,.8*e),"shape=mxgraph.lean_mapping.go_see_production_scheduling;flipH=1;part=1;");h.vertex=!0;v.insert(h);h.style+=c;d=new mxCell("",new mxGeometry(0,.2*e,.9*d,.8*e),"shape=mxgraph.lean_mapping.go_see_production_scheduling;flipH=1;part=1;whiteSpace=wrap;html=1;spacing=2;");d.vertex=!0;v.insert(d);d.style+=c+l(a);d.value=k(a.Text);break;case "AWSRoundedRectangleContainerBlock2":v.style+="strokeColor=none;fillColor=none;",
|
||||
a.Spotfleet?(b=new mxCell("",new mxGeometry(0,0,d,e-20),"resizeWidth=1;resizeHeight=1;fillColor=none;align=center;verticalAlign=bottom;spacing=2;rounded=1;arcSize=10;"),b.geometry.offset=new mxPoint(0,20),b.geometry.relative=!0,b.vertex=!0,v.insert(b),b.style+=n(a,c)+l(a.Title)+u(a)+r(a),b.value=k(a.Title),h=new mxCell("",new mxGeometry(0,0,35,40),"strokeColor=none;shape=mxgraph.aws3.spot_instance;fillColor=#f58536;"),h.geometry.relative=!0,h.geometry.offset=new mxPoint(30,0),h.vertex=!0,v.insert(h)):
|
||||
a.Beanstalk?(b=new mxCell("",new mxGeometry(0,0,d,e-20),"resizeWidth=1;resizeHeight=1;fillColor=none;align=center;verticalAlign=bottom;spacing=2;rounded=1;arcSize=10;"),b.geometry.offset=new mxPoint(0,20),b.geometry.relative=!0,b.vertex=!0,v.insert(b),b.style+=n(a,c)+l(a.Title)+u(a)+r(a),b.value=k(a.Title),h=new mxCell("",new mxGeometry(0,0,30,40),"strokeColor=none;shape=mxgraph.aws3.elastic_beanstalk;fillColor=#759C3E;"),h.geometry.relative=!0,h.geometry.offset=new mxPoint(30,0),h.vertex=!0,v.insert(h)):
|
||||
a.EC2?(b=new mxCell("",new mxGeometry(0,0,d,e-20),"resizeWidth=1;resizeHeight=1;fillColor=none;align=center;verticalAlign=bottom;spacing=2;rounded=1;arcSize=10;"),b.geometry.offset=new mxPoint(0,20),b.geometry.relative=!0,b.vertex=!0,v.insert(b),b.style+=n(a,c)+l(a.Title)+u(a)+r(a),b.value=k(a.Title),h=new mxCell("",new mxGeometry(0,0,32,40),"strokeColor=none;shape=mxgraph.aws3.ec2;fillColor=#F58534;"),h.geometry.relative=!0,h.geometry.offset=new mxPoint(30,0),h.vertex=!0,v.insert(h)):a.Subnet?(b=
|
||||
new mxCell("",new mxGeometry(0,0,d,e-20),"resizeWidth=1;resizeHeight=1;fillColor=none;align=center;verticalAlign=bottom;spacing=2;rounded=1;arcSize=10;"),b.geometry.offset=new mxPoint(0,20),b.geometry.relative=!0,b.vertex=!0,v.insert(b),b.style+=n(a,c)+l(a.Title)+u(a)+r(a),b.value=k(a.Title),h=new mxCell("",new mxGeometry(0,0,32,40),"strokeColor=none;shape=mxgraph.aws3.permissions;fillColor=#146EB4;"),h.geometry.relative=!0,h.geometry.offset=new mxPoint(30,0),h.vertex=!0,v.insert(h)):a.VPC?(b=new mxCell("",
|
||||
new mxGeometry(0,0,d,e-20),"resizeWidth=1;resizeHeight=1;fillColor=none;align=center;verticalAlign=bottom;spacing=2;rounded=1;arcSize=10;"),b.geometry.offset=new mxPoint(0,20),b.geometry.relative=!0,b.vertex=!0,v.insert(b),b.style+=n(a,c)+l(a.Title)+u(a)+r(a),b.value=k(a.Title),h=new mxCell("",new mxGeometry(0,0,60,40),"strokeColor=none;shape=mxgraph.aws3.virtual_private_cloud;fillColor=#146EB4;"),h.geometry.relative=!0,h.geometry.offset=new mxPoint(30,0),h.vertex=!0,v.insert(h)):a.AWS?(b=new mxCell("",
|
||||
new mxGeometry(0,0,d,e-20),"resizeWidth=1;resizeHeight=1;fillColor=none;align=center;verticalAlign=bottom;spacing=2;rounded=1;arcSize=10;"),b.geometry.offset=new mxPoint(0,20),b.geometry.relative=!0,b.vertex=!0,v.insert(b),b.style+=n(a,c)+l(a.Title)+u(a)+r(a),b.value=k(a.Title),h=new mxCell("",new mxGeometry(0,0,60,40),"strokeColor=none;shape=mxgraph.aws3.cloud;fillColor=#F58534;"),h.geometry.relative=!0,h.geometry.offset=new mxPoint(30,0),h.vertex=!0,v.insert(h)):a.Corporate?(b=new mxCell("",new mxGeometry(0,
|
||||
0,d,e-20),"resizeWidth=1;resizeHeight=1;fillColor=none;align=center;verticalAlign=bottom;spacing=2;rounded=1;arcSize=10;"),b.geometry.offset=new mxPoint(0,20),b.geometry.relative=!0,b.vertex=!0,v.insert(b),b.style+=n(a,c)+l(a.Title)+u(a)+r(a),b.value=k(a.Title),h=new mxCell("",new mxGeometry(0,0,25,40),"strokeColor=none;shape=mxgraph.aws3.corporate_data_center;fillColor=#7D7C7C;"),h.geometry.relative=!0,h.geometry.offset=new mxPoint(30,0),h.vertex=!0,v.insert(h)):(v.style="resizeWidth=1;resizeHeight=1;fillColor=none;align=center;verticalAlign=bottom;spacing=2;rounded=1;arcSize=10;"+
|
||||
n(a,c)+l(a.Title)+u(a)+r(a),v.value=k(a.Title))}return v}var U=["GSDFDProcessBlock","GSDFDProcessBlock2","RoundedRectangleContainerBlock","UI2ButtonBlock","UMLStateBlock"],V=["ProcessBlock","UMLActivationBlock"],S="VennPlainColor1 VennPlainColor2 VennPlainColor3 VennPlainColor4 VennPlainColor5 VennPlainColor6 VennPlainColor7 VennPlainColor8 VennGradientColor1 VennGradientColor2 VennGradientColor3 VennGradientColor4 VennGradientColor5 VennGradientColor6 VennGradientColor7 VennGradientColor8 UMLEndBlock DefaultTextBlockNew iOSButton".split(" "),
|
||||
X="AWSAndroidBlock3 AWSiOSBlock3 AWSJavaBlock3 AWSJavaScript AWSNetBlock3 AWSNodeJSBlock3 AWSPHPBlock3 AWSPythonBlock3 AWSRubyBlock3 AWSXamarin AWSCLIBlock3 AWSEclipseToolkitBlock3 AWSVisualStudioToolkitBlock3 AWSWindowsPowershellToolkitBlock3 DefaultTextBlock RectangleContainerBlock UMLStartBlock UMLEndBlock DefaultTextBlockNew UMLHForkJoinBlock iOSButton".split(" "),T="VennPlainColor1 VennPlainColor2 VennPlainColor3 VennPlainColor4 VennPlainColor5 VennPlainColor6 VennPlainColor7 VennPlainColor8 VennGradientColor1 VennGradientColor2 VennGradientColor3 VennGradientColor4 VennGradientColor5 VennGradientColor6 VennGradientColor7 VennGradientColor8".split(" "),
|
||||
W=["AEUSBBlock","AGSCutandpasteBlock","iOSDeviceiPadLandscape","iOSDeviceiPadProLandscape"],O={None:"none",Arrow:"block;endFill=1","Hollow Arrow":"block;endFill=0","Open Arrow":"open;","CFN ERD Zero Or More Arrow":"ERzeroToMany;startSize=10","CFN ERD One Or More Arrow":"ERoneToMany;startSize=10","CFN ERD Many Arrow":"ERmany;startSize=10","CFN ERD Exactly One Arrow":"ERmandOne;startSize=10","CFN ERD Zero Or One Arrow":"ERzeroToOne;startSize=10","CFN ERD One Arrow":"ERone;startSize=16",Generalization:"block;endFill=0;startSize=12",
|
||||
"Big Open Arrow":"open;startSize=10",Asynch1:"openAsync;flipH=1;startSize=10",Asynch2:"openAsync;startSize=10",Aggregation:"diamond;endFill=0;startSize=16",Composition:"diamond;endFill=1;startSize=16",BlockEnd:"none;endFill=1;startSize=16"},M={DefaultTextBlockNew:"text;strokeColor=none;fillColor=none",DefaultTextBlock:"text;strokeColor=none;fillColor=none",DefaultSquareBlock:"",DefaultNoteBlock:"shape=note;size=15",DefaultNoteBlockV2:"shape=note;size=15",HotspotBlock:"strokeColor=none;opacity=50",
|
||||
ImageSearchBlock2:"shape=image",ProcessBlock:"",DecisionBlock:"rhombus",TerminatorBlock:"rounded=1;arcSize=50",PredefinedProcessBlock:"shape=process",DocumentBlock:"shape=document",MultiDocumentBlock:"shape=mxgraph.flowchart.multi-document",ManualInputBlock:"shape=manualInput;size=15",PreparationBlock:"shape=hexagon",DataBlock:"shape=parallelogram",DataBlockNew:"shape=parallelogram",DatabaseBlock:"shape=cylinder",DirectAccessStorageBlock:"shape=mxgraph.flowchart.direct_data",InternalStorageBlock:"shape=internalStorage;dx=10;dy=10",
|
||||
PaperTapeBlock:"shape=tape;size=0.2",ManualOperationBlockNew:"shape=trapezoid;flipV=1",DelayBlock:"shape=delay",StoredDataBlock:"shape=dataStorage",MergeBlock:"triangle;direction=south",ConnectorBlock:"ellipse",OrBlock:"shape=mxgraph.flowchart.summing_function",SummingJunctionBlock:"shape=mxgraph.flowchart.or",DisplayBlock:"shape=display",OffPageLinkBlock:"shape=offPageConnector",BraceNoteBlock:"mxCompositeShape",NoteBlock:"shape=mxgraph.flowchart.annotation_1",AdvancedSwimLaneBlock:"mxCompositeShape",
|
||||
AdvancedSwimLaneBlockRotated:"mxCompositeShape",RectangleContainerBlock:"fillColor=none;container=1",DiamondContainerBlock:"shape=rhombus;fillColor=none;container=1",RoundedRectangleContainerBlock:"fillColor=none;container=1;rounded=1;absoluteArcSize=1;arcSize=24",CircleContainerBlock:"shape=ellipse;fillColor=none;container=1",PillContainerBlock:"arcSize=50;fillColor=none;container=1",IsoscelesTriangleBlock:"triangle;direction=north",RightTriangleBlock:"shape=mxgraph.basic.orthogonal_triangle",PentagonBlock:"shape=mxgraph.basic.pentagon",
|
||||
|
@ -88,73 +120,74 @@ AndroidIconTrash:"shape=mxgraph.ios7.icons.trashcan",AndroidIconEmail:"shape=mxg
|
|||
iOSButton:"fillColor=none;strokeColor=none;",iOSSegmentedControl:"mxCompositeShape",iOSStepper:"shape=mxgraph.ios7.misc.adjust",iOSToggle:"shape=mxgraph.ios7ui.onOffButton;buttonState=on;strokeColor2=#aaaaaa;fillColor2=#ffffff",iOSSlider:"mxCompositeShape",iOSProgressBar:"mxCompositeShape",iOSPageControls:"mxCompositeShape",iOSStatusBar:"mxCompositeShape",iOSSearchBar:"mxCompositeShape",iOSNavBar:"mxCompositeShape",iOSTabs:"mxCompositeShape",iOSUniversalKeyboard:"shape=mxgraph.ios.iKeybLett",iOSDatePicker:"mxCompositeShape",
|
||||
iOSTimePicker:"mxCompositeShape",iOSCountdownPicker:"mxCompositeShape",iOSBasicCell:"mxCompositeShape",iOSSubtitleCell:"mxCompositeShape",iOSRightDetailCell:"mxCompositeShape",iOSLeftDetailCell:"mxCompositeShape",iOSTableGroupedSectionBreak:"mxCompositeShape",iOSTablePlainHeaderFooter:"mxCompositeShape",MindMapBlock:"",MindMapStadiumBlock:"arcSize=50",MindMapCloud:"shape=cloud",MindMapCircle:"shape=ellipse",MindMapIsoscelesTriangleBlock:"shape=triangle;direction=north",MindMapDiamondBlock:"shape=rhombus",
|
||||
MindMapPentagonBlock:"shape=mxgraph.basic.pentagon",MindMapHexagonBlock:"shape=hexagon",MindMapOctagonBlock:"shape=mxgraph.basic.octagon",MindMapCrossBlock:"shape=mxgraph.basic.cross2;dx=20",ERDEntityBlock:"mxCompositeShape",ERDEntityBlock2:"mxCompositeShape",ERDEntityBlock3:"mxCompositeShape",ERDEntityBlock4:"mxCompositeShape",SMPage:"mxCompositeShape",SMHome:"mxCompositeShape",SMPrint:"mxCompositeShape",SMSearch:"mxCompositeShape",SMSettings:"mxCompositeShape",SMSitemap:"mxCompositeShape",SMSuccess:"mxCompositeShape",
|
||||
SMVideo:"mxCompositeShape",SMAudio:"mxCompositeShape",SMCalendar:"mxCompositeShape",SMChart:"mxCompositeShape",SMCloud:"mxCompositeShape",SMDocument:"mxCompositeShape",SMForm:"mxCompositeShape",SMGame:"mxCompositeShape",SMUpload:"mxCompositeShape",UMLClassBlock:"",UMLActiveClassBlock:"shape=process",UMLPackageBlock:"shape=folder;tabPosition=left",UMLNoteBlock:"shape=note;size=15",UMLTextBlock:"shape=text;strokeColor=none;fillColor=none",UMLActorBlock:"shape=umlActor;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;whiteSpace=nowrap",
|
||||
SMVideo:"mxCompositeShape",SMAudio:"mxCompositeShape",SMCalendar:"mxCompositeShape",SMChart:"mxCompositeShape",SMCloud:"mxCompositeShape",SMDocument:"mxCompositeShape",SMForm:"mxCompositeShape",SMGame:"mxCompositeShape",SMUpload:"mxCompositeShape",UMLClassBlock:"",UMLActiveClassBlock:"shape=process",UMLMultiplicityBlock:"mxCompositeShape",UMLPackageBlock:"shape=folder;tabPosition=left",UMLConstraintBlock:"mxCompositeShape",UMLNoteBlock:"shape=note;size=15",UMLTextBlock:"mxCompositeShape",UMLActorBlock:"shape=umlActor;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;whiteSpace=nowrap",
|
||||
UMLUseCaseBlock:"shape=ellipse",UMLCircleContainerBlock:"shape=ellipse;container=1",UMLRectangleContainerBlock:"container=1",UMLOptionLoopBlock:"shape=mxgraph.sysml.package2;xSize=90;overflow=fill",UMLAlternativeBlock2:"shape=mxgraph.sysml.package2;xSize=90;overflow=fill",UMLStartBlock:"shape=ellipse;fillColor=#000000",UMLStateBlock:"rounded=1;arcSize=20",UMLDecisionBlock:"shape=rhombus;",UMLHForkJoinBlock:"fillColor=#000000",UMLVForkJoinBlock:"fillColor=#000000",UMLFlowFinalBlock:"shape=mxgraph.flowchart.or",
|
||||
UMLHistoryStateBlock:"shape=ellipse",UMLEndBlock:"shape=mxgraph.bpmn.shape;outline=end;symbol=terminate;strokeColor=#000000;fillColor=#ffffff",UMLObjectBlock:"",UMLSendSignalBlock:"shape=mxgraph.sysml.sendSigAct",UMLReceiveSignalBlock:"shape=mxgraph.sysml.accEvent;flipH=1",UMLAcceptTimeEventActionBlock:"shape=mxgraph.sysml.timeEvent",UMLOffPageLinkBlock:"shape=mxgraph.sysml.sendSigAct;direction=south",UMLMultiLanePoolBlock:"mxCompositeShape",UMLMultiLanePoolRotatedBlock:"mxCompositeShape",UMLMultidimensionalSwimlane:"mxCompositeShape",
|
||||
UMLActivationBlock:"",UMLDeletionBlock:"shape=mxgraph.sysml.x;strokeWidth=4",UMLSeqEntityBlock:"shape=mxgraph.electrical.radio.microphone_1;direction=north",UMLComponentBlock:"shape=component;align=left;spacingLeft=36",UMLNodeBlock:"shape=cube;size=12;flipH=1",UMLComponentInterfaceBlock:"shape=ellipse",UMLComponentBoxBlock:"mxCompositeShape",UMLProvidedInterfaceBlock:"shape=lollipop;direction=south",UMLRequiredInterfaceBlock:"shape=requires;direction=north",UMLEntityBlock:"",UMLWeakEntityBlock:"shape=ext;double=1",
|
||||
UMLAttributeBlock:"shape=ellipse",UMLMultivaluedAttributeBlock:"shape=doubleEllipse",UMLRelationshipBlock:"shape=rhombus",UMLWeakRelationshipBlock:"shape=rhombus;double=1",BPMNActivity:"mxCompositeShape",BPMNGateway:"mxCompositeShape",BPMNData:"mxCompositeShape",BPMNDataStore:"mxCompositeShape",BPMNAdvancedPoolBlock:"mxCompositeShape",BPMNAdvancedPoolBlockRotated:"mxCompositeShape",BPMNBlackPool:"mxCompositeShape",DFDExternalEntityBlock2:"",YDMDFDProcessBlock:"shape=ellipse",YDMDFDDataStoreBlock:"shape=partialRectangle;right=0;left=0",
|
||||
GSDFDProcessBlock:"shape=swimlane;rounded=1;arcSize=10",GSDFDProcessBlock2:"",GSDFDDataStoreBlock2:"shape=partialRectangle;right=0",OrgBlock:"",DefaultTableBlock:"mxCompositeShape",VSMCustomerSupplierBlock:"shape=mxgraph.lean_mapping.outside_sources",VSMDedicatedProcessBlock:"shape=mxgraph.lean_mapping.manufacturing_process",VSMSharedProcessBlock:"shape=mxgraph.lean_mapping.manufacturing_process_shared",VSMWorkcellBlock:"shape=mxgraph.lean_mapping.work_cell",VSMDatacellBlock:"mxCompositeShape",VSMInventoryBlock:"shape=mxgraph.lean_mapping.inventory_box",
|
||||
VSMSupermarketBlock:"mxCompositeShape",VSMPhysicalPullBlock:"shape=mxgraph.lean_mapping.physical_pull;direction=south",VSMFIFOLaneBlock:"shape=mxgraph.lean_mapping.fifo_sequence_flow;fontStyle=0;fontSize=20",VSMSafetyBufferStockBlock:"mxCompositeShape",VSMExternalShipmentAirplaneBlock:"shape=mxgraph.lean_mapping.airplane_7",VSMExternalShipmentForkliftBlock:"shape=mxgraph.lean_mapping.move_by_forklift",VSMExternalShipmentTruckBlock:"shape=mxgraph.lean_mapping.truck_shipment",VSMExternalShipmentBoatBlock:"shape=mxgraph.lean_mapping.boat_shipment",
|
||||
VSMProductionControlBlock:"shape=mxgraph.lean_mapping.manufacturing_process",VSMOtherInformationBlock:"",VSMSequencedPullBallBlock:"shape=mxgraph.lean_mapping.sequenced_pull_ball",VSMMRPERPBlock:"shape=mxgraph.lean_mapping.mrp_erp;whiteSpace=wrap",VSMLoadLevelingBlock:"shape=mxgraph.lean_mapping.load_leveling",VSMGoSeeBlock:"shape=mxgraph.lean_mapping.go_see_production_scheduling;flipH=1",VSMGoSeeProductionBlock:"shape=ellipse",VSMVerbalInfoBlock:"shape=mxgraph.lean_mapping.verbal",VSMKaizenBurstBlock:"shape=mxgraph.lean_mapping.kaizen_lightening_burst",
|
||||
VSMOperatorBlock:"shape=mxgraph.lean_mapping.operator;flipV=1",VSMTimelineBlock:"mxCompositeShape",VSMQualityProblemBlock:"shape=mxgraph.lean_mapping.quality_problem",VSMProductionKanbanSingleBlock:"shape=mxgraph.lean_mapping.production_kanban",VSMWithdrawalKanbanBlock:"shape=mxgraph.lean_mapping.withdrawal_kanban",VSMSignalKanbanBlock:"shape=mxgraph.lean_mapping.signal_kanban",VSMKanbanPostBlock:"shape=mxgraph.lean_mapping.kanban_post",VSMShipmentArrow:"shape=singleArrow;arrowWidth=0.5;arrowSize=0.13",
|
||||
VSMPushArrow:"shape=mxgraph.lean_mapping.push_arrow",VSMElectronicInformationArrow:"shape=mxgraph.lean_mapping.electronic_info_flow_edge;",AWSElasticComputeCloudBlock2:"strokeColor=none;shape=mxgraph.aws3.ec2",AWSInstanceBlock2:"strokeColor=none;shape=mxgraph.aws3.instance",AWSInstancesBlock2:"strokeColor=none;shape=mxgraph.aws3.instances",AWSAMIBlock2:"strokeColor=none;shape=mxgraph.aws3.ami",AWSDBonInstanceBlock2:"strokeColor=none;shape=mxgraph.aws3.db_on_instance",AWSInstanceCloudWatchBlock2:"strokeColor=none;shape=mxgraph.aws3.instance_with_cloudwatch",
|
||||
AWSElasticIPBlock2:"strokeColor=none;shape=mxgraph.aws3.elastic_ip",AWSHDFSClusterBlock2:"strokeColor=none;shape=mxgraph.aws3.hdfs_cluster",AWSAutoScalingBlock2:"strokeColor=none;shape=mxgraph.aws3.auto_scaling",AWSEC2OptimizedInstance2:"strokeColor=none;shape=mxgraph.aws3.optimized_instance","AWSAmazonEC2(Spotinstance)":"strokeColor=none;shape=mxgraph.aws3.spot_instance",AWSAmazonECR:"strokeColor=none;shape=mxgraph.aws3.ecr",AWSAmazonECS:"strokeColor=none;shape=mxgraph.aws3.ecs",AWSLambda2:"strokeColor=none;shape=mxgraph.aws3.lambda",
|
||||
AWSElasticLoadBalancing:"strokeColor=none;shape=mxgraph.aws3.elastic_load_balancing",AWSElasticLoadBlock2:"strokeColor=none;shape=mxgraph.aws3.classic_load_balancer",AWSDirectConnectBlock3:"strokeColor=none;shape=mxgraph.aws3.direct_connect",AWSElasticNetworkBlock2:"strokeColor=none;shape=mxgraph.aws3.elastic_network_interface",AWSRoute53Block2:"strokeColor=none;shape=mxgraph.aws3.route_53",AWSHostedZoneBlock2:"strokeColor=none;shape=mxgraph.aws3.hosted_zone;fontColor=#FFFFFF;fontStyle=1",AWSRouteTableBlock2:"strokeColor=none;shape=mxgraph.aws3.route_table",
|
||||
AWSVPCBlock2:"strokeColor=none;shape=mxgraph.aws3.vpc",AWSVPNConnectionBlock2:"strokeColor=none;shape=mxgraph.aws3.vpn_connection",AWSVPNGatewayBlock2:"strokeColor=none;shape=mxgraph.aws3.vpn_gateway",AWSCustomerGatewayBlock2:"strokeColor=none;shape=mxgraph.aws3.customer_gateway",AWSCustomerGatewayBlock3:"strokeColor=none;shape=mxgraph.aws3.customer_gateway",AWSInternetGatewayBlock2:"strokeColor=none;shape=mxgraph.aws3.internet_gateway",AWSRouterBlock2:"strokeColor=none;shape=mxgraph.aws3.router",
|
||||
AWSRouterBlock3:"strokeColor=none;shape=mxgraph.aws3.router","AWSAmazonVPC(endpoints)":"strokeColor=none;shape=mxgraph.aws3.endpoints","AWSAmazonVPC(flowlogs)":"strokeColor=none;shape=mxgraph.aws3.flow_logs","AWSAmazonVPC(VPCNATgateway)":"strokeColor=none;shape=mxgraph.aws3.vpc_nat_gateway",AWSVPCPeering3:"strokeColor=none;shape=mxgraph.aws3.vpc_peering",AWSSimpleStorageBlock2:"strokeColor=none;shape=mxgraph.aws3.s3",AWSBucketBlock2:"strokeColor=none;shape=mxgraph.aws3.bucket;fontStyle=1;fontColor=#ffffff",
|
||||
AWSBuckethWithObjectsBlock2:"strokeColor=none;shape=mxgraph.aws3.bucket_with_objects",AWSObjectBlock2:"strokeColor=none;shape=mxgraph.aws3.object;fontStyle=1;fontColor=#ffffff",AWSImportExportBlock2:"strokeColor=none;shape=mxgraph.aws3.import_export",AWSStorageGatewayBlock2:"strokeColor=none;shape=mxgraph.aws3.storage_gateway",AWSElasticBlockStorageBlock2:"strokeColor=none;shape=mxgraph.aws3.volume;fontStyle=1;fontColor=#ffffff",AWSVolumeBlock3:"strokeColor=none;shape=mxgraph.aws3.volume;fontStyle=1;fontColor=#ffffff",
|
||||
AWSSnapshotBlock2:"strokeColor=none;shape=mxgraph.aws3.snapshot;fontStyle=1;fontColor=#ffffff",AWSGlacierArchiveBlock3:"strokeColor=none;shape=mxgraph.aws3.archive",AWSGlacierVaultBlock3:"strokeColor=none;shape=mxgraph.aws3.vault",AWSAmazonEFS:"strokeColor=none;shape=mxgraph.aws3.efs",AWSGlacierBlock2:"strokeColor=none;shape=mxgraph.aws3.glacier",AWSAWSImportExportSnowball:"strokeColor=none;shape=mxgraph.aws3.snowball",AWSStorageGatewayCachedVolumn2:"strokeColor=none;shape=mxgraph.aws3.cached_volume",
|
||||
"AWSStorageGatewayNon-CachedVolumn2":"strokeColor=none;shape=mxgraph.aws3.non_cached_volume",AWSStorageGatewayVirtualTapeLibrary2:"strokeColor=none;shape=mxgraph.aws3.virtual_tape_library",AWSCloudFrontBlock2:"strokeColor=none;shape=mxgraph.aws3.cloudfront",AWSDownloadDistBlock2:"strokeColor=none;shape=mxgraph.aws3.download_distribution",AWSStreamingBlock2:"strokeColor=none;shape=mxgraph.aws3.streaming_distribution",AWSEdgeLocationBlock2:"strokeColor=none;shape=mxgraph.aws3.edge_location",AWSItemBlock2:"strokeColor=none;shape=mxgraph.aws3.item",
|
||||
AWSItemsBlock2:"strokeColor=none;shape=mxgraph.aws3.items",AWSAttributeBlock2:"strokeColor=none;shape=mxgraph.aws3.attribute",AWSAttributesBlock2:"strokeColor=none;shape=mxgraph.aws3.attributes",AWSRDBSBlock2:"strokeColor=none;shape=mxgraph.aws3.rds",AWSRDSInstanceBlock2:"strokeColor=none;shape=mxgraph.aws3.rds_db_instance",AWSRDSStandbyBlock2:"strokeColor=none;shape=mxgraph.aws3.rds_db_instance_standby_multi_az",AWSRDSInstanceReadBlock2:"strokeColor=none;shape=mxgraph.aws3.rds_db_instance_read_replica",
|
||||
AWSOracleDBBlock2:"strokeColor=none;shape=mxgraph.aws3.oracle_db_instance",AWSMySQLDBBlock2:"strokeColor=none;shape=mxgraph.aws3.mysql_db_instance",AWSDynamoDBBlock2:"strokeColor=none;shape=mxgraph.aws3.dynamo_db",AWSSimpleDatabaseBlock3:"strokeColor=none;shape=mxgraph.aws2.database.simpledb",AWSSimpleDatabaseDomainBlock3:"strokeColor=none;shape=mxgraph.aws2.database.simpledb_domain",AWSTableBlock2:"strokeColor=none;shape=mxgraph.aws3.table",AWSAmazonRedShiftBlock3:"strokeColor=none;shape=mxgraph.aws3.redshift",
|
||||
AWSElastiCacheNodeBlock2:"strokeColor=none;shape=mxgraph.aws3.cache_node",AWSElastiCacheBlock2:"strokeColor=none;shape=mxgraph.aws3.elasticache",AWSDynamoDBGlobalSecondaryIndexes2:"strokeColor=none;shape=mxgraph.aws3.global_secondary_index",AWSAmazonElastiCacheMemcache2:"strokeColor=none;shape=mxgraph.aws3.memcached",AWSAmazonElastiCacheRedis2:"strokeColor=none;shape=mxgraph.aws3.redis",AWSAmazonRDSMSSQLInstance2:"strokeColor=none;shape=mxgraph.aws3.ms_sql_instance_2",AWSMSSQLDBBlock3:"strokeColor=none;shape=mxgraph.aws3.ms_sql_instance",
|
||||
AWSAmazonRDSMySQLDBInstance2:"strokeColor=none;shape=mxgraph.aws3.mysql_db_instance_2",AWSAmazonRDSOracleDBInstance2:"strokeColor=none;shape=mxgraph.aws3.oracle_db_instance_2",AWSRDSReplicasetswithPIOP2:"strokeColor=none;shape=mxgraph.aws3.piop",AWSAmazonRDSPostgreSQL2:"strokeColor=none;shape=mxgraph.aws3.postgre_sql_instance",AWSRDSMasterSQL2:"strokeColor=none;shape=mxgraph.aws3.sql_master",AWSRDSSlaveSQL2:"strokeColor=none;shape=mxgraph.aws3.sql_slave","AWSAmazonRedshift(densecomputenode)":"strokeColor=none;shape=mxgraph.aws3.dense_compute_node",
|
||||
"AWSAmazonRedshift(densestoragenode)":"strokeColor=none;shape=mxgraph.aws3.dense_storage_node",AWSAWSDatabaseMigrationService:"strokeColor=none;shape=mxgraph.aws3.database_migration_service",AWSACM:"strokeColor=none;shape=mxgraph.aws3.certificate_manager",AWSAmazonInspector:"strokeColor=none;shape=mxgraph.aws3.inspector",AWSAWSCloudHSM:"strokeColor=none;shape=mxgraph.aws3.cloudhsm",AWSDirectoryService2:"strokeColor=none;shape=mxgraph.aws3.directory_service",AWSAWSKMS:"strokeColor=none;shape=mxgraph.aws3.kms",
|
||||
AWSAWSWAF:"strokeColor=none;shape=mxgraph.aws3.waf","AWSACM(certificate-manager)":"strokeColor=none;shape=mxgraph.aws3.certificate_manager_2",AWSSESBlock2:"strokeColor=none;shape=mxgraph.aws3.ses",AWSEmailBlock2:"strokeColor=none;shape=mxgraph.aws3.email",AWSSNSBlock2:"strokeColor=none;shape=mxgraph.aws3.sns",AWSSQSBlock3:"strokeColor=none;shape=mxgraph.aws3.sqs",AWSQueueBlock2:"strokeColor=none;shape=mxgraph.aws3.queue",AWSMessageBlock2:"strokeColor=none;shape=mxgraph.aws3.message",AWSDeciderBlock2:"strokeColor=none;shape=mxgraph.aws3.decider",
|
||||
AWSSWFBlock2:"strokeColor=none;shape=mxgraph.aws3.swf",AWSWorkerBlock2:"strokeColor=none;shape=mxgraph.aws3.worker",AWSCloudSearchBlock2:"strokeColor=none;shape=mxgraph.aws3.cloudsearch",AWSCloudSearchMetadataBlock3:"strokeColor=none;shape=mxgraph.aws3.search_documents",AWSElasticTranscoder3:"strokeColor=none;shape=mxgraph.aws3.elastic_transcoder",AWSAmazonAPIGateway:"strokeColor=none;shape=mxgraph.aws3.api_gateway",AWSAppStream2:"strokeColor=none;shape=mxgraph.aws3.appstream",AWSCloudFormationBlock2:"strokeColor=none;shape=mxgraph.aws3.cloudformation",
|
||||
AWSDataPipelineBlock3:"strokeColor=none;shape=mxgraph.aws3.data_pipeline",AWSDataPipelineBlock2:"strokeColor=none;shape=mxgraph.aws3.data_pipeline",AWSTemplageBlock2:"strokeColor=none;shape=mxgraph.aws3.template",AWSStackBlock2:"strokeColor=none;shape=mxgraph.aws3.stack_aws_cloudformation",AWSBeanStockBlock2:"strokeColor=none;shape=mxgraph.aws3.elastic_beanstalk",AWSApplicationBlock2:"strokeColor=none;shape=mxgraph.aws3.application",AWSBeanstalkDeploymentBlock3:"strokeColor=none;shape=mxgraph.aws3.deployment",
|
||||
AWSIAMBlock3:"strokeColor=none;shape=mxgraph.aws3.iam",AWSIAMSTSBlock3:"strokeColor=none;shape=mxgraph.aws3.sts",AWSIAMAddonBlock2:"strokeColor=none;shape=mxgraph.aws3.add_on",AWSCloudWatchBlock3:"strokeColor=none;shape=mxgraph.aws3.cloudwatch",AWSCloudWatchAlarmBlock2:"strokeColor=none;shape=mxgraph.aws3.alarm",AWSIAMSecurityTokenService2:"strokeColor=none;shape=mxgraph.aws3.sts_2",AWSIAMDataEncryptionKey2:"strokeColor=none;shape=mxgraph.aws3.data_encryption_key",AWSIAMEncryptedData2:"strokeColor=none;shape=mxgraph.aws3.encrypted_data",
|
||||
"AWSAWSIAM(long-termsecuritycredential)":"strokeColor=none;shape=mxgraph.aws3.long_term_security_credential",AWSIAMMFAToken2:"strokeColor=none;shape=mxgraph.aws3.mfa_token",AWSIAMPermissions2:"strokeColor=none;shape=mxgraph.aws3.permissions_2",AWSIAMRoles2:"strokeColor=none;shape=mxgraph.aws3.role","AWSAWSIAM(temporarysecuritycredential)":"strokeColor=none;shape=mxgraph.aws3.long_term_security_credential",AWSCloudTrail2:"strokeColor=none;shape=mxgraph.aws3.cloudtrail",AWSConfig2:"strokeColor=none;shape=mxgraph.aws3.config",
|
||||
AWSOpsWorksBlock3:"strokeColor=none;shape=mxgraph.aws3.opsworks",AWSAWSServiceCatalog:"strokeColor=none;shape=mxgraph.aws3.service_catalog",AWSTrustedAdvisor2:"strokeColor=none;shape=mxgraph.aws3.trusted_advisor",AWSOpsWorksApps2:"strokeColor=none;shape=mxgraph.aws3.apps",AWSOpsWorksDeployments2:"strokeColor=none;shape=mxgraph.aws3.deployments",AWSOpsWorksInstances2:"strokeColor=none;shape=mxgraph.aws3.instances_2",AWSOpsWorksLayers2:"strokeColor=none;shape=mxgraph.aws3.layers",AWSOpsWorksMonitoring2:"strokeColor=none;shape=mxgraph.aws3.monitoring",
|
||||
AWSOpsWorksPermissions2:"strokeColor=none;shape=mxgraph.aws3.permissions",AWSOpsWorksResources2:"strokeColor=none;shape=mxgraph.aws3.resources",AWSOpsWorksStack2:"strokeColor=none;shape=mxgraph.aws3.stack_aws_opsworks",AWSMechanicalTurkBlock3:"strokeColor=none;shape=mxgraph.aws3.mechanical_turk",AWSHumanITBlock2:"strokeColor=none;shape=mxgraph.aws3.human_intelligence_tasks_hit",AWSAssignmentTaskBlock2:"strokeColor=none;shape=mxgraph.aws3.requester",AWSWorkersBlock2:"strokeColor=none;shape=mxgraph.aws3.users",
|
||||
AWSRequesterBlock2:"strokeColor=none;shape=mxgraph.aws3.assignment_task",AWSAndroidBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#96BF3D",AWSiOSBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#CFCFCF",AWSJavaBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#EE472A",AWSJavaScript:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#205E00",AWSNetBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#115193",AWSNodeJSBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#8CC64F",
|
||||
AWSPHPBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#5A69A4",AWSPythonBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#FFD44F",AWSRubyBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#AE1F23",AWSXamarin:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#4090D7",AWSCLIBlock3:"strokeColor=none;shape=mxgraph.aws3.cli;fillColor=#444444",AWSEclipseToolkitBlock3:"strokeColor=none;shape=mxgraph.aws3.toolkit_for_eclipse;fillColor=#342074",AWSVisualStudioToolkitBlock3:"strokeColor=none;shape=mxgraph.aws3.toolkit_for_visual_studio;fillColor=#53B1CB",
|
||||
AWSWindowsPowershellToolkitBlock3:"strokeColor=none;shape=mxgraph.aws3.toolkit_for_windows_powershell;fillColor=#737373",AWSAmazonElasticsearchService:"strokeColor=none;shape=mxgraph.aws3.elasticsearch_service",AWSElasticMapReduceBlock2:"strokeColor=none;shape=mxgraph.aws3.emr",AWSClusterBlock2:"strokeColor=none;shape=mxgraph.aws3.emr_cluster",AWSEMREngine2:"strokeColor=none;shape=mxgraph.aws3.emr_engine",AWSEMRMapRM3Engine2:"strokeColor=none;shape=mxgraph.aws3.emr_engine_mapr_m3",AWSEMRMapRM5Engine2:"strokeColor=none;shape=mxgraph.aws3.emr_engine_mapr_m5",
|
||||
AWSEMRMapRM7Engine2:"strokeColor=none;shape=mxgraph.aws3.emr_engine_mapr_m7",AWSKinesis2:"strokeColor=none;shape=mxgraph.aws3.kinesis","AWSAmazonKinesis(AmazonKinesisAnalytics)":"strokeColor=none;shape=mxgraph.aws3.kinesis",AWSKinesisEnabledApp2:"strokeColor=none;shape=mxgraph.aws3.kinesis_enabled_app","AWSAmazonKinesis(AmazonKinesisFirehose)":"strokeColor=none;shape=mxgraph.aws3.kinesis_firehose","AWSAmazonKinesis(AmazonKinesisStreams)":"strokeColor=none;shape=mxgraph.aws3.kinesis_streams",AWSAmazonMachineLearning:"strokeColor=none;shape=mxgraph.aws3.machine_learning",
|
||||
AWSAmazonQuickSight:"strokeColor=none;shape=mxgraph.aws3.quicksight",AWSCognito2:"strokeColor=none;shape=mxgraph.aws3.cognito",AWSMobileAnalytics2:"strokeColor=none;shape=mxgraph.aws3.mobile_analytics",AWSAWSDeviceFarm:"strokeColor=none;shape=mxgraph.aws3.device_farm",AWSAWSMobileHub:"strokeColor=none;shape=mxgraph.aws3.mobile_hub;gradientColor=#AD688A;gradientDirection=east",AWSTopicBlock2:"strokeColor=none;shape=mxgraph.aws3.topic_2;fontStyle=1;fontColor=#ffffff;verticalAlign=top;spacingTop=-5",
|
||||
AWSEmailNotificationBlock2:"strokeColor=none;shape=mxgraph.aws3.email_notification",AWSHTTPNotificationBlock2:"strokeColor=none;shape=mxgraph.aws3.http_notification",AWSAWSCodeCommit:"strokeColor=none;shape=mxgraph.aws3.codecommit",AWSCodeDeploy2:"strokeColor=none;shape=mxgraph.aws3.codedeploy",AWSAWSCodePipeline:"strokeColor=none;shape=mxgraph.aws3.codepipeline",AWSWorkDocs2:"strokeColor=none;shape=mxgraph.aws3.workdocs",AWSAmazonWorkMail:"strokeColor=none;shape=mxgraph.aws3.workmail",AWSAmazonWorkSpaces2:"strokeColor=none;shape=mxgraph.aws3.workspaces",
|
||||
AWSAWSIoT:"strokeColor=none;shape=mxgraph.aws3.aws_iot","AWSAWSIoT(action)":"strokeColor=none;shape=mxgraph.aws3.action","AWSAWSIoT(actuator)":"strokeColor=none;shape=mxgraph.aws3.actuator","AWSAWSIoT(certificate)":"strokeColor=none;shape=mxgraph.aws3.certificate","AWSAWSIoT(desiredstate)":"strokeColor=none;shape=mxgraph.aws3.desired_state","AWSAWSIoT(hardwareboard)":"strokeColor=none;shape=mxgraph.aws3.hardware_board","AWSAWSIoT(HTTP2protocol)":"strokeColor=none;shape=mxgraph.aws3.http_2_protocol",
|
||||
"AWSAWSIoT(HTTPprotocol)":"strokeColor=none;shape=mxgraph.aws3.http_protocol","AWSAWSIoT(MQTTprotocol)":"strokeColor=none;shape=mxgraph.aws3.mqtt_protocol","AWSAWSIoT(policy)":"strokeColor=none;shape=mxgraph.aws3.policy","AWSAWSIoT(reportedstate)":"strokeColor=none;shape=mxgraph.aws3.reported_state","AWSAWSIoT(rule)":"strokeColor=none;shape=mxgraph.aws3.rule","AWSAWSIoT(sensor)":"strokeColor=none;shape=mxgraph.aws3.sensor","AWSAWSIoT(servo)":"strokeColor=none;shape=mxgraph.aws3.servo","AWSAWSIoT(shadow)":"strokeColor=none;shape=mxgraph.aws3.shadow",
|
||||
"AWSAWSIoT(simulator)":"strokeColor=none;shape=mxgraph.aws3.simulator","AWSAWSIoT(thingbank)":"strokeColor=none;shape=mxgraph.aws3.bank","AWSAWSIoT(thingbicycle)":"strokeColor=none;shape=mxgraph.aws3.bicycle","AWSAWSIoT(thingcamera)":"strokeColor=none;shape=mxgraph.aws3.camera","AWSAWSIoT(thingcar)":"strokeColor=none;shape=mxgraph.aws3.car","AWSAWSIoT(thingcart)":"strokeColor=none;shape=mxgraph.aws3.cart","AWSAWSIoT(thingcoffeepot)":"strokeColor=none;shape=mxgraph.aws3.coffee_pot","AWSAWSIoT(thingdoorlock)":"strokeColor=none;shape=mxgraph.aws3.door_lock",
|
||||
"AWSAWSIoT(thingfactory)":"strokeColor=none;shape=mxgraph.aws3.factory","AWSAWSIoT(thinggeneric)":"strokeColor=none;shape=mxgraph.aws3.generic","AWSAWSIoT(thinghouse)":"strokeColor=none;shape=mxgraph.aws3.house","AWSAWSIoT(thinglightbulb)":"strokeColor=none;shape=mxgraph.aws3.lightbulb","AWSAWSIoT(thingmedicalemergency)":"strokeColor=none;shape=mxgraph.aws3.medical_emergency","AWSAWSIoT(thingpoliceemergency)":"strokeColor=none;shape=mxgraph.aws3.police_emergency","AWSAWSIoT(thingthermostat)":"strokeColor=none;shape=mxgraph.aws3.thermostat",
|
||||
"AWSAWSIoT(thingtravel)":"strokeColor=none;shape=mxgraph.aws3.travel","AWSAWSIoT(thingutility)":"strokeColor=none;shape=mxgraph.aws3.utility","AWSAWSIoT(thingwindfarm)":"strokeColor=none;shape=mxgraph.aws3.windfarm","AWSAWSIoT(topic)":"strokeColor=none;shape=mxgraph.aws3.topic",AWSCloudBlock2:"strokeColor=none;shape=mxgraph.aws3.cloud",AWSVPCloudBlock3:"strokeColor=none;shape=mxgraph.aws3.virtual_private_cloud",AWSUserBlock2:"strokeColor=none;shape=mxgraph.aws3.user",AWSUsersBlock2:"strokeColor=none;shape=mxgraph.aws3.users",
|
||||
AWSClientBlock2:"strokeColor=none;shape=mxgraph.aws3.management_console",AWSMobileClientBlock2:"strokeColor=none;shape=mxgraph.aws3.mobile_client",AWSGenericDatabaseBlock3:"strokeColor=none;shape=mxgraph.aws3.generic_database",AWSDiskBlock3:"strokeColor=none;shape=mxgraph.aws3.disk",AWSTapeStorageBlock3:"strokeColor=none;shape=mxgraph.aws3.tape_storage",AWSMediaBlock2:"strokeColor=none;shape=mxgraph.aws3.multimedia",AWSDataCenterBlock2:"strokeColor=none;shape=mxgraph.aws3.corporate_data_center",AWSServerBlock2:"strokeColor=none;shape=mxgraph.aws3.traditional_server",
|
||||
AWSInternetBlock2:"strokeColor=none;shape=mxgraph.aws2.non-service_specific.internet",AWSForumsBlock3:"strokeColor=none;shape=mxgraph.aws3.forums",AWSManagementBlock2:"strokeColor=none;shape=mxgraph.aws3.management_console",AWSAmazonElasticCacheNode2:"strokeColor=none;shape=mxgraph.aws3.cache_node",AWSAmazonRedshiftDW1Cluster2:"strokeColor=none;shape=mxgraph.aws3.dense_compute_node",AWSAmazonRedshiftDW2Cluster2:"strokeColor=none;shape=mxgraph.aws3.dense_storage_node",AWSAmazonRedshiftSSDFamilyCluster2:"strokeColor=none;shape=mxgraph.aws3.dense_storage_node",
|
||||
AWSAmazonRoute53RouteTable2:"strokeColor=none;shape=mxgraph.aws3.route_table",AWSSubnetBlock2:"strokeColor=none;shape=mxgraph.aws3.permissions",AWSRoundedRectangleContainerBlock2:"mxCompositeShape",ACAccessControlBlock:"strokeColor=none;shape=mxgraph.azure.access_control",ACAPIAppsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.api_app",ACAPIManagementBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.api_management",ACAppInsightsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.application_insights",
|
||||
ACAppServicesBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.app_service",ACAutoscalingBlock:"strokeColor=none;shape=mxgraph.azure.autoscale",ACAzureActiveDirectoryBlock:"strokeColor=none;shape=mxgraph.azure.azure_active_directory",ACAzurealertBlock:"strokeColor=none;shape=mxgraph.azure.azure_alert",ACAzureAutomationBlock:"strokeColor=none;shape=mxgraph.azure.automation",ACAzureBatchBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_batch",ACAzureRedisBlock:"strokeColor=none;shape=mxgraph.azure.azure_cache",
|
||||
ACAzureFilesBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_files_service",ACAzureloadbalancerBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_automatic_load_balancer",ACAzureMarketplaceBlock:"strokeColor=none;shape=mxgraph.azure.azure_marketplace",ACAzureRightManagementRMSBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_rights_management_rms",ACAzureSDKBlock:"strokeColor=none;shape=mxgraph.azure.azure_sdk",ACAzureSearchBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_search",
|
||||
ACAzureSQLdatabaseBlock:"strokeColor=none;shape=mxgraph.azure.sql_database_sql_azure",ACAzuresubscriptionBlock:"strokeColor=none;shape=mxgraph.azure.azure_subscription",ACAzureWebsitesBlock:"strokeColor=none;shape=mxgraph.azure.azure_website",ACBackupServiceBlock:"strokeColor=none;shape=mxgraph.azure.backup_service",ACBitbucketcodesourceBlock:"strokeColor=none;shape=mxgraph.azure.bitbucket_code_source",ACBizTalkServicesBlock:"strokeColor=none;shape=mxgraph.azure.biztalk_services",ACCloudServiceBlock:"strokeColor=none;shape=mxgraph.azure.cloud_service",
|
||||
ACCodePlexBlock:"strokeColor=none;shape=mxgraph.azure.codeplex_code_source",ACContentDeliveryNetworkBlock:"strokeColor=none;shape=mxgraph.azure.content_delivery_network",ACDataFactoryBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.data_factory",ACDocumentDBBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.documentdb",ACDropboxcodesourceBlock:"strokeColor=none;shape=mxgraph.azure.dropbox_code_source",ACEventsHubBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.event_hubs",ACExpressRouteBlock:"strokeColor=none;shape=mxgraph.azure.express_route",
|
||||
ACGitHubBlock:"strokeColor=none;shape=mxgraph.azure.github_code",ACGitrepositoryBlock:"strokeColor=none;shape=mxgraph.azure.git_repository",ACHDInsightBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.hdinsight",ACHealthmonitoringBlock:"strokeColor=none;shape=mxgraph.azure.health_monitoring",ACHealthyBlock:"strokeColor=none;shape=mxgraph.azure.healthy",ACHybridConnectionBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.hybrid_connections",ACBizTalkhybridconnectionBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.hybrid_connection_manager",
|
||||
ACKeyVaultBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.key_vault",ACLogicAppBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.logic_app",ACMachineLearningBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.machine_learning",ACMediaServicesBlock:"strokeColor=none;shape=mxgraph.azure.media_service",ACMicrosoftaccountBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.microsoft_account",ACMicrosoftAzureBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.microsoft_azure",ACMobileEngagementBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.mobile_engagement",
|
||||
ACMobileServicesBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.mobile_app",ACMultiFactorAuthBlock:"strokeColor=none;shape=mxgraph.azure.multi_factor_authentication",ACMySQLdatabaseBlock:"strokeColor=none;shape=mxgraph.azure.mysql_database",ACNotificationHubsBlock:"strokeColor=none;shape=mxgraph.azure.notification_hub",ACNotificationtopicBlock:"strokeColor=none;shape=mxgraph.azure.notification_topic",ACOperationalInsightsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.operational_insights",ACOSimageBlock:"strokeColor=none;shape=mxgraph.azure.operating_system_image",
|
||||
ACRemoteAppBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.remoteapp",ACrpdRemotingfileBlock:"strokeColor=none;shape=mxgraph.azure.rdp_remoting_file",ACSchedulerBlock:"strokeColor=none;shape=mxgraph.azure.scheduler",ACServiceBusBlock:"strokeColor=none;shape=mxgraph.azure.service_bus",ACServiceBusQueueBlock:"strokeColor=none;shape=mxgraph.azure.service_bus_queues",ACServiceBusRelayBlock:"strokeColor=none;shape=mxgraph.azure.service_bus_relay",ACServiceBusTopicBlock:"strokeColor=none;shape=mxgraph.azure.service_bus_topics_and_subscriptions",
|
||||
ACServiceEndpointBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.service_endpoint",ACServicepackageBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.service_package",ACSiteRecoveryBlock:"strokeColor=none;shape=mxgraph.azure.hyper_v_recovery_manager",ACSQLdatabasegenericBlock:"strokeColor=none;shape=mxgraph.azure.sql_database",ACSQLdatasyncBlock:"strokeColor=none;shape=mxgraph.azure.sql_datasync",ACSQLreportingdeprecatedBlock:"strokeColor=none;shape=mxgraph.azure.sql_reporting",ACStartuptaskBlock:"strokeColor=none;shape=mxgraph.azure.startup_task",
|
||||
ACStorageAzureBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_storage",ACStorageblobBlock:"strokeColor=none;shape=mxgraph.azure.storage_blob",ACStoragequeueBlock:"strokeColor=none;shape=mxgraph.azure.storage_queue",ACStoragetableBlock:"strokeColor=none;shape=mxgraph.azure.storage_table",ACStorSimpleBlock:"strokeColor=none;shape=mxgraph.azure.storsimple",ACStreamAnalyticsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.stream_analytics",ACTrafficManagerBlock:"strokeColor=none;shape=mxgraph.azure.traffic_manager",
|
||||
ACAlienBlock:"strokeColor=none;shape=mxgraph.azure.unidentified_code_object",ACVHDBlock:"strokeColor=none;shape=mxgraph.azure.vhd",ACVHDdatadiskBlock:"strokeColor=none;shape=mxgraph.azure.vhd_data_disk",ACVirtualmachineBlock:"strokeColor=none;shape=mxgraph.azure.virtual_machine",ACVirtualmachinecontainerBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.virtual_machine_container",ACVirtualnetworkBlock:"strokeColor=none;shape=mxgraph.azure.virtual_network",ACVisualStudioOnlineBlock:"strokeColor=none;shape=mxgraph.azure.visual_studio_online",
|
||||
ACVMsymbolonlyBlock:"strokeColor=none;shape=mxgraph.azure.virtual_machine_feature",ACWebJobsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.webjobs",ACWebroleBlock:"strokeColor=none;shape=mxgraph.azure.web_role",ACWebrolesBlock:"strokeColor=none;shape=mxgraph.azure.web_roles",ACWorkaccountBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.work_account",ACWorkerroleBlock:"strokeColor=none;shape=mxgraph.azure.worker_role",ACWorkerrolesBlock:"strokeColor=none;shape=mxgraph.azure.worker_roles",ADNSBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_dns",
|
||||
ACLoadBalancerBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_load_balancer_feature",ACResourceGroupBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.resource_group",ACVPNGatewayBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.vpn_gateway",AEActiveDirectoryFSPBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.d",AEADFSBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.ad_fs",AEAndroidPhoneBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.android_phone",AEappblankfortextBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.application_blank",
|
||||
AEAppGenericBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.app_generic",AEAppserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.application_server",AEBackuplocalBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.backup_local",AEBackuponlineBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.backup_online",AECalendarBlock:"strokeColor=none;shape=mxgraph.mscae.general.calendar",AECertificateBlock:"strokeColor=none;shape=mxgraph.azure.certificate",AEClientAppBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.client_application",
|
||||
AECloudBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.internet",AEClusterserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.cluster_server",AECodefileBlock:"strokeColor=none;shape=mxgraph.azure.code_file",AEConnectorsBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.connectors",AEDatabasegenericBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.database_generic",AEDatabaseserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.database_server",AEDatabasesyncBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.database_synchronization",
|
||||
AEDeviceBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.device",AEDirectaccessBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.direct_access_feature",AEDocumentBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.document",AEDomaincontrollerBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.domain_controller",AEEnterpriseBuildingBlock:"strokeColor=none;shape=mxgraph.azure.enterprise",AEFilegeneralBlock:"strokeColor=none;shape=mxgraph.azure.file",AEFilterBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.filter",
|
||||
AEFirewallBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.firewall",AEFolderBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.folder",AEGatewayBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.gateway",AEGenericcodeBlock:"strokeColor=none;shape=mxgraph.azure.code_file",AEGraphBlock:"strokeColor=none;shape=mxgraph.mscae.general.graph",AEHealthmonitoringBlock:"strokeColor=none;shape=mxgraph.azure.health_monitoring",AEHealthyBlock:"strokeColor=none;shape=mxgraph.azure.healthy",AEImportgenericBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.import_generic",
|
||||
AEInternetBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.internet",AEKeyboardBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.keyboard",AEKeypermissionsBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.key_permissions",AELaptopcomputerBlock:"strokeColor=none;shape=mxgraph.azure.laptop",AELoadbalancerBlock:"strokeColor=none;shape=mxgraph.azure.load_balancer_generic",AELoadTestingBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.load_testing",AELockprotectedBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.lock",
|
||||
AELockunprotectedBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.lock_unlocked",AEMaintenanceBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.maintenance",AEManagementconsoleBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.management_console",AEMessageBlock:"strokeColor=none;shape=mxgraph.azure.message",AEMonitorBlock:"strokeColor=none;shape=mxgraph.azure.computer",AEMonitorrunningappsBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.monitor_running_apps",AEMouseBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.mouse",
|
||||
AENetworkcardBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.network_card",AENotallowedBlock:"strokeColor=none;shape=mxgraph.mscae.general.not_allowed",AEPerformanceBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.performance",AEPerformancemonitorBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.performance_monitor",AEPhoneBlock:"strokeColor=none;shape=mxgraph.azure.mobile",AEPlugandplayBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.plug_and_play",AEPowershellscriptfileBlock:"strokeColor=none;shape=mxgraph.azure.powershell_file",
|
||||
AEProtocolstackBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.protocol_stack",AEQueuegeneralBlock:"strokeColor=none;shape=mxgraph.azure.queue_generic",AERMSconnectorBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.rms_connector",AERouterBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.router",AEScriptfileBlock:"strokeColor=none;shape=mxgraph.azure.script_file",AESecurevirtualmachineBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.secure_virtual_machine",AEServerbladeBlock:"strokeColor=none;shape=mxgraph.azure.server",
|
||||
AEServerdirectoryBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.server_directory",AEServerfarmBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.server_farm",AEServergenericBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.server_generic",AEServerrackBlock:"strokeColor=none;shape=mxgraph.azure.server_rack",AESettingsBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.settings",AESharedfolderBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.shared_folder",AESmartcardBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.smartcard",
|
||||
AEStorageBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.storage",AETableBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.table",AETabletBlock:"strokeColor=none;shape=mxgraph.azure.tablet",AEToolBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.tool",AETunnelBlock:"strokeColor=none;shape=mxgraph.mscae.general.tunnel",AEUnhealthyBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.unhealthy",AEUSBBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.usb",AEUserBlock:"strokeColor=none;shape=mxgraph.azure.user",
|
||||
AEVideoBlock:"strokeColor=none;shape=mxgraph.mscae.general.video",AEVirtualmachineBlock:"strokeColor=none;shape=mxgraph.azure.virtual_machine_feature",AEWebBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.web",AEWebserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.web_server",AEWindowsserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.windows_server",AEWirelessconnectionBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.wireless_connection",AEWorkstationclientBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.workstation_client",
|
||||
UMLAttributeBlock:"shape=ellipse",UMLMultivaluedAttributeBlock:"shape=doubleEllipse",UMLRelationshipBlock:"shape=rhombus",UMLWeakRelationshipBlock:"shape=rhombus;double=1",BPMNActivity:"mxCompositeShape",BPMNEvent:"mxCompositeShape",BPMNChoreography:"mxCompositeShape",BPMNConversation:"mxCompositeShape",BPMNGateway:"mxCompositeShape",BPMNData:"mxCompositeShape",BPMNDataStore:"shape=datastore",BPMNAdvancedPoolBlock:"mxCompositeShape",BPMNAdvancedPoolBlockRotated:"mxCompositeShape",BPMNBlackPool:"mxCompositeShape",
|
||||
DFDExternalEntityBlock:"mxCompositeShape",DFDExternalEntityBlock2:"",YDMDFDProcessBlock:"shape=ellipse",YDMDFDDataStoreBlock:"shape=partialRectangle;right=0;left=0",GSDFDProcessBlock:"shape=swimlane;rounded=1;arcSize=10",GSDFDProcessBlock2:"rounded=1;arcSize=10;",GSDFDDataStoreBlock:"mxCompositeShape",GSDFDDataStoreBlock2:"shape=partialRectangle;right=0",OrgBlock:"",DefaultTableBlock:"mxCompositeShape",VSMCustomerSupplierBlock:"shape=mxgraph.lean_mapping.outside_sources",VSMDedicatedProcessBlock:"mxCompositeShape",
|
||||
VSMSharedProcessBlock:"mxCompositeShape",VSMWorkcellBlock:"mxCompositeShape",VSMDatacellBlock:"mxCompositeShape",VSMInventoryBlock:"mxCompositeShape",VSMSupermarketBlock:"mxCompositeShape",VSMPhysicalPullBlock:"shape=mxgraph.lean_mapping.physical_pull;direction=south",VSMFIFOLaneBlock:"mxCompositeShape",VSMSafetyBufferStockBlock:"mxCompositeShape",VSMExternalShipmentAirplaneBlock:"shape=mxgraph.lean_mapping.airplane_7",VSMExternalShipmentForkliftBlock:"shape=mxgraph.lean_mapping.move_by_forklift",
|
||||
VSMExternalShipmentTruckBlock:"shape=mxgraph.lean_mapping.truck_shipment",VSMExternalShipmentBoatBlock:"shape=mxgraph.lean_mapping.boat_shipment",VSMProductionControlBlock:"mxCompositeShape",VSMOtherInformationBlock:"",VSMSequencedPullBallBlock:"shape=mxgraph.lean_mapping.sequenced_pull_ball",VSMMRPERPBlock:"shape=mxgraph.lean_mapping.mrp_erp;whiteSpace=wrap",VSMLoadLevelingBlock:"shape=mxgraph.lean_mapping.load_leveling",VSMGoSeeBlock:"shape=mxgraph.lean_mapping.go_see_production_scheduling;flipH=1",
|
||||
VSMGoSeeProductionBlock:"mxCompositeShape",VSMVerbalInfoBlock:"shape=mxgraph.lean_mapping.verbal",VSMKaizenBurstBlock:"shape=mxgraph.lean_mapping.kaizen_lightening_burst",VSMOperatorBlock:"shape=mxgraph.lean_mapping.operator;flipV=1",VSMTimelineBlock:"mxCompositeShape",VSMQualityProblemBlock:"shape=mxgraph.lean_mapping.quality_problem",VSMProductionKanbanSingleBlock:"shape=card;size=18;flipH=1;",VSMProductionKanbanBatchBlock:"mxCompositeShape",VSMWithdrawalKanbanBlock:"shape=mxgraph.lean_mapping.withdrawal_kanban",
|
||||
VSMSignalKanbanBlock:"shape=triangle;direction=south",VSMKanbanPostBlock:"shape=mxgraph.lean_mapping.kanban_post",VSMShipmentArrow:"shape=singleArrow;arrowWidth=0.5;arrowSize=0.13",VSMPushArrow:"shape=mxgraph.lean_mapping.push_arrow",AWSElasticComputeCloudBlock2:"strokeColor=none;shape=mxgraph.aws3.ec2",AWSInstanceBlock2:"strokeColor=none;shape=mxgraph.aws3.instance",AWSInstancesBlock2:"strokeColor=none;shape=mxgraph.aws3.instances",AWSAMIBlock2:"strokeColor=none;shape=mxgraph.aws3.ami",AWSDBonInstanceBlock2:"strokeColor=none;shape=mxgraph.aws3.db_on_instance",
|
||||
AWSInstanceCloudWatchBlock2:"strokeColor=none;shape=mxgraph.aws3.instance_with_cloudwatch",AWSElasticIPBlock2:"strokeColor=none;shape=mxgraph.aws3.elastic_ip",AWSHDFSClusterBlock2:"strokeColor=none;shape=mxgraph.aws3.hdfs_cluster",AWSAutoScalingBlock2:"strokeColor=none;shape=mxgraph.aws3.auto_scaling",AWSEC2OptimizedInstance2:"strokeColor=none;shape=mxgraph.aws3.optimized_instance","AWSAmazonEC2(Spotinstance)":"strokeColor=none;shape=mxgraph.aws3.spot_instance",AWSAmazonECR:"strokeColor=none;shape=mxgraph.aws3.ecr",
|
||||
AWSAmazonECS:"strokeColor=none;shape=mxgraph.aws3.ecs",AWSLambda2:"strokeColor=none;shape=mxgraph.aws3.lambda",AWSElasticLoadBalancing:"strokeColor=none;shape=mxgraph.aws3.elastic_load_balancing",AWSElasticLoadBlock2:"strokeColor=none;shape=mxgraph.aws3.classic_load_balancer",AWSDirectConnectBlock3:"strokeColor=none;shape=mxgraph.aws3.direct_connect",AWSElasticNetworkBlock2:"strokeColor=none;shape=mxgraph.aws3.elastic_network_interface",AWSRoute53Block2:"strokeColor=none;shape=mxgraph.aws3.route_53",
|
||||
AWSHostedZoneBlock2:"strokeColor=none;shape=mxgraph.aws3.hosted_zone;fontColor=#FFFFFF;fontStyle=1",AWSRouteTableBlock2:"strokeColor=none;shape=mxgraph.aws3.route_table",AWSVPCBlock2:"strokeColor=none;shape=mxgraph.aws3.vpc",AWSVPNConnectionBlock2:"strokeColor=none;shape=mxgraph.aws3.vpn_connection",AWSVPNGatewayBlock2:"strokeColor=none;shape=mxgraph.aws3.vpn_gateway",AWSCustomerGatewayBlock2:"strokeColor=none;shape=mxgraph.aws3.customer_gateway",AWSCustomerGatewayBlock3:"strokeColor=none;shape=mxgraph.aws3.customer_gateway",
|
||||
AWSInternetGatewayBlock2:"strokeColor=none;shape=mxgraph.aws3.internet_gateway",AWSRouterBlock2:"strokeColor=none;shape=mxgraph.aws3.router",AWSRouterBlock3:"strokeColor=none;shape=mxgraph.aws3.router","AWSAmazonVPC(endpoints)":"strokeColor=none;shape=mxgraph.aws3.endpoints","AWSAmazonVPC(flowlogs)":"strokeColor=none;shape=mxgraph.aws3.flow_logs","AWSAmazonVPC(VPCNATgateway)":"strokeColor=none;shape=mxgraph.aws3.vpc_nat_gateway",AWSVPCPeering3:"strokeColor=none;shape=mxgraph.aws3.vpc_peering",AWSSimpleStorageBlock2:"strokeColor=none;shape=mxgraph.aws3.s3",
|
||||
AWSBucketBlock2:"strokeColor=none;shape=mxgraph.aws3.bucket;fontStyle=1;fontColor=#ffffff",AWSBuckethWithObjectsBlock2:"strokeColor=none;shape=mxgraph.aws3.bucket_with_objects",AWSObjectBlock2:"strokeColor=none;shape=mxgraph.aws3.object;fontStyle=1;fontColor=#ffffff",AWSImportExportBlock2:"strokeColor=none;shape=mxgraph.aws3.import_export",AWSStorageGatewayBlock2:"strokeColor=none;shape=mxgraph.aws3.storage_gateway",AWSElasticBlockStorageBlock2:"strokeColor=none;shape=mxgraph.aws3.volume;fontStyle=1;fontColor=#ffffff",
|
||||
AWSVolumeBlock3:"strokeColor=none;shape=mxgraph.aws3.volume;fontStyle=1;fontColor=#ffffff",AWSSnapshotBlock2:"strokeColor=none;shape=mxgraph.aws3.snapshot;fontStyle=1;fontColor=#ffffff",AWSGlacierArchiveBlock3:"strokeColor=none;shape=mxgraph.aws3.archive",AWSGlacierVaultBlock3:"strokeColor=none;shape=mxgraph.aws3.vault",AWSAmazonEFS:"strokeColor=none;shape=mxgraph.aws3.efs",AWSGlacierBlock2:"strokeColor=none;shape=mxgraph.aws3.glacier",AWSAWSImportExportSnowball:"strokeColor=none;shape=mxgraph.aws3.snowball",
|
||||
AWSStorageGatewayCachedVolumn2:"strokeColor=none;shape=mxgraph.aws3.cached_volume","AWSStorageGatewayNon-CachedVolumn2":"strokeColor=none;shape=mxgraph.aws3.non_cached_volume",AWSStorageGatewayVirtualTapeLibrary2:"strokeColor=none;shape=mxgraph.aws3.virtual_tape_library",AWSCloudFrontBlock2:"strokeColor=none;shape=mxgraph.aws3.cloudfront",AWSDownloadDistBlock2:"strokeColor=none;shape=mxgraph.aws3.download_distribution",AWSStreamingBlock2:"strokeColor=none;shape=mxgraph.aws3.streaming_distribution",
|
||||
AWSEdgeLocationBlock2:"strokeColor=none;shape=mxgraph.aws3.edge_location",AWSItemBlock2:"strokeColor=none;shape=mxgraph.aws3.item",AWSItemsBlock2:"strokeColor=none;shape=mxgraph.aws3.items",AWSAttributeBlock2:"strokeColor=none;shape=mxgraph.aws3.attribute",AWSAttributesBlock2:"strokeColor=none;shape=mxgraph.aws3.attributes",AWSRDBSBlock2:"strokeColor=none;shape=mxgraph.aws3.rds",AWSRDSInstanceBlock2:"strokeColor=none;shape=mxgraph.aws3.rds_db_instance",AWSRDSStandbyBlock2:"strokeColor=none;shape=mxgraph.aws3.rds_db_instance_standby_multi_az",
|
||||
AWSRDSInstanceReadBlock2:"strokeColor=none;shape=mxgraph.aws3.rds_db_instance_read_replica",AWSOracleDBBlock2:"strokeColor=none;shape=mxgraph.aws3.oracle_db_instance",AWSMySQLDBBlock2:"strokeColor=none;shape=mxgraph.aws3.mysql_db_instance",AWSDynamoDBBlock2:"strokeColor=none;shape=mxgraph.aws3.dynamo_db",AWSSimpleDatabaseBlock3:"strokeColor=none;shape=mxgraph.aws2.database.simpledb",AWSSimpleDatabaseDomainBlock3:"strokeColor=none;shape=mxgraph.aws2.database.simpledb_domain",AWSTableBlock2:"strokeColor=none;shape=mxgraph.aws3.table",
|
||||
AWSAmazonRedShiftBlock3:"strokeColor=none;shape=mxgraph.aws3.redshift",AWSElastiCacheNodeBlock2:"strokeColor=none;shape=mxgraph.aws3.cache_node",AWSElastiCacheBlock2:"strokeColor=none;shape=mxgraph.aws3.elasticache",AWSDynamoDBGlobalSecondaryIndexes2:"strokeColor=none;shape=mxgraph.aws3.global_secondary_index",AWSAmazonElastiCacheMemcache2:"strokeColor=none;shape=mxgraph.aws3.memcached",AWSAmazonElastiCacheRedis2:"strokeColor=none;shape=mxgraph.aws3.redis",AWSAmazonRDSMSSQLInstance2:"strokeColor=none;shape=mxgraph.aws3.ms_sql_instance_2",
|
||||
AWSMSSQLDBBlock3:"strokeColor=none;shape=mxgraph.aws3.ms_sql_instance",AWSAmazonRDSMySQLDBInstance2:"strokeColor=none;shape=mxgraph.aws3.mysql_db_instance_2",AWSAmazonRDSOracleDBInstance2:"strokeColor=none;shape=mxgraph.aws3.oracle_db_instance_2",AWSRDSReplicasetswithPIOP2:"strokeColor=none;shape=mxgraph.aws3.piop",AWSAmazonRDSPostgreSQL2:"strokeColor=none;shape=mxgraph.aws3.postgre_sql_instance",AWSRDSMasterSQL2:"strokeColor=none;shape=mxgraph.aws3.sql_master",AWSRDSSlaveSQL2:"strokeColor=none;shape=mxgraph.aws3.sql_slave",
|
||||
"AWSAmazonRedshift(densecomputenode)":"strokeColor=none;shape=mxgraph.aws3.dense_compute_node","AWSAmazonRedshift(densestoragenode)":"strokeColor=none;shape=mxgraph.aws3.dense_storage_node",AWSAWSDatabaseMigrationService:"strokeColor=none;shape=mxgraph.aws3.database_migration_service",AWSACM:"strokeColor=none;shape=mxgraph.aws3.certificate_manager",AWSAmazonInspector:"strokeColor=none;shape=mxgraph.aws3.inspector",AWSAWSCloudHSM:"strokeColor=none;shape=mxgraph.aws3.cloudhsm",AWSDirectoryService2:"strokeColor=none;shape=mxgraph.aws3.directory_service",
|
||||
AWSAWSKMS:"strokeColor=none;shape=mxgraph.aws3.kms",AWSAWSWAF:"strokeColor=none;shape=mxgraph.aws3.waf","AWSACM(certificate-manager)":"strokeColor=none;shape=mxgraph.aws3.certificate_manager_2",AWSSESBlock2:"strokeColor=none;shape=mxgraph.aws3.ses",AWSEmailBlock2:"strokeColor=none;shape=mxgraph.aws3.email",AWSSNSBlock2:"strokeColor=none;shape=mxgraph.aws3.sns",AWSSQSBlock3:"strokeColor=none;shape=mxgraph.aws3.sqs",AWSQueueBlock2:"strokeColor=none;shape=mxgraph.aws3.queue",AWSMessageBlock2:"strokeColor=none;shape=mxgraph.aws3.message",
|
||||
AWSDeciderBlock2:"strokeColor=none;shape=mxgraph.aws3.decider",AWSSWFBlock2:"strokeColor=none;shape=mxgraph.aws3.swf",AWSWorkerBlock2:"strokeColor=none;shape=mxgraph.aws3.worker",AWSCloudSearchBlock2:"strokeColor=none;shape=mxgraph.aws3.cloudsearch",AWSCloudSearchMetadataBlock3:"strokeColor=none;shape=mxgraph.aws3.search_documents",AWSElasticTranscoder3:"strokeColor=none;shape=mxgraph.aws3.elastic_transcoder",AWSAmazonAPIGateway:"strokeColor=none;shape=mxgraph.aws3.api_gateway",AWSAppStream2:"strokeColor=none;shape=mxgraph.aws3.appstream",
|
||||
AWSCloudFormationBlock2:"strokeColor=none;shape=mxgraph.aws3.cloudformation",AWSDataPipelineBlock3:"strokeColor=none;shape=mxgraph.aws3.data_pipeline",AWSDataPipelineBlock2:"strokeColor=none;shape=mxgraph.aws3.data_pipeline",AWSTemplageBlock2:"strokeColor=none;shape=mxgraph.aws3.template",AWSStackBlock2:"strokeColor=none;shape=mxgraph.aws3.stack_aws_cloudformation",AWSBeanStockBlock2:"strokeColor=none;shape=mxgraph.aws3.elastic_beanstalk",AWSApplicationBlock2:"strokeColor=none;shape=mxgraph.aws3.application",
|
||||
AWSBeanstalkDeploymentBlock3:"strokeColor=none;shape=mxgraph.aws3.deployment",AWSIAMBlock3:"strokeColor=none;shape=mxgraph.aws3.iam",AWSIAMSTSBlock3:"strokeColor=none;shape=mxgraph.aws3.sts",AWSIAMAddonBlock2:"strokeColor=none;shape=mxgraph.aws3.add_on",AWSCloudWatchBlock3:"strokeColor=none;shape=mxgraph.aws3.cloudwatch",AWSCloudWatchAlarmBlock2:"strokeColor=none;shape=mxgraph.aws3.alarm",AWSIAMSecurityTokenService2:"strokeColor=none;shape=mxgraph.aws3.sts_2",AWSIAMDataEncryptionKey2:"strokeColor=none;shape=mxgraph.aws3.data_encryption_key",
|
||||
AWSIAMEncryptedData2:"strokeColor=none;shape=mxgraph.aws3.encrypted_data","AWSAWSIAM(long-termsecuritycredential)":"strokeColor=none;shape=mxgraph.aws3.long_term_security_credential",AWSIAMMFAToken2:"strokeColor=none;shape=mxgraph.aws3.mfa_token",AWSIAMPermissions2:"strokeColor=none;shape=mxgraph.aws3.permissions_2",AWSIAMRoles2:"strokeColor=none;shape=mxgraph.aws3.role","AWSAWSIAM(temporarysecuritycredential)":"strokeColor=none;shape=mxgraph.aws3.long_term_security_credential",AWSCloudTrail2:"strokeColor=none;shape=mxgraph.aws3.cloudtrail",
|
||||
AWSConfig2:"strokeColor=none;shape=mxgraph.aws3.config",AWSOpsWorksBlock3:"strokeColor=none;shape=mxgraph.aws3.opsworks",AWSAWSServiceCatalog:"strokeColor=none;shape=mxgraph.aws3.service_catalog",AWSTrustedAdvisor2:"strokeColor=none;shape=mxgraph.aws3.trusted_advisor",AWSOpsWorksApps2:"strokeColor=none;shape=mxgraph.aws3.apps",AWSOpsWorksDeployments2:"strokeColor=none;shape=mxgraph.aws3.deployments",AWSOpsWorksInstances2:"strokeColor=none;shape=mxgraph.aws3.instances_2",AWSOpsWorksLayers2:"strokeColor=none;shape=mxgraph.aws3.layers",
|
||||
AWSOpsWorksMonitoring2:"strokeColor=none;shape=mxgraph.aws3.monitoring",AWSOpsWorksPermissions2:"strokeColor=none;shape=mxgraph.aws3.permissions",AWSOpsWorksResources2:"strokeColor=none;shape=mxgraph.aws3.resources",AWSOpsWorksStack2:"strokeColor=none;shape=mxgraph.aws3.stack_aws_opsworks",AWSMechanicalTurkBlock3:"strokeColor=none;shape=mxgraph.aws3.mechanical_turk",AWSHumanITBlock2:"strokeColor=none;shape=mxgraph.aws3.human_intelligence_tasks_hit",AWSAssignmentTaskBlock2:"strokeColor=none;shape=mxgraph.aws3.requester",
|
||||
AWSWorkersBlock2:"strokeColor=none;shape=mxgraph.aws3.users",AWSRequesterBlock2:"strokeColor=none;shape=mxgraph.aws3.assignment_task",AWSAndroidBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#96BF3D",AWSiOSBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#CFCFCF",AWSJavaBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#EE472A",AWSJavaScript:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#205E00",AWSNetBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#115193",
|
||||
AWSNodeJSBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#8CC64F",AWSPHPBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#5A69A4",AWSPythonBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#FFD44F",AWSRubyBlock3:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#AE1F23",AWSXamarin:"strokeColor=none;shape=mxgraph.aws3.android;fillColor=#4090D7",AWSCLIBlock3:"strokeColor=none;shape=mxgraph.aws3.cli;fillColor=#444444",AWSEclipseToolkitBlock3:"strokeColor=none;shape=mxgraph.aws3.toolkit_for_eclipse;fillColor=#342074",
|
||||
AWSVisualStudioToolkitBlock3:"strokeColor=none;shape=mxgraph.aws3.toolkit_for_visual_studio;fillColor=#53B1CB",AWSWindowsPowershellToolkitBlock3:"strokeColor=none;shape=mxgraph.aws3.toolkit_for_windows_powershell;fillColor=#737373",AWSAmazonElasticsearchService:"strokeColor=none;shape=mxgraph.aws3.elasticsearch_service",AWSElasticMapReduceBlock2:"strokeColor=none;shape=mxgraph.aws3.emr",AWSClusterBlock2:"strokeColor=none;shape=mxgraph.aws3.emr_cluster",AWSEMREngine2:"strokeColor=none;shape=mxgraph.aws3.emr_engine",
|
||||
AWSEMRMapRM3Engine2:"strokeColor=none;shape=mxgraph.aws3.emr_engine_mapr_m3",AWSEMRMapRM5Engine2:"strokeColor=none;shape=mxgraph.aws3.emr_engine_mapr_m5",AWSEMRMapRM7Engine2:"strokeColor=none;shape=mxgraph.aws3.emr_engine_mapr_m7",AWSKinesis2:"strokeColor=none;shape=mxgraph.aws3.kinesis","AWSAmazonKinesis(AmazonKinesisAnalytics)":"strokeColor=none;shape=mxgraph.aws3.kinesis",AWSKinesisEnabledApp2:"strokeColor=none;shape=mxgraph.aws3.kinesis_enabled_app","AWSAmazonKinesis(AmazonKinesisFirehose)":"strokeColor=none;shape=mxgraph.aws3.kinesis_firehose",
|
||||
"AWSAmazonKinesis(AmazonKinesisStreams)":"strokeColor=none;shape=mxgraph.aws3.kinesis_streams",AWSAmazonMachineLearning:"strokeColor=none;shape=mxgraph.aws3.machine_learning",AWSAmazonQuickSight:"strokeColor=none;shape=mxgraph.aws3.quicksight",AWSCognito2:"strokeColor=none;shape=mxgraph.aws3.cognito",AWSMobileAnalytics2:"strokeColor=none;shape=mxgraph.aws3.mobile_analytics",AWSAWSDeviceFarm:"strokeColor=none;shape=mxgraph.aws3.device_farm",AWSAWSMobileHub:"strokeColor=none;shape=mxgraph.aws3.mobile_hub;gradientColor=#AD688A;gradientDirection=east",
|
||||
AWSTopicBlock2:"strokeColor=none;shape=mxgraph.aws3.topic_2;fontStyle=1;fontColor=#ffffff;verticalAlign=top;spacingTop=-5",AWSEmailNotificationBlock2:"strokeColor=none;shape=mxgraph.aws3.email_notification",AWSHTTPNotificationBlock2:"strokeColor=none;shape=mxgraph.aws3.http_notification",AWSAWSCodeCommit:"strokeColor=none;shape=mxgraph.aws3.codecommit",AWSCodeDeploy2:"strokeColor=none;shape=mxgraph.aws3.codedeploy",AWSAWSCodePipeline:"strokeColor=none;shape=mxgraph.aws3.codepipeline",AWSWorkDocs2:"strokeColor=none;shape=mxgraph.aws3.workdocs",
|
||||
AWSAmazonWorkMail:"strokeColor=none;shape=mxgraph.aws3.workmail",AWSAmazonWorkSpaces2:"strokeColor=none;shape=mxgraph.aws3.workspaces",AWSAWSIoT:"strokeColor=none;shape=mxgraph.aws3.aws_iot","AWSAWSIoT(action)":"strokeColor=none;shape=mxgraph.aws3.action","AWSAWSIoT(actuator)":"strokeColor=none;shape=mxgraph.aws3.actuator","AWSAWSIoT(certificate)":"strokeColor=none;shape=mxgraph.aws3.certificate","AWSAWSIoT(desiredstate)":"strokeColor=none;shape=mxgraph.aws3.desired_state","AWSAWSIoT(hardwareboard)":"strokeColor=none;shape=mxgraph.aws3.hardware_board",
|
||||
"AWSAWSIoT(HTTP2protocol)":"strokeColor=none;shape=mxgraph.aws3.http_2_protocol","AWSAWSIoT(HTTPprotocol)":"strokeColor=none;shape=mxgraph.aws3.http_protocol","AWSAWSIoT(MQTTprotocol)":"strokeColor=none;shape=mxgraph.aws3.mqtt_protocol","AWSAWSIoT(policy)":"strokeColor=none;shape=mxgraph.aws3.policy","AWSAWSIoT(reportedstate)":"strokeColor=none;shape=mxgraph.aws3.reported_state","AWSAWSIoT(rule)":"strokeColor=none;shape=mxgraph.aws3.rule","AWSAWSIoT(sensor)":"strokeColor=none;shape=mxgraph.aws3.sensor",
|
||||
"AWSAWSIoT(servo)":"strokeColor=none;shape=mxgraph.aws3.servo","AWSAWSIoT(shadow)":"strokeColor=none;shape=mxgraph.aws3.shadow","AWSAWSIoT(simulator)":"strokeColor=none;shape=mxgraph.aws3.simulator","AWSAWSIoT(thingbank)":"strokeColor=none;shape=mxgraph.aws3.bank","AWSAWSIoT(thingbicycle)":"strokeColor=none;shape=mxgraph.aws3.bicycle","AWSAWSIoT(thingcamera)":"strokeColor=none;shape=mxgraph.aws3.camera","AWSAWSIoT(thingcar)":"strokeColor=none;shape=mxgraph.aws3.car","AWSAWSIoT(thingcart)":"strokeColor=none;shape=mxgraph.aws3.cart",
|
||||
"AWSAWSIoT(thingcoffeepot)":"strokeColor=none;shape=mxgraph.aws3.coffee_pot","AWSAWSIoT(thingdoorlock)":"strokeColor=none;shape=mxgraph.aws3.door_lock","AWSAWSIoT(thingfactory)":"strokeColor=none;shape=mxgraph.aws3.factory","AWSAWSIoT(thinggeneric)":"strokeColor=none;shape=mxgraph.aws3.generic","AWSAWSIoT(thinghouse)":"strokeColor=none;shape=mxgraph.aws3.house","AWSAWSIoT(thinglightbulb)":"strokeColor=none;shape=mxgraph.aws3.lightbulb","AWSAWSIoT(thingmedicalemergency)":"strokeColor=none;shape=mxgraph.aws3.medical_emergency",
|
||||
"AWSAWSIoT(thingpoliceemergency)":"strokeColor=none;shape=mxgraph.aws3.police_emergency","AWSAWSIoT(thingthermostat)":"strokeColor=none;shape=mxgraph.aws3.thermostat","AWSAWSIoT(thingtravel)":"strokeColor=none;shape=mxgraph.aws3.travel","AWSAWSIoT(thingutility)":"strokeColor=none;shape=mxgraph.aws3.utility","AWSAWSIoT(thingwindfarm)":"strokeColor=none;shape=mxgraph.aws3.windfarm","AWSAWSIoT(topic)":"strokeColor=none;shape=mxgraph.aws3.topic",AWSCloudBlock2:"strokeColor=none;shape=mxgraph.aws3.cloud",
|
||||
AWSVPCloudBlock3:"strokeColor=none;shape=mxgraph.aws3.virtual_private_cloud",AWSUserBlock2:"strokeColor=none;shape=mxgraph.aws3.user",AWSUsersBlock2:"strokeColor=none;shape=mxgraph.aws3.users",AWSClientBlock2:"strokeColor=none;shape=mxgraph.aws3.management_console",AWSMobileClientBlock2:"strokeColor=none;shape=mxgraph.aws3.mobile_client",AWSGenericDatabaseBlock3:"strokeColor=none;shape=mxgraph.aws3.generic_database",AWSDiskBlock3:"strokeColor=none;shape=mxgraph.aws3.disk",AWSTapeStorageBlock3:"strokeColor=none;shape=mxgraph.aws3.tape_storage",
|
||||
AWSMediaBlock2:"strokeColor=none;shape=mxgraph.aws3.multimedia",AWSDataCenterBlock2:"strokeColor=none;shape=mxgraph.aws3.corporate_data_center",AWSServerBlock2:"strokeColor=none;shape=mxgraph.aws3.traditional_server",AWSInternetBlock2:"strokeColor=none;shape=mxgraph.aws2.non-service_specific.internet",AWSForumsBlock3:"strokeColor=none;shape=mxgraph.aws3.forums",AWSManagementBlock2:"strokeColor=none;shape=mxgraph.aws3.management_console",AWSAmazonElasticCacheNode2:"strokeColor=none;shape=mxgraph.aws3.cache_node",
|
||||
AWSAmazonRedshiftDW1Cluster2:"strokeColor=none;shape=mxgraph.aws3.dense_compute_node",AWSAmazonRedshiftDW2Cluster2:"strokeColor=none;shape=mxgraph.aws3.dense_storage_node",AWSAmazonRedshiftSSDFamilyCluster2:"strokeColor=none;shape=mxgraph.aws3.dense_storage_node",AWSAmazonRoute53RouteTable2:"strokeColor=none;shape=mxgraph.aws3.route_table",AWSSubnetBlock2:"strokeColor=none;shape=mxgraph.aws3.permissions",AWSRoundedRectangleContainerBlock2:"mxCompositeShape",ACAccessControlBlock:"strokeColor=none;shape=mxgraph.azure.access_control",
|
||||
ACAPIAppsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.api_app",ACAPIManagementBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.api_management",ACAppInsightsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.application_insights",ACAppServicesBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.app_service",ACAutoscalingBlock:"strokeColor=none;shape=mxgraph.azure.autoscale",ACAzureActiveDirectoryBlock:"strokeColor=none;shape=mxgraph.azure.azure_active_directory",ACAzurealertBlock:"strokeColor=none;shape=mxgraph.azure.azure_alert",
|
||||
ACAzureAutomationBlock:"strokeColor=none;shape=mxgraph.azure.automation",ACAzureBatchBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_batch",ACAzureRedisBlock:"strokeColor=none;shape=mxgraph.azure.azure_cache",ACAzureFilesBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_files_service",ACAzureloadbalancerBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_automatic_load_balancer",ACAzureMarketplaceBlock:"strokeColor=none;shape=mxgraph.azure.azure_marketplace",ACAzureRightManagementRMSBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_rights_management_rms",
|
||||
ACAzureSDKBlock:"strokeColor=none;shape=mxgraph.azure.azure_sdk",ACAzureSearchBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_search",ACAzureSQLdatabaseBlock:"strokeColor=none;shape=mxgraph.azure.sql_database_sql_azure",ACAzuresubscriptionBlock:"strokeColor=none;shape=mxgraph.azure.azure_subscription",ACAzureWebsitesBlock:"strokeColor=none;shape=mxgraph.azure.azure_website",ACBackupServiceBlock:"strokeColor=none;shape=mxgraph.azure.backup_service",ACBitbucketcodesourceBlock:"strokeColor=none;shape=mxgraph.azure.bitbucket_code_source",
|
||||
ACBizTalkServicesBlock:"strokeColor=none;shape=mxgraph.azure.biztalk_services",ACCloudServiceBlock:"strokeColor=none;shape=mxgraph.azure.cloud_service",ACCodePlexBlock:"strokeColor=none;shape=mxgraph.azure.codeplex_code_source",ACContentDeliveryNetworkBlock:"strokeColor=none;shape=mxgraph.azure.content_delivery_network",ACDataFactoryBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.data_factory",ACDocumentDBBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.documentdb",ACDropboxcodesourceBlock:"strokeColor=none;shape=mxgraph.azure.dropbox_code_source",
|
||||
ACEventsHubBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.event_hubs",ACExpressRouteBlock:"strokeColor=none;shape=mxgraph.azure.express_route",ACGitHubBlock:"strokeColor=none;shape=mxgraph.azure.github_code",ACGitrepositoryBlock:"strokeColor=none;shape=mxgraph.azure.git_repository",ACHDInsightBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.hdinsight",ACHealthmonitoringBlock:"strokeColor=none;shape=mxgraph.azure.health_monitoring",ACHealthyBlock:"strokeColor=none;shape=mxgraph.azure.healthy",
|
||||
ACHybridConnectionBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.hybrid_connections",ACBizTalkhybridconnectionBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.hybrid_connection_manager",ACKeyVaultBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.key_vault",ACLogicAppBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.logic_app",ACMachineLearningBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.machine_learning",ACMediaServicesBlock:"strokeColor=none;shape=mxgraph.azure.media_service",ACMicrosoftaccountBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.microsoft_account",
|
||||
ACMicrosoftAzureBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.microsoft_azure",ACMobileEngagementBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.mobile_engagement",ACMobileServicesBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.mobile_app",ACMultiFactorAuthBlock:"strokeColor=none;shape=mxgraph.azure.multi_factor_authentication",ACMySQLdatabaseBlock:"strokeColor=none;shape=mxgraph.azure.mysql_database",ACNotificationHubsBlock:"strokeColor=none;shape=mxgraph.azure.notification_hub",ACNotificationtopicBlock:"strokeColor=none;shape=mxgraph.azure.notification_topic",
|
||||
ACOperationalInsightsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.operational_insights",ACOSimageBlock:"strokeColor=none;shape=mxgraph.azure.operating_system_image",ACRemoteAppBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.remoteapp",ACrpdRemotingfileBlock:"strokeColor=none;shape=mxgraph.azure.rdp_remoting_file",ACSchedulerBlock:"strokeColor=none;shape=mxgraph.azure.scheduler",ACServiceBusBlock:"strokeColor=none;shape=mxgraph.azure.service_bus",ACServiceBusQueueBlock:"strokeColor=none;shape=mxgraph.azure.service_bus_queues",
|
||||
ACServiceBusRelayBlock:"strokeColor=none;shape=mxgraph.azure.service_bus_relay",ACServiceBusTopicBlock:"strokeColor=none;shape=mxgraph.azure.service_bus_topics_and_subscriptions",ACServiceEndpointBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.service_endpoint",ACServicepackageBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.service_package",ACSiteRecoveryBlock:"strokeColor=none;shape=mxgraph.azure.hyper_v_recovery_manager",ACSQLdatabasegenericBlock:"strokeColor=none;shape=mxgraph.azure.sql_database",
|
||||
ACSQLdatasyncBlock:"strokeColor=none;shape=mxgraph.azure.sql_datasync",ACSQLreportingdeprecatedBlock:"strokeColor=none;shape=mxgraph.azure.sql_reporting",ACStartuptaskBlock:"strokeColor=none;shape=mxgraph.azure.startup_task",ACStorageAzureBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_storage",ACStorageblobBlock:"strokeColor=none;shape=mxgraph.azure.storage_blob",ACStoragequeueBlock:"strokeColor=none;shape=mxgraph.azure.storage_queue",ACStoragetableBlock:"strokeColor=none;shape=mxgraph.azure.storage_table",
|
||||
ACStorSimpleBlock:"strokeColor=none;shape=mxgraph.azure.storsimple",ACStreamAnalyticsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.stream_analytics",ACTrafficManagerBlock:"strokeColor=none;shape=mxgraph.azure.traffic_manager",ACAlienBlock:"strokeColor=none;shape=mxgraph.azure.unidentified_code_object",ACVHDBlock:"strokeColor=none;shape=mxgraph.azure.vhd",ACVHDdatadiskBlock:"strokeColor=none;shape=mxgraph.azure.vhd_data_disk",ACVirtualmachineBlock:"strokeColor=none;shape=mxgraph.azure.virtual_machine",
|
||||
ACVirtualmachinecontainerBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.virtual_machine_container",ACVirtualnetworkBlock:"strokeColor=none;shape=mxgraph.azure.virtual_network",ACVisualStudioOnlineBlock:"strokeColor=none;shape=mxgraph.azure.visual_studio_online",ACVMsymbolonlyBlock:"strokeColor=none;shape=mxgraph.azure.virtual_machine_feature",ACWebJobsBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.webjobs",ACWebroleBlock:"strokeColor=none;shape=mxgraph.azure.web_role",ACWebrolesBlock:"strokeColor=none;shape=mxgraph.azure.web_roles",
|
||||
ACWorkaccountBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.work_account",ACWorkerroleBlock:"strokeColor=none;shape=mxgraph.azure.worker_role",ACWorkerrolesBlock:"strokeColor=none;shape=mxgraph.azure.worker_roles",ADNSBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_dns",ACLoadBalancerBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.azure_load_balancer_feature",ACResourceGroupBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.resource_group",ACVPNGatewayBlock:"strokeColor=none;shape=mxgraph.mscae.cloud.vpn_gateway",
|
||||
AEActiveDirectoryFSPBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.d",AEADFSBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.ad_fs",AEAndroidPhoneBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.android_phone",AEappblankfortextBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.application_blank",AEAppGenericBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.app_generic",AEAppserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.application_server",AEBackuplocalBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.backup_local",
|
||||
AEBackuponlineBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.backup_online",AECalendarBlock:"strokeColor=none;shape=mxgraph.mscae.general.calendar",AECertificateBlock:"strokeColor=none;shape=mxgraph.azure.certificate",AEClientAppBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.client_application",AECloudBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.internet",AEClusterserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.cluster_server",AECodefileBlock:"strokeColor=none;shape=mxgraph.azure.code_file",
|
||||
AEConnectorsBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.connectors",AEDatabasegenericBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.database_generic",AEDatabaseserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.database_server",AEDatabasesyncBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.database_synchronization",AEDeviceBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.device",AEDirectaccessBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.direct_access_feature",
|
||||
AEDocumentBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.document",AEDomaincontrollerBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.domain_controller",AEEnterpriseBuildingBlock:"strokeColor=none;shape=mxgraph.azure.enterprise",AEFilegeneralBlock:"strokeColor=none;shape=mxgraph.azure.file",AEFilterBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.filter",AEFirewallBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.firewall",AEFolderBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.folder",
|
||||
AEGatewayBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.gateway",AEGenericcodeBlock:"strokeColor=none;shape=mxgraph.azure.code_file",AEGraphBlock:"strokeColor=none;shape=mxgraph.mscae.general.graph",AEHealthmonitoringBlock:"strokeColor=none;shape=mxgraph.azure.health_monitoring",AEHealthyBlock:"strokeColor=none;shape=mxgraph.azure.healthy",AEImportgenericBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.import_generic",AEInternetBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.internet",
|
||||
AEKeyboardBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.keyboard",AEKeypermissionsBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.key_permissions",AELaptopcomputerBlock:"strokeColor=none;shape=mxgraph.azure.laptop",AELoadbalancerBlock:"strokeColor=none;shape=mxgraph.azure.load_balancer_generic",AELoadTestingBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.load_testing",AELockprotectedBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.lock",AELockunprotectedBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.lock_unlocked",
|
||||
AEMaintenanceBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.maintenance",AEManagementconsoleBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.management_console",AEMessageBlock:"strokeColor=none;shape=mxgraph.azure.message",AEMonitorBlock:"strokeColor=none;shape=mxgraph.azure.computer",AEMonitorrunningappsBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.monitor_running_apps",AEMouseBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.mouse",AENetworkcardBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.network_card",
|
||||
AENotallowedBlock:"strokeColor=none;shape=mxgraph.mscae.general.not_allowed",AEPerformanceBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.performance",AEPerformancemonitorBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.performance_monitor",AEPhoneBlock:"strokeColor=none;shape=mxgraph.azure.mobile",AEPlugandplayBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.plug_and_play",AEPowershellscriptfileBlock:"strokeColor=none;shape=mxgraph.azure.powershell_file",AEProtocolstackBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.protocol_stack",
|
||||
AEQueuegeneralBlock:"strokeColor=none;shape=mxgraph.azure.queue_generic",AERMSconnectorBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.rms_connector",AERouterBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.router",AEScriptfileBlock:"strokeColor=none;shape=mxgraph.azure.script_file",AESecurevirtualmachineBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.secure_virtual_machine",AEServerbladeBlock:"strokeColor=none;shape=mxgraph.azure.server",AEServerdirectoryBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.server_directory",
|
||||
AEServerfarmBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.server_farm",AEServergenericBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.server_generic",AEServerrackBlock:"strokeColor=none;shape=mxgraph.azure.server_rack",AESettingsBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.settings",AESharedfolderBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.shared_folder",AESmartcardBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.smartcard",AEStorageBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.storage",
|
||||
AETableBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.table",AETabletBlock:"strokeColor=none;shape=mxgraph.azure.tablet",AEToolBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.tool",AETunnelBlock:"strokeColor=none;shape=mxgraph.mscae.general.tunnel",AEUnhealthyBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.unhealthy",AEUSBBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.usb",AEUserBlock:"strokeColor=none;shape=mxgraph.azure.user",AEVideoBlock:"strokeColor=none;shape=mxgraph.mscae.general.video",
|
||||
AEVirtualmachineBlock:"strokeColor=none;shape=mxgraph.azure.virtual_machine_feature",AEWebBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.web",AEWebserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.web_server",AEWindowsserverBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.windows_server",AEWirelessconnectionBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.wireless_connection",AEWorkstationclientBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.workstation_client",
|
||||
AEXMLwebserviceBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.xml_web_service",AGSAudioBlock:"strokeColor=none;shape=mxgraph.mscae.general.audio",AGSBugBlock:"strokeColor=none;shape=mxgraph.mscae.general.bug",AGSCablesettopTVboxBlock:"strokeColor=none;shape=mxgraph.mscae.general.cable_settop_tv_box",AGSCalendarBlock:"strokeColor=none;shape=mxgraph.mscae.general.calendar",AGSChartBlock:"strokeColor=none;shape=mxgraph.mscae.general.chart",AGSCheckmarkSuccessBlock:"strokeColor=none;shape=mxgraph.mscae.general.checkmark",
|
||||
AGSContinousCycleCircleBlock:"strokeColor=none;shape=mxgraph.mscae.general.continuous_cycle",AGSCrossoutFailureBlock:"strokeColor=none;shape=mxgraph.mscae.general.crossout",AGSCutandpasteBlock:"strokeColor=none;shape=mxgraph.mscae.general.cut_and_paste",AGSFolderBlock:"strokeColor=none;shape=mxgraph.mscae.enterprise.folder",AGSGamecontrollerBlock:"strokeColor=none;shape=mxgraph.mscae.general.game_controller",AGSGearsBlock:"strokeColor=none;shape=mxgraph.mscae.general.gears",AGSGraphBlock:"strokeColor=none;shape=mxgraph.mscae.general.graph",
|
||||
AGSLikeBlock:"strokeColor=none;shape=mxgraph.mscae.general.like",AGSNotallowedBlock:"strokeColor=none;shape=mxgraph.mscae.general.not_allowed",AGSSliderbarhorizontalBlock:"strokeColor=none;shape=mxgraph.mscae.general.slider_bar_horizontal",AGSSliderbarvertBlock:"strokeColor=none;shape=mxgraph.mscae.general.slider_bar_vertical",AGSTasklistorBacklogBlock:"strokeColor=none;shape=mxgraph.mscae.general.task_list",AGSTasksBlock:"strokeColor=none;shape=mxgraph.mscae.general.tasks",AGSTunnelBlock:"strokeColor=none;shape=mxgraph.mscae.general.tunnel",
|
||||
|
@ -293,9 +326,9 @@ Image_iphone_table_w_buttons:"mxCompositeShape",Image_iphone_table_w_icons:"mxCo
|
|||
Image_iphone_button_lg_red:"",Image_iphone_button_lg_yellow:"",Image_iphone_button_xl_green:"",Image_iphone_back_button:"shape=mxgraph.ios.iButtonBack;strokeColor=#444444;buttonText=;fillColor=#dddddd;fillColor2=#3D5565",Image_iphone_prev_next:"shape=mxgraph.ios.iPrevNext;strokeColor=#444444;fillColor=#dddddd;fillColor2=#3D5565;fillColor3=#ffffff",Image_iphone_sort_handle:"shape=mxgraph.ios7.icons.options",Image_iphone_slider:"shape=mxgraph.ios.iSlider;barPos=60",Image_iphone_dropdown:"shape=mxgraph.ios.iComboBox;buttonText=;fillColor=#dddddd;fillColor2=#3D5565",
|
||||
Image_iphone_email_name:"",Image_iphone_switch_off:"shape=mxgraph.android.switch_off;fillColor=#666666",Image_iphone_keyboard_button_blue:"",Image_iphone_keyboard_letters:"shape=mxgraph.ios.iKeybLett",Image_iphone_keyboard_landscape:"shape=mxgraph.ios.iKeybLett",Image_iphone_large_tabbed_button:"mxCompositeShape",Image_iphone_sort_button:"mxCompositeShape",Image_iphone_tab_bar:"mxCompositeShape",Image_iphone_picker_multi:"mxCompositeShape",Image_iphone_picker_web:"mxCompositeShape",Image_iphone_add_icon_blue:"shape=mxgraph.ios.iAddIcon;fillColor=#8BbEff;fillColor2=#135Ec8;strokeColor=#ffffff",
|
||||
Image_iphone_add_icon_green:"shape=mxgraph.ios.iAddIcon;fillColor=#7AdF78;fillColor2=#1A9917;strokeColor=#ffffff",Image_iphone_remove_icon:"shape=mxgraph.ios.iDeleteIcon;fillColor=#e8878E;fillColor2=#BD1421;strokeColor=#ffffff",Image_iphone_arrow_icon:"shape=mxgraph.ios.iArrowIcon;fillColor=#8BbEff;fillColor2=#135Ec8;strokeColor=#ffffff",Image_iphone_arrow:"shape=mxgraph.ios7.misc.more",Image_iphone_checkmark:"shape=mxgraph.ios7.misc.check",Image_iphone_check_off:"shape=ellipse",Image_iphone_location_dot:"shape=ellipse",
|
||||
Image_iphone_mark_as_read:"shape=ellipse",Image_iphone_pin_green:"shape=mxgraph.ios.iPin;fillColor2=#00dd00;fillColor3=#004400;strokeColor=#006600",Image_iphone_pin_red:"shape=mxgraph.ios.iPin;fillColor2=#dd0000;fillColor3=#440000;strokeColor=#660000",Image_iphone_radio_off:"shape=ellipse",Image_iphone_checkbox_off:"",Image_iphone_indicator:"fillColor=#e8878E;gradientColor=#BD1421;strokeColor=#ffffff",Image_iphone_thread_count:""},S=function(f,c,a){a.includes(f)||a.push(f);if(f in c){var g=c[f];g.id=
|
||||
f;if(null!=g.Members)for(var d in g.Members)a=S(d,c,a)}return a};EditorUi.prototype.pasteLucidChart=function(f,c,a,g){var d=this.editor.graph;d.getModel().beginUpdate();try{var e=function(a,c){var e=null!=c.Endpoint1.Block?h[c.Endpoint1.Block]:null,f=null!=c.Endpoint2.Block?h[c.Endpoint2.Block]:null,g;g=new mxCell("",new mxGeometry(0,0,100,100),"html=1;");g.geometry.relative=!0;g.edge=!0;O(g,a);var k=B(a).Properties,l=null!=k?k.TextAreas:a.TextAreas;if(null!=l){for(var m=0;null!=l["t"+m];){var n=
|
||||
l["t"+m];g=J(n,g);m++}for(m=1;null!=l["m"+m];)n=l["m"+m],g=J(n,g,a),m++;null!=l.Text&&(g=J(l,g,a));l=null!=k?k.TextAreas:a.TextAreas;null!=l.Message&&(g=J(l.Message,g,a))}null==e&&null!=c.Endpoint1&&g.geometry.setTerminalPoint(new mxPoint(Math.round(.6*c.Endpoint1.x),Math.round(.6*c.Endpoint1.y)),!0);null==f&&null!=c.Endpoint2&&g.geometry.setTerminalPoint(new mxPoint(Math.round(.6*c.Endpoint2.x),Math.round(.6*c.Endpoint2.y)),!1);b.push(d.addCell(g,null,null,e,f))},b=[],h={},k=[],r=[],q=0;if(null!=
|
||||
f.Groups)for(var p in f.Groups){var n=f.Groups[p];n.id=p;if(1==n.Hidden&&null!=n.Members){r.includes(p)||r.push(p);for(var t in n.Members)r=S(t,f.Groups,r)}}if(null!=f.Blocks)for(p in f.Blocks)n=f.Blocks[p],n.id=p,r.includes(p)||(t=!1,null!=N[n.Class]&&"mxCompositeShape"==N[n.Class]&&(h[n.id]=Z(n),k.push(n),t=!0),t||(h[n.id]=R(n),k.push(n)));else for(q=0;q<f.Objects.length;q++)n=f.Objects[q],n.IsBlock&&null!=n.Action&&null!=n.Action.Properties&&(h[n.id]=R(n)),k.push(n);k.sort(function(a,b){a=B(a);
|
||||
b=B(b);return null!=a.Properties&&null!=b.Properties?a.Properties.ZOrder-b.Properties.ZOrder:0});for(q=0;q<k.length;q++){var n=k[q],u=h[n.id];null!=u?b.push(d.addCell(u)):n.IsLine&&null!=n.Action&&null!=n.Action.Properties&&e(n,n.Action.Properties)}if(null!=f.Lines)for(p in f.Lines)r.includes(p)||(n=f.Lines[p],e(n,n));if(g&&null!=c&&null!=a){d.isGridEnabled()&&(c=d.snap(c),a=d.snap(a));var w=d.getBoundingBoxFromGeometry(b,!0);null!=w&&d.moveCells(b,c-w.x,a-w.y)}d.setSelectionCells(b)}finally{d.getModel().endUpdate()}d.isSelectionEmpty()||
|
||||
Image_iphone_mark_as_read:"shape=ellipse",Image_iphone_pin_green:"shape=mxgraph.ios.iPin;fillColor2=#00dd00;fillColor3=#004400;strokeColor=#006600",Image_iphone_pin_red:"shape=mxgraph.ios.iPin;fillColor2=#dd0000;fillColor3=#440000;strokeColor=#660000",Image_iphone_radio_off:"shape=ellipse",Image_iphone_checkbox_off:"",Image_iphone_indicator:"fillColor=#e8878E;gradientColor=#BD1421;strokeColor=#ffffff",Image_iphone_thread_count:""},R=function(f,c,a){a.includes(f)||a.push(f);if(f in c){var g=c[f];g.id=
|
||||
f;if(null!=g.Members)for(var d in g.Members)a=R(d,c,a)}return a};EditorUi.prototype.pasteLucidChart=function(f,c,a,g){var d=this.editor.graph;d.getModel().beginUpdate();try{var e=function(a,c){var e=null!=c.Endpoint1.Block?b[c.Endpoint1.Block]:null,f=null!=c.Endpoint2.Block?b[c.Endpoint2.Block]:null,g;g=new mxCell("",new mxGeometry(0,0,100,100),"html=1;");g.geometry.relative=!0;g.edge=!0;N(g,a);var k=I(a).Properties,l=null!=k?k.TextAreas:a.TextAreas;if(null!=l){for(var m=0;null!=l["t"+m];){var n=
|
||||
l["t"+m];g=K(n,g);m++}for(m=1;null!=l["m"+m];)n=l["m"+m],g=K(n,g,a),m++;null!=l.Text&&(g=K(l,g,a));l=null!=k?k.TextAreas:a.TextAreas;null!=l.Message&&(g=K(l.Message,g,a))}null==e&&null!=c.Endpoint1&&g.geometry.setTerminalPoint(new mxPoint(Math.round(.6*c.Endpoint1.x),Math.round(.6*c.Endpoint1.y)),!0);null==f&&null!=c.Endpoint2&&g.geometry.setTerminalPoint(new mxPoint(Math.round(.6*c.Endpoint2.x),Math.round(.6*c.Endpoint2.y)),!1);h.push(d.addCell(g,null,null,e,f))},h=[],b={},k=[],l=[],n=0;if(null!=
|
||||
f.Groups)for(var p in f.Groups){var m=f.Groups[p];m.id=p;if(1==m.Hidden&&null!=m.Members){l.includes(p)||l.push(p);for(var r in m.Members)l=R(r,f.Groups,l)}}if(null!=f.Blocks)for(p in f.Blocks)m=f.Blocks[p],m.id=p,l.includes(p)||(r=!1,null!=M[m.Class]&&"mxCompositeShape"==M[m.Class]&&(b[m.id]=Y(m),k.push(m),r=!0),r||(b[m.id]=Q(m),k.push(m)));else for(n=0;n<f.Objects.length;n++)m=f.Objects[n],m.IsBlock&&null!=m.Action&&null!=m.Action.Properties&&(b[m.id]=Q(m)),k.push(m);k.sort(function(a,b){a=I(a);
|
||||
b=I(b);return null!=a.Properties&&null!=b.Properties?a.Properties.ZOrder-b.Properties.ZOrder:0});for(n=0;n<k.length;n++){var m=k[n],t=b[m.id];null!=t?h.push(d.addCell(t)):m.IsLine&&null!=m.Action&&null!=m.Action.Properties&&e(m,m.Action.Properties)}if(null!=f.Lines)for(p in f.Lines)l.includes(p)||(m=f.Lines[p],e(m,m));if(g&&null!=c&&null!=a){d.isGridEnabled()&&(c=d.snap(c),a=d.snap(a));var u=d.getBoundingBoxFromGeometry(h,!0);null!=u&&d.moveCells(h,c-u.x,a-u.y)}d.setSelectionCells(h)}finally{d.getModel().endUpdate()}d.isSelectionEmpty()||
|
||||
(d.scrollCellToVisible(d.getSelectionCell()),null!=this.hoverIcons&&this.hoverIcons.update(d.view.getState(d.getSelectionCell())))}})();
|
2
war/js/reader.min.js
vendored
2
war/js/reader.min.js
vendored
|
@ -184,7 +184,7 @@ f)+"\n"+t+"}":"{"+y.join(",")+"}";f=t;return l}}"function"!==typeof Date.prototy
|
|||
e=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,f,g,h={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},k;"function"!==typeof JSON.stringify&&(JSON.stringify=function(a,b,d){var e;g=f="";if("number"===typeof d)for(e=0;e<d;e+=1)g+=" ";else"string"===typeof d&&(g=d);if((k=b)&&"function"!==typeof b&&("object"!==typeof b||"number"!==typeof b.length))throw Error("JSON.stringify");return c("",{"":a})});
|
||||
"function"!==typeof JSON.parse&&(JSON.parse=function(a,b){function c(a,d){var e,f,g=a[d];if(g&&"object"===typeof g)for(e in g)Object.prototype.hasOwnProperty.call(g,e)&&(f=c(g,e),void 0!==f?g[e]=f:delete g[e]);return b.call(a,d,g)}var e;a=""+a;d.lastIndex=0;d.test(a)&&(a=a.replace(d,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)}));if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,
|
||||
"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return e=eval("("+a+")"),"function"===typeof b?c({"":e},""):e;throw new SyntaxError("JSON.parse");})})();"undefined"===typeof window.mxBasePath&&(window.mxBasePath="https://www.draw.io/mxgraph/");window.mxLoadStylesheets=window.mxLoadStylesheets||!1;window.mxLoadResources=window.mxLoadResources||!1;window.mxLanguage=window.mxLanguage||"en";window.urlParams=window.urlParams||{};window.MAX_REQUEST_SIZE=window.MAX_REQUEST_SIZE||10485760;window.MAX_AREA=window.MAX_AREA||225E6;window.EXPORT_URL=window.EXPORT_URL||"/export";window.SAVE_URL=window.SAVE_URL||"/save";window.OPEN_URL=window.OPEN_URL||"/open";window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||window.RESOURCES_PATH+"/grapheditor";window.STENCIL_PATH=window.STENCIL_PATH||"stencils";window.IMAGE_PATH=window.IMAGE_PATH||"images";
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"7.3.7",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"7.3.9",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
0>navigator.userAgent.indexOf("Edge/"),IS_OP:0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("OPR/"),IS_OT:0<=navigator.userAgent.indexOf("Presto/")&&0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&
|
||||
0>navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_CHROMEAPP:null!=window.chrome&&null!=chrome.app&&null!=chrome.app.runtime,IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&
|
||||
0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")||0<=navigator.userAgent.indexOf("Galeon/")||
|
||||
|
|
10
war/js/shapes.min.js
vendored
10
war/js/shapes.min.js
vendored
|
@ -15,11 +15,11 @@ mxBpmnShape.prototype.symbols={general:function(a,d,e,b,c){},message:function(a,
|
|||
b,.9326*c);a.lineTo(.7126*b,.8699*c);a.moveTo(.5*b,.9338*c);a.lineTo(.5*b,c);a.moveTo(.2496*b,.9325*c);a.lineTo(.2854*b,.8699*c);a.moveTo(.068*b,.7509*c);a.lineTo(.1307*b,.7126*c);a.moveTo(0,.5*c);a.lineTo(.0642*b,.5*c);a.moveTo(.068*b,.2471*c);a.lineTo(.1307*b,.2854*c);a.moveTo(.2496*b,.0654*c);a.lineTo(.2854*b,.1281*c);a.moveTo(.5246*b,.0706*c);a.lineTo(.5*b,.5*c);a.lineTo(.7804*b,.5118*c);a.stroke()},escalation:function(a,d,e,b,c){a.begin();a.moveTo(0,c);a.lineTo(.5*b,0);a.lineTo(b,c);a.lineTo(.5*
|
||||
b,.5*c);a.close();a.fillAndStroke()},conditional:function(a,d,e,b,c){a.rect(0,0,b,c);a.fillAndStroke();a.begin();a.moveTo(0,.1027*c);a.lineTo(.798*b,.1027*c);a.moveTo(0,.3669*c);a.lineTo(.798*b,.3669*c);a.moveTo(0,.6311*c);a.lineTo(.798*b,.6311*c);a.moveTo(0,.8953*c);a.lineTo(.798*b,.8953*c);a.stroke()},link:function(a,d,e,b,c){a.begin();a.moveTo(0,.76*c);a.lineTo(0,.24*c);a.lineTo(.63*b,.24*c);a.lineTo(.63*b,0);a.lineTo(b,.5*c);a.lineTo(.63*b,c);a.lineTo(.63*b,.76*c);a.close();a.fillAndStroke()},
|
||||
error:function(a,d,e,b,c){a.begin();a.moveTo(0,c);a.lineTo(.3287*b,.123*c);a.lineTo(.6194*b,.6342*c);a.lineTo(b,0);a.lineTo(.6625*b,.939*c);a.lineTo(.3717*b,.5064*c);a.close();a.fillAndStroke()},cancel:function(a,d,e,b,c){a.begin();a.moveTo(.1051*b,0);a.lineTo(.5*b,.3738*c);a.lineTo(.8909*b,0);a.lineTo(b,.1054*c);a.lineTo(.623*b,.5*c);a.lineTo(b,.8926*c);a.lineTo(.8909*b,c);a.lineTo(.5*b,.6242*c);a.lineTo(.1051*b,c);a.lineTo(0,.8926*c);a.lineTo(.373*b,.5*c);a.lineTo(0,.1054*c);a.close();a.fillAndStroke()},
|
||||
compensation:function(a,d,e,b,c){a.begin();a.moveTo(0,.5*c);a.lineTo(.5*b,0);a.lineTo(.5*b,c);a.close();a.stroke();a.moveTo(.5*b,.5*c);a.lineTo(b,0);a.lineTo(b,c);a.close();a.fillAndStroke()},signal:function(a,d,e,b,c){a.begin();a.moveTo(0,c);a.lineTo(.5*b,0);a.lineTo(b,c);a.close();a.fillAndStroke()},multiple:function(a,d,e,b,c){a.begin();a.moveTo(0,.39*c);a.lineTo(.5*b,0);a.lineTo(b,.39*c);a.lineTo(.815*b,c);a.lineTo(.185*b,c);a.close();a.fillAndStroke()},parallelMultiple:function(a,d,e,b,c){a.begin();
|
||||
a.moveTo(.38*b,0);a.lineTo(.62*b,0);a.lineTo(.62*b,.38*c);a.lineTo(b,.38*c);a.lineTo(b,.62*c);a.lineTo(.62*b,.62*c);a.lineTo(.62*b,c);a.lineTo(.38*b,c);a.lineTo(.38*b,.62*c);a.lineTo(0,.62*c);a.lineTo(0,.38*c);a.lineTo(.38*b,.38*c);a.close();a.fillAndStroke()},terminate:function(a,d,e,b,c){a.ellipse(0,0,b,c);a.fillAndStroke()},exclusiveGw:function(a,d,e,b,c){d=a.state.strokeColor;e=a.state.fillColor;a.setStrokeColor(e);a.setFillColor(d);a.begin();a.moveTo(.105*b,0);a.lineTo(.5*b,.38*c);a.lineTo(.895*
|
||||
b,0*c);a.lineTo(b,.11*c);a.lineTo(.6172*b,.5*c);a.lineTo(b,.89*c);a.lineTo(.895*b,c);a.lineTo(.5*b,.62*c);a.lineTo(.105*b,c);a.lineTo(0,.89*c);a.lineTo(.3808*b,.5*c);a.lineTo(0,.11*c);a.close();a.fillAndStroke();a.setStrokeColor(d);a.setFillColor(e)},parallelGw:function(a,d,e,b,c){d=a.state.strokeColor;e=a.state.fillColor;a.setStrokeColor(e);a.setFillColor(d);a.begin();a.moveTo(.38*b,0);a.lineTo(.62*b,0);a.lineTo(.62*b,.38*c);a.lineTo(b,.38*c);a.lineTo(b,.62*c);a.lineTo(.62*b,.62*c);a.lineTo(.62*
|
||||
b,c);a.lineTo(.38*b,c);a.lineTo(.38*b,.62*c);a.lineTo(0,.62*c);a.lineTo(0,.38*c);a.lineTo(.38*b,.38*c);a.close();a.fillAndStroke();a.setStrokeColor(d);a.setFillColor(e)},complexGw:function(a,d,e,b,c){d=a.state.strokeColor;e=a.state.fillColor;a.setStrokeColor(e);a.setFillColor(d);a.begin();a.moveTo(0,.44*c);a.lineTo(.36*b,.44*c);a.lineTo(.1*b,.18*c);a.lineTo(.18*b,.1*c);a.lineTo(.44*b,.36*c);a.lineTo(.44*b,0);a.lineTo(.56*b,0);a.lineTo(.56*b,.36*c);a.lineTo(.82*b,.1*c);a.lineTo(.9*b,.18*c);a.lineTo(.64*
|
||||
b,.44*c);a.lineTo(b,.44*c);a.lineTo(b,.56*c);a.lineTo(.64*b,.56*c);a.lineTo(.9*b,.82*c);a.lineTo(.82*b,.9*c);a.lineTo(.56*b,.64*c);a.lineTo(.56*b,c);a.lineTo(.44*b,c);a.lineTo(.44*b,.64*c);a.lineTo(.18*b,.9*c);a.lineTo(.1*b,.82*c);a.lineTo(.36*b,.56*c);a.lineTo(0,.56*c);a.close();a.fillAndStroke();a.setStrokeColor(d);a.setFillColor(e)}};mxCellRenderer.prototype.defaultShapes["mxgraph.bpmn.shape"]=mxBpmnShape;
|
||||
compensation:function(a,d,e,b,c){a.begin();a.moveTo(0,.5*c);a.lineTo(.5*b,0);a.lineTo(.5*b,c);a.close();a.moveTo(.5*b,.5*c);a.lineTo(b,0);a.lineTo(b,c);a.close();a.fillAndStroke()},signal:function(a,d,e,b,c){a.begin();a.moveTo(0,c);a.lineTo(.5*b,0);a.lineTo(b,c);a.close();a.fillAndStroke()},multiple:function(a,d,e,b,c){a.begin();a.moveTo(0,.39*c);a.lineTo(.5*b,0);a.lineTo(b,.39*c);a.lineTo(.815*b,c);a.lineTo(.185*b,c);a.close();a.fillAndStroke()},parallelMultiple:function(a,d,e,b,c){a.begin();a.moveTo(.38*
|
||||
b,0);a.lineTo(.62*b,0);a.lineTo(.62*b,.38*c);a.lineTo(b,.38*c);a.lineTo(b,.62*c);a.lineTo(.62*b,.62*c);a.lineTo(.62*b,c);a.lineTo(.38*b,c);a.lineTo(.38*b,.62*c);a.lineTo(0,.62*c);a.lineTo(0,.38*c);a.lineTo(.38*b,.38*c);a.close();a.fillAndStroke()},terminate:function(a,d,e,b,c){a.ellipse(0,0,b,c);a.fillAndStroke()},exclusiveGw:function(a,d,e,b,c){d=a.state.strokeColor;e=a.state.fillColor;a.setStrokeColor(e);a.setFillColor(d);a.begin();a.moveTo(.105*b,0);a.lineTo(.5*b,.38*c);a.lineTo(.895*b,0*c);a.lineTo(b,
|
||||
.11*c);a.lineTo(.6172*b,.5*c);a.lineTo(b,.89*c);a.lineTo(.895*b,c);a.lineTo(.5*b,.62*c);a.lineTo(.105*b,c);a.lineTo(0,.89*c);a.lineTo(.3808*b,.5*c);a.lineTo(0,.11*c);a.close();a.fillAndStroke();a.setStrokeColor(d);a.setFillColor(e)},parallelGw:function(a,d,e,b,c){d=a.state.strokeColor;e=a.state.fillColor;a.setStrokeColor(e);a.setFillColor(d);a.begin();a.moveTo(.38*b,0);a.lineTo(.62*b,0);a.lineTo(.62*b,.38*c);a.lineTo(b,.38*c);a.lineTo(b,.62*c);a.lineTo(.62*b,.62*c);a.lineTo(.62*b,c);a.lineTo(.38*
|
||||
b,c);a.lineTo(.38*b,.62*c);a.lineTo(0,.62*c);a.lineTo(0,.38*c);a.lineTo(.38*b,.38*c);a.close();a.fillAndStroke();a.setStrokeColor(d);a.setFillColor(e)},complexGw:function(a,d,e,b,c){d=a.state.strokeColor;e=a.state.fillColor;a.setStrokeColor(e);a.setFillColor(d);a.begin();a.moveTo(0,.44*c);a.lineTo(.36*b,.44*c);a.lineTo(.1*b,.18*c);a.lineTo(.18*b,.1*c);a.lineTo(.44*b,.36*c);a.lineTo(.44*b,0);a.lineTo(.56*b,0);a.lineTo(.56*b,.36*c);a.lineTo(.82*b,.1*c);a.lineTo(.9*b,.18*c);a.lineTo(.64*b,.44*c);a.lineTo(b,
|
||||
.44*c);a.lineTo(b,.56*c);a.lineTo(.64*b,.56*c);a.lineTo(.9*b,.82*c);a.lineTo(.82*b,.9*c);a.lineTo(.56*b,.64*c);a.lineTo(.56*b,c);a.lineTo(.44*b,c);a.lineTo(.44*b,.64*c);a.lineTo(.18*b,.9*c);a.lineTo(.1*b,.82*c);a.lineTo(.36*b,.56*c);a.lineTo(0,.56*c);a.close();a.fillAndStroke();a.setStrokeColor(d);a.setFillColor(e)}};mxCellRenderer.prototype.defaultShapes["mxgraph.bpmn.shape"]=mxBpmnShape;
|
||||
function mxShapeEREntity(a,d,e,b){mxShape.call(this);this.bounds=a;this.fill=d;this.stroke=e;this.strokewidth=null!=b?b:1}mxUtils.extend(mxShapeEREntity,mxShape);
|
||||
mxShapeEREntity.prototype.paintVertexShape=function(a,d,e,b,c){var f=mxUtils.getValue(this.style,"buttonText","Entity"),g=mxUtils.getValue(this.style,"textColor","#666666"),h=mxUtils.getValue(this.style,mxConstants.STYLE_FONTSIZE,"17");a.translate(d,e);b=Math.max(b,20);c=Math.max(c,20);this.background(a,d,e,b,c,10,g);a.setShadow(!1);this.mainText(a,d,e,b,c,f,h,g)};
|
||||
mxShapeEREntity.prototype.background=function(a,d,e,b,c,f,g){d=mxUtils.getValue(this.style,"buttonStyle","round").toString();"round"===d?(a.begin(),a.moveTo(0,f),a.arcTo(f,f,0,0,1,f,0),a.lineTo(b-f,0),a.arcTo(f,f,0,0,1,b,f),a.lineTo(b,c-f),a.arcTo(f,f,0,0,1,b-f,c),a.lineTo(f,c),a.arcTo(f,f,0,0,1,0,c-f),a.close(),a.fillAndStroke()):"rect"===d?(a.begin(),a.moveTo(0,0),a.lineTo(b,0),a.lineTo(b,c),a.lineTo(0,c),a.close(),a.fillAndStroke()):"dblFrame"===d&&(f=mxUtils.getValue(this.style,mxConstants.STYLE_FILLCOLOR,
|
||||
|
|
6
war/js/viewer.min.js
vendored
6
war/js/viewer.min.js
vendored
|
@ -2917,9 +2917,9 @@ EditorUi.prototype.createTabContainer=function(){var a=document.createElement("d
|
|||
EditorUi.prototype.updateTabContainer=function(){if(null!=this.tabContainer&&null!=this.pages){var a=this.editor.graph,b=document.createElement("div");b.style.position="relative";b.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";b.style.verticalAlign="top";b.style.height=this.tabContainer.style.height;b.style.whiteSpace="nowrap";b.style.overflow="hidden";b.style.fontSize="12px";b.style.marginLeft="30px";for(var e=this.editor.chromeless?29:59,d=Math.min(140,Math.max(20,(this.tabContainer.clientWidth-
|
||||
e)/this.pages.length)+1),k=null,n=0;n<this.pages.length;n++)mxUtils.bind(this,function(c,d){this.pages[c]==this.currentPage&&(d.style.backgroundColor="#eeeeee",d.style.fontWeight="bold",d.style.borderTopStyle="none");d.setAttribute("draggable","true");mxEvent.addListener(d,"dragstart",mxUtils.bind(this,function(b){a.isEnabled()?(mxClient.IS_FF&&b.dataTransfer.setData("Text","<diagram/>"),k=c):mxEvent.consume(b)}));mxEvent.addListener(d,"dragend",mxUtils.bind(this,function(a){k=null;a.stopPropagation();
|
||||
a.preventDefault()}));mxEvent.addListener(d,"dragover",mxUtils.bind(this,function(a){null!=k&&(a.dataTransfer.dropEffect="move");a.stopPropagation();a.preventDefault()}));mxEvent.addListener(d,"drop",mxUtils.bind(this,function(a){null!=k&&c!=k&&this.movePage(k,c);a.stopPropagation();a.preventDefault()}));b.appendChild(d)})(n,this.createTabForPage(this.pages[n],d,this.pages[n]!=this.currentPage));this.tabContainer.innerHTML="";this.tabContainer.appendChild(b);d=this.createPageMenuTab();this.tabContainer.appendChild(d);
|
||||
d=null;a.isEnabled()&&(d=this.createPageInsertTab(),this.tabContainer.appendChild(d));if(b.clientWidth>this.tabContainer.clientWidth-e){null!=d&&(d.style.position="absolute",d.style.right="0px",b.style.marginRight="30px");var m=this.createControlTab(4," ❮ ");m.style.position="absolute";m.style.right=this.editor.chromeless?"29px":"55px";m.style.fontSize="13pt";this.tabContainer.appendChild(m);var c=this.createControlTab(4," ❯");c.style.position="absolute";c.style.right=
|
||||
this.editor.chromeless?"0px":"29px";c.style.fontSize="13pt";this.tabContainer.appendChild(c);var f=Math.max(0,this.tabContainer.clientWidth-(this.editor.chromeless?86:116));b.style.width=f+"px";mxEvent.addListener(m,"click",mxUtils.bind(this,function(a){b.scrollLeft-=Math.max(20,f-20);mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}));mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-
|
||||
b.clientWidth?100:50);mxEvent.addListener(c,"click",mxUtils.bind(this,function(a){b.scrollLeft+=Math.max(20,f-20);mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}))}}};
|
||||
d=null;if(1==urlParams.embed||null!=this.getCurrentFile()&&this.getCurrentFile().isEditable())d=this.createPageInsertTab(),this.tabContainer.appendChild(d);if(b.clientWidth>this.tabContainer.clientWidth-e){null!=d&&(d.style.position="absolute",d.style.right="0px",b.style.marginRight="30px");var m=this.createControlTab(4," ❮ ");m.style.position="absolute";m.style.right=this.editor.chromeless?"29px":"55px";m.style.fontSize="13pt";this.tabContainer.appendChild(m);var c=this.createControlTab(4,
|
||||
" ❯");c.style.position="absolute";c.style.right=this.editor.chromeless?"0px":"29px";c.style.fontSize="13pt";this.tabContainer.appendChild(c);var f=Math.max(0,this.tabContainer.clientWidth-(this.editor.chromeless?86:116));b.style.width=f+"px";mxEvent.addListener(m,"click",mxUtils.bind(this,function(a){b.scrollLeft-=Math.max(20,f-20);mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}));mxUtils.setOpacity(m,
|
||||
0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.addListener(c,"click",mxUtils.bind(this,function(a){b.scrollLeft+=Math.max(20,f-20);mxUtils.setOpacity(m,0<b.scrollLeft?100:50);mxUtils.setOpacity(c,b.scrollLeft<b.scrollWidth-b.clientWidth?100:50);mxEvent.consume(a)}))}}};
|
||||
EditorUi.prototype.createTab=function(a){var b=document.createElement("div");b.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";b.style.whiteSpace="nowrap";b.style.boxSizing="border-box";b.style.position="relative";b.style.overflow="hidden";b.style.marginLeft="-1px";b.style.height=this.tabContainer.clientHeight+"px";b.style.padding="8px 4px 8px 4px";b.style.border="1px solid #c0c0c0";b.style.borderBottomStyle="solid";b.style.backgroundColor=this.tabContainer.style.backgroundColor;b.style.cursor=
|
||||
"default";b.style.color="gray";a&&(mxEvent.addListener(b,"mouseenter",mxUtils.bind(this,function(a){this.editor.graph.isMouseDown||(b.style.backgroundColor="#d3d3d3",mxEvent.consume(a))})),mxEvent.addListener(b,"mouseleave",mxUtils.bind(this,function(a){b.style.backgroundColor=this.tabContainer.style.backgroundColor;mxEvent.consume(a)})));return b};
|
||||
EditorUi.prototype.createControlTab=function(a,b){var e=this.createTab(!0);e.style.paddingTop=a+"px";e.style.cursor="pointer";e.style.width="30px";e.style.lineHeight="30px";e.innerHTML=b;null!=e.firstChild&&null!=e.firstChild.style&&mxUtils.setOpacity(e.firstChild,40);return e};
|
||||
|
|
|
@ -543,7 +543,6 @@ mxBpmnShape.prototype.symbols = {
|
|||
c.lineTo(w * 0.5, 0);
|
||||
c.lineTo(w * 0.5, h);
|
||||
c.close();
|
||||
c.stroke();
|
||||
c.moveTo(w * 0.5, h * 0.5);
|
||||
c.lineTo(w, 0);
|
||||
c.lineTo(w, h);
|
||||
|
|
Loading…
Reference in a new issue