(self)
| 628 | self.window.showFullScreen() |
| 629 | |
| 630 | def _widgetclosed(self): |
| 631 | CloseEvent("close_event", self.canvas)._process() |
| 632 | if self.window._destroying: |
| 633 | return |
| 634 | self.window._destroying = True |
| 635 | try: |
| 636 | Gcf.destroy(self) |
| 637 | except AttributeError: |
| 638 | pass |
| 639 | # It seems that when the python session is killed, |
| 640 | # Gcf can get destroyed before the Gcf.destroy |
| 641 | # line is run, leading to a useless AttributeError. |
| 642 | |
| 643 | def resize(self, width, height): |
| 644 | # The Qt methods return sizes in 'virtual' pixels so we do need to |
nothing calls this directly
no test coverage detected