combinedlg.h

来自「一个国人自己实现图像库的程序(有参考价值)」· C头文件 代码 · 共 58 行

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

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// CombineDLG.h : header file
//
#include "PicViewerDoc.h"
/////////////////////////////////////////////////////////////////////////////
// CCombineDLG dialog

class CCombineDLG : public CDialog
{
// Construction
public:
	CCombineDLG(CWnd* pParent = NULL);   // standard constructor
	~CCombineDLG () ;
	FCImage		* m_pRed ;
	FCImage		* m_pGreen ;
	FCImage		* m_pBlue ;
	FCImage		* m_pAlpha ;

// Dialog Data
	//{{AFX_DATA(CCombineDLG)
	enum { IDD = IDD_COMBINEDLG };
	CComboBox	m_cbAlpha;
	CComboBox	m_cbBlue;
	CComboBox	m_cbGreen;
	CComboBox	m_cbRed;
	//}}AFX_DATA


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

// Implementation
protected:
	HBRUSH			m_BkBrush ;

	// Generated message map functions
	//{{AFX_MSG(CCombineDLG)
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	virtual BOOL OnInitDialog();
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_COMBINEDLG_H__A9317F5D_1E12_42DE_B27C_21EA9B0732F0__INCLUDED_)

⌨️ 快捷键说明

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