ProgInd.h
Upload User: xrc9201
Upload Date: 2013-02-04
Package Size: 35k
Code Size: 1k
Development Platform:

Visual C++

  1. // ProgInd.h : header file
  2. //
  3. #ifndef _PROGRESS_INDICATOR
  4. #define _PROGRESS_INDICATOR
  5. // Forward declaration for the class CFiller
  6. class CFiller;
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CProgressIndicator window
  9. class CProgressIndicator : public CWnd
  10. {
  11. // Construction
  12. public:
  13. CProgressIndicator( CFiller * = NULL );
  14. // Attributes
  15. protected:
  16. CFiller * m_pFiller;
  17. BOOL   m_bCreated;
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. CFiller * GetFiller();
  23. INT SetFiller( CFiller * );
  24. INT SetText( LPCSTR );
  25. INT SetRange( INT, INT );
  26. INT GetPos();
  27. INT SetPos( INT );
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CProgressIndicator)
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~CProgressIndicator();
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CProgressIndicator)
  38. afx_msg void OnPaint();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////
  43. #endif