KCMLauncher QML Type
Import Statement: | import org.kde.kcmutils |
Methods
- void open(list<string> names)
- void openInfoCenter(string name)
(since 5.71)
- void openSystemSettings(string name, list<string> args)
(since 5.71)
Detailed Description
This is a QML singleton.
Method Documentation
void open(list<string> names) |
|
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.
|
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.