MCPcopy Index your code
hub / github.com/PyQt5/PyQt / wheelEvent

Method wheelEvent

QGraphicsView/ImageView.py:114–118  ·  view source on GitHub ↗
(self, event)

Source from the content-addressed store, hash-verified

112 self.centerOn(rect.center())
113
114 def wheelEvent(self, event):
115 if event.angleDelta().y() > 0:
116 self.zoomIn()
117 else:
118 self.zoomOut()
119
120 def zoomIn(self):
121 """放大"""

Callers

nothing calls this directly

Calls 3

zoomInMethod · 0.95
zoomOutMethod · 0.95
yMethod · 0.80

Tested by

no test coverage detected