Files
peony/plugin/menuplugin.h

69 lines
1.9 KiB
C
Raw Permalink Normal View History

2019-12-09 11:08:56 +08:00
/*
* Peony-Qt's Extension
*
* Copyright (C) 2019, Tianjin KYLIN Information Technology Co., Ltd.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library. If not, see <https://www.gnu.org/licenses/>.
*
* Authors: Yue Lan <lanyue@kylinos.cn>
*
*/
2019-06-21 15:21:09 +08:00
#ifndef MENUPLUGIN_TEST1
#define MENUPLUGIN_TEST1
#include <QObject>
#include <QtPlugin>
#include "menu-plugin-iface.h"
2019-06-21 15:21:09 +08:00
namespace Peony {
class MenuPluginTest1 : public QObject, public MenuPluginInterface
2019-06-21 15:21:09 +08:00
{
Q_OBJECT
Q_PLUGIN_METADATA(IID MenuPluginInterface_iid FILE "menuplugintest1.json")
//Q_PLUGIN_METADATA(IID MenuInterface_iid)
Q_INTERFACES(Peony::MenuPluginInterface)
2019-06-21 15:21:09 +08:00
public:
2020-05-18 17:03:35 +08:00
PluginInterface::PluginType pluginType() override {
return PluginInterface::MenuPlugin;
}
const QString name() override {
return "testMenuPlugin1";
}
const QString description() override {
return "This is a menu type test plugin";
}
const QIcon icon() override {
return QIcon::fromTheme("search");
}
void setEnable(bool enable) override {
m_enable = enable;
}
bool isEnable() override {
return m_enable;
}
2019-09-03 14:13:49 +08:00
2019-06-21 15:21:09 +08:00
QString testPlugin() override;
QList<QAction *> menuActions(Types types, const QString &uri, const QStringList &selectionUris) override;
2019-09-03 14:13:49 +08:00
private:
bool m_enable;
2019-06-21 15:21:09 +08:00
};
}
2019-06-21 15:21:09 +08:00
#endif