⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 progind.h

📁 在C++程序中使用Strategy模板
💻 H
字号:
// ProgInd.h : header file
//

#ifndef _PROGRESS_INDICATOR
#define _PROGRESS_INDICATOR

// Forward declaration for the class CFiller
class CFiller;

/////////////////////////////////////////////////////////////////////////////
// CProgressIndicator window

class CProgressIndicator : public CWnd
{
// Construction
public:
	CProgressIndicator( CFiller * = NULL );

// Attributes
protected:
	CFiller * m_pFiller;
	BOOL	  m_bCreated;

// Attributes
public:

// Operations
public:
	CFiller * GetFiller();
	INT SetFiller( CFiller * );
	INT SetText( LPCSTR );
	INT SetRange( INT, INT );
	INT GetPos();
	INT SetPos( INT );
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CProgressIndicator)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CProgressIndicator();

	// Generated message map functions
protected:
	//{{AFX_MSG(CProgressIndicator)
	afx_msg void OnPaint();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////
#endif

⌨️ 快捷键说明

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