ViewBox.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // ViewBox.h: interface for the CViewBox class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VIEWBOX_H__C88584EB_AB82_11D6_8155_5254AB37CDC9__INCLUDED_)
  5. #define AFX_VIEWBOX_H__C88584EB_AB82_11D6_8155_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "scrollbar.h"
  10. class CViewBox  
  11. {
  12. public:
  13. CViewBox();
  14. virtual ~CViewBox();
  15. void SetViewBox(RECT rect,char *filename);
  16. void SetViewBox(RECT rect,unsigned int texID);
  17. void SetText(char *filename);
  18. void RenderViewBox();
  19. private:
  20. void  UpdateViewBox();
  21. void  DrawBackground();
  22. int    m_iLineHeight; //每行高
  23. int    m_numLine;     //总行数
  24. int    m_iShowLine;   //筐中容纳行数
  25. bool   m_bText;       //图片还是文字?
  26. bool   m_bShowScroll;
  27. RECT   m_rect;
  28.     int    m_iHead;       //显示第一行的号码
  29. int    m_iPos;
  30. char  *m_string;
  31. CScrollBar      m_cScrollBar;
  32. };
  33. #endif // !defined(AFX_VIEWBOX_H__C88584EB_AB82_11D6_8155_5254AB37CDC9__INCLUDED_)