affinedlg.h

来自「一个非常全的vc编程的原程序代码是关于图像处理的!」· C头文件 代码 · 共 58 行

H
58
字号
#if !defined(AFX_AFFINEDLG_H__4122E120_9DEA_11D4_9263_000021C9B3C5__INCLUDED_)
#define AFX_AFFINEDLG_H__4122E120_9DEA_11D4_9263_000021C9B3C5__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CAffineDlg dialog

class CAffineDlg : public CDialog
{
// Construction
public:
	int m_mode;
	CRect m_previewRect;
	BOOL OnInitDialog();
	CAffineDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CAffineDlg)
	enum { IDD = IDD_DIALOG_AFFINE };
	int		m_x;
	int		m_y;
	int		m_wig;
	int		m_slue;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAffineDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	POINT p1, p2, p3, p4;
	POINT tp1, tp2, tp3, tp4;

	// Generated message map functions
	//{{AFX_MSG(CAffineDlg)
	afx_msg void OnPaint();
	afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
	afx_msg void OnButtonApply();
	afx_msg void OnButtonClose();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_AFFINEDLG_H__4122E120_9DEA_11D4_9263_000021C9B3C5__INCLUDED_)

⌨️ 快捷键说明

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