Lines Matching refs:cell

199 		table: false, cell: false, row: false, movable: true, rotatable: true, stroke: true};
205 Format.prototype.updateSelectionStateForCell = function(result, cell, cells, initial) argument
208 result.cells.push(cell);
210 if (graph.getModel().isVertex(cell))
212 result.resizable = result.resizable && graph.isCellResizable(cell);
213 result.rotatable = result.rotatable && graph.isCellRotatable(cell);
214 result.movable = result.movable && graph.isCellMovable(cell) &&
215 !graph.isTableRow(cell) && !graph.isTableCell(cell);
216 result.table = result.table || graph.isTable(cell);
217 result.cell = result.cell || graph.isTableCell(cell);
218 result.row = result.row || graph.isTableRow(cell);
219 result.vertices.push(cell);
220 var geo = graph.getCellGeometry(cell);
281 else if (graph.getModel().isEdge(cell))
283 result.edges.push(cell);
289 var state = graph.view.getState(cell);
314 (state.view.graph.model.isVertex(state.cell) ||
1958 var cell = ss.cells[0];
1978 else if (ss.cells.length == 1 && !graph.getModel().isEdge(cell) && !graph.isSwimlane(cell) &&
1979 !graph.isTable(cell) && !ss.row && !ss.cell && graph.getModel().getChildCount(cell) > 0)
2092 if (ss.cells.length == 1 && graph.getModel().isVertex(cell) && !ss.row &&
2093 !ss.cell && graph.getModel().isVertex(graph.getModel().getParent(cell)))
2306 if (ss.rotatable && !ss.table && !ss.row && !ss.cell)
2518 if (!rect.cell && !rect.row)
2531 widthUpdate = this.addGeometryHandler(width, function(geo, value, cell) argument
2533 if (graph.isTableCell(cell))
2535 graph.setTableColumnWidth(cell, value - geo.width, true);
2552 heightUpdate = this.addGeometryHandler(height, function(geo, value, cell) argument
2554 if (graph.isTableCell(cell))
2556 cell = graph.model.getParent(cell);
2559 if (graph.isTableRow(cell))
2561 graph.setTableRowHeight(cell, value - geo.height);
2579 if (rect.resizable || rect.row || rect.cell)
2970 var cell = rect.cells[0];
2988 if (rect.cells.length == 1 && graph.model.isEdge(cell))
2990 var geo = graph.model.getGeometry(cell);
2992 if (geo.sourcePoint != null && graph.model.getTerminal(cell, true) == null)
3002 if (geo.targetPoint != null && graph.model.getTerminal(cell, false) == null)
3731 var wwCells = graph.filterSelectionCells(mxUtils.bind(this, function(cell) argument
3733 var state = graph.view.getState(cell);
3737 graph.getModel().isEdge(cell) ||
3738 (!graph.isTableRow(cell) &&
3739 !graph.isTableCell(cell) &&
3740 !graph.isCellResizable(cell));
6112 var applyStyle = mxUtils.bind(this, function(style, result, cell, graphStyle, theGraph) argument
6116 if (cell != null)
6140 if (cell == null || ((result[key] != null &&
6201 graph2.getCellStyle = function(cell) argument
6207 if (model.isEdge(cell))
6214 applyStyle(commonStyle, result, cell, graphStyle, graph2);
6215 applyStyle(appliedStyle, result, cell, graphStyle, graph2);
6349 graph.getCellStyle = function(cell) argument
6356 if (model.isEdge(cell))
6363 applyStyle(commonStyle, result, cell, graphStyle);
6364 applyStyle(appliedStyle, result, cell, graphStyle);