MyProgress.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. #if !defined(AFX_MYPROGRESS_H__E0A58369_3736_4B06_8E6C_556ED081373E__INCLUDED_)
  2. #define AFX_MYPROGRESS_H__E0A58369_3736_4B06_8E6C_556ED081373E__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyProgress.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // MyProgress window
  10. class MyProgress : public CProgressCtrl
  11. {
  12. // Construction
  13. public:
  14. CString barTitle;
  15. MyProgress();
  16. DWORD bmpresource;
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(MyProgress)
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. void SetBmp(DWORD bmp);
  28. void SetBarCaption(CString title);
  29. virtual ~MyProgress();
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(MyProgress)
  33. afx_msg void OnPaint();
  34. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_MYPROGRESS_H__E0A58369_3736_4B06_8E6C_556ED081373E__INCLUDED_)