Important Concepts In Qt Quick - User Input#

Overview of user input concepts

Being able to respond to user-input is a fundamental part of user-interface design. Depending on the use-case that an application solves, and the form-factor of the device that the application runs on, the best way to receive user-input may be different.

Input from Pointing Devices#

Allowing users to physically touch a screen to interact with an application is a popular user-interface paradigm on portable devices like smartphones and tablets. In desktop applications, detecting and reacting to clicks and presses according to the mouse cursor position is a fundamental concept in user-interface design.

Touch-driven and mouse-driven user interfaces are supported by various input handler types, and visual object types such as Flickable and MouseArea .

See also the documentation about mouse events in Qt Quick .

Keyboard Input and Keyboard Focus#

Supporting input from a keyboard is a vital component of the user interface of many applications.

Any visual item can receive keyboard input through the Keys attached type. Additionally, the issue of keyboard focus arises when multiple items are required to receive key events, as these events must be passed to the correct item. See the documentation about Keyboard focus in Qt Quick for more information on this topic.

Qt Quick also provides visual text items which automatically receive keyboard events and key-presses, and displays the appropriate text. See the documentation about text input for in-depth information on the topic.