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.
26 lines
440 B
C++
26 lines
440 B
C++
#pragma once
|
|
|
|
#include "ZxAxisHelper.h"
|
|
|
|
// 字符串类
|
|
class I_PLOTBASE_EXPORT ZxAxisHelperStr : public ZxAxisHelper
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ZxAxisHelperStr(ZxSubAxisBase* p);
|
|
~ZxAxisHelperStr();
|
|
|
|
protected:
|
|
|
|
// 绘制函数
|
|
virtual void drawTickAndTags(QPainter* painter, QRectF& rt);
|
|
|
|
// 取得待显示的刻度文本标识
|
|
virtual QMap<float, QString> getTickInfos();
|
|
|
|
public slots:
|
|
|
|
protected:
|
|
};
|