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

对话框与窗口

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "MDITextEditor.h"
  5. #include "ChildFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CChildFrame
  13. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  14. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  15. //{{AFX_MSG_MAP(CChildFrame)
  16. //}}AFX_MSG_MAP
  17. ON_WM_CREATE()
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CChildFrame construction/destruction
  21. CChildFrame::CChildFrame()
  22. {
  23. // TODO: add member initialization code here
  24. }
  25. CChildFrame::~CChildFrame()
  26. {
  27. }
  28. BOOL CChildFrame::OnCreateClient( LPCREATESTRUCT /*lpcs*/,
  29. CCreateContext* pContext)
  30. {
  31. DragAcceptFiles();
  32. return m_wndSplitter.Create( this,
  33. 2, 2,                 // TODO: adjust the number of rows, columns
  34. CSize( 25, 25 ),      // TODO: adjust the minimum pane size
  35. pContext );
  36. }
  37. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  38. {
  39. // TODO: Modify the Window class or styles here by modifying
  40. //  the CREATESTRUCT cs
  41. if( !CMDIChildWnd::PreCreateWindow(cs) )
  42. return FALSE;
  43. return TRUE;
  44. }
  45. void CChildFrame::ActivateFrame(int nCmdShow)
  46. {
  47. // first window should be maximized
  48. if (GetParent()->GetWindow(GW_CHILD) == this)
  49. {
  50. nCmdShow = SW_SHOWMAXIMIZED;
  51. }
  52. CMDIChildWnd::ActivateFrame(nCmdShow);
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CChildFrame diagnostics
  56. #ifdef _DEBUG
  57. void CChildFrame::AssertValid() const
  58. {
  59. CMDIChildWnd::AssertValid();
  60. }
  61. void CChildFrame::Dump(CDumpContext& dc) const
  62. {
  63. CMDIChildWnd::Dump(dc);
  64. }
  65. #endif //_DEBUG
  66. /////////////////////////////////////////////////////////////////////////////
  67. // CChildFrame message handlers