Warning, /utilities/kdebugsettings/src/quickapps/contents/ui/ActionMenuItem.qml is written in an unsupported language. File is not indexed.
0001 // SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0002 // SPDX-License-Identifier: LGPL-2.0-or-later 0003 0004 import QtQuick 2.15 0005 import Qt.labs.platform 1.1 as Platform 0006 0007 Platform.MenuItem { 0008 required property var action 0009 0010 checkable: action.checkable 0011 checked: action.checked 0012 icon.name: action.icon.name 0013 icon.source: action.icon.source 0014 shortcut: action.shortcut 0015 separator: action.separator 0016 text: action.text 0017 visible: action.visible 0018 onTriggered: action.triggered(this) 0019 }