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