Warning, /plasma/plasma-workspace/applets/keyboardindicator/plugin/autotests/lockedtest.qml is written in an unsupported language. File is not indexed.
0001 /* 0002 SPDX-FileCopyrightText: 2024 Fushan Wen <qydwhotmail@gmail.com> 0003 0004 SPDX-License-Identifier: MIT 0005 */ 0006 0007 import QtQuick.Controls as QQC 0008 import org.kde.plasma.private.keyboardindicator as KI 0009 0010 QQC.Label { 0011 text: capsLockState.locked ? "locked" : "unlocked" 0012 KI.KeyState { 0013 id: capsLockState 0014 key: Qt.Key_CapsLock 0015 } 0016 }