AbstractKCM QML Type
This component is intended to be used as root item for KCMs with arbitrary content. More...
Import Statement: | import org.kde.kcmutils |
Since: | 6.0 |
Inherited By: |
Properties
- extraFooterTopPadding : bool
- footerPaddingEnabled : bool
- framedView : bool
- headerPaddingEnabled : bool
- margins : int
- sidebarMode : bool
Detailed Description
Unlike SimpleKCM this does NOT provide a scrollable view, the developer will have to manage their own scrollviews.
Most of the times SimpleKCM should be used instead.
import QtQuick import QtQuick.Controls as QQC2 import QtQuick.Layouts import org.kde.kcmutils as KCMUtils KCMUtils.AbstractKCM { RowLayout { QQC2.ScrollView { } QQC2.ScrollView { } } footer: QQC2.ToolBar { } }
Property Documentation
extraFooterTopPadding : bool |
Whether the footer should have extra space and a separator line drawn above it.
Set this to true in a KCM with a custom footer and a ListView immediately above it.
footerPaddingEnabled : bool |
Whether the contents of the footer will have automatic padding around it.
Should be disabled when using an InlineMessage or custom content item in the footer that's intended to touch the window edges.
framedView : bool |
Whether to use this component as the base of a "framed" KCM with an inner scrollview that draws its own frame.
headerPaddingEnabled : bool |
Whether the contents of the header will have automatic padding around it.
Should be disabled when using an InlineMessage or custom content item in the header that's intended to touch the window edges.
margins : int |
sidebarMode : bool |