(self, event)
| 291 | self.chromeWindow.GetBrowser().SetClientHandler(handler) |
| 292 | |
| 293 | def OnLeft(self, event): |
| 294 | if self.chromeWindow.GetBrowser().CanGoBack(): |
| 295 | self.chromeWindow.GetBrowser().GoBack() |
| 296 | self.UpdateButtonsState() |
| 297 | self.chromeWindow.GetBrowser().SetFocus(True) |
| 298 | |
| 299 | def OnRight(self, event): |
| 300 | if self.chromeWindow.GetBrowser().CanGoForward(): |
nothing calls this directly
no test coverage detected