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

DirextX编程

开发平台:

Visual C++

  1. // Copyright (C) 1998-1999 DXGuide.  All Rights Reserved.
  2. // File: DDLayer.h
  3. #ifndef _DDLAYER__H
  4. #define _DDLAYER__H
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. #include "DDDIBSurface.h"
  9. class CDDLayer : public CDDDIBSurface
  10. {
  11. public:
  12. CDDLayer(void);
  13. virtual ~CDDLayer();
  14. public:
  15. void ScrollUp(int  nOffset);
  16. void ScrollDown(int  nOffset);
  17. void ScrollLeft(int  nOffset);
  18. void ScrollRight(int  nOffset);
  19. void MoveTo(int  nXOffset, int  nYOffset);
  20. HRESULT Draw(CDDSurface*  lpDDS);
  21. protected:
  22. int m_nXOffset;
  23. int m_nYOffset;
  24. };
  25. #include "DDLayer.inl"
  26. #endif // _DDLAYER__H