Lines Matching refs:style

233 mxShape.prototype.getConstraints = function(style, w, h)  argument
243 if (src.substring(0, 26) == 'data:image/svg+xml;base64,' && this.style != null &&
244 mxUtils.getValue(this.style, 'clipSvg', '0') == '1')
306 var style = this.getCurrentCellStyle(cell);
308 …return (style != null) ? (style['html'] == '1' || style[mxConstants.STYLE_WHITE_SPACE] == 'wrap') …
734 if (state.style['html'] != 1)
946 …((this.currentState == null || mxUtils.getValue(this.currentState.style, 'outlineConnect', '1') !=…
976 prevCursor = this.container.style.cursor;
977 this.container.style.cursor = 'move';
985 this.container.style.cursor = prevCursor;
1106 return mxUtils.getValue(state.style, 'locked', '0') == '1';
1359 graph.container.style.visibility = 'hidden';
1360 graph.container.style.position = 'absolute';
1361 graph.container.style.overflow = 'hidden';
1362 graph.container.style.height = '1px';
1363 graph.container.style.width = '1px';
1601 mxUtils.setPrefixedStyle(nodes[i].style, 'transition', transition);
1612 nodes[i].style.opacity = opacity;
1628 if (elt.nodeType == mxConstants.NODETYPE_ELEMENT && elt.style != null)
1630 elt.style.whiteSpace = '';
1632 if (elt.style.color == '#000000')
1634 elt.style.color = '';
1715 div.style.position = 'absolute';
1716 div.style.visibility = 'hidden';
1848 removeLink.style.marginLeft = '4px';
1849 removeLink.style.marginBottom = '-1px';
1850 removeLink.style.cursor = 'pointer';
2190 var style = {};
2195 this.mergeStyle(state.style, style, i == 0);
2198 return style;
2204 Graph.prototype.mergeStyle = function(style, into, initial) argument
2206 if (style != null)
2210 for (var key in style)
2212 var value = style[key];
2245 var style = this.getCellStyle(cell);
2246 var size = parseInt(mxUtils.getValue(style, mxConstants.STYLE_STARTSIZE, 0));
2254 style = this.getCellStyle(cell);
2255 size = parseInt(mxUtils.getValue(style, mxConstants.STYLE_STARTSIZE, 0));
2283 var style = null;
2287 style = mxUtils.clone(this.getCurrentCellStyle(cell));
2303 if (style[key] == null && value == mxConstants.NONE)
2305 style[key] = mxConstants.NONE;
2311 return style;
2317 Graph.prototype.pasteStyle = function(style, cells, keys) argument
2331 var value = style[keys[j]];
2439 …!this.isCellCollapsed(state.cell) && mxUtils.getValue(state.style, 'recursiveResize', '1') == '1' …
2440 mxUtils.getValue(state.style, 'childLayout', null) == null;
2934 var style = this.graph.getCellStyle(cell);
2936 if (style['childLayout'] == 'stackLayout')
2939 stackLayout.resizeParentMax = mxUtils.getValue(style, 'resizeParentMax', '1') == '1';
2940 stackLayout.horizontal = mxUtils.getValue(style, 'horizontalStack', '1') == '1';
2941 stackLayout.resizeParent = mxUtils.getValue(style, 'resizeParent', '1') == '1';
2942 stackLayout.resizeLast = mxUtils.getValue(style, 'resizeLast', '0') == '1';
2943 stackLayout.spacing = style['stackSpacing'] || stackLayout.spacing;
2944 stackLayout.border = style['stackBorder'] || stackLayout.border;
2945 stackLayout.marginLeft = style['marginLeft'] || 0;
2946 stackLayout.marginRight = style['marginRight'] || 0;
2947 stackLayout.marginTop = style['marginTop'] || 0;
2948 stackLayout.marginBottom = style['marginBottom'] || 0;
2949 stackLayout.allowGaps = style['allowGaps'] || 0;
2954 stackLayout.gridSize = parseFloat(mxUtils.getValue(style, 'stackUnitSize', 20));
2959 else if (style['childLayout'] == 'treeLayout')
2962 treeLayout.horizontal = mxUtils.getValue(style, 'horizontalTree', '1') == '1';
2963 treeLayout.resizeParent = mxUtils.getValue(style, 'resizeParent', '1') == '1';
2964 treeLayout.groupPadding = mxUtils.getValue(style, 'parentPadding', 20);
2965 treeLayout.levelDistance = mxUtils.getValue(style, 'treeLevelDistance', 30);
2972 else if (style['childLayout'] == 'flowLayout')
2974 var flowLayout = new mxHierarchicalLayout(this.graph, mxUtils.getValue(style,
2976 flowLayout.resizeParent = mxUtils.getValue(style, 'resizeParent', '1') == '1';
2977 flowLayout.parentBorder = mxUtils.getValue(style, 'parentPadding', 20);
2981 flowLayout.intraCellSpacing = mxUtils.getValue(style, 'intraCellSpacing',
2983 flowLayout.interRankCellSpacing = mxUtils.getValue(style, 'interRankCellSpacing',
2985 flowLayout.interHierarchySpacing = mxUtils.getValue(style, 'interHierarchySpacing',
2987 flowLayout.parallelEdgeSpacing = mxUtils.getValue(style, 'parallelEdgeSpacing',
2992 else if (style['childLayout'] == 'circleLayout')
2996 else if (style['childLayout'] == 'organicLayout')
3000 else if (style['childLayout'] == 'tableLayout')
3157 state.text.node.style.opacity = f;
3170 state.text.node.style.opacity = ''
3208 state.text.node.style.opacity = f;
3221 state.text.node.style.opacity = ''
3398 var style = this.getCurrentCellStyle(cell);
3400 result = mxUtils.getValue(style, 'ignoreEdge', '0') == '1';
3436 var style = this.getCurrentCellStyle(cell);
3441 mxUtils.getValue(style, 'labelMovable', '0') == '1')));
3663 div.style.position = 'absolute';
3676 span.style.overflow = 'hidden';
3677 span.style.textOverflow = 'ellipsis';
3678 span.style.padding = '2px';
3679 span.style.whiteSpace = 'nowrap';
3680 span.style.cursor = 'pointer';
3689 inp.style.position = 'relative';
3690 inp.style.width = '16px';
3691 inp.style.padding = '0px 6px 0 4px';
3695 inp.style.filter = 'invert(100%)';
3696 inp.style.top = '-2px';
4294 var style = mxGraph.prototype.getCellStyle.apply(this, arguments);
4306 style[mxConstants.STYLE_HORIZONTAL] = !layout.horizontal;
4311 return style;
4344 return mxEvent.isShiftDown(evt) || mxUtils.getValue(state.style, 'moveCells', '0') == '1';
4500 var style = this.getCurrentCellStyle(cell);
4504 return style['container'] != '0';
4508 return style['container'] == '1';
4517 var style = this.getCurrentCellStyle(cell);
4519 return (style['connectable'] != null) ? style['connectable'] != '0' :
4528 var style = this.getCurrentCellStyle(cell);
4530 return (style['movableLabel'] != null) ? style['movableLabel'] != '0' :
4611 var style = this.getCurrentCellStyle(cell);
4613 return this.foldingEnabled && mxUtils.getValue(style,
4615 (style['treeFolding'] == '1' ||
4617 ((this.isContainer(cell) && style['collapsible'] != '0') ||
4618 (!this.isContainer(cell) && style['collapsible'] == '1'))));
5176 arrow.style.width = img.width + 'px';
5177 arrow.style.height = img.height + 'px';
5178 arrow.style.padding = this.tolerance + 'px';
5185 arrow.style.position = 'absolute';
5186 arrow.style.cursor = this.cssCursor;
5311 elt.style.display = display;
5350 mxUtils.getValue(es.style, mxConstants.STYLE_EDGE, null) === 'orthogonalEdgeStyle')
5353 es.cell.style = mxUtils.setStyle(es.cell.style, 'sourcePortConstraint', direction);
5354 es.style['sourcePortConstraint'] = direction;
5472 handler.rotationShape.node.style.visibility != 'hidden' &&
5473 handler.rotationShape.node.style.display != 'none' &&
5508 arrow.style.left = x + 'px';
5509 arrow.style.top = y + 'px';
5520 positionArrow(this.arrowDown, parseInt(this.arrowUp.style.left),
5524 parseInt(this.arrowRight.style.top));
5554 arrow.style.visibility = 'hidden';
5558 arrow.style.visibility = 'visible';
5569 this.arrowLeft.style.visibility = 'visible';
5570 this.arrowRight.style.visibility = 'visible';
5571 this.arrowUp.style.visibility = 'visible';
5572 this.arrowDown.style.visibility = 'visible';
5670 if (state != null && state.style == null)
5686 mxUtils.getValue(state.style, 'allowArrows', '1') == '0'))
5769 if (state.style['portConstraint'] != 'eastwest')
5923 var style = this.getCellStyle(cell);
5925 return style != null && style['childLayout'] == 'tableLayout';
5933 var style = this.getCellStyle(cell);
5935 return style != null && style['childLayout'] == 'stackLayout';
6288 var style = this.graph.getCurrentCellStyle(cells[i], true);
6289 var temp = {style: style, cell: cells[i], geo: cell}; property in TableLayout.layoutRow.temp
6291 if (style != null)
6295 temp.colspan = parseInt(style['colspan'] || 0);
6301 temp.rowspan = parseInt(style['rowspan'] || 0);
6306 temp.colspan = parseInt(upper.style['colspan'] || 0);
6325 var style = this.graph.getCellStyle(parent);
6326 var resizeLastRow = mxUtils.getValue(style,
6328 var resizeLast = mxUtils.getValue(style,
6330 var fixedRows = mxUtils.getValue(style,
6436 state.style != null && state.style[mxConstants.STYLE_CURVED] != 1 &&
6446 state.style != null && state.style[mxConstants.STYLE_CURVED] != 1)
6467 mxUtils.getValue(this.state.style, 'flowAnimation', '0') == '1')
6473 if (mxUtils.getValue(this.state.style, mxConstants.STYLE_DASHED, '0') != '1')
6509 state.style[mxConstants.STYLE_CURVED] != 1)
6528 mxUtils.getValue(state.style, 'jumpStyle', 'none') !== 'none')
6572 if (pts2 != null && mxUtils.intersects(state, state2) && state2.style['noJump'] != '1')
6663 if (this.outline || this.state == null || this.style == null ||
6670 var arcSize = mxUtils.getValue(this.style, mxConstants.STYLE_ARCSIZE,
6672 var size = (parseInt(mxUtils.getValue(this.style, 'jumpSize',
6674 var style = mxUtils.getValue(this.style, 'jumpStyle', 'none');
6742 if (style == 'sharp')
6748 else if (style == 'line')
6756 else if (style == 'arc')
6798 if (terminal != null && terminal.style[mxConstants.STYLE_PERIMETER] == 'centerPerimeter')
6816 (start.style['snapToPoint'] == '1' ||
6817 edge.style['snapToPoint'] == '1'))
6823 var alpha = mxUtils.toRadians(Number(start.style[mxConstants.STYLE_ROTATION] || '0'));
6833 var border = parseFloat(edge.style[mxConstants.STYLE_PERIMETER_SPACING] || 0);
6834 border += parseFloat(edge.style[(source) ?
6918 if (state.style != null && typeof(pako) !== 'undefined')
6920 var shape = mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null);
7304 var style = this.graph.createCurrentEdgeStyle();
7305 var edge = this.graph.createEdge(null, null, null, null, null, style);
7310 state.style[key] = this.graph.currentEdgeStyle[key];
7313 state.style = this.graph.postProcessCellStyle(state.style);
7370 var style = 'edgeStyle=' + (this.currentEdgeStyle['edgeStyle'] || 'none') + ';';
7379 style += keys[i] + '=' + this.currentEdgeStyle[keys[i]] + ';';
7386 style += 'orthogonalLoop=' + this.currentEdgeStyle['orthogonalLoop'] + ';';
7390 style += 'orthogonalLoop=' + Graph.prototype.defaultEdgeStyle['orthogonalLoop'] + ';';
7396 style += 'jettySize=' + this.currentEdgeStyle['jettySize'] + ';';
7400 style += 'jettySize=' + Graph.prototype.defaultEdgeStyle['jettySize'] + ';';
7406 style += 'elbow=' + this.currentEdgeStyle['elbow'] + ';';
7411 style += 'html=' + this.currentEdgeStyle['html'] + ';';
7415 style += 'html=1;';
7418 return style;
7435 var style = this.getCellStyle(cells[i]);
7436 var temp = style[key];
7690 var style = this.getCurrentCellStyle(parent);
7692 if (style['expand'] != null)
7694 return style['expand'] != '0';
7767 var style = this.getCurrentCellStyle(target);
7769 if (style != null && style['snapToPoint'] == '1')
7861 targetState.style['shape'] == 'umlLifeline' &&
7862 sourceState.style['shape'] == 'umlLifeline')
8175 var constraints = mxUtils.getValue(terminal.style, 'points', null);
8216 constraints = terminal.shape.getConstraints(terminal.style, w, h);
8243 var style = this.getCurrentCellStyle(edge);
8244 var elbow = mxUtils.getValue(style, mxConstants.STYLE_ELBOW,
8284 var style = this.getCurrentCellStyle(cell);
8294 return ((mxUtils.getValue(style, 'part', '0') != '1' || this.isContainer(cell)) &&
8295 mxUtils.getValue(style, 'dropTarget', '1') != '0' &&
8415 var temp = mxUtils.getValue(edgeState.style, mxConstants.STYLE_SOURCE_PERIMETER_SPACING);
8417 edgeState.style, mxConstants.STYLE_TARGET_PERIMETER_SPACING), [cell]);
8450 var dir = mxUtils.getValue(state.style, mxConstants.STYLE_DIRECTION,
9033 var style = 'html=1;align=center;verticalAlign=middle;resizable=0;points=[];';
9037 label.style = 'edgeLabel;' + style;
9056 label.style = 'text;' + style;
9063 label.style += 'autosize=1;'
9116 var cursor = this.container.style.cursor;
9168 if (this.currentLink == null && graph.container.style.overflow == 'auto')
9170 graph.container.style.cursor = 'move';
9281 graph.container.style.cursor = 'pointer';
9293 graph.container.style.cursor = cursor;
9520 var style = this.getCurrentCellStyle(cell);
9523 (mxUtils.getValue(style, mxConstants.STYLE_RESIZABLE, '1') != '0' &&
9524 style[mxConstants.STYLE_WHITE_SPACE] == 'wrap'));
9742 if (root.style != null)
9744 root.style.backgroundColor = background;
10298 var style = this.getCurrentCellStyle(lane);
10300 if (style['childLayout'] == 'stackLayout')
10343 var style = this.getCurrentCellStyle(lane);
10345 if (style['childLayout'] == 'stackLayout')
10804 this.container.style.cursor = me.state.shape.node.style.cursor;
10811 this.container.style.cursor = 'default';
10877 return state != null && state.style['html'] == 1;
10937 tabNode.style.whiteSpace = 'pre';
10967 node.style.textAlign = null;
11054 state.text.replaceLinefeeds = mxUtils.getValue(state.style, 'nl2Br', '1') != '0';
11102 if (state != null && state.style['html'] == 1)
11130 this.textarea.style.outline = 'gray dotted 1px';
11134 this.textarea.style.outline = '';
11271 var nl2Br = state != null && mxUtils.getValue(state.style, 'nl2Br', '1') != '0';
11298 …this.textarea.style.lineHeight = (mxConstants.ABSOLUTE_LINE_HEIGHT) ? Math.round(size * mxConstant…
11299 this.textarea.style.fontSize = Math.round(size) + 'px';
11300 this.textarea.style.textDecoration = '';
11301 this.textarea.style.fontWeight = 'normal';
11302 this.textarea.style.fontStyle = '';
11303 this.textarea.style.fontFamily = mxConstants.DEFAULT_FONTFAMILY;
11304 this.textarea.style.textAlign = 'left';
11305 this.textarea.style.width = '';
11308 this.textarea.style.padding = '2px';
11330 …var size = mxUtils.getValue(state.style, mxConstants.STYLE_FONTSIZE, mxConstants.DEFAULT_FONTSIZE);
11331 …var family = mxUtils.getValue(state.style, mxConstants.STYLE_FONTFAMILY, mxConstants.DEFAULT_FONTF…
11332 var align = mxUtils.getValue(state.style, mxConstants.STYLE_ALIGN, mxConstants.ALIGN_LEFT);
11333 var bold = (mxUtils.getValue(state.style, mxConstants.STYLE_FONTSTYLE, 0) &
11335 var italic = (mxUtils.getValue(state.style, mxConstants.STYLE_FONTSTYLE, 0) &
11339 if ((mxUtils.getValue(state.style, mxConstants.STYLE_FONTSTYLE, 0) &
11345 if ((mxUtils.getValue(state.style, mxConstants.STYLE_FONTSTYLE, 0) &
11351 …this.textarea.style.lineHeight = (mxConstants.ABSOLUTE_LINE_HEIGHT) ? Math.round(size * mxConstant…
11352 this.textarea.style.fontSize = Math.round(size) + 'px';
11353 this.textarea.style.textDecoration = txtDecor.join(' ');
11354 this.textarea.style.fontWeight = (bold) ? 'bold' : 'normal';
11355 this.textarea.style.fontStyle = (italic) ? 'italic' : '';
11356 this.textarea.style.fontFamily = family;
11357 this.textarea.style.textAlign = align;
11358 this.textarea.style.padding = '0px';
11409 …m = mxUtils.getAlignmentAsPoint(mxUtils.getValue(state.style, mxConstants.STYLE_ALIGN, mxConstants…
11410 mxUtils.getValue(state.style, mxConstants.STYLE_VERTICAL_ALIGN, mxConstants.ALIGN_MIDDLE));
11417 this.textarea.style.width = Math.round((this.bounds.width - 4) / scale) + 'px';
11418 this.textarea.style.height = Math.round((this.bounds.height - 4) / scale) + 'px';
11419 this.textarea.style.overflow = 'auto';
11424 …this.textarea.style.height = Math.round((this.bounds.height / scale)) + (this.textarea.offsetHeigh…
11425 this.bounds.height = parseInt(this.textarea.style.height) * scale;
11430 …this.textarea.style.width = Math.round((this.bounds.width / scale)) + (this.textarea.offsetWidth -…
11431 this.bounds.width = parseInt(this.textarea.style.width) * scale;
11434 this.textarea.style.left = Math.round(this.bounds.x) + 'px';
11435 this.textarea.style.top = Math.round(this.bounds.y) + 'px';
11437 … mxUtils.setPrefixedStyle(this.textarea.style, 'transform', 'scale(' + scale + ',' + scale + ')');
11441 this.textarea.style.height = '';
11442 this.textarea.style.overflow = '';
11451 if (mxUtils.getValue(state.style, 'html', '0') == '0')
11459 if (mxUtils.getValue(state.style, 'nl2Br', '1') == '1')
11473 if (mxUtils.getValue(state.style, 'html', '0') == '0')
11481 if (mxUtils.getValue(state.style, 'nl2Br', '1') == '1')
11550 var color = mxUtils.getValue(state.style, mxConstants.STYLE_LABEL_BACKGROUNDCOLOR, null);
11554 (mxUtils.getValue(state.style, mxConstants.STYLE_ROTATION, 0) != 0 ||
11555 mxUtils.getValue(state.style, mxConstants.STYLE_HORIZONTAL, 1) == 0))
11557 color = mxUtils.getValue(state.style, mxConstants.STYLE_FILLCOLOR, null);
11592 hint.style.whiteSpace = 'nowrap';
11593 hint.style.position = 'absolute';
11643 this.hint.style.left = (this.pBounds.x + this.currentDx +
11645 this.hint.style.top = (this.pBounds.y + this.currentDy +
11669 var style = this.graph.getCellStyle(cell);
11671 if (style['childLayout'] == null)
11678 style = this.graph.getCellStyle(parent);
11680 if (style['childLayout'] == 'stackLayout')
11682 … var border = parseFloat(mxUtils.getValue(style, 'stackBorder', mxStackLayout.prototype.border));
11683 var horizontal = mxUtils.getValue(style, 'horizontalStack', '1') == '1';
11797 mxUtils.getValue(state.style, 'recursiveResize', '1') == '1' &&
11798 mxUtils.getValue(state.style, 'childLayout', null) == null) &&
12088 this.moveHandles[i].style.visibility = (visible) ? '' : 'hidden';
12096 this.cornerHandles[i].node.style.visibility = (visible) ? '' : 'hidden';
12132 moveHandle.style.position = 'absolute';
12133 moveHandle.style.cursor = 'pointer';
12134 moveHandle.style.width = '7px';
12135 moveHandle.style.height = '4px';
12136 moveHandle.style.padding = '4px 2px 4px 2px';
12208 var name = this.state.style['shape'];
12293 …var rot = (this.currentAlpha != null) ? this.currentAlpha : this.state.style[mxConstants.STYLE_ROT…
12301 this.hint.style.left = bb.x + Math.round((bb.width - this.hint.clientWidth) / 2) + 'px';
12302 this.hint.style.top = (bb.y + bb.height + Editor.hintOffset) + 'px';
12306 this.linkHint.style.display = 'none';
12320 this.linkHint.style.display = '';
12333 if (this.linkHint != null && this.linkHint.style.display != 'none' &&
12336 this.linkHint.style.display = 'none';
12349 if (this.linkHint != null && this.linkHint.style.display == 'none')
12351 this.linkHint.style.display = '';
12373 this.hint.style.visibility = 'visible';
12385 this.hint.style.visibility = 'hidden';
12389 this.hint.style.left = Math.round(me.getGraphX() - this.hint.clientWidth / 2) + 'px';
12390 this.hint.style.top = (Math.max(me.getGraphY(), point.y) + Editor.hintOffset) + 'px';
12394 this.linkHint.style.display = 'none';
12589 var execute = this.div != null && this.div.style.display != 'none';
12728 this.div.style.borderStyle = 'dashed';
12729 this.div.style.backgroundColor = 'white';
12730 this.div.style.left = this.x + 'px';
12731 this.div.style.top = this.y + 'px';
12732 this.div.style.width = Math.max(0, this.width) + 'px';
12733 this.div.style.height = this.graph.container.clientHeight + 'px';
12734 this.div.style.borderWidth = (this.width <= 0) ? '0px 1px 0px 0px' : '0px 1px 0px 1px';
12742 this.secondDiv.style.left = this.x + 'px';
12743 this.secondDiv.style.top = this.y + 'px';
12744 this.secondDiv.style.width = this.graph.container.clientWidth + 'px';
12745 this.secondDiv.style.height = Math.max(0, this.height) + 'px';
12746 this.secondDiv.style.borderWidth = (this.height <= 0) ? '1px 0px 0px 0px' : '1px 0px 1px 0px';
12751 this.div.style.backgroundColor = '';
12752 this.div.style.borderWidth = '';
12753 this.div.style.borderStyle = '';
12809 …((this.currentTerminalState == null || mxUtils.getValue(this.currentTerminalState.style, 'outlineC…
12891 if (mxUtils.getValue(states[i].style, 'part', '0') != '1')
12942 var stroke = mxUtils.getValue(this.state.style, mxConstants.STYLE_STROKECOLOR, mxConstants.NONE);
12943 var fill = mxUtils.getValue(this.state.style, mxConstants.STYLE_FILLCOLOR, mxConstants.NONE);
12948 …var angle = mxUtils.mod(mxUtils.getValue(this.state.style, mxConstants.STYLE_ROTATION, 0) + 90, 36…
12968 this.rotationShape.node.style.display = 'none';
12971 if (this.linkHint != null && this.linkHint.style.display != 'none')
12973 this.linkHint.style.display = 'none';
12987 this.rotationShape.node.style.display = (this.graph.getSelectionCount() == 1) ? '' : 'none';
12990 if (this.linkHint != null && this.linkHint.style.display == 'none')
12992 this.linkHint.style.display = '';
13035 this.specialHandle.node.style.display = (this.graph.isEnabled() &&
13094 this.linkHint.style.padding = '6px 8px 6px 8px';
13095 this.linkHint.style.opacity = '1';
13096 this.linkHint.style.filter = '';
13119 changeLink.style.marginLeft = '10px';
13120 changeLink.style.marginBottom = '-1px';
13121 changeLink.style.cursor = 'pointer';
13145 div.style.marginTop = (link != null || i > 0) ? '6px' : '0px';
13179 this.linkHint.style.display = (this.graph.getSelectionCount() == 1) ? '' : 'none';
13184 this.labelShape.node.style.display = (this.graph.isEnabled() &&
13232 this.moveHandles[i].style.left = (this.moveHandles[i].rowState.x +
13234 this.moveHandles[i].style.top = (this.moveHandles[i].rowState.y +
13261 this.cornerHandles[i].node.style.display = (this.graph.getSelectionCount() == 1) ? '' : 'none';
13268 this.rotationShape.node.style.display = (this.moveHandles == null &&
13279 var bb = mxUtils.getBoundingBox(tmp, this.state.style[mxConstants.STYLE_ROTATION] || '0', c);
13281 this.state.style[mxConstants.STYLE_ROTATION] || '0') : this.state;
13296 …this.linkHint.style.left = Math.max(0, Math.round(rs.x + (rs.width - this.linkHint.clientWidth) / …
13297 this.linkHint.style.top = Math.round(b + this.verticalOffset / 2 + Editor.hintOffset) + 'px';
13377 …this.linkHint.style.left = Math.max(0, Math.round(b.x + (b.width - this.linkHint.clientWidth) / 2)…
13378 this.linkHint.style.top = Math.round(b.y + b.height + Editor.hintOffset) + 'px';
13390 this.linkHint.style.visibility = '';