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.
|
|
|
|
#pragma once
|
|
|
|
|
#include "Resource.h"
|
|
|
|
|
|
|
|
|
|
// CDlgDemAlt <20>Ի<EFBFBD><D4BB><EFBFBD>
|
|
|
|
|
|
|
|
|
|
class CDlgDemAlt : public CBCGPDialog
|
|
|
|
|
{
|
|
|
|
|
DECLARE_DYNAMIC(CDlgDemAlt)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
CDlgDemAlt(CWnd* pParent = NULL); // <20><><EFBFBD><D7BC><EFBFBD>캯<EFBFBD><ECBAAF>
|
|
|
|
|
virtual ~CDlgDemAlt();
|
|
|
|
|
|
|
|
|
|
// <20>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
enum { IDD = IDD_DIALOG_DEMALT };
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV ֧<><D6A7>
|
|
|
|
|
|
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
virtual BOOL OnInitDialog();
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
CBCGPChartCtrl m_wndChart;
|
|
|
|
|
CBCGPChartVisualObject* pChart;
|
|
|
|
|
|
|
|
|
|
CBCGPChartAxis* pXAxis;
|
|
|
|
|
CBCGPChartAxis* pYAxis;
|
|
|
|
|
|
|
|
|
|
CBCGPChartSeries* pSeries1;
|
|
|
|
|
CBCGPChartSeries* pSeries2;
|
|
|
|
|
|
|
|
|
|
void DrawDemAltBetweenPts(double* ptLon, double* ptLat, int ptNumber);
|
|
|
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
|
|
|
afx_msg void OnClose();
|
|
|
|
|
};
|