(self, event)
| 210 | self.show() |
| 211 | |
| 212 | def focusInEvent(self, event): |
| 213 | # This event seems to never get called on Linux, as CEF is |
| 214 | # stealing all focus due to Issue #284. |
| 215 | if cef.GetAppSetting("debug"): |
| 216 | print("[qt.py] CefWidget.focusInEvent") |
| 217 | if self.browser: |
| 218 | if WINDOWS: |
| 219 | WindowUtils.OnSetFocus(self.getHandle(), 0, 0, 0) |
| 220 | self.browser.SetFocus(True) |
| 221 | |
| 222 | def focusOutEvent(self, event): |
| 223 | # This event seems to never get called on Linux, as CEF is |
nothing calls this directly
no test coverage detected