(self, event)
| 192 | self.Close() |
| 193 | |
| 194 | def on_save(self, event): |
| 195 | para = {'path':'./'} |
| 196 | filt = 'PNG files (*.png)|*.png' |
| 197 | IPy.getpath('Save..', filt, 'save', para) |
| 198 | self.canvas.save(para['path']) |
| 199 | |
| 200 | def on_closing(self, event): |
| 201 | PlotManager.remove(self.GetTitle()) |