Basic widget events – dragging the stickman

Basic Widget events correspond to touches on the screen. However, the concept of touch in Kivy is broader than might be intuitively assumed. It includes mouse events, finger touches, and magic pen touches. For the sake of simplicity, we will often assume in this chapter that we are using a mouse but it doesn't really change if we were to use a touch screen (and the finger or magic pen instead). The following are the three basic Widget events:

  • on_touch_down: When a new touch starts, for example, the action of clicking a button of the mouse or touching the screen.
  • on_touch_move: When the touch is moved, for example, dragging the mouse or sliding the finger over the screen.
  • on_touch_up: When the touch ends, ...

Get Kivy – Interactive Applications and Games in Python - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.