DDDIBSurface.h
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // Copyright (C) 1998-1999 DXGuide.  All Rights Reserved.
  2. // File: DDDIBSurface.h
  3. #ifndef _DDDIBSURFACE__H
  4. #define _DDDIBSURFACE__H
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. #include "DDSurface.h"
  9. #include "DIB.h"
  10. class CPackFileManager;
  11. class CDDDIBSurface : public CDDSurface
  12. {
  13. friend class CDDCursor; // m_pDIB
  14. public:
  15. CDDDIBSurface(void);
  16. virtual ~CDDDIBSurface();
  17. public:
  18. bool Create(CDDDevice*  pDDDevice, LPCTSTR  lpszFileName,
  19. CPackFileManager*  pPackFileManager = NULL,
  20. CDIB::DIBFileType  fileType = CDIB::FT_BITMAP,
  21. CDDSurface::SURFACEMEM_TYPE  surfaceMemType = CDDSurface::SURFACEMEM_AUTO);
  22. public:
  23. virtual CString GetFileName(void) const;
  24. virtual HRESULT Restore(void);
  25. private:
  26. // Copy the bitmap into the surface.
  27. void CopyBitmap(void);
  28. protected:
  29. CDIB* m_pDIB;
  30. CString m_strFileName;
  31. };
  32. #endif // _DDDIBSURFACE__H