mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
quicksettings: Add vkbd toggle quicksetting
This commit is contained in:
parent
0cf909d51a
commit
f8a7c1e4e3
3 changed files with 49 additions and 0 deletions
|
|
@ -3,5 +3,6 @@
|
|||
|
||||
plasma_install_package(airplanemode org.kde.plasma.airplanemode quicksettings)
|
||||
plasma_install_package(caffeine org.kde.plasma.caffeine quicksettings)
|
||||
plasma_install_package(keyboardtoggle org.kde.plasma.keyboardtoggle quicksettings)
|
||||
add_subdirectory(nightcolor)
|
||||
add_subdirectory(powermenu)
|
||||
|
|
|
|||
29
quicksettings/keyboardtoggle/contents/ui/main.qml
Normal file
29
quicksettings/keyboardtoggle/contents/ui/main.qml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <aleixpol@kde.org>
|
||||
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
import org.kde.plasma.private.mobileshell 1.0 as MobileShell
|
||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||
import org.kde.plasma.workspace.keyboardlayout 1.0 as Keyboards
|
||||
|
||||
MobileShell.QuickSetting {
|
||||
text: i18n("Virtual Keyboard")
|
||||
icon: "input-keyboard-virtual"
|
||||
status: enabled ? i18n("On") :
|
||||
(Keyboards.KWinVirtualKeyboard.available ? i18n("Off") : i18n("Tap to open settings"))
|
||||
enabled: Keyboards.KWinVirtualKeyboard.enabled && Keyboards.KWinVirtualKeyboard.available
|
||||
settingsCommand: "plasma-open-settings kcm_mobile_onscreenkeyboard"
|
||||
|
||||
function toggle() {
|
||||
if (!Keyboards.KWinVirtualKeyboard.available) {
|
||||
// select a keyboard in the settings (none is likely set)
|
||||
MobileShell.ShellUtil.executeCommand("plasma-open-settings kcm_virtualkeyboard");
|
||||
} else {
|
||||
Keyboards.KWinVirtualKeyboard.enabled = !enabled;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
19
quicksettings/keyboardtoggle/metadata.desktop
Normal file
19
quicksettings/keyboardtoggle/metadata.desktop
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
[Desktop Entry]
|
||||
Name=Virtual Keyboard Toggle
|
||||
Icon=input-keyboard-virtual
|
||||
|
||||
Type=Service
|
||||
X-KDE-ServiceTypes=KPackage/GenericQML
|
||||
|
||||
X-KDE-PluginInfo-Author=Devin Lin
|
||||
X-KDE-PluginInfo-Email=devin@kde.org
|
||||
X-KDE-PluginInfo-Name=org.kde.plasma.keyboardtoggle
|
||||
X-KDE-PluginInfo-Version=0.1
|
||||
X-KDE-PluginInfo-Website=https://kde.org
|
||||
X-KDE-PluginInfo-License=GPL
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in a new issue