ChildFrm.h
上传用户:kssdz899
上传日期:2007-01-08
资源大小:79k
文件大小:2k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__F4BEBDC0_CCC8_11D3_A836_00104BA829E5__INCLUDED_)
  5. #define AFX_CHILDFRM_H__F4BEBDC0_CCC8_11D3_A836_00104BA829E5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. //////////////
  10. // custom caption include
  11. //
  12. #include "..CustomCaptionMultiLineCaptionEx.h"
  13. class CChildFrame : public CMDIChildWnd
  14. {
  15. DECLARE_DYNCREATE(CChildFrame)
  16. public:
  17. CChildFrame();
  18. // Attributes
  19. public:
  20. /////////////
  21. // This function gives external access to the caption
  22. //
  23. CMultiLineCaption& GetCaption();
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CChildFrame)
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CChildFrame();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CChildFrame)
  41. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. private:
  45. ////////////
  46. // Declare a caption object (this one is a multi-line caption)
  47. //
  48. CMultiLineCaptionEx m_Caption;
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_CHILDFRM_H__F4BEBDC0_CCC8_11D3_A836_00104BA829E5__INCLUDED_)