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

模拟服务器

开发平台:

C/C++

  1. #if !defined(AFX_CQIMAGEBUTTON_H__F4E8EDAB_3561_4ED4_9E7B_710306B9EB21__INCLUDED_)
  2. #define AFX_CQIMAGEBUTTON_H__F4E8EDAB_3561_4ED4_9E7B_710306B9EB21__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CQImageButton.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CCQImageButton window
  10. #include<string>
  11. using namespace std;
  12. void DisplayErrorInfo(string& ErrorInfo);
  13. void LoadBitMapRes(HBITMAP& BitMap, UINT BitMapRes,HINSTANCE AppHandle);
  14. class CCQImageButton : public CButton
  15. {
  16. // Construction
  17. public:
  18. CCQImageButton();
  19. // Attributes
  20. public:
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CCQImageButton)
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. void SetButtonBmp(UINT csPushBmpID, UINT csNormalBmpID,UINT csFocusBmpID,HINSTANCE AppHandle);
  30. //CString m_csFocusBmpID;
  31. virtual ~CCQImageButton();
  32. private:
  33. HBITMAP m_csDisableBmpID;
  34. HBITMAP m_csNormalBmpID;
  35. HBITMAP m_csFocusBmpID;
  36. // Generated message map functions
  37. protected:
  38. void DrawItem(LPDRAWITEMSTRUCT);
  39. //{{AFX_MSG(CCQImageButton)
  40. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_CQIMAGEBUTTON_H__F4E8EDAB_3561_4ED4_9E7B_710306B9EB21__INCLUDED_)