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

游戏引擎

开发平台:

Visual C++

  1. // GraphEdit.h: interface for the CGraphEdit class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_GRAPHEDIT_H__643489A1_AA3D_11D6_8152_5254AB37CDC9__INCLUDED_)
  5. #define AFX_GRAPHEDIT_H__643489A1_AA3D_11D6_8152_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "graphbutton.h"
  10. class CGraphEdit : public CGraphButton
  11. {
  12. public:
  13. CGraphEdit();
  14. virtual ~CGraphEdit();
  15. void  SetEdit(RECT rect,char *sText,int maxCharacter=31 );
  16. void  SetEnableEdit(bool bEnableEdit);
  17. void  GetFocus();
  18. void  Clear();
  19. void  SetText(char *sText);
  20. void  SetHeightLight(bool bHLight);
  21.     void  RenderEdit();
  22. bool  IsEditting();
  23. private:
  24. void  UpdateEdit();
  25. void  FinishEdit();
  26. int   m_iMaxChar;
  27. bool  m_bEditting;
  28. bool  m_bEnableEdit;
  29. bool  m_bHeightLight;
  30. };
  31. #endif // !defined(AFX_GRAPHEDIT_H__643489A1_AA3D_11D6_8152_5254AB37CDC9__INCLUDED_)