toptionsdlg.h

来自「mpq文件的格式就是一种压缩格式」· C头文件 代码 · 共 48 行

H
48
字号
/*****************************************************************************/
/* TOptionsDlg.h                          Copyright (c) Ladislav Zezula 2003 */
/*---------------------------------------------------------------------------*/
/* Description :                                                             */
/*---------------------------------------------------------------------------*/
/*   Date    Ver   Who  Comment                                              */
/* --------  ----  ---  -------                                              */
/* 11.04.03  1.00  Lad  The first version of TOptionsDlg.h                   */
/*****************************************************************************/

#ifndef __TOPTIONSDLG_H__
#define __TOPTIONSDLG_H__

//-----------------------------------------------------------------------------
// TOptionsDlg dialog

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

	//{{AFX_DATA(TOptionsDlg)
	enum { IDD = IDD_OPTIONS };
	CString	m_strListFileDir;
	CString	m_strWorkDir;
	BOOL	m_bUseStorm;
	//}}AFX_DATA

    protected:
    static int CALLBACK BFFDialogProc(HWND hwnd, UINT message, LPARAM lParam, LPARAM lpData);
    void   BrowseFolder(UINT nIDEdit);

	//{{AFX_VIRTUAL(TOptionsDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

    protected:

	//{{AFX_MSG(TOptionsDlg)
	afx_msg void OnBrowse1();
	afx_msg void OnBrowse2();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#endif // __TOPTIONSDLG_H__

⌨️ 快捷键说明

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