getpicture.h

来自「雷达资料的处理和应用」· C头文件 代码 · 共 55 行

H
55
字号
// GetPicture.h : header file
/////////////////////////////////////////////////////////////////////////////
#ifndef _GETPICTURE_H_INCLUDE
#define _GETPICTURE_H_PNCLUDE

class CGetPicture : public CWnd
{
// Construction
public:
	BOOL MainPicture(int x_cen,int y_cen,float radio,CDC*pDC);
	BOOL GetimageData(CFile*file,CDC*pDC);
	BOOL DrawCircle(int x,int y,float radio,CDC*pDC);
	BOOL GetDealiasedData(CFile*file,CDC*pDC);
	CGetPicture();

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CGetPicture)
	//}}AFX_VIRTUAL

// Implementation
public:
	void GetDbzData(CFile *sFile,CDC *pDC);
	void GetVolData(CFile *file,CDC *pDC);
	float CalculateConstant(int tmp, int RainType);
	BOOL ListMultiPicture(CFile*file,CDC*pDC);
	BOOL DrawColorTable(int x_top,int y_top,
		COLORREF*ColorIndex,
		CString*strIndex,
		CDC*pDC);
	
	virtual ~CGetPicture();

	// Generated message map functions
protected:
	int m_iRadarMode;
	CFileDialog* m_dlgFile;	
	float* m_Buff;
	char m_Head[384];
	//{{AFX_MSG(CGetPicture)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	BOOL ShowRadarReference(int x_top,int y_top,CDC*pDC);
};

/////////////////////////////////////////////////////////////////////////////
#endif // _GETPICTURE_H_INCLUDE

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?