ProgInd.h
资源名称:strategy.zip [点击查看]
上传用户:xrc9201
上传日期:2013-02-04
资源大小:35k
文件大小:1k
源码类别:
源码/资料
开发平台:
Visual C++
- // 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
English
