Form delegates in your settings pages
Create elegant custom settings pages.
Kirigami Addons is an additional set of visual components that work well on mobile and desktop and are guaranteed to be cross-platform. It uses Kirigami under the hood to create its components.
You have learned how to add About and AboutKDE pages to your application. Now you will be able to use their same inner components to create your settings pages.
The project structure should look like this:
Needed Changes
Add a new line to our resources.qrc
:
Ah ah ah
This file is not available.
And change main.qml
to include our new Settings page:
We can now start checking out the components used to create our Settings page: the Form Card and its Delegates.
Form Delegates
FormCard and FormCardPage
Create a new contents/ui/SettingsPage.qml
file:
The nice thing about the form card page is that it comes with an internal layout, so no additional ColumnLayout is needed and our delegates can be added directly to it.
FormHeader
FormTextDelegate and FormSectionText
Let's start simple, with plain text.
FormSectionText
simply adds a thin delegate containing a label. FormTextDelegate
has text and a grayed out description.
It should end up looking like this:
FormButtonDelegate
While the FormTextDelegate had the leading
and trailing
properties to show an item before and after the main content, the FormButtonDelegate only has the leading
property, because the right side is occupied by the arrow.
We use its icon.name
property to set a plus (+) icon to appear after the space where the leading
would appear, and before the main content. This is a common pattern to indicate your button will add something to a list.
Since this example is for simple illustrative purposes, we don't delve deep into what would be done once the button is clicked: it just prints "Clicked!" to the terminal. We could make a new page for account creation that adds another user to a model, then push the page into view, similarly to what we did in main.qml
.
FormRadioDelegate, FormCheckDelegate and FormSwitchDelegate
We bind the visibility of each radio button to a switch, so they only appear when the switch is enabled.
Best Practices
So far our application should look like this:
FormComboBoxDelegate
This combobox has several useful properties we can make use of: editable
, displayText
and displayMode
.
Setting editable: true
allows the user to edit the text of the combobox, which is useful in case adding new combobox options is needed:
Whenever you need to show additional text before each option, you can use something like displayText: "Profile: " + currentText
:
And the most interesting one, which we will be using in our example, is displayMode
. It can have three options:
FormComboBoxDelegate.ComboBox: the standard small box showing a list of options.
FormComboBoxDelegate.Page: a new page containing a list of options shown in a separate window.
Add the following between the "Current Color Scheme" and "Show Tray Icon" delegates in your "General" form card.
With the checkbox, our Settings page should look like this:
FormDelegateSeparator
Our Settings page is taking shape, but each section is starting to get long. We can add a few FormDelegateSeparators to make our page tidier:
Ah ah ah
This file is not available.
Generally, you may use separators whenever you see major distinctions between components, although the choice of where to place them is ultimately yours. For example, in the General section, the checkbox differs from its previous components as it doesn't start with text; in the Autosave section, the separator groups the radio buttons together; and in the Accounts section, adding a separator between the last account and the button provides some additional focus to the button.
The above
and below
properties are rather self-explanatory when it comes to their use: you pass the id
of the components above and below the separator. When they are set, the separator will swiftly disappear whenever the above or below item is highlighted/hovered. They are most useful, for instance, when you need to generate components dynamically and you can't automatically assume which item will come immediately before or after the separator. That would be the case in the Accounts section of our application once the logic to add new accounts were actually implemented, in which case we could always grab the last item in the model to do so.
Notice how the separator above the tray icon setting does not appear while it is hovered.
Last updated