| 173 | |
| 174 | |
| 175 | class SimpleGrid(wx.grid.Grid): |
| 176 | def __init__(self, parent, ncol=20, nrow=8): |
| 177 | wx.grid.Grid.__init__(self, parent) |
| 178 | |
| 179 | self.CreateGrid(ncol, nrow) |
| 180 | [self.SetCellValue(i, j, '0.0') for i in range(20) for j in range(8)] |
| 181 | |
| 182 | |
| 183 | class SaturationTableDialog(wx.Dialog): |