Lines Matching refs:cell

648 	var cell = graph.getSelectionCell();
649 var style = graph.getCurrentCellStyle(cell);
651 var isTable = graph.isTable(cell) ||
652 graph.isTableRow(cell) ||
653 graph.isTableCell(cell);
654 var isStack = graph.isStack(cell) ||
655 graph.isStackChild(cell);
662 var style = (graph.isStack(cell)) ? style :
663 graph.getCellStyle(graph.model.getParent(cell));
711 graph.insertLane(cell, true);
715 graph.insertTableColumn(cell, true);
731 graph.insertLane(cell, false);
735 graph.insertTableColumn(cell, false);
747 if (cell != null)
753 graph.deleteLane(cell);
757 graph.deleteTableColumn(cell);
777 graph.insertLane(cell, true);
781 graph.insertTableRow(cell, true);
797 graph.insertLane(cell, false);
801 graph.insertTableRow(cell, false);
817 graph.deleteLane(cell);
821 graph.deleteTableRow(cell);
931 var cell = row.insertCell(-1);
946 var cell = row.insertCell(-1);
956 var cell = row.insertCell(-1);
1036 var cell = r.cells[j];
1041 selected = cell.style.backgroundColor == 'blue';
1046 cell.style.backgroundColor = 'blue';
1050 cell.style.backgroundColor = 'transparent';
1099 var cell = cells[i];
1101 if (graph.getModel().isEdge(cell))
1105 var geo = graph.getCellGeometry(cell);
1112 graph.getModel().setGeometry(cell, geo);
1118 graph.setCellStyles(keys[j], values[j], [cell]);
1121 edges.push(cell);
1448 Menus.prototype.createPopupMenu = function(menu, cell, evt) argument
1452 this.addPopupMenuHistoryItems(menu, cell, evt);
1453 this.addPopupMenuEditItems(menu, cell, evt);
1454 this.addPopupMenuStyleItems(menu, cell, evt);
1455 this.addPopupMenuArrangeItems(menu, cell, evt);
1456 this.addPopupMenuCellItems(menu, cell, evt);
1457 this.addPopupMenuSelectionItems(menu, cell, evt);
1463 Menus.prototype.addPopupMenuHistoryItems = function(menu, cell, evt) argument
1474 Menus.prototype.addPopupMenuEditItems = function(menu, cell, evt) argument
1489 Menus.prototype.addPopupMenuStyleItems = function(menu, cell, evt) argument
1504 Menus.prototype.addPopupMenuArrangeItems = function(menu, cell, evt) argument
1522 else if (graph.getSelectionCount() == 1 && !graph.getModel().isEdge(cell) &&
1523 !graph.isSwimlane(cell) && graph.getModel().getChildCount(cell) > 0 &&
1524 graph.isCellEditable(cell))
1533 Menus.prototype.addPopupMenuCellItems = function(menu, cell, evt) argument
1536 var state = graph.view.getState(cell);
1543 if (graph.getSelectionCount() == 1 && graph.getModel().isEdge(cell))
1549 …if (graph.getModel().isEdge(cell) && mxUtils.getValue(state.style, mxConstants.STYLE_EDGE, null) !…
1552 var handler = graph.selectionCellsHandler.getHandler(cell);
1580 var geo = graph.getModel().getGeometry(cell);
1584 if (graph.getSelectionCount() == 1 && (hasWaypoints || (graph.getModel().isVertex(cell) &&
1585 graph.getModel().getEdgeCount(cell) > 0)))
1590 if (graph.getSelectionCount() == 1 && graph.isCellEditable(cell))
1592 this.addPopupMenuCellEditItems(menu, cell, evt);
1600 Menus.prototype.addPopupMenuCellEditItems = function(menu, cell, evt, parent) argument
1603 var state = graph.view.getState(cell);
1607 …if (this.editorUi.editor.graph.getModel().isVertex(cell) && mxUtils.getValue(state.style, mxConsta…
1617 Menus.prototype.addPopupMenuSelectionItems = function(menu, cell, evt) argument