Main.h
上传用户:s2588lin
上传日期:2007-01-07
资源大小:306k
文件大小:1k
源码类别:

其他智力游戏

开发平台:

Visual C++

  1. class CMydrawApp:public CWinApp
  2. {
  3. public:
  4. CMydrawApp();
  5.  //Overrides
  6. // ClassWizard generated virtual function overrides
  7. //{{AFX_VIRTUAL(CMydrawApp)
  8. public:
  9. virtual BOOL OnIdle(LONG lCount);
  10. virtual BOOL InitInstance();
  11. protected:
  12. //{{AFX_MSG(DirectDrawApp)
  13. //}}AFX_MSG
  14. DECLARE_MESSAGE_MAP()
  15. };
  16. class CMydrawFrame:public CFrameWnd
  17. {
  18. public:
  19.      CMydrawFrame();
  20. protected:
  21.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  22.     afx_msg void OnActivate(UINT nState,CWnd *pWndOther,BOOL bMinimized);
  23. afx_msg void OnMouseMove(UINT,CPoint);
  24. afx_msg void OnPaint();
  25. afx_msg void OnMove(int x, int y);
  26. afx_msg void OnTimer(UINT nIDEvent);
  27.     afx_msg void OnKeyDown(UINT nIDEvent);
  28.     afx_msg void OnLButtonDown(UINT,CPoint);
  29.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  30.     afx_msg void OnRButtonDown(UINT fl,CPoint mp);
  31. afx_msg void OnLButtonUp(UINT fl,CPoint mp);
  32.     DECLARE_MESSAGE_MAP();
  33. };