(self, event)
| 513 | ##==> MOVING THE PROGRAM |
| 514 | #################################################### |
| 515 | def moveWindow(self, event): |
| 516 | if event.buttons() == Qt.LeftButton: |
| 517 | self.move(self.pos() + event.globalPos() - self.dragPos) |
| 518 | self.dragPos = event.globalPos() |
| 519 | event.accept() |
| 520 | |
| 521 | def mousePressEvent(self, event): |
| 522 | self.dragPos = event.globalPos() |
nothing calls this directly
no outgoing calls
no test coverage detected