ChildFrame.cpp
上传用户:aqingfeng
上传日期:2014-03-25
资源大小:1839k
文件大小:2k
源码类别:

波变换

开发平台:

Visual C++

  1. // ChildFrame.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "小波变换.h"
  5. #include "ChildFrame.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. ON_WM_CREATE()
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CChildFrame construction/destruction
  21. CChildFrame::CChildFrame()
  22. {
  23. }
  24. CChildFrame::~CChildFrame()
  25. {
  26. }
  27. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  28. {
  29. // TODO: Modify the Window class or styles here by modifying
  30. //  the CREATESTRUCT cs
  31. cs.style = WS_CHILD | WS_VISIBLE | WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU
  32. | FWS_ADDTOTITLE | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_MAXIMIZE;
  33. cs.cx = cs.cy =0;
  34. return CMDIChildWnd::PreCreateWindow(cs);
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CChildFrame diagnostics
  38. #ifdef _DEBUG
  39. void CChildFrame::AssertValid() const
  40. {
  41. CMDIChildWnd::AssertValid();
  42. }
  43. void CChildFrame::Dump(CDumpContext& dc) const
  44. {
  45. CMDIChildWnd::Dump(dc);
  46. }
  47. #endif //_DEBUG
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CChildFrame message handlers
  50. int CChildFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  51. {
  52. if (CMDIChildWnd::OnCreate(lpCreateStruct) == -1)
  53. return -1;
  54. return 0;
  55. }