MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / mouseMoveEvent

Method mouseMoveEvent

lib/matplotlib/backends/backend_qt.py:344–351  ·  view source on GitHub ↗
(self, event)

Source from the content-addressed store, hash-verified

342 guiEvent=event)._process()
343
344 def mouseMoveEvent(self, event):
345 if self.figure is None:
346 return
347 MouseEvent("motion_notify_event", self,
348 *self.mouseEventCoords(event),
349 buttons=self._mpl_buttons(event.buttons()),
350 modifiers=self._mpl_modifiers(),
351 guiEvent=event)._process()
352
353 def mouseReleaseEvent(self, event):
354 button = self.buttond.get(event.button())

Callers

nothing calls this directly

Calls 5

mouseEventCoordsMethod · 0.95
_mpl_buttonsMethod · 0.95
_mpl_modifiersMethod · 0.95
MouseEventClass · 0.90
_processMethod · 0.80

Tested by

no test coverage detected