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.
27 lines
457 B
C++
27 lines
457 B
C++
#pragma once
|
|
|
|
#include "ZxObjRectTool.h"
|
|
|
|
// 文本工具
|
|
class I_PLOTCURVE_T_EXPORT ZxObjTextTool : public ZxObjRectTool
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
ZxObjTextTool();
|
|
//ZxObjTextTool(const ZxObjTextTool & c);
|
|
|
|
protected:
|
|
|
|
//virtual bool onLeftDown(const QPointF& pt);
|
|
virtual bool onLeftUp(const QPointF& pt);
|
|
//virtual bool onMouseMove(const QPointF& pt);
|
|
virtual void onPaint(QPainter* painter, const ZxPaintParam& param);
|
|
|
|
};
|
|
|
|
|
|
|
|
|