Lines Matching refs:edge

1204 		this.connectionHandler.selectCells = function(edge, target)  argument
1206 this.graph.setSelectionCell(target || edge);
4077 var edge = ((mxEvent.isControlDown(evt) && mxEvent.isShiftDown(evt) && duplicate) ||
4082 if (edge != null && this.connectionHandler.insertBeforeSource)
4088 tmp.geometry.relative && tmp.parent != edge.parent)
4093 if (tmp != null && tmp.parent != null && tmp.parent == edge.parent)
4096 this.model.add(tmp.parent, edge, index);
4108 if (edge != null)
4110 result.push(edge);
4118 if (realTarget == null && edge != null)
4120 edge.geometry.setTerminalPoint(pt, false);
4123 if (edge != null)
4125 this.fireEvent(new mxEventObject('cellsInserted', 'cells', [edge]));
6796 mxGraphView.prototype.getFixedTerminalPoint = function(edge, terminal, source, constraint) argument
6813 mxGraphView.prototype.updateFloatingTerminalPoint = function(edge, start, end, source) argument
6815 if (start != null && edge != null &&
6817 edge.style['snapToPoint'] == '1'))
6819 start = this.getTerminalPort(edge, start, source);
6820 var next = this.getNextPoint(edge, end, source);
6822 var orth = this.graph.isOrthogonal(edge);
6833 var border = parseFloat(edge.style[mxConstants.STYLE_PERIMETER_SPACING] || 0);
6834 border += parseFloat(edge.style[(source) ?
6846 edge.setAbsoluteTerminalPoint(this.snapToAnchorPoint(edge, start, end, source, pt), source);
6854 mxGraphView.prototype.snapToAnchorPoint = function(edge, start, end, source, pt) argument
6856 if (start != null && edge != null)
7274 mxGraphLayout.prototype.isEdgeIgnored = function(edge) argument
7277 this.graph.isEdgeIgnored(edge);
7305 var edge = this.graph.createEdge(null, null, null, null, null, style);
7306 var state = new mxCellState(this.graph.view, edge, this.graph.getCellStyle(edge));
7706 Graph.prototype.splitEdge = function(edge, cells, newEdge, dx, dy, x, y, parent) argument
7710 parent = this.model.getParent(edge);
7723 var newEdge = graphSplitEdge.apply(this, [edge, cells, newEdge, dx, dy, x, y, parent]);
7742 var targetLabels = this.getChildCells(edge, true);
7759 this.setCellStyles(mxConstants.STYLE_SOURCE_PERIMETER_SPACING, null, [edge]);
7760 this.setCellStyles(mxConstants.STYLE_STARTARROW, mxConstants.NONE, [edge]);
7771 this.setCellStyles(mxConstants.STYLE_EXIT_X, null, [edge]);
7772 this.setCellStyles(mxConstants.STYLE_EXIT_Y, null, [edge]);
8239 Graph.prototype.flipEdge = function(edge) argument
8241 if (edge != null)
8243 var style = this.getCurrentCellStyle(edge);
8248 this.setCellStyles(mxConstants.STYLE_ELBOW, value, [edge]);
12786 mxEdgeHandler.prototype.updatePreviewState = function(edge, point, terminalState, me) argument