ChildFrm.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__E5C751CB_9965_11D6_874C_0050228CE6CB__INCLUDED_)
  5. #define AFX_CHILDFRM_H__E5C751CB_9965_11D6_874C_0050228CE6CB__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CChildFrame : public CMDIChildWnd
  10. {
  11. DECLARE_DYNCREATE(CChildFrame)
  12. public:
  13. CChildFrame();
  14. // Attributes
  15. public:
  16. BOOL m_bActivate;
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CChildFrame)
  22. public:
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24. virtual void ActivateFrame(int nCmdShow = -1);
  25. virtual BOOL PreTranslateMessage(MSG* pMsg);
  26. protected:
  27. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CChildFrame();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CChildFrame)
  39. afx_msg void OnNcPaint();
  40. afx_msg BOOL OnNcActivate(BOOL bActive);
  41. //}}AFX_MSG
  42. afx_msg LRESULT OnGetToolTip(WPARAM, LPARAM);
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_CHILDFRM_H__E5C751CB_9965_11D6_874C_0050228CE6CB__INCLUDED_)