childfrm.cpp
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:2k
源码类别:

DNA

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "Scribble.h"
  14. #include "ChildFrm.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CChildFrame
  22. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  23. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  24. //{{AFX_MSG_MAP(CChildFrame)
  25. // NOTE - the ClassWizard will add and remove mapping macros here.
  26. //    DO NOT EDIT what you see in these blocks of generated code !
  27. //}}AFX_MSG_MAP
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CChildFrame construction/destruction
  31. CChildFrame::CChildFrame()
  32. {
  33. // TODO: add member initialization code here
  34. }
  35. CChildFrame::~CChildFrame()
  36. {
  37. }
  38. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  39. {
  40. // TODO: Modify the Window class or styles here by modifying
  41. //  the CREATESTRUCT cs
  42. return CMDIChildWnd::PreCreateWindow(cs);
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CChildFrame diagnostics
  46. #ifdef _DEBUG
  47. void CChildFrame::AssertValid() const
  48. {
  49. CMDIChildWnd::AssertValid();
  50. }
  51. void CChildFrame::Dump(CDumpContext& dc) const
  52. {
  53. CMDIChildWnd::Dump(dc);
  54. }
  55. #endif //_DEBUG
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CChildFrame message handlers
  58. BOOL CChildFrame::OnCreateClient(LPCREATESTRUCT /* lpcs */, CCreateContext* pContext)
  59. {
  60. return m_wndSplitter.Create(this,
  61. 2, 2,       // TODO: adjust the number of rows, columns
  62. CSize(10, 10),  // TODO: adjust the minimum pane size
  63. pContext);
  64. }