HistoryEdit.h
上传用户:lyjinchang
上传日期:2007-01-02
资源大小:14k
文件大小:1k
源码类别:

编辑框

开发平台:

Visual C++

  1. /*
  2.  *  HistoryEdit.h
  3.  *
  4.  *  Description:
  5.  *    CHistoryEdit interface
  6.  *
  7.  *    A CEdit subclass that allows you to display a scrolling history
  8.  *    of text entries.
  9.  *
  10.  *  Author:
  11.  *    Ravi Bhavnani (ravib@datablast.net)
  12.  *
  13.  *  Revision History:
  14.  *    15 Mar 1998   rab   Original version
  15.  */
  16. #ifndef _HistoryEdit_h_
  17. #define _HistoryEdit_h_
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CHistoryEdit window
  20. class CHistoryEdit : public CEdit
  21. {
  22. // Construction
  23. public:
  24. CHistoryEdit();
  25. // Attributes
  26. public:
  27. // Operations
  28. public:
  29.   void  AppendString (CString str);
  30.   BOOL  IsSelectable() { return m_bSelectable; }
  31.   void  AllowSelection (BOOL bAllowSelect) { m_bSelectable = bAllowSelect; }
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CHistoryEdit)
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. virtual ~CHistoryEdit();
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CHistoryEdit)
  42. afx_msg void OnSetFocus(CWnd* pOldWnd);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. protected:
  46.   BOOL  m_bSelectable;                          // flag: user can select text in control
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  51. #endif
  52. // End HistoryEdit.h