HeartWindow.h
上传用户:f12e50
上传日期:2007-01-04
资源大小:21k
文件大小:1k
源码类别:

其他小程序

开发平台:

Visual C++

  1. #if !defined(AFX_HEARTWINDOW_H__99594806_9574_11D3_A5ED_00104B6606DD__INCLUDED_)
  2. #define AFX_HEARTWINDOW_H__99594806_9574_11D3_A5ED_00104B6606DD__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // HeartWindow.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // HeartWindow window
  10. #define HEARTWINDOW_CLASSNAME _T("HEARTWINDOW")
  11. #define WM_MYMOVE WM_USER+1
  12. class HeartWindow : public CWnd
  13. {
  14. // Construction
  15. public:
  16. HeartWindow();
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(HeartWindow)
  24. public:
  25. virtual BOOL Create(const RECT& rect, HBITMAP hbmp);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. HBITMAP m_hBitmap;
  30. int index;
  31. int height;
  32. int width;
  33. virtual ~HeartWindow();
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(HeartWindow)
  37. afx_msg void OnPaint();
  38. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. private:
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_HEARTWINDOW_H__99594806_9574_11D3_A5ED_00104B6606DD__INCLUDED_)