00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _CHARTLOGARITHMICAXIS_H_
00023 #define _CHARTLOGARITHMICAXIS_H_
00024
00025 #include "ChartAxis.h"
00026
00028
00032 class CChartLogarithmicAxis : public CChartAxis
00033 {
00034 friend CChartCtrl;
00035
00036 private:
00038 CChartLogarithmicAxis();
00040 ~CChartLogarithmicAxis();
00041
00042 double ScreenToValue(long ScreenVal) const;
00043 void PanAxis(long PanStart, long PanEnd);
00044
00045 double GetFirstTickValue() const;
00046 bool GetNextTickValue(double dCurrentTick, double& dNextTick) const;
00047 TChartString GetTickLabel(double TickValue) const;
00048 long ValueToScreenStandard(double Value) const;
00049 long ValueToScreenDiscrete(double Value) const;
00050 long GetTickPos(double TickVal) const;
00051
00052 void RefreshTickIncrement();
00053 void RefreshFirstTick();
00054
00055 void GetScrollbarSteps(int& iTotalSteps, int& iCurrentStep);
00056 void SetAxisToScrollStep(int iPreviousStep, int iCurrentStep, bool bScrollInverted);
00057
00059 double m_dFirstTickValue;
00060 };
00061
00062 #endif // _CHARTLOGARITHMICAXIS_H_