she.h

来自「又VC++实现的基于TWAIN的扫描仪图像输入处理软件」· C头文件 代码 · 共 58 行

H
58
字号
// SHE.h : header file
#ifndef __CSHEDLG
#define __CSHEDLG

class CSHE : public CDialog
{
public:
	CSHE(CWnd* pParent = NULL);   
    BOOL Create(void);
    void quexiao1();
 	//{{AFX_DATA(CSHE)
	   enum { IDD = IDD_AIE_SHE };
	   CComboBox	m_ctrlDisplay;
	   CComboBox	m_ctrlChannel;
       CString	m_sChannel;

       int		m_nHighLight;
	   int		m_nShade;
       int      m_nCCD;
 	   int		m_nOutHighLight;
	   int		m_nOutShade;

       int		m_nBlackTriXPos;
	   int		m_nWhiteTriXPos;
	   int		m_nGrayTriXPos;  
	//}}AFX_DATA
	//{{AFX_VIRTUAL(CSHE)
	protected:
	  virtual void DoDataExchange(CDataExchange* pDX);  
	//}}AFX_VIRTUAL
	
protected:
	CWnd*	m_pParent;
    int		m_nID;

	BOOL	m_bIsBlackTri;
	BOOL	m_bIsGrayTri;
	BOOL	m_bIsWhiteTri;

	HICON	m_hBlackTri;
	HICON	m_hGrayTri;
	HICON	m_hWhiteTri;

	/*The varibales about the histogram*/
	int		m_nIndex[512];
   	int		m_nMaxCount;
	//{{AFX_MSG(CSHE)
	afx_msg void OnPaint();
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
    virtual BOOL OnInitDialog();
	afx_msg void OnSelchangeChannel();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
#endif

⌨️ 快捷键说明

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