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

编辑器/阅读器

开发平台:

Visual C++

  1. /* ---------------------------------------------------------------------------
  2.    This code can be used as you wish but without warranties as to performance 
  3.    of merchantability or any other warranties whether expressed or implied.
  4.    
  5.  Written by Mike Funduc, Funduc Software Inc. 8/1/96
  6.  To download the code and more useful utilities (including Search and
  7.  Replace for Windows 95/NT, 3.1x) go to: http://www.funduc.com
  8. ----------------------------------------------------------------------------*/
  9. // ChildFrm.cpp : implementation of the CChildFrame class
  10. //
  11. #include "stdafx.h"
  12. #include "hexview.h"
  13. #include "ChildFrm.h"
  14. #ifdef _DEBUG
  15. #define new DEBUG_NEW
  16. #undef THIS_FILE
  17. static char THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CChildFrame
  21. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  22. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  23. //{{AFX_MSG_MAP(CChildFrame)
  24. // NOTE - the ClassWizard will add and remove mapping macros here.
  25. //    DO NOT EDIT what you see in these blocks of generated code !
  26. //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CChildFrame construction/destruction
  30. CChildFrame::CChildFrame()
  31. {
  32. // TODO: add member initialization code here
  33. }
  34. CChildFrame::~CChildFrame()
  35. {
  36. }
  37. BOOL CChildFrame::OnCreateClient( LPCREATESTRUCT /*lpcs*/,
  38. CCreateContext* pContext)
  39. {
  40. return m_wndSplitter.Create( this,
  41. 2, 2,                 // TODO: adjust the number of rows, columns
  42. CSize( 10, 10 ),      // TODO: adjust the minimum pane size
  43. pContext );
  44. }
  45. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  46. {
  47. // TODO: Modify the Window class or styles here by modifying
  48. //  the CREATESTRUCT cs
  49. return CMDIChildWnd::PreCreateWindow(cs);
  50. }
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CChildFrame diagnostics
  53. #ifdef _DEBUG
  54. void CChildFrame::AssertValid() const
  55. {
  56. CMDIChildWnd::AssertValid();
  57. }
  58. void CChildFrame::Dump(CDumpContext& dc) const
  59. {
  60. CMDIChildWnd::Dump(dc);
  61. }
  62. #endif //_DEBUG
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CChildFrame message handlers