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/ZxSubAxisY.h

37 lines
815 B
C

#pragma once
#include "ZxSubAxisBase.h"
// 坐标轴Y
class I_PLOTBASE_EXPORT ZxSubAxisY : public ZxSubAxisBase
{
Q_OBJECT
ZX_DECLARE_DYNAMIC
public:
ZxSubAxisY();
ZxSubAxisY(const QString& name);
ZxSubAxisY(const ZxSubAxisY& c);
public:
virtual void paintBack(QPainter* painter, const ZxPaintParam& param);
// virtual void onSerialize(ZxSerializer* ser);
// virtual void onDeserialize(ZxSerializer* ser);
// 坐标数值转换(屏幕坐标与实际坐标)
// 注意Value表示实际坐标、Pos表示屏幕坐标
// getValueForPos: 已知屏幕坐标,求实际坐标
// getPosForValue: 已知实际坐标,求屏幕坐标
virtual double getValueForPos(double dPos) const;
virtual double getPosForValue(double dVal) const;
private:
};