MyWnd.h
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #if !defined(AFX_MYWND_H__549AF120_6B7E_11D6_9E62_8122998F8B0A__INCLUDED_)
  2. #define AFX_MYWND_H__549AF120_6B7E_11D6_9E62_8122998F8B0A__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyWnd.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMyWnd window
  10. class CMyWnd : public CWnd
  11. {
  12. public:
  13. CMyWnd();
  14. static LPCSTR lpszClassName; //注册类名
  15. public:
  16. BOOL Create();
  17. public:
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CMyWnd)
  20. protected:
  21. virtual void PostNcDestroy();
  22. //}}AFX_VIRTUAL
  23. public:
  24. virtual ~CMyWnd();
  25. protected:
  26. CPoint m_prePoint; //检测鼠标移动
  27. void DrawBitmap(CDC& dc, int nIndexBit);
  28. //{{AFX_MSG(CMyWnd)
  29. afx_msg void OnPaint();
  30. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  31. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  32. afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
  33. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  34. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  35. afx_msg void OnSysKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  36. afx_msg void OnDestroy();
  37. afx_msg void OnTimer(UINT nIDEvent);
  38. afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  39. afx_msg void OnActivateApp(BOOL bActive, HTASK hTask);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_MYWND_H__549AF120_6B7E_11D6_9E62_8122998F8B0A__INCLUDED_)