dlgcommon.h

来自「3D reconstruction, medical image process」· C头文件 代码 · 共 69 行

H
69
字号
#if !defined(AFX_DLGCOMMON_H__B19111CC_4D5B_4220_9F5D_E1749BF4CF85__INCLUDED_)#define AFX_DLGCOMMON_H__B19111CC_4D5B_4220_9F5D_E1749BF4CF85__INCLUDED_#if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000// DlgCommon.h : header file///////////////////////////////////////////////////////////////////////////////// RxDlgCommon dialog#include "FusionColorUI.h"class RxDlgCommon : public CDialog{// Constructionpublic:	RxDlgCommon(CWnd* pParent = NULL);   // standard constructor	CWnd		*m_pParentWnd;	BOOL		m_bActive;	CString		m_strCaption;	int			m_nGripMargin;	void	SetCaption		(CString strCaption)	{	m_strCaption = strCaption;	}	CString GetCaption		()						{	return m_strCaption;		}	void	DrawHorz		(CDC *pDC, int x, int y, int size);	void	DrawStatic		(CDC *pDC, int x, int y, CString string);	void	DrawStaticBox	(CDC *pDC, CRect rect, CString string = _T(""));// Dialog Data	//{{AFX_DATA(RxDlgCommon)	enum { IDD = IDD_DLG_COMMON };	int		m_nTransformationMode;	int		m_nDistanceMapMode;	int		m_nLungRenderMode;	int		m_nIRMode;	//}}AFX_DATA// Overrides	// ClassWizard generated virtual function overrides	//{{AFX_VIRTUAL(RxDlgCommon)	public:	virtual BOOL PreTranslateMessage(MSG* pMsg);	virtual void OnDraw(CDC* pDC);	//}}AFX_VIRTUAL// Implementationprotected:	// Generated message map functions	//{{AFX_MSG(RxDlgCommon)		// NOTE: the ClassWizard will add member functions here	//}}AFX_MSG	afx_msg BOOL OnNcActivate(BOOL bActive);	afx_msg UINT OnNcHitTest(CPoint point);	afx_msg BOOL OnEraseBkgnd(CDC *pDC);	DECLARE_MESSAGE_MAP()};//{{AFX_INSERT_LOCATION}}// Microsoft Visual C++ will insert additional declarations immediately before the previous line.#endif // !defined(AFX_DLGCOMMON_H__B19111CC_4D5B_4220_9F5D_E1749BF4CF85__INCLUDED_)

⌨️ 快捷键说明

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