shelltoolsdlg.h

来自「最新visualC++编程200例书籍源码包括对数据库的操作」· C头文件 代码 · 共 68 行

H
68
字号
// ShellToolsDlg.h : header file
//

#if !defined(AFX_SHELLTOOLSDLG_H__833F8B66_DA34_11D2_87F1_404853C10000__INCLUDED_)
#define AFX_SHELLTOOLSDLG_H__833F8B66_DA34_11D2_87F1_404853C10000__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CShellToolsDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CShellToolsDlg)
	enum { IDD = IDD_SHELLTOOLS_DIALOG };
	int		m_nIcon;
	int		m_nIndex;
	CString	m_RetVal1;
	CString	m_RetVal2;
	CString	m_RetVal3;
	CString	m_Text;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;
	CSwitcherWnd m_wndSwitcher;
	BOOL m_bCreated;

	// Generated message map functions
	//{{AFX_MSG(CShellToolsDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnAdd();
	afx_msg void OnFind();
	afx_msg void OnGetbuttonicon();
	afx_msg void OnGetbuttontext();
	afx_msg void OnGetnumbuttons();
	afx_msg void OnRemove();
	afx_msg void OnRemoveall();
	afx_msg void OnSetsel();
	afx_msg void OnGetsel();
	afx_msg void OnModifybutton();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_SHELLTOOLSDLG_H__833F8B66_DA34_11D2_87F1_404853C10000__INCLUDED_)

⌨️ 快捷键说明

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