2025-03-14 15:07:39 +08:00
|
|
|
#ifndef CHangPanelPluginWidget_H
|
|
|
|
|
#define CHangPanelPluginWidget_H
|
|
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include "GraphShape/CPluginWidget.h" //< ISCS6000_HOME/platform/src/include/gui/GraphShape
|
|
|
|
|
|
|
|
|
|
class CHangPanelPluginWidget : public QObject, public CPluginWidgetInterface
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
Q_PLUGIN_METADATA(IID "kbd.PluginWidgetInterface/1.0")
|
|
|
|
|
Q_INTERFACES(CPluginWidgetInterface)
|
|
|
|
|
public:
|
|
|
|
|
CHangPanelPluginWidget(QObject *parent = 0);
|
|
|
|
|
|
|
|
|
|
~CHangPanelPluginWidget();
|
|
|
|
|
|
|
|
|
|
bool createWidget(QWidget *parent, bool editMode, QWidget **widget, IPluginWidget **pTrendWindow, QVector<void *> ptrVec);
|
|
|
|
|
void release();
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // CHangPanelPluginWidget_H
|