Quick search

Table Of Contents

Touchring

Shows rings around every touch on the surface / screen. You can use this module to check that you don’t have any calibration issues with touches.

Configuration

Parameters:
image: str, defaults to ‘<kivy>/data/images/ring.png’

Filename of the image to use.

scale: float, defaults to 1.

Scale of the image.

alpha: float, defaults to 1.

Opacity of the image.

show_cursor: boolean, defaults to False

New in version 1.8.0.

cursor_image: str, defaults to

‘atlas://data/images/defaulttheme/slider_cursor’ Image used to represent the cursor if displayed .. versionadded:: 1.8.0

cursor_size: tuple, defaults to (None, None)

Apparent size of the mouse cursor, if displayed, default value will keep its real size. .. versionadded:: 1.8.0

cursor_offset: tuple, defaults to (None, None)

Offset of the texture image. The default value will align the top-left corner of the image to the mouse pos. .. versionadded:: 1.8.0

Example

In your configuration (~/.kivy/config.ini), you can add something like this:

[modules]
touchring = image=mypointer.png,scale=.3,alpha=.7