PointerListener

interface PointerListener

Classes that implement this interface are informed of PointerEvents when they register with a source that fires these events.

Inheritors

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open fun clicked(event: PointerEvent)

Informs listener that the pointer was "clicked": pressed and released inside the same target.

Link copied to clipboard
open fun entered(event: PointerEvent)

Informs listener that the pointer has entered the source.

Link copied to clipboard
open fun exited(event: PointerEvent)

Informs listener that the pointer has exited the source.

Link copied to clipboard
open fun pressed(event: PointerEvent)

Informs listener that the pointer was pressed.

Link copied to clipboard
open fun released(event: PointerEvent)

Informs listener that the pointer was released.