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.
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "ZxObjRectTool.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 矩形tool
|
|
|
|
|
class I_PLOTCURVE_T_EXPORT ZxObjImageTool : public ZxObjRectTool
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
ZxObjImageTool();
|
|
|
|
|
// ~ZxObjImageTool();
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
virtual void onPaint(QPainter* painter,
|
|
|
|
|
const ZxPaintParam& param);
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|