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.
23 lines
377 B
C++
23 lines
377 B
C++
#pragma once
|
|
|
|
#include "ZxAxisHelperFloat.h"
|
|
|
|
// 线性类
|
|
class I_PLOTBASE_EXPORT ZxAxisHelperFloatLinear : public ZxAxisHelperFloat
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ZxAxisHelperFloatLinear(ZxSubAxisBase* p);
|
|
~ZxAxisHelperFloatLinear();
|
|
|
|
protected:
|
|
|
|
// 绘制函数
|
|
virtual void drawTickAndTags(QPainter* painter, QRectF& rt);
|
|
|
|
public slots:
|
|
|
|
protected:
|
|
};
|