tbreakoptsdlg.h

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

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

#ifndef __TDETECTOPTIONSDLG_H__
#define __TDETECTOPTIONSDLG_H__

//-----------------------------------------------------------------------------
// TBreakOptsDlg dialog

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

    CPtrList * m_pFolderList;
    CPtrList * m_pExtList;

	//{{AFX_DATA(TBreakOptsDlg)
	enum { IDD = IDD_BREAKING_OPTIONS };
	CCheckListBox m_Folders;
	CString	      m_strFolder;
	CString	      m_strStartName;
	UINT	      m_nMaxNameLength;
	BOOL	      m_bAutoSave;
	CCheckListBox m_Exts;
	CString	      m_strExt;
	BOOL	m_bThisOnly;
	//}}AFX_DATA


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

    protected:

	//{{AFX_MSG(TBreakOptsDlg)
	virtual BOOL OnInitDialog();
	virtual void OnOK();
	afx_msg void OnAllFoldersClick();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#endif // __TDETECTOPTIONSDLG_H__

⌨️ 快捷键说明

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