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:

GridViewKCM and ScrollViewKCM

Properties

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 [default: false]

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 [default: true]

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 [default: true]

Whether to use this component as the base of a "framed" KCM with an inner scrollview that draws its own frame.


headerPaddingEnabled : bool [default: true]

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 [read-only]


sidebarMode : bool