ColorEdit.h
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. #if !defined(AFX_COLOREDIT_H__4E0AF295_ACD7_4E22_82EC_FCB42B54CE7C__INCLUDED_)
  2. #define AFX_COLOREDIT_H__4E0AF295_ACD7_4E22_82EC_FCB42B54CE7C__INCLUDED_
  3. /*********************************************
  4. **该文件是属于WolfFTP工程中的。如果有什么问题
  5. **请联系
  6. **         tablejiang@21cn.com
  7. **或者访问
  8. **         http://wolfftp.51.net
  9. **以得到最新的支持。
  10. *********************************************/
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. // ColorEdit.h : header file
  15. //
  16. /***********************************************************
  17. ** @Description:
  18. ** This is a CRichEditCtrl derive class , the function is let user
  19. ** can set the text color and style .
  20. **
  21. ** @Note:
  22. **
  23. ** @Author: Table.JHM.太子
  24. ** e-mail:  tablejiang@21cn.com
  25. ** Date:  2001 3 26
  26. *************************************************************/
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CColorEdit window
  29. class CColorEdit : public CRichEditCtrl
  30. {
  31. // Construction
  32. public:
  33. CColorEdit();
  34. // Attributes
  35. public:
  36. // Operations
  37. public:
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CColorEdit)
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. public:
  44. BOOL SetTextColor( COLORREF Color );
  45. BOOL AddString( LPCTSTR szString );
  46. virtual ~CColorEdit();
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CColorEdit)
  50. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. protected:
  54. COLORREF m_Color ; //store text color .
  55. };
  56. /////////////////////////////////////////////////////////////////////////////
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_COLOREDIT_H__4E0AF295_ACD7_4E22_82EC_FCB42B54CE7C__INCLUDED_)