DIBDOC.H
上传用户:zbjinju
上传日期:2022-07-30
资源大小:11893k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. // dibdoc.h : interface of the CDibDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "dibapi.h"
  13. class CDibDoc : public CDocument
  14. {
  15. protected: // create from serialization only
  16. CDibDoc();
  17. DECLARE_DYNCREATE(CDibDoc)
  18. // Attributes
  19. public:
  20. HDIB GetHDIB() const
  21. { return m_hDIB; }
  22. void SetHDIB (HDIB hDIB)
  23. {m_hDIB = hDIB;}
  24. CPalette* GetDocPalette() const
  25. { return m_palDIB; }
  26. CSize GetDocSize() const
  27. { return m_sizeDoc; }
  28. // Operations
  29. public:
  30. void ReplaceHDIB(HDIB hDIB);
  31. void InitDIBData();
  32. // Implementation
  33. protected:
  34. virtual ~CDibDoc();
  35. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  36. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  37. protected:
  38. HDIB m_hDIB;
  39. CPalette* m_palDIB;
  40. CSize m_sizeDoc;
  41. #ifdef _DEBUG
  42. virtual void AssertValid() const;
  43. virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. protected:
  46. virtual BOOL    OnNewDocument();
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CDibDoc)
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////