Font.h
上传用户:whgydz
上传日期:2007-01-12
资源大小:2259k
文件大小:1k
源码类别:

其他书籍

开发平台:

HTML/CSS

  1. // Font.h: interface for the CFont class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_FONT_H__656AEF3D_35E9_40F5_AFB6_D1BEA7A6BF37__INCLUDED_)
  5. #define AFX_FONT_H__656AEF3D_35E9_40F5_AFB6_D1BEA7A6BF37__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Base.h"
  10. class CFont : public CBase  
  11. {
  12. public:
  13. void DrawText(LPSTR pText, int x, int y, D3DCOLOR rgbFontColour);
  14. CFont(LPDIRECT3DDEVICE8 pD3DDevice, LPSTR pFontFace, int nHeight, bool fBold, bool fItalic, bool fUnderlined);
  15. virtual ~CFont();
  16. private:
  17. LPDIRECT3DDEVICE8 m_pD3DDevice;
  18. LPD3DXFONT m_pFont;
  19. };
  20. #endif // !defined(AFX_FONT_H__656AEF3D_35E9_40F5_AFB6_D1BEA7A6BF37__INCLUDED_)