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.
nmWATI/Include/iPlot/iPlotBase/ZxSubAxisX.h

28 lines
458 B
C

#pragma once
#include "ZxSubAxisBase.h"
// 坐标轴X
class I_PLOTBASE_EXPORT ZxSubAxisX : public ZxSubAxisBase
{
Q_OBJECT
ZX_DECLARE_DYNAMIC
public:
ZxSubAxisX();
ZxSubAxisX(const QString& name);
ZxSubAxisX(const ZxSubAxisX & c);
public:
virtual void paintBack(QPainter* painter, const ZxPaintParam& param);
virtual double getValueForPos(double fPos) const;
virtual double getPosForValue(double fVal) const;
};