/* SPDX-FileCopyrightText: 2023 Marco Martin SPDX-License-Identifier: GPL-2.0-or-later */ #include #include #include #include int main(int argc, char **argv) { QGuiApplication app(argc, argv); const QStringList actionNames{ QStringLiteral("ShowDesktopGrid"), QStringLiteral("Expose"), QStringLiteral("ExposeAll"), QStringLiteral("ExposeClass"), QStringLiteral("ExposeClassCurrentDesktop"), }; for (const QString &actionName : actionNames) { QAction action; action.setObjectName(actionName); action.setProperty("componentName", QStringLiteral("kwin")); action.setProperty("componentDisplayName", QStringLiteral("KWin")); KGlobalAccel::self()->setShortcut(&action, {QKeySequence()}, KGlobalAccel::NoAutoloading); KGlobalAccel::self()->removeAllShortcuts(&action); } return 0; }