DIBDOC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

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. CPalette* GetDocPalette() const
  23. { return m_palDIB; }
  24. CSize GetDocSize() const
  25. { return m_sizeDoc; }
  26. // Operations
  27. public:
  28. void ReplaceHDIB(HDIB hDIB);
  29. void InitDIBData();
  30. // Implementation
  31. protected:
  32. virtual ~CDibDoc();
  33. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  34. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  35. protected:
  36. HDIB m_hDIB;
  37. CPalette* m_palDIB;
  38. CSize m_sizeDoc;
  39. #ifdef _DEBUG
  40. virtual void AssertValid() const;
  41. virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43. protected:
  44. virtual BOOL    OnNewDocument();
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CDibDoc)
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. /////////////////////////////////////////////////////////////////////////////