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

钩子与API截获

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "CaptionDemo.h"
  5. #include "ChildFrm.h"
  6. //////////////
  7. // custom caption includes
  8. //
  9. #include "..CustomCaptionGradientCaptionBackground.h"
  10. #include "..CustomCaptionCaptionTextAttributes.h"
  11. #ifdef _DEBUG
  12. #define new DEBUG_NEW
  13. #undef THIS_FILE
  14. static char THIS_FILE[] = __FILE__;
  15. #endif
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CChildFrame
  18. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  19. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  20. //{{AFX_MSG_MAP(CChildFrame)
  21. ON_WM_CREATE()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CChildFrame construction/destruction
  26. CChildFrame::CChildFrame()
  27. {
  28. // TODO: add member initialization code here
  29. }
  30. CChildFrame::~CChildFrame()
  31. {
  32. }
  33. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  34. {
  35. // TODO: Modify the Window class or styles here by modifying
  36. //  the CREATESTRUCT cs
  37. if( !CMDIChildWnd::PreCreateWindow(cs) )
  38. return FALSE;
  39. return TRUE;
  40. }
  41. ///////////////
  42. // Returns the caption object for external users
  43. //
  44. CMultiLineCaption& CChildFrame::GetCaption()
  45. {
  46. return m_Caption;
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CChildFrame diagnostics
  50. #ifdef _DEBUG
  51. void CChildFrame::AssertValid() const
  52. {
  53. CMDIChildWnd::AssertValid();
  54. }
  55. void CChildFrame::Dump(CDumpContext& dc) const
  56. {
  57. CMDIChildWnd::Dump(dc);
  58. }
  59. #endif //_DEBUG
  60. /////////////////////////////////////////////////////////////////////////////
  61. // CChildFrame message handlers
  62. int CChildFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  63. {
  64. if (CMDIChildWnd::OnCreate(lpCreateStruct) == -1)
  65. return -1;
  66. // TODO: Add your specialized creation code here
  67. ///////
  68. // Install caption into frame
  69. //
  70. m_Caption.Install(this);
  71. return 0;
  72. }