小波变换Doc.h
上传用户:aqingfeng
上传日期:2014-03-25
资源大小:1839k
文件大小:2k
源码类别:

波变换

开发平台:

Visual C++

  1. // 小波变换Doc.h : interface of the CMyDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DOC_H__BA3A83A1_1121_4D0E_9040_789725F00700__INCLUDED_)
  5. #define AFX_DOC_H__BA3A83A1_1121_4D0E_9040_789725F00700__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "dibapi.h"
  10. class CMyDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CMyDoc();
  14. DECLARE_DYNCREATE(CMyDoc)
  15. // Attributes
  16. public:
  17. HDIB GetHDIB() const
  18. { return m_hDIB; }
  19. CPalette* GetDocPalette() const
  20. { return m_palDIB; }
  21. CSize GetDocSize() const
  22. { return m_sizeDoc; }
  23. // Operations
  24. public:
  25. bool m_bOnce, m_bTwice, m_bTribl, m_bFilter ;
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMyDoc)
  29. public:
  30. virtual BOOL OnNewDocument();
  31. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  32. virtual void Serialize(CArchive& ar);
  33. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. virtual ~CMyDoc();
  38. void InitDIBData();
  39. void Openanother();
  40.     BOOL m_fDirty;
  41. CString m_strFileName;
  42. CString m_strFileFusion;
  43. short** m_WvltCoeff;
  44. unsigned char* m_pBitmap;
  45. unsigned char* m_pTransfered;
  46. HDIB m_hMulDIB;
  47. #ifdef _DEBUG
  48. virtual void AssertValid() const;
  49. virtual void Dump(CDumpContext& dc) const;
  50. #endif
  51. protected:
  52. HDIB m_hDIB;
  53. CPalette* m_palDIB;
  54. CSize m_sizeDoc;
  55. // Generated message map functions
  56. protected:
  57. //{{AFX_MSG(CMyDoc)
  58. afx_msg void OnWvltHortrans();
  59. afx_msg void OnWvltVertrans();
  60. afx_msg void OnWvltTransOnce();
  61. afx_msg void OnWvltTransTwice();
  62. afx_msg void OnWvltTransTrbl();
  63. afx_msg void OnDiprocEnhace();
  64. afx_msg void OnDiprocFusion();
  65. afx_msg void OnDiprocRever();
  66. afx_msg void OnFilterBlur();
  67. afx_msg void OnFilterSharpness();
  68. afx_msg void OnFilterBlur2();
  69. afx_msg void OnFilterSharpness2();
  70. afx_msg void OnFileReopen();
  71. //}}AFX_MSG
  72. DECLARE_MESSAGE_MAP()
  73. };
  74. /////////////////////////////////////////////////////////////////////////////
  75. //{{AFX_INSERT_LOCATION}}
  76. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  77. #endif // !defined(AFX_DOC_H__BA3A83A1_1121_4D0E_9040_789725F00700__INCLUDED_)