dde-dock/frame/item/pluginsitem.h
石博文 2037457bf7 change plugin interface
Change-Id: Ie2e3fd67559cd1af77deec2377c7978ad00364f1
2016-08-02 09:28:06 +08:00

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