fontlist.h

来自「传真示例」· C头文件 代码 · 共 50 行

H
50
字号
// FontList.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CFontList window
#ifndef _CFontList_h
#define _CFontList_h

class CLoadFontView;

class CFontList : public CListBox
{
// Construction
public:
	CFontList(CLoadFontView *pView);
	void SetListSelection(int iIndex, int iSubItem);

// Attributes
public:

private:
	int m_iIndex, m_iSubItem;
	CLoadFontView* m_pView;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFontList)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CFontList();

	// Generated message map functions
protected:
	//{{AFX_MSG(CFontList)
	afx_msg void OnSelchange();
	afx_msg void OnKillfocus();
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

#endif

/////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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