BitMapProgress.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #if !defined(AFX_BITMAPPROGRESS_H__363C4046_995B_473C_808F_8BF85561CEA6__INCLUDED_)
  2. #define AFX_BITMAPPROGRESS_H__363C4046_995B_473C_808F_8BF85561CEA6__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // BitMapProgress.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // BitMapProgress window
  10. #include<string>
  11. using namespace std;
  12. void DisplayErrorInfo(string& ErrorInfo);
  13. void LoadBitMapRes(HBITMAP& BitMap, UINT BitMapRes,HINSTANCE AppHandle);
  14. class BitMapProgress : public CProgressCtrl
  15. {
  16. // Construction
  17. public:
  18. BitMapProgress();
  19. // Attributes
  20. public:
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(BitMapProgress)
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. void SetBackColor(COLORREF BackColor);
  30. virtual ~BitMapProgress();
  31.     void SetForegroundBmp(UINT ForegroundBmpID); 
  32. // Generated message map functions
  33. protected:
  34. //{{AFX_MSG(BitMapProgress)
  35. afx_msg void OnPaint();
  36. afx_msg void OnNcPaint();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. private:
  40. int Mode;
  41. COLORREF m_BackColor;
  42. CBitmap m_cbForeground;
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_BITMAPPROGRESS_H__363C4046_995B_473C_808F_8BF85561CEA6__INCLUDED_)