(self, panel, tps)
| 83 | self.Bind( aui.EVT_AUINOTEBOOK_PAGE_CLOSE, self.on_close) |
| 84 | |
| 85 | def add_page(self, panel, tps): |
| 86 | self.AddPage(panel, tps.title, True, wx.NullBitmap ) |
| 87 | panel.set_handler(lambda tps, pan=panel: self.set_title(tps, pan)) |
| 88 | |
| 89 | def set_title(self, tps, panel): |
| 90 | title = tps.title |
no test coverage detected