Lines Matching refs:prototype

118 	TableShape.prototype.getLabelBounds = function(rect)
124 return mxShape.prototype.getLabelBounds.apply(this, arguments);
128 return mxSwimlane.prototype.getLabelBounds.apply(this, arguments);
132 TableShape.prototype.paintVertexShape = function(c, x, y, w, h)
141 mxRectangleShape.prototype.paintBackground.apply(this, arguments);
145 mxSwimlane.prototype.paintVertexShape.apply(this, arguments);
152 TableShape.prototype.paintForeground = function(c, x, y, w, h)
178 TableShape.prototype.paintTableForeground = function(c, x, y, w, h)
299 CubeShape.prototype.size = 20;
300 CubeShape.prototype.darkOpacity = 0;
301 CubeShape.prototype.darkOpacity2 = 0;
303 CubeShape.prototype.paintVertexShape = function(c, x, y, w, h)
362 CubeShape.prototype.getLabelMargins = function(rect)
387 WaypointShape.prototype.size = 6;
389 WaypointShape.prototype.paintVertexShape = function(c, x, y, w, h)
409 IsoRectangleShape.prototype.size = 20;
410 IsoRectangleShape.prototype.redrawPath = function(path, x, y, w, h)
432 IsoCubeShape.prototype.size = 20;
433 IsoCubeShape.prototype.redrawPath = function(path, x, y, w, h, isForeground)
469 DataStoreShape.prototype.redrawPath = function(c, x, y, w, h, isForeground)
519 DataStoreShape.prototype.getLabelMargins = function(rect)
533 NoteShape.prototype.size = 30;
534 NoteShape.prototype.darkOpacity = 0;
536 NoteShape.prototype.paintVertexShape = function(c, x, y, w, h)
589 NoteShape2.prototype.getLabelMargins = function(rect)
607 IsoCubeShape2.prototype.isoAngle = 15;
609 IsoCubeShape2.prototype.paintVertexShape = function(c, x, y, w, h)
647 CylinderShape.prototype.size = 15;
649 CylinderShape.prototype.paintVertexShape = function(c, x, y, w, h)
696 CylinderShape3.prototype.size = 15;
698 CylinderShape3.prototype.paintVertexShape = function(c, x, y, w, h)
754 SwitchShape.prototype.redrawPath = function(c, x, y, w, h)
773 FolderShape.prototype.tabWidth = 60;
774 FolderShape.prototype.tabHeight = 20;
775 FolderShape.prototype.tabPosition = 'right';
776 FolderShape.prototype.arcSize = 0.1;
778 FolderShape.prototype.paintVertexShape = function(c, x, y, w, h)
861 FolderShape.prototype.getLabelMargins = function(rect)
913 UMLStateShape.prototype.arcSize = 0.1;
915 UMLStateShape.prototype.paintVertexShape = function(c, x, y, w, h)
990 UMLStateShape.prototype.getLabelMargins = function(rect)
1013 CardShape.prototype.size = 30;
1014 CardShape.prototype.isRoundable = function()
1018 CardShape.prototype.redrawPath = function(c, x, y, w, h)
1035 TapeShape.prototype.size = 0.4;
1036 TapeShape.prototype.redrawPath = function(c, x, y, w, h)
1052 TapeShape.prototype.getLabelBounds = function(rect)
1087 DocumentShape.prototype.size = 0.3;
1088 DocumentShape.prototype.getLabelMargins = function(rect)
1098 DocumentShape.prototype.redrawPath = function(c, x, y, w, h)
1115 var cylinderGetCylinderSize = mxCylinder.prototype.getCylinderSize;
1117 mxCylinder.prototype.getCylinderSize = function(x, y, w, h)
1131 mxCylinder.prototype.getLabelMargins = function(rect)
1143 CylinderShape3.prototype.getLabelMargins = function(rect)
1160 FolderShape.prototype.getLabelMargins = function(rect)
1204 UMLStateShape.prototype.getLabelMargins = function(rect)
1219 NoteShape2.prototype.getLabelMargins = function(rect)
1237 ParallelogramShape.prototype.size = 0.2;
1238 ParallelogramShape.prototype.fixedSize = 20;
1239 ParallelogramShape.prototype.isRoundable = function()
1243 ParallelogramShape.prototype.redrawPath = function(c, x, y, w, h)
1262 TrapezoidShape.prototype.size = 0.2;
1263 TrapezoidShape.prototype.fixedSize = 20;
1264 TrapezoidShape.prototype.isRoundable = function()
1268 TrapezoidShape.prototype.redrawPath = function(c, x, y, w, h)
1287 CurlyBracketShape.prototype.size = 0.5;
1288 CurlyBracketShape.prototype.redrawPath = function(c, x, y, w, h)
1307 ParallelMarkerShape.prototype.redrawPath = function(c, x, y, w, h)
1336 this.canvas.lineTo = mxUtils.bind(this, HandJiggle.prototype.lineTo);
1339 this.canvas.moveTo = mxUtils.bind(this, HandJiggle.prototype.moveTo);
1342 this.canvas.close = mxUtils.bind(this, HandJiggle.prototype.close);
1345 this.canvas.quadTo = mxUtils.bind(this, HandJiggle.prototype.quadTo);
1348 this.canvas.curveTo = mxUtils.bind(this, HandJiggle.prototype.curveTo);
1351 this.canvas.arcTo = mxUtils.bind(this, HandJiggle.prototype.arcTo);
1354 HandJiggle.prototype.moveTo = function(endX, endY)
1363 HandJiggle.prototype.close = function()
1374 HandJiggle.prototype.quadTo = function(x1, y1, x2, y2)
1381 HandJiggle.prototype.curveTo = function(x1, y1, x2, y2, x3, y3)
1388 HandJiggle.prototype.arcTo = function(rx, ry, angle, largeArcFlag, sweepFlag, x, y)
1395 HandJiggle.prototype.lineTo = function(endX, endY)
1454 HandJiggle.prototype.destroy = function()
1465 mxShape.prototype.defaultJiggle = 1.5;
1467 var shapeBeforePaint = mxShape.prototype.beforePaint;
1468 mxShape.prototype.beforePaint = function(c)
1478 var shapeAfterPaint = mxShape.prototype.afterPaint;
1479 mxShape.prototype.afterPaint = function(c)
1491 mxShape.prototype.createComicCanvas = function(c)
1497 mxShape.prototype.createHandJiggle = function(c)
1508 mxRhombus.prototype.defaultJiggle = 2;
1511 var mxRectangleShapeIsHtmlAllowed0 = mxRectangleShape.prototype.isHtmlAllowed;
1512 mxRectangleShape.prototype.isHtmlAllowed = function()
1519 var mxRectangleShapePaintBackground0 = mxRectangleShape.prototype.paintBackground;
1520 mxRectangleShape.prototype.paintBackground = function(c, x, y, w, h)
1596 ProcessShape.prototype.size = 0.1;
1597 ProcessShape.prototype.fixedSize = false;
1599 ProcessShape.prototype.isHtmlAllowed = function()
1603 ProcessShape.prototype.getLabelBounds = function(rect)
1632 ProcessShape.prototype.paintForeground = function(c, x, y, w, h)
1663 mxRectangleShape.prototype.paintForeground.apply(this, arguments);
1676 TransparentShape.prototype.paintBackground = function(c, x, y, w, h)
1682 TransparentShape.prototype.paintForeground = function(c, x, y, w, h) { };
1692 CalloutShape.prototype.size = 30;
1693 CalloutShape.prototype.position = 0.5;
1694 CalloutShape.prototype.position2 = 0.5;
1695 CalloutShape.prototype.base = 20;
1696 CalloutShape.prototype.getLabelMargins = function()
1701 CalloutShape.prototype.isRoundable = function()
1705 CalloutShape.prototype.redrawPath = function(c, x, y, w, h)
1727 StepShape.prototype.size = 0.2;
1728 StepShape.prototype.fixedSize = 20;
1729 StepShape.prototype.isRoundable = function()
1733 StepShape.prototype.redrawPath = function(c, x, y, w, h)
1752 HexagonShape.prototype.size = 0.25;
1753 HexagonShape.prototype.fixedSize = 20;
1754 HexagonShape.prototype.isRoundable = function()
1758 HexagonShape.prototype.redrawPath = function(c, x, y, w, h)
1776 PlusShape.prototype.isHtmlAllowed = function()
1780 PlusShape.prototype.paintForeground = function(c, x, y, w, h)
1791 mxRectangleShape.prototype.paintForeground.apply(this, arguments);
1797 var mxRhombusPaintVertexShape = mxRhombus.prototype.paintVertexShape;
1798 mxRhombus.prototype.getLabelBounds = function(rect)
1811 mxRhombus.prototype.paintVertexShape = function(c, x, y, w, h)
1841 ExtendedShape.prototype.isHtmlAllowed = function()
1845 ExtendedShape.prototype.getLabelBounds = function(rect)
1859 ExtendedShape.prototype.paintForeground = function(c, x, y, w, h)
1873 mxRectangleShape.prototype.paintBackground.apply(this, arguments);
1941 shape.prototype.paintVertexShape.call(tmp, c, x2, y2, width, height);
1951 mxRectangleShape.prototype.paintForeground.apply(this, arguments);
1962 MessageShape.prototype.redrawPath = function(path, x, y, w, h, isForeground)
1989 UmlActorShape.prototype.paintBackground = function(c, x, y, w, h)
2026 UmlBoundaryShape.prototype.getLabelMargins = function(rect)
2030 UmlBoundaryShape.prototype.paintBackground = function(c, x, y, w, h)
2061 UmlEntityShape.prototype.paintVertexShape = function(c, x, y, w, h)
2063 mxEllipse.prototype.paintVertexShape.apply(this, arguments);
2080 UmlDestroyShape.prototype.paintVertexShape = function(c, x, y, w, h)
2101 UmlControlShape.prototype.getLabelBounds = function(rect)
2105 UmlControlShape.prototype.paintBackground = function(c, x, y, w, h)
2120 UmlControlShape.prototype.paintForeground = function(c, x, y, w, h)
2139 UmlLifeline.prototype.size = 40;
2140 UmlLifeline.prototype.isHtmlAllowed = function()
2144 UmlLifeline.prototype.getLabelBounds = function(rect)
2151 UmlLifeline.prototype.paintBackground = function(c, x, y, w, h)
2158 mxRectangleShape.prototype.paintBackground.call(this, c, x, y, w, size);
2184 UmlLifeline.prototype.paintForeground = function(c, x, y, w, h)
2187 mxRectangleShape.prototype.paintForeground.call(this, c, x, y, w, Math.min(h, size));
2198 UmlFrame.prototype.width = 60;
2199 UmlFrame.prototype.height = 30;
2200 UmlFrame.prototype.corner = 10;
2201 UmlFrame.prototype.getLabelMargins = function(rect)
2207 UmlFrame.prototype.paintBackground = function(c, x, y, w, h)
2260 var size = UmlLifeline.prototype.size;
2331 CalloutShape.prototype.size)) * vertex.view.scale))),
2341 var size = (fixed) ? ParallelogramShape.prototype.fixedSize : ParallelogramShape.prototype.size;
2404 var size = (fixed) ? TrapezoidShape.prototype.fixedSize : TrapezoidShape.prototype.size;
2477 var size = (fixed) ? StepShape.prototype.fixedSize : StepShape.prototype.size;
2554 var size = (fixed) ? HexagonShape.prototype.fixedSize : HexagonShape.prototype.size;
2621 LollipopShape.prototype.size = 10;
2622 LollipopShape.prototype.paintBackground = function(c, x, y, w, h)
2645 RequiresShape.prototype.size = 10;
2646 RequiresShape.prototype.inset = 2;
2647 RequiresShape.prototype.paintBackground = function(c, x, y, w, h)
2676 RequiredInterfaceShape.prototype.paintBackground = function(c, x, y, w, h)
2696 ProvidedRequiredInterfaceShape.prototype.inset = 2;
2697 ProvidedRequiredInterfaceShape.prototype.paintBackground = function(c, x, y, w, h)
2721 ModuleShape.prototype.jettyWidth = 20;
2722 ModuleShape.prototype.jettyHeight = 10;
2723 ModuleShape.prototype.redrawPath = function(path, x, y, w, h, isForeground)
2771 ComponentShape.prototype.jettyWidth = 32;
2772 ComponentShape.prototype.jettyHeight = 12;
2773 ComponentShape.prototype.redrawPath = function(path, x, y, w, h, isForeground)
2821 AssociativeEntity.prototype.paintForeground = function(c, x, y, w, h)
2832 mxRectangleShape.prototype.paintForeground.apply(this, arguments);
2843 StateShape.prototype.outerStroke = true;
2844 StateShape.prototype.paintVertexShape = function(c, x, y, w, h)
2870 StartStateShape.prototype.outerStroke = false;
2881 LinkShape.prototype.defaultWidth = 4;
2883 LinkShape.prototype.isOpenEnded = function()
2888 LinkShape.prototype.getEdgeWidth = function()
2893 LinkShape.prototype.isArrowRounded = function()
2908 FlexArrowShape.prototype.defaultWidth = 10;
2909 FlexArrowShape.prototype.defaultArrowWidth = 20;
2911 FlexArrowShape.prototype.getStartArrowWidth = function()
2916 FlexArrowShape.prototype.getEndArrowWidth = function()
2921 FlexArrowShape.prototype.getEdgeWidth = function()
2935 ManualInputShape.prototype.size = 30;
2936 ManualInputShape.prototype.isRoundable = function()
2940 ManualInputShape.prototype.redrawPath = function(c, x, y, w, h)
2957 InternalStorageShape.prototype.dx = 20;
2958 InternalStorageShape.prototype.dy = 20;
2959 InternalStorageShape.prototype.isHtmlAllowed = function()
2963 InternalStorageShape.prototype.paintForeground = function(c, x, y, w, h)
2965 mxRectangleShape.prototype.paintForeground.apply(this, arguments);
2999 CornerShape.prototype.dx = 20;
3000 CornerShape.prototype.dy = 20;
3003 CornerShape.prototype.redrawPath = function(c, x, y, w, h)
3024 CrossbarShape.prototype.redrawPath = function(c, x, y, w, h)
3047 TeeShape.prototype.dx = 20;
3048 TeeShape.prototype.dy = 20;
3051 TeeShape.prototype.redrawPath = function(c, x, y, w, h)
3073 SingleArrowShape.prototype.arrowWidth = 0.3;
3074 SingleArrowShape.prototype.arrowSize = 0.2;
3075 SingleArrowShape.prototype.redrawPath = function(c, x, y, w, h)
3097 DoubleArrowShape.prototype.redrawPath = function(c, x, y, w, h)
3099 …1, parseFloat(mxUtils.getValue(this.style, 'arrowWidth', SingleArrowShape.prototype.arrowWidth))));
3100 …n(1, parseFloat(mxUtils.getValue(this.style, 'arrowSize', SingleArrowShape.prototype.arrowSize))));
3120 DataStorageShape.prototype.size = 0.1;
3121 DataStorageShape.prototype.fixedSize = 20;
3122 DataStorageShape.prototype.redrawPath = function(c, x, y, w, h)
3145 OrShape.prototype.redrawPath = function(c, x, y, w, h)
3162 XorShape.prototype.redrawPath = function(c, x, y, w, h)
3180 LoopLimitShape.prototype.size = 20;
3181 LoopLimitShape.prototype.isRoundable = function()
3185 LoopLimitShape.prototype.redrawPath = function(c, x, y, w, h)
3202 OffPageConnectorShape.prototype.size = 3 / 8;
3203 OffPageConnectorShape.prototype.isRoundable = function()
3207 OffPageConnectorShape.prototype.redrawPath = function(c, x, y, w, h)
3224 TapeDataShape.prototype.paintVertexShape = function(c, x, y, w, h)
3226 mxEllipse.prototype.paintVertexShape.apply(this, arguments);
3243 OrEllipseShape.prototype.paintVertexShape = function(c, x, y, w, h)
3245 mxEllipse.prototype.paintVertexShape.apply(this, arguments);
3269 SumEllipseShape.prototype.paintVertexShape = function(c, x, y, w, h)
3271 mxEllipse.prototype.paintVertexShape.apply(this, arguments);
3296 SortShape.prototype.paintVertexShape = function(c, x, y, w, h)
3298 mxRhombus.prototype.paintVertexShape.apply(this, arguments);
3316 CollateShape.prototype.paintVertexShape = function(c, x, y, w, h)
3341 DimensionShape.prototype.paintVertexShape = function(c, x, y, w, h)
3376 PartialRectangleShape.prototype.paintVertexShape = function(c, x, y, w, h)
3446 LineEllipseShape.prototype.paintVertexShape = function(c, x, y, w, h)
3448 mxEllipse.prototype.paintVertexShape.apply(this, arguments);
3476 DelayShape.prototype.redrawPath = function(c, x, y, w, h)
3496 CrossShape.prototype.size = 0.2;
3497 CrossShape.prototype.redrawPath = function(c, x, y, w, h)
3530 DisplayShape.prototype.size = 0.25;
3531 DisplayShape.prototype.redrawPath = function(c, x, y, w, h)
3573 mxShapeBasicRect2.prototype.cst = {RECT2 : 'mxgraph.basic.rect'};
3575 mxShapeBasicRect2.prototype.customProperties = [
3649 mxShapeBasicRect2.prototype.paintVertexShape = function(c, x, y, w, h)
3656 mxShapeBasicRect2.prototype.strictDrawShape = function(c, x, y, w, h, os)
3684 var sc = mxShapeBasicRect2.prototype;
4403 mxShapeBasicRect2.prototype.moveNW = function(c, x, y, w, h, rectStyle, topLeftStyle, size, left)
4415 mxShapeBasicRect2.prototype.moveNE = function(c, x, y, w, h, rectStyle, topRightStyle, size, top)
4427 …mxShapeBasicRect2.prototype.moveSE = function(c, x, y, w, h, rectStyle, bottomRightStyle, size, ri…
4439 …mxShapeBasicRect2.prototype.moveSW = function(c, x, y, w, h, rectStyle, bottomLeftStyle, size, bot…
4451 mxShapeBasicRect2.prototype.paintNW = function(c, x, y, w, h, rectStyle, topLeftStyle, size, left)
4476 …mxShapeBasicRect2.prototype.paintTop = function(c, x, y, w, h, rectStyle, topRightStyle, size, rig…
4488 mxShapeBasicRect2.prototype.paintNE = function(c, x, y, w, h, rectStyle, topRightStyle, size, top)
4513 …mxShapeBasicRect2.prototype.paintRight = function(c, x, y, w, h, rectStyle, bottomRightStyle, size…
4525 mxShapeBasicRect2.prototype.paintLeft = function(c, x, y, w, h, rectStyle, topLeftStyle, size, top)
4537 …mxShapeBasicRect2.prototype.paintSE = function(c, x, y, w, h, rectStyle, bottomRightStyle, size, r…
4562 …mxShapeBasicRect2.prototype.paintBottom = function(c, x, y, w, h, rectStyle, bottomLeftStyle, size…
4574 …mxShapeBasicRect2.prototype.paintSW = function(c, x, y, w, h, rectStyle, bottomLeftStyle, size, bo…
4599 …mxShapeBasicRect2.prototype.paintNWInner = function(c, x, y, w, h, rectStyle, topLeftStyle, size, …
4620 …mxShapeBasicRect2.prototype.paintTopInner = function(c, x, y, w, h, rectStyle, topLeftStyle, size,…
4653 …mxShapeBasicRect2.prototype.paintNEInner = function(c, x, y, w, h, rectStyle, topRightStyle, size,…
4674 …mxShapeBasicRect2.prototype.paintRightInner = function(c, x, y, w, h, rectStyle, topRightStyle, si…
4707 …mxShapeBasicRect2.prototype.paintLeftInner = function(c, x, y, w, h, rectStyle, bottomLeftStyle, s…
4740 …mxShapeBasicRect2.prototype.paintSEInner = function(c, x, y, w, h, rectStyle, bottomRightStyle, si…
4761 …mxShapeBasicRect2.prototype.paintBottomInner = function(c, x, y, w, h, rectStyle, bottomRightStyle…
4790 …mxShapeBasicRect2.prototype.paintSWInner = function(c, x, y, w, h, rectStyle, bottomLeftStyle, siz…
4819 …mxShapeBasicRect2.prototype.moveSWInner = function(c, x, y, w, h, rectStyle, bottomLeftStyle, size…
4841 …mxShapeBasicRect2.prototype.lineSWInner = function(c, x, y, w, h, rectStyle, bottomLeftStyle, size…
4863 …mxShapeBasicRect2.prototype.moveSEInner = function(c, x, y, w, h, rectStyle, bottomRightStyle, siz…
4885 …mxShapeBasicRect2.prototype.lineSEInner = function(c, x, y, w, h, rectStyle, bottomRightStyle, siz…
4907 …mxShapeBasicRect2.prototype.moveNEInner = function(c, x, y, w, h, rectStyle, topRightStyle, size, …
4929 …mxShapeBasicRect2.prototype.lineNEInner = function(c, x, y, w, h, rectStyle, topRightStyle, size, …
4951 …mxShapeBasicRect2.prototype.moveNWInner = function(c, x, y, w, h, rectStyle, topLeftStyle, size, i…
4981 …mxShapeBasicRect2.prototype.lineNWInner = function(c, x, y, w, h, rectStyle, topLeftStyle, size, i…
5011 …mxShapeBasicRect2.prototype.paintFolds = function(c, x, y, w, h, rectStyle, topLeftStyle, topRight…
5045 mxCellRenderer.registerShape(mxShapeBasicRect2.prototype.cst.RECT2, mxShapeBasicRect2);
5047 mxShapeBasicRect2.prototype.constraints = null;
5056 FilledEdge.prototype.origPaintEdgeShape = FilledEdge.prototype.paintEdgeShape;
5057 FilledEdge.prototype.paintEdgeShape = function(c, pts, rounded)
5070 FilledEdge.prototype.origPaintEdgeShape.apply(this, [c, temp, rounded]);
5082 FilledEdge.prototype.origPaintEdgeShape.apply(this, [c, pts, rounded]);
5095 var styleFormatPanelGetCustomColors = StyleFormatPanel.prototype.getCustomColors;
5097 StyleFormatPanel.prototype.getCustomColors = function()
5372 var handle = new mxHandle(state, null, mxVertexHandler.prototype.secondaryHandleImage);
5565 …h.min(1, mxUtils.getValue(this.state.style, 'arrowWidth', SingleArrowShape.prototype.arrowWidth)));
5566 …n(maxSize, mxUtils.getValue(this.state.style, 'arrowSize', SingleArrowShape.prototype.arrowSize)));
5864 …ounds.height, parseFloat(mxUtils.getValue(this.state.style, 'size', UmlLifeline.prototype.size))));
5876 …r w0 = Math.max(UmlFrame.prototype.corner, Math.min(bounds.width, mxUtils.getValue(this.state.styl…
5877 … = Math.max(UmlFrame.prototype.corner * 1.5, Math.min(bounds.height, mxUtils.getValue(this.state.s…
5882 …this.state.style['width'] = Math.round(Math.max(UmlFrame.prototype.corner, Math.min(bounds.width, …
5883 …this.state.style['height'] = Math.round(Math.max(UmlFrame.prototype.corner * 1.5, Math.min(bounds.…
5894 var size = parseFloat(mxUtils.getValue(this.state.style, 'size', ProcessShape.prototype.size));
5916 …max(0, Math.min(1, mxUtils.getValue(this.state.style, 'size', CrossShape.prototype.size))) * m / 2;
5931 mxUtils.getValue(this.state.style, 'size', NoteShape.prototype.size)))));
5945 mxUtils.getValue(this.state.style, 'size', NoteShape2.prototype.size)))));
5958 …h.min(bounds.height, mxUtils.getValue(this.state.style, 'size', ManualInputShape.prototype.size)));
5978 …his.state.style, 'size', (fixed) ? DataStorageShape.prototype.fixedSize : DataStorageShape.prototy…
5993 … Math.min(bounds.height, mxUtils.getValue(this.state.style, 'size', CalloutShape.prototype.size)));
5994 …x(0, Math.min(1, mxUtils.getValue(this.state.style, 'position', CalloutShape.prototype.position)));
5995 …, Math.min(bounds.width, mxUtils.getValue(this.state.style, 'base', CalloutShape.prototype.base)));
6000 …, Math.min(bounds.width, mxUtils.getValue(this.state.style, 'base', CalloutShape.prototype.base)));
6005 …0, Math.min(1, mxUtils.getValue(this.state.style, 'position2', CalloutShape.prototype.position2)));
6013 … Math.min(bounds.height, mxUtils.getValue(this.state.style, 'size', CalloutShape.prototype.size)));
6014 …x(0, Math.min(1, mxUtils.getValue(this.state.style, 'position', CalloutShape.prototype.position)));
6015 …, Math.min(bounds.width, mxUtils.getValue(this.state.style, 'base', CalloutShape.prototype.base)));
6020 …x(0, Math.min(1, mxUtils.getValue(this.state.style, 'position', CalloutShape.prototype.position)));
6036 …th.min(bounds.width, mxUtils.getValue(this.state.style, 'dx', InternalStorageShape.prototype.dx)));
6037 …h.min(bounds.height, mxUtils.getValue(this.state.style, 'dy', InternalStorageShape.prototype.dy)));
6057 …bounds.width, mxUtils.getValue(this.state.style, 'jettyWidth', ModuleShape.prototype.jettyWidth)));
6058 …nds.height, mxUtils.getValue(this.state.style, 'jettyHeight', ModuleShape.prototype.jettyHeight)));
6073 …max(0, Math.min(bounds.width, mxUtils.getValue(this.state.style, 'dx', CornerShape.prototype.dx)));
6074 …ax(0, Math.min(bounds.height, mxUtils.getValue(this.state.style, 'dy', CornerShape.prototype.dy)));
6087 …th.max(0, Math.min(bounds.width, mxUtils.getValue(this.state.style, 'dx', TeeShape.prototype.dx)));
6088 …h.max(0, Math.min(bounds.height, mxUtils.getValue(this.state.style, 'dy', TeeShape.prototype.dy)));
6103 …min(bounds.width, mxUtils.getValue(this.state.style, 'tabWidth', FolderShape.prototype.tabWidth)));
6104 …(bounds.height, mxUtils.getValue(this.state.style, 'tabHeight', FolderShape.prototype.tabHeight)));
6106 …if (mxUtils.getValue(this.state.style, 'tabPosition', FolderShape.prototype.tabPosition) == mxCons…
6116 …if (mxUtils.getValue(this.state.style, 'tabPosition', FolderShape.prototype.tabPosition) == mxCons…
6129 …Math.min(1, parseFloat(mxUtils.getValue(this.state.style, 'size', DocumentShape.prototype.size))));
6141 …(0, Math.min(1, parseFloat(mxUtils.getValue(this.state.style, 'size', TapeShape.prototype.size))));
6162 'cylinder2' : createCylinderHandleFunction(CylinderShape.prototype.size),
6163 'cylinder3' : createCylinderHandleFunction(CylinderShape3.prototype.size),
6168 …(1, parseFloat(mxUtils.getValue(this.state.style, 'size', OffPageConnectorShape.prototype.size))));
6202 …'step': createDisplayHandleFunction(StepShape.prototype.size, true, null, true, StepShape.prototyp…
6203 …xagon': createDisplayHandleFunction(HexagonShape.prototype.size, true, 0.5, true, HexagonShape.pro…
6204 'curlyBracket': createDisplayHandleFunction(CurlyBracketShape.prototype.size, false),
6205 'display': createDisplayHandleFunction(DisplayShape.prototype.size, false),
6206 'cube': createCubeHandleFunction(1, CubeShape.prototype.size, false),
6207 'card': createCubeHandleFunction(0.5, CardShape.prototype.size, true),
6208 'loopLimit': createCubeHandleFunction(0.5, LoopLimitShape.prototype.size, true),
6209 …oid': createTrapezoidHandleFunction(0.5, TrapezoidShape.prototype.size, TrapezoidShape.prototype.f…
6210 …: createTrapezoidHandleFunction(1, ParallelogramShape.prototype.size, ParallelogramShape.prototype
6217 var vertexHandlerCreateCustomHandles = mxVertexHandler.prototype.createCustomHandles;
6219 mxVertexHandler.prototype.createCustomHandles = function()
6267 mxEdgeHandler.prototype.createCustomHandles = function()
6397 var graphCreateEdgeHandler = Graph.prototype.createEdgeHandler;
6398 Graph.prototype.createEdgeHandler = function(state, edgeStyle)
6412 IsoRectangleShape.prototype.constraints = [];
6414 IsoCubeShape.prototype.getConstraints = function(style, w, h)
6433 IsoCubeShape2.prototype.getConstraints = function(style, w, h)
6451 CalloutShape.prototype.getConstraints = function(style, w, h)
6479 mxRectangleShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0), true),
6495 …mxEllipse.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0), true), new mxConn…
6499 PartialRectangleShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6500 mxImageShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6501 mxSwimlane.prototype.constraints = mxRectangleShape.prototype.constraints;
6502 PlusShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6503 mxLabel.prototype.constraints = mxRectangleShape.prototype.constraints;
6505 NoteShape.prototype.getConstraints = function(style, w, h)
6529 CardShape.prototype.getConstraints = function(style, w, h)
6553 CubeShape.prototype.getConstraints = function(style, w, h)
6574 CylinderShape3.prototype.getConstraints = function(style, w, h)
6602 FolderShape.prototype.getConstraints = function(style, w, h)
6643 InternalStorageShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6644 DataStorageShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6645 TapeDataShape.prototype.constraints = mxEllipse.prototype.constraints;
6646 OrEllipseShape.prototype.constraints = mxEllipse.prototype.constraints;
6647 SumEllipseShape.prototype.constraints = mxEllipse.prototype.constraints;
6648 LineEllipseShape.prototype.constraints = mxEllipse.prototype.constraints;
6649 ManualInputShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6650 DelayShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6652 DisplayShape.prototype.getConstraints = function(style, w, h)
6670 ModuleShape.prototype.getConstraints = function(style, w, h)
6672 var x0 = parseFloat(mxUtils.getValue(style, 'jettyWidth', ModuleShape.prototype.jettyWidth)) / 2;
6673 var dy = parseFloat(mxUtils.getValue(style, 'jettyHeight', ModuleShape.prototype.jettyHeight));
6708 LoopLimitShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6709 OffPageConnectorShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6710 mxCylinder.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.15, 0.05), false),
6722 UmlActorShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0.1), false),
6730 ComponentShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true),
6741 mxActor.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.5, 0), true),
6751 SwitchShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0), false),
6759 TapeShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.35), false),
6767 StepShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true),
6779 mxLine.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.5), false),
6783 LollipopShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.5, 0), false),
6785 mxDoubleEllipse.prototype.constraints = mxEllipse.prototype.constraints;
6786 mxRhombus.prototype.constraints = mxEllipse.prototype.constraints;
6787 mxTriangle.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.25), true),
6793 mxHexagon.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.375, 0), true),
6805 mxCloud.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0.25), false),
6817 ParallelogramShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6818 TrapezoidShape.prototype.constraints = mxRectangleShape.prototype.constraints;
6819 DocumentShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.25, 0), true),
6828 mxArrow.prototype.constraints = null;
6830 TeeShape.prototype.getConstraints = function(style, w, h)
6857 CornerShape.prototype.getConstraints = function(style, w, h)
6879 CrossbarShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0), false),
6889 SingleArrowShape.prototype.getConstraints = function(style, w, h)
6909 DoubleArrowShape.prototype.getConstraints = function(style, w, h)
6912 …1, parseFloat(mxUtils.getValue(this.style, 'arrowWidth', SingleArrowShape.prototype.arrowWidth))));
6913 …n(1, parseFloat(mxUtils.getValue(this.style, 'arrowSize', SingleArrowShape.prototype.arrowSize))));
6929 CrossShape.prototype.getConstraints = function(style, w, h)
6967 UmlLifeline.prototype.constraints = null;
6968 OrShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.25), false),
6974 XorShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0.175, 0.25), false),
6980 …RequiredInterfaceShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, 0.5), fa…
6982 …ProvidedRequiredInterfaceShape.prototype.constraints = [new mxConnectionConstraint(new mxPoint(0, …