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

波变换

开发平台:

Visual C++

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