欢迎来到天天文库
浏览记录
ID:45377377
大小:582.50 KB
页数:44页
时间:2019-11-12
《vc3第11章编辑框类及其应用》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、面向对象与可视化程序设计--VisualC++编程主讲教师:唐龙教授(计算机科学与技术系)黄维通博士(计算机与信息管理中心)清华大学2001年10月8/4/20211第十一章编辑框类及其应用8/4/20212内容提要编辑框类的结构及其方法编辑框类控件的应用8/4/20213§11.1.编辑框类的结构及其方法8/4/202141.CEdit类编辑框控件主要功能——输入或编辑文本编辑框控件单行编辑框控件多行编辑框控件Cedit类是Cwnd类直接派生的。8/4/202151.CEdit类在MFCInclude
2、Afxwin.h中定义了Cedit类当创建CEdit对象时,MFC自动赋予该对象一个标准的Windows编辑控件,它定义了CEdit对象。8/4/20216classCEdit:publicCWnd{DECLARE_DYNAMIC(CEdit)public:CEdit();//此为构造函数定义,以下定义成员函数BOOLCreate(DWORDdwStyle,constRECT&rect,CWnd*pParentWnd,UINTnID);BOOLCanUndo()const;intGetLineCount()c
3、onst;BOOLGetModify()const;voidSetModify(BOOLbModified=TRUE);voidGetRect(LPRECTlpRect)const;DWORDGetSel()const;voidGetSel(int&nStartChar,int&nEndChar)const;HLOCALGetHandle()const;voidSetHandle(HLOCALhBuffer);CEidt类的定义8/4/20217#if(WINVER>=0x400)voidSetMargins(
4、UINTnLeft,UINTnRight);DWORDGetMargins()const;voidSetLimitText(UINTnMax);UINTGetLimitText()const;CPointPosFromChar(UINTnChar)const;intCharFromPos(CPointpt)const;#endifintGetLine(intnIndex,LPTSTRlpszBuffer)const;intGetLine(intnIndex,LPTSTRlpszBuffer,intnMaxLen
5、gth)const;//操作voidEmptyUndoBuffer();BOOLFmtLines(BOOLbAddEOL);lpszBuffer的第一个字必须是buffer的大小!8/4/20218voidLimitText(intnChars=0);intLineFromChar(intnIndex=-1)const;intLineIndex(intnLine=-1)const;intLineLength(intnLine=-1)const;voidLineScroll(intnLines,intnChars
6、=0);voidReplaceSel(LPCTSTRlpszNewText,BOOLbCanUndo=FALSE);voidSetPasswordChar(TCHARch);voidSetRect(LPCRECTlpRect);voidSetRectNP(LPCRECTlpRect);voidSetSel(DWORDdwSelection,BOOLbNoScroll=FALSE);voidSetSel(intnStartChar,intnEndChar,BOOLbNoScroll=FALSE);BOOLSetT
7、abStops(intnTabStops,LPINTrgTabStops);voidSetTabStops();BOOLSetTabStops(constint&cxEachStop);//takesan'int'8/4/20219//剪贴板操作BOOLUndo();voidClear();voidCopy();voidCut();voidPaste();BOOLSetReadOnly(BOOLbReadOnly=TRUE);intGetFirstVisibleLine()const;TCHARGetPassw
8、ordChar()const;//Implementationpublic:virtual~CEdit();//虚拟析构函数};8/4/2021108/4/2021118/4/202112§11.2.编辑框控件的应用8/4/202113[例11-1]设计并实现带有两个编辑框的应用程序,其窗口布局如图11-1,功能如下:单击Showl——Edit1编辑框中显示“Thisisthefi
此文档下载收益归作者所有