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

波变换

开发平台:

Visual C++

  1. // MainFrame1.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "小波变换.h"
  5. #include "MainFrame1.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame1
  13. IMPLEMENT_DYNCREATE(CMainFrame1, CMiniFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame1, CMiniFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame1)
  16. ON_WM_CREATE()
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. static UINT indicators[] =
  21. {
  22. ID_SEPARATOR,           // status line indicator
  23. ID_INDICATOR_CAPS,
  24. ID_INDICATOR_NUM,
  25. ID_INDICATOR_SCRL,
  26. };
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMainFrame construction/destruction
  29. CMainFrame1::CMainFrame1()
  30. {
  31. // TODO: add member initialization code here
  32. }
  33. CMainFrame1::~CMainFrame1()
  34. {
  35. }
  36. int CMainFrame1::OnCreate(LPCREATESTRUCT lpCreateStruct)
  37. {
  38. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  39. return -1;
  40. return 0;
  41. }
  42. BOOL CMainFrame1::PreCreateWindow(CREATESTRUCT& cs)
  43. {
  44. // TODO: Modify the Window class or styles here by modifying
  45. //  the CREATESTRUCT cs
  46. cs.style = WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE
  47. | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_MAXIMIZE;
  48. return CMDIFrameWnd::PreCreateWindow(cs);
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CMainFrame diagnostics
  52. #ifdef _DEBUG
  53. void CMainFrame1::AssertValid() const
  54. {
  55. CMDIFrameWnd::AssertValid();
  56. }
  57. void CMainFrame1::Dump(CDumpContext& dc) const
  58. {
  59. CMDIFrameWnd::Dump(dc);
  60. }
  61. #endif //_DEBUG
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CMainFrame1 message handlers