mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
22 lines
435 B
C++
22 lines
435 B
C++
#ifndef PLUGINSITEM_H
|
|
#define PLUGINSITEM_H
|
|
|
|
#include "dockitem.h"
|
|
#include "pluginsiteminterface.h"
|
|
|
|
class PluginsItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PluginsItem(PluginsItemInterface* const pluginInter, const QString &itemKey, QWidget *parent = 0);
|
|
|
|
private:
|
|
PluginsItemInterface * const m_pluginInter;
|
|
const QString m_itemKey;
|
|
|
|
PluginsItemInterface::PluginType m_type;
|
|
};
|
|
|
|
#endif // PLUGINSITEM_H
|