You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
434 B
23 lines
434 B
/* |
|
SPDX-FileCopyrightText: 2014 Eike Hein <hein@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <QObject> |
|
|
|
class MenuEntryEditor : public QObject |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit MenuEntryEditor(QObject *parent = nullptr); |
|
~MenuEntryEditor() override; |
|
|
|
bool canEdit(const QString &entryPath) const; |
|
|
|
public Q_SLOTS: |
|
void edit(const QString &entryPath, const QString &menuId); |
|
};
|
|
|