ChildFrm.cpp
上传用户:csjhqyl
上传日期:2013-08-06
资源大小:22k
文件大小:2k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "CHtmlView_Search.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. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code !
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CChildFrame construction/destruction
  22. CChildFrame::CChildFrame()
  23. {
  24. // TODO: add member initialization code here
  25. }
  26. CChildFrame::~CChildFrame()
  27. {
  28. }
  29. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  30. {
  31. // TODO: Modify the Window class or styles here by modifying
  32. //  the CREATESTRUCT cs
  33. if( !CMDIChildWnd::PreCreateWindow(cs) )
  34. return FALSE;
  35. cs.style = WS_CHILD | WS_VISIBLE | WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU
  36. | FWS_ADDTOTITLE | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX;
  37. return TRUE;
  38. }
  39. void CChildFrame::ActivateFrame(int nCmdShow)
  40. {
  41. // TODO: Modify this function to change how the frame is activated.
  42. nCmdShow = SW_SHOWMAXIMIZED;
  43. CMDIChildWnd::ActivateFrame(nCmdShow);
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CChildFrame diagnostics
  47. #ifdef _DEBUG
  48. void CChildFrame::AssertValid() const
  49. {
  50. CMDIChildWnd::AssertValid();
  51. }
  52. void CChildFrame::Dump(CDumpContext& dc) const
  53. {
  54. CMDIChildWnd::Dump(dc);
  55. }
  56. #endif //_DEBUG
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CChildFrame message handlers