mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

加载pluginmanager插件,其他的插件由pluginmanager插件来加载 Log: Influence: 插件加载 Task: https://pms.uniontech.com/task-view-222353.html Change-Id: Ibe3cb59c5e3da27d7547d9bea8e05ebcd03c5a87
17 lines
335 B
C++
17 lines
335 B
C++
#ifndef CUSTOMEVENT_H
|
|
#define CUSTOMEVENT_H
|
|
|
|
#include <QEvent>
|
|
|
|
// 该插件用于处理插件的延迟加载,当退出安全模式后,会收到该事件并加载插件
|
|
class PluginLoadEvent : public QEvent
|
|
{
|
|
public:
|
|
PluginLoadEvent();
|
|
~PluginLoadEvent() override;
|
|
|
|
static Type eventType();
|
|
};
|
|
|
|
#endif // CUSTOMEVENT_H
|