Lines Matching refs:cells
38 self.cells = {} # {(x, y): cell, ...}
41 cells = self.multicellvalue,
64 return self.cells.get((x, y))
69 self.cells[x, y] = cell
73 del self.cells[x, y]
79 del self.cells[xy]
92 return [(x, y) for x, y in self.cells
104 for x, y in self.cells:
105 cell = self.cells[x, y]
112 self.cells = new
136 for x, y in self.cells:
142 for cell in self.cells.values():
148 for cell in self.cells.values():
165 # Add sheet cells in columns with x>0 and y>0
166 for (x, y), cell in self.cells.items():
204 for (x, y), cell in self.cells.items():
306 """Abstract base class for sheet cells.
432 B4:Z100 -> cells(2, 4, 26, 100)
446 s = "cells(%s, %s, %s, %s)" % (x1, y1, x2, y2)
480 - clear multiple cells
533 # Copy the sheet cells to the GUI cells
562 """Helper to create the grid of GUI cells.
564 The edge (x==0 or y==0) is filled with labels; the rest is real cells.
596 # Create the real cells
780 "Fill the GUI cells from the sheet cells."