events.py 395 B

12345678910111213141516171819202122
  1. from event import Event
  2. class PointDownEvent(Event):
  3. """
  4. Addition of a simple touch point to the screen.
  5. """
  6. _type = 'point_down'
  7. class PointMoveEvent(Event):
  8. """
  9. Movement of a simple touch point from the screen.
  10. """
  11. _type = 'point_move'
  12. class PointUpEvent(Event):
  13. """
  14. Removal of a simple touch point from the screen.
  15. """
  16. _type = 'point_up'