text.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #if !defined(AFX_TEXT_H__A3258F98_9928_43D2_95B7_DB830E708480__INCLUDED_)
  2. #define AFX_TEXT_H__A3258F98_9928_43D2_95B7_DB830E708480__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // text.h : header file
  7. //
  8. #include "Draw.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CText window
  11. class CText : public CDraw , public CEdit
  12. {
  13. public:
  14.          CText( CDrawView * view );
  15. virtual ~CText( );
  16. virtual  void LButtonDown( UINT nFlags , CPoint point );
  17. virtual  void LButtonUp( UINT nFlags , CPoint point );
  18. virtual  void MouseMove( UINT nFlags , CPoint point );
  19. virtual  CDC * Draw( CDC * pDC = NULL );
  20. CString & GetText( void ){ return this->text; }
  21. void      SetText( const char * text ){ this->text = text; }
  22. protected:
  23. //{{AFX_VIRTUAL(CText)
  24. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  25. //}}AFX_VIRTUAL
  26. //{{AFX_MSG(CText)
  27. //}}AFX_MSG
  28. DECLARE_MESSAGE_MAP()
  29. private:
  30. CFont font;
  31. CString  text;
  32. };
  33. /////////////////////////////////////////////////////////////////////////////
  34. //{{AFX_INSERT_LOCATION}}
  35. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  36. #endif // !defined(AFX_TEXT_H__A3258F98_9928_43D2_95B7_DB830E708480__INCLUDED_)