DIBDoc.h
上传用户:gzboli
上传日期:2013-04-10
资源大小:471k
文件大小:2k
源码类别:

图片显示

开发平台:

Visual C++

  1. // DIBDoc.h : interface of the CDIBDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DIBDOC_H__730EC364_0F70_4FBD_ABA3_3560558CDCF7__INCLUDED_)
  5. #define AFX_DIBDOC_H__730EC364_0F70_4FBD_ABA3_3560558CDCF7__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "dibapi.h"
  10. #define WM_REALIZEPAL     (WM_USER + 0x100)
  11. class CDIBDoc : public CDocument
  12. {
  13. // Attributes
  14. protected:
  15. HDIB m_hDIB;
  16. CPalette* m_palDIB;
  17. CSize m_sizeDoc;
  18. // HDIB m_hRightDIB;
  19. // char m_strRightFile[_MAX_PATH];
  20. // Operations
  21. public:
  22. void ReplaceHDIB(HDIB hDIB);
  23. void InitDIBData();
  24. HDIB GetHDIB() const
  25. { return m_hDIB; }
  26. CPalette* GetDocPalette() const
  27. { return m_palDIB; }
  28. CSize GetDocSizse() const
  29. { return m_sizeDoc; }
  30. void EdgeEnhance(int nAlgorithm);
  31. BOOL EnumFile(LPCTSTR lpszPathName);
  32. // HDIB GegtRightHDIB() const
  33. // {return m_hRightDIB;}
  34. protected: // create from serialization only
  35. CDIBDoc();
  36. DECLARE_DYNCREATE(CDIBDoc)
  37. // Attributes
  38. public:
  39. // Operations
  40. public:
  41. // Overrides
  42. // ClassWizard generated virtual function overrides
  43. //{{AFX_VIRTUAL(CDIBDoc)
  44. public:
  45. virtual BOOL OnNewDocument();
  46. virtual void Serialize(CArchive& ar);
  47. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  48. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  49. //}}AFX_VIRTUAL
  50. // virtual BOOL OpenRightFile(LPCTSTR lpszPathName);
  51. // Implementation
  52. public:
  53. virtual ~CDIBDoc();
  54. #ifdef _DEBUG
  55. virtual void AssertValid() const;
  56. virtual void Dump(CDumpContext& dc) const;
  57. #endif
  58. protected:
  59. // Generated message map functions
  60. protected:
  61. //{{AFX_MSG(CDIBDoc)
  62. //}}AFX_MSG
  63. afx_msg void OnRealizePal(WPARAM wParam, LPARAM lParam);
  64. afx_msg void OnImageProcess(UINT uID);
  65. afx_msg void OnUpdateImageProcess(CCmdUI *pCmdUI);
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. /////////////////////////////////////////////////////////////////////////////
  69. //{{AFX_INSERT_LOCATION}}
  70. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  71. #endif // !defined(AFX_DIBDOC_H__730EC364_0F70_4FBD_ABA3_3560558CDCF7__INCLUDED_)