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

波变换

开发平台:

Visual C++

  1. // Symletsdlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "小波变换.h"
  5. #include "Symletsdlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSymletsdlg dialog
  13. CSymletsdlg::CSymletsdlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CSymletsdlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CSymletsdlg)
  17. m_symlength = 4;
  18. //}}AFX_DATA_INIT
  19. }
  20. void CSymletsdlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CSymletsdlg)
  24. DDX_Control(pDX, IDC_SPINLENGTH, m_symspin);
  25. DDX_Text(pDX, IDC_SNLENGTH, m_symlength);
  26. DDV_MinMaxUInt(pDX, m_symlength, 4, 10);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CSymletsdlg, CDialog)
  30. //{{AFX_MSG_MAP(CSymletsdlg)
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CSymletsdlg message handlers
  35. BOOL CSymletsdlg::OnInitDialog() 
  36. {
  37. CDialog::OnInitDialog();
  38. // TODO: Add extra initialization here
  39. m_symspin.SetRange(4,10);
  40. return TRUE;  // return TRUE unless you set the focus to a control
  41.               // EXCEPTION: OCX Property Pages should return FALSE
  42. }