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.
32 lines
566 B
C++
32 lines
566 B
C++
#pragma once
|
|
|
|
#include "iGuiPlotCmdHelper.h"
|
|
|
|
class ZxObjWmPointTool;
|
|
class ZxObjWmLineTool;
|
|
|
|
// 该类是iGuiPlot的Cmd命令分发处理
|
|
class M_GUI_PLOT_EXPORT iGuiPlotMapCmdHelper
|
|
: public iGuiPlotCmdHelper
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit iGuiPlotMapCmdHelper(iGuiPlot* p);
|
|
~iGuiPlotMapCmdHelper();
|
|
|
|
virtual bool runAction(QString sAction);
|
|
|
|
public slots:
|
|
|
|
void slotObjFinished();
|
|
void slotPointsHit(QVector<QPointF> vec);
|
|
|
|
protected:
|
|
|
|
ZxObjWmPointTool* m_pTool1;
|
|
ZxObjWmLineTool* m_pTool2;
|
|
|
|
friend class iGuiPlot;
|
|
};
|