KCMLauncher QML Type

Import Statement: import org.kde.kcmutils

Methods

Detailed Description

This is a QML singleton.

Method Documentation

void open(list<string> names)


[since 5.71] void openInfoCenter(string name)

Opens the specified module in InfCenter. Only a single KCM name may be provided.

import QtQuick.Controls as QQC2
import org.kde.kcmutils as KCMUtils
QQC2.Button {
    onClicked: KCMUtils.KCMLauncher.openInfoCenter("kcm_energy")
}

name A single kcm name to open in Info Center. Opening multiple KCMs using this function is not supported; to do that, use KCMLauncher.open().

This method was introduced in 5.71.


[since 5.71] void openSystemSettings(string name, list<string> args = [])

Opens the specified module in System Settings. Only a single KCM name may be provided.

import QtQuick.Controls as QQC2
import org.kde.kcmutils as KCMUtils

QQC2.Button {
    onClicked: KCMUtils.KCMLauncher.openSystemSettings("kcm_kscreen")
}

name A single kcm name to open in System Settings. Opening multiple KCMs using this function is not supported; to do that, use KCMLauncher.open(). args Additional arguments to pass to the module.

This method was introduced in 5.71.