(self, event)
| 278 | self.browser.NotifyMoveOrResizeStarted() |
| 279 | |
| 280 | def resizeEvent(self, event): |
| 281 | size = event.size() |
| 282 | if self.browser: |
| 283 | if WINDOWS: |
| 284 | WindowUtils.OnSize(self.getHandle(), 0, 0, 0) |
| 285 | elif LINUX: |
| 286 | self.browser.SetBounds(self.x, self.y, |
| 287 | size.width(), size.height()) |
| 288 | self.browser.NotifyMoveOrResizeStarted() |
| 289 | |
| 290 | |
| 291 | class CefApplication(QApplication): |