Method
__init__
(self, name, canvas, mouseevent, artist,
guiEvent=None, **kwargs)
Source from the content-addressed store, hash-verified
| 1485 | """ |
| 1486 | |
| 1487 | def __init__(self, name, canvas, mouseevent, artist, |
| 1488 | guiEvent=None, **kwargs): |
| 1489 | if guiEvent is None: |
| 1490 | guiEvent = mouseevent.guiEvent |
| 1491 | super().__init__(name, canvas, guiEvent) |
| 1492 | self.mouseevent = mouseevent |
| 1493 | self.artist = artist |
| 1494 | self.__dict__.update(kwargs) |
| 1495 | |
| 1496 | |
| 1497 | class KeyEvent(LocationEvent): |
Callers
nothing calls this directly
Tested by
no test coverage detected