Controls and interactive elements
Make your apps more interactive by using buttons, selection controls, sliders, and text fields.
Last updated
Make your apps more interactive by using buttons, selection controls, sliders, and text fields.
Last updated
Kirigami makes use of a wide selection of different interactive elements from Qt that you can use in your applications. Each different type has slightly different interaction styles, visual styles, and functionality. Using the right type of control in your application can help make your user interface more responsive and intuitive.
In Kirigami apps, we use buttons from QtQuick Controls. Using them is pretty straightforward: we set the text to the property and any action we want it to perform is set to the property.
In this example, we set the visibility of an inline drawer according to the status of a toggleable button:
Selection controls let users make a choice or pick an option. There are different types that are best suited to different situations.
Radio buttons are exclusive by default: only one button can be checked in the same parent item.
Sliders allow users to select certain values by sliding a handle along a track. There are several types that you can choose from depending on the values you'd like your users to choose in your application.
In Left to Right mode, sliders go left to right to increase when in horizontal orientation, while in Right to Left mode they go in the reverse direction. In both modes, sliders in vertical orientation go from the bottom up.
The coloration provides a visual indicator of how large the value you are selecting is.
Sliders have a few important properties we must pay attention to:
The behavior of buttons can be changed to make them toggleable: in this mode, they will stay pressed until clicked on once more. This mode can be activated by setting their property to true
; we can also set buttons to be toggled on by default by setting to true
.
We can get the most out of toggleable buttons by using the onCheckedChanged
signal handler which is from the signal. It works similarly to onClicked
, except here the assigned action will be executed when the button's state changes. It is a boolean property, which can come in handy for specific use cases.
There is a specific button type meant for use in toolbars, . The most obvious difference between this and a conventional is the styling, with toolbuttons being flat (though this is alterable with the boolean property ).
A is meant for options where the choices are non-exclusive and where each option has a clear alternative.
As you can see, they are simple to use. The property holds a boolean value determining whether or not they have been checked.
A is designed for situations where the user must choose one option from a set of several options.
Like checkboxes, they can be set to be checked or unchecked by default with the property.
On the desktop, changing settings usually involves changing the setting and then applying it by clicking on an "Apply" or "OK" button. On mobile, we can use a instead.
Switches can be toggled between an on and off state. They can be toggled by clicking or tapping on them, or they can be dragged towards the on or off position. Once again, switches can be set to be on or off by default with the property.
A standard provides the user with very fine control over the selection they wish to make.
: contains the value at which the handle is placed, and can also be set manually to provide a default starting value
: defines the range of the slider by specifying the maximum value it can go to
: allows the slider to be set to a vertical orientation with
Another useful property we can use is . Setting this to a numerical value allows us to create a slider that snaps onto values that are multiples of the specified stepSize
, with these multiples being indicated by tickmarks. Therefore if we set this property to 2.0
, when the user drags the slider handle, they will only be able to select 0.0
, 2.0
, 4.0
, etc. up to the value specified in the to
property.
QtQuick Controls also provides . These have two handles, hence allowing you to define a range of numbers between the two handles.
Two new properties are important to keep in mind: and , which hold the values of the two handles. Like the property of the standard sliders, these can be pre-set.