You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
532 B
C++
30 lines
532 B
C++
#pragma once
|
|
|
|
#include "iGuiPlotCmdHelper.h"
|
|
|
|
// 该类是iGuiPlot的Cmd命令分发处理
|
|
class M_GUI_PLOT_EXPORT iGuiPlotBdyCmdHelper
|
|
: public iGuiPlotCmdHelper
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit iGuiPlotBdyCmdHelper(iGuiPlot* p);
|
|
~iGuiPlotBdyCmdHelper();
|
|
|
|
virtual bool runAction(QString sAction);
|
|
|
|
signals:
|
|
//属性显示信号
|
|
void sigShowProperty();
|
|
public slots:
|
|
|
|
void slotObjFinished();
|
|
//属性是否显示
|
|
virtual void slotShowProperty();
|
|
|
|
protected:
|
|
|
|
friend class iGuiPlot;
|
|
};
|