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.
nmWATI/Include/iPlot/iPlotCurveT/Objects/ZxObjCurveDiscreteTool.h

30 lines
569 B
C

#pragma once
#include "Defines.h"
#include "ZxObjCurveBaseTool.h"
// 散点曲线工具
class I_PLOTCURVE_T_EXPORT ZxObjCurveDiscreteTool : public ZxObjCurveBaseTool
{
Q_OBJECT
public:
ZxObjCurveDiscreteTool();
protected:
bool onLeftDown(const QPointF& pt);
bool onLeftUp(const QPointF& pt);
bool onMouseMove(const QPointF& pt);
virtual void onPaint(QPainter* painter, const ZxPaintParam& param);
protected:
virtual Qt::CursorShape getCursorBy(const int& nOption,
const int& nSubIndex);
};