filterdlg.h

来自「c语言实现的遥感图像处理的一些基本操作」· C头文件 代码 · 共 75 行

H
75
字号
#if !defined(AFX_FILTERDLG_H__90E12662_7F4F_4B7B_984E_71E7400A5944__INCLUDED_)
#define AFX_FILTERDLG_H__90E12662_7F4F_4B7B_984E_71E7400A5944__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// FilterDlg.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CFilterDlg dialog
#include "AutoCompletionComboBox.h"

class CFilterDlg : public CDialog
{
// Construction
public:
	CFilterDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CFilterDlg)
	enum { IDD = IDD_FILTER };
	CAutoCompletionComboBox	m_ComboBox;
	int		m_edit1;
	int		m_edit2;
	int		m_edit3;
	int		m_edit4;
	int		m_edit5;
	int		m_edit6;
	int		m_edit7;
	int		m_edit8;
	int		m_edit9;
	BOOL	m_check;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFilterDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL
public:
   char num[50];
   HANDLE m_hDib;
public:
   BOOL Filter();
   int ComputeMatrix(BYTE Matr1[3][3],char Matr2[3][3]);

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CFilterDlg)
	afx_msg void OnDestroy();
	virtual BOOL OnInitDialog();
	afx_msg void OnCheck1();
	afx_msg void OnChangeEdit1();
	afx_msg void OnChangeEdit2();
	afx_msg void OnChangeEdit3();
	afx_msg void OnChangeEdit4();
	afx_msg void OnChangeEdit5();
	afx_msg void OnChangeEdit6();
	afx_msg void OnChangeEdit7();
	afx_msg void OnChangeEdit8();
	afx_msg void OnChangeEdit9();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_FILTERDLG_H__90E12662_7F4F_4B7B_984E_71E7400A5944__INCLUDED_)

⌨️ 快捷键说明

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