ColorEdit.cpp
资源名称:FTP总集.rar [点击查看]
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:2k
源码类别:
Ftp客户端
开发平台:
Visual C++
- // ColorEdit.cpp : implementation file
- //
- /*********************************************
- **该文件是属于WolfFTP工程中的。如果有什么问题
- **请联系
- ** tablejiang@21cn.com
- **或者访问
- ** http://wolfftp.51.net
- **以得到最新的支持。
- *********************************************/
- #include "stdafx.h"
- #include "ColorEdit.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CColorEdit
- CColorEdit::CColorEdit()
- {
- }
- CColorEdit::~CColorEdit()
- {
- }
- BEGIN_MESSAGE_MAP(CColorEdit, CRichEditCtrl)
- //{{AFX_MSG_MAP(CColorEdit)
- ON_WM_CREATE()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CColorEdit message handlers
- /////////////////////////////////////////////////////////////////////////////
- //function
- /****************************************************
- ** @Description
- ** Attach a string at the display string end .
- **
- ** @Parameter
- ** LPCTSTR szString : the string pointer .
- **
- ** @Return: always true .
- ** @Author: Table.JHM.太子
- ** e-mail: tablejiang@21cn.com
- ** @Date: 2001 3 26
- ****************************************************/
- BOOL CColorEdit::AddString(LPCTSTR szString)
- {
- SetFocus( ) ;
- //set text color .
- CHARFORMAT cf;
- memset( &cf , 0 , sizeof( cf ) ) ;
- cf.cbSize = sizeof( cf ) ;
- cf.dwMask = CFM_COLOR ;
- cf.crTextColor = m_Color ;
- long nStart ;
- nStart = GetTextLength( ) ;
- SetSel( nStart , nStart ) ;
- //set selected char color .
- SetSelectionCharFormat( cf );
- //select the end string.
- //SetSel( nStart , nStart ) ;
- //replace the select char .
- ReplaceSel( szString ) ;
- return TRUE ;
- }
- /****************************************************
- ** @Description
- ** Set the text color.
- **
- ** @Parameter
- ** COLORREF Color : the input color value .
- **
- ** @Return: always true .
- ** @Author: Table.JHM.太子
- ** e-mail: tablejiang@21cn.com
- ** @Date: 2001 3 26
- ****************************************************/
- BOOL CColorEdit::SetTextColor(COLORREF Color)
- {
- m_Color = Color ;
- return true ;
- }
- int CColorEdit::OnCreate(LPCREATESTRUCT lpCreateStruct)
- {
- if (CRichEditCtrl::OnCreate(lpCreateStruct) == -1)
- return -1;
- // TODO: Add your specialized creation code here
- return 0;
- }