handleInput abstract method

ResponseInput handleInput(
  1. InputEvent event
)

Processes a raw input event and returns a response.

This method is called when wantsInput is true and the component is focused. It allows for low-level input processing.

event: The input event to process (key press, mouse event, etc.) Returns a ResponseInput indicating how the event was handled and any resulting commands or rendering needs.

Implementation

ResponseInput handleInput(InputEvent event);