mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 07:35:54 +00:00
24 lines
434 B
C++
24 lines
434 B
C++
/*
|
|
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);
|
|
};
|