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

32 lines
701 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);
// 坐标数值转换(屏幕坐标与实际坐标)
// 注意Value表示实际坐标、Pos表示屏幕坐标
// getValueForPos: 已知屏幕坐标,求实际坐标
// getPosForValue: 已知实际坐标,求屏幕坐标
virtual double getValueForPos(double dPos) const;
virtual double getPosForValue(double dVal) const;
};