taboutdlg.h

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

H
41
字号
/*****************************************************************************/
/* TAboutDlg.h                                                               */
/*---------------------------------------------------------------------------*/
/* Class for the about dialog                                                */
/*****************************************************************************/

#ifndef __TABOUTDLG_H__
#define __TABOUTDLG_H__

class TAboutDlg : public CDialog
{
    public:
	TAboutDlg();

	//{{AFX_DATA(TAboutDlg)
	enum { IDD = IDD_ABOUTBOX };
	//}}AFX_DATA

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

    // Implementation
    protected:
	//{{AFX_MSG(TAboutDlg)
	virtual BOOL OnInitDialog();
    virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
	afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

    int  InitURLButtons();
    int  DrawURLButton(LPDRAWITEMSTRUCT dis);
    BOOL IsURLButton(HWND hWnd);
    void ClickURLButton(HWND hURL);
};

#endif // __TABOUTDLG_H__

⌨️ 快捷键说明

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