(self)
| 135 | self.animation.start() |
| 136 | |
| 137 | def onAnimationEnd(self): |
| 138 | # 动画结束 |
| 139 | print("onAnimationEnd isShow", self.isShow) |
| 140 | if not self.isShow: |
| 141 | print("onAnimationEnd close()") |
| 142 | self.close() |
| 143 | print("onAnimationEnd stop timer") |
| 144 | self._timer.stop() |
| 145 | print("onAnimationEnd close and emit signal") |
| 146 | self.SignalClosed.emit() |
| 147 | |
| 148 | def enterEvent(self, event): |
| 149 | super(WindowNotify, self).enterEvent(event) |