(self)
| 833 | # Show or hide the application window after clicking an item within the |
| 834 | # tray icon or, on Windows, the try icon itself. |
| 835 | def appIndicatorShowOrHideWindow(self): |
| 836 | if not self.actionShow.isChecked(): |
| 837 | self.hide() |
| 838 | else: |
| 839 | self.show() |
| 840 | self.setWindowState( |
| 841 | self.windowState() & ~QtCore.Qt.WindowMinimized | QtCore.Qt.WindowActive) |
| 842 | self.raise_() |
| 843 | self.activateWindow() |
| 844 | |
| 845 | # show the application window |
| 846 | def appIndicatorShow(self): |
no outgoing calls
no test coverage detected