(self, event)
| 220 | self.draw() |
| 221 | |
| 222 | def OnClose(self, event): |
| 223 | self.mainFrame.Unbind(GE.FIT_RENAMED, handler=self.OnFitRenamed) |
| 224 | self.mainFrame.Unbind(GE.FIT_CHANGED, handler=self.OnFitChanged) |
| 225 | self.mainFrame.Unbind(GE.FIT_REMOVED, handler=self.OnFitRemoved) |
| 226 | self.mainFrame.Unbind(GE.TARGET_PROFILE_RENAMED, handler=self.OnProfileRenamed) |
| 227 | self.mainFrame.Unbind(GE.TARGET_PROFILE_CHANGED, handler=self.OnProfileChanged) |
| 228 | self.mainFrame.Unbind(GE.TARGET_PROFILE_REMOVED, handler=self.OnProfileRemoved) |
| 229 | self.mainFrame.Unbind(RESIST_MODE_CHANGED, handler=self.OnResistModeChanged) |
| 230 | self.mainFrame.Unbind(GE.GRAPH_OPTION_CHANGED, handler=self.OnGraphOptionChanged) |
| 231 | self.mainFrame.Unbind(GE.EFFECTIVE_HP_TOGGLED, handler=self.OnEffectiveHpToggled) |
| 232 | event.Skip() |
| 233 | |
| 234 | def getView(self, idx=None): |
| 235 | if idx is None: |
nothing calls this directly
no outgoing calls
no test coverage detected