孙鑫VC++讲座笔记-(5)文本编程
2 void CreateCaret( CBitmap * pBitmap ); // 创建位图插入符
3 void ShowCaret( ); // 显示插入符
4 void HideCaret( ); // 隐藏插入符
5 static void PASCAL SetCaretPos( POINT point ); // 移动插入符号
1)创建插入符要在窗口创建完成之后,CreateSolidCaret函数创建的插入符被初始化为隐藏,所以需要调用ShowCaret()将其显示。
2)使用CreateCaret函数创建位图插入符的时候,不能使用局部的位图对象关联位图资源。(与资源相关联的C++对象,当它析构的时候会同时把与它相关联的资源销毁。)
2,获取当前字体信息的度量:CDC::GetTextMetrics
说明:
2 int tmHeight;//字体高度。Specifies the height (ascent + descent) of characters.
3 int tmAscent;//基线以上的字体高度
4 int tmDescent;//基线以下的字体高度
5 int tmInternalLeading;
6 int tmExternalLeading;
7 int tmAveCharWidth;//字符平均宽度
8 int tmMaxCharWidth;
9 int tmWeight;
10 BYTE tmItalic;
11 BYTE tmUnderlined;
12 BYTE tmStruckOut;
13 BYTE tmFirstChar;
14 BYTE tmLastChar;
15 BYTE tmDefaultChar;
16 BYTE tmBreakChar;
17 BYTE tmPitchAndFamily;
18 BYTE tmCharSet;
19 int tmOverhang;
20 int tmDigitizedAspectX;
21 int tmDigitizedAspectY;
22} TEXTMETRIC;
23
3,OnDraw函数:
virtual void OnDraw( CDC* pDC )
当窗口(从无到有或尺寸大小改变等)要求重绘的时候,会发送WM_PAIN消息,调用OnDraw函数进行重绘。
4,获取字符串的高度和宽度(区别字符串的长度):
2 CSize GetTextExtent( LPCTSTR lpszString, int nCount ) const ;
3 CSize GetTextExtent( const CString & str ) const ;
4 // 说明:
5 The CSize class is similar to the Windows SIZE structure。
6 typedef struct tagSIZE {
7 int cx;//the x-extent
8 int cy;//the y-extent
9} SIZE;
10
2 // 在这作图定义路径层剪切区域
3 BOOL EndPath( );
4 BOOL SelectClipPath( int nMode ); // 调用这个函数来使当前路径层剪切区域与新剪切区域进行互操作。
5 // 在这覆盖作图(包含前定义的路径层区域)定义新的剪切区域
6
说明:
1)SelectClipPath Selects the current path as a clipping region for the device context, combining the new region with any existing clipping region by using the specified mode. The device context identified must contain a closed path.
////
nMode:RGN_AND,RGN_COPY,RGN_DIFF,RGN_OR,RGN_XOR
RGN_AND The new clipping region includes the intersection (overlapping areas) of the current clipping region and the current path.
RGN_COPY The new clipping region is the current path.
RGN_DIFF The new clipping region includes the areas of the current clipping region, and those of the current path are excluded.
RGN_OR The new clipping region includes the union (combined areas) of the current clipping region and the current path.
RGN_XOR The new clipping region includes the union of the current clipping region and the current path, but without the overlapping areas.
2)应用:当作图的时候,如果想要在整幅图形其中的某个部分和其它部分有所区别,我们可以把这部分图形放到路径层当中,然后指定调用指定互操作模式调用SelectClipPath( int nMode )函数来使路径层和覆盖在其上新绘图剪切区域进行互操作,达到特殊效果。
6,关于文本字符串一些函数:
2 virtual COLORREF SetBkColor( COLORREF crColor ); // 设置背景颜色
3 BOOL SetTextBkColor( COLORREF cr ); // 设置文本背景颜色
4 virtual COLORREF SetTextColor( COLORREF crColor ); // 设置文本颜色
5 virtual BOOL TextOut( int x, int y, LPCTSTR lpszString, int nCount ); // 输出文本
6 BOOL TextOut( int x, int y, const CString & str );
7 CString Left( int nCount ) const ; // 得到字符串左边nCount个字符
8 int GetLength( ) const ; // 得到字符串长度
9
7,字体CFont::CFont
2 // Constructs a CFont object. The resulting object must be initialized with CreateFont, CreateFontIndirect, CreatePointFont, or CreatePointFontIndirect before it can be used.
3 选用字体事例代码组:
4 CClientDC dc( this );
5 CFont font; // 构造字体对象
6 font.CreatePointFont( 300 , " 华文行楷 " ,NULL); // 初始化字体对象,与字体资源相关联
7 CFont * pOldFont = dc.SelectObject( & font); // 将新字体选入DC
8
9 dc.SelectObject(pOldFont); // 恢复原字体
10
1)构造字体对象时候,必须初始化。(初始化是将字体对象与字体资源相关联)。
2)初始化对象时候,选用的字体也可以是系统字体,但不一定都有效,据测试选用。
8,在MFC中CEditView 和 cRichEditView类已经完成了初步的文字处理。可以让应用程序的View类以CEditView 和 cRichEditView类为基类。
9,平滑变色
2 CDC::DrawText():将文字的输出局限于一个矩形区域,超出矩形区域的文字都被截断。利用这一特点,可每隔些时间增加矩形大小,从而可实现人眼中的平滑效果。
3 CWnd::SetTimer():设置定时器。按设定的时间定时发送WM_TIMER消息。
说明:
UINT SetTimer( UINT nIDEvent, UINT nElapse, void (CALLBACK EXPORT* lpfnTimer)(HWND, UINT, UINT, DWORD) );
//nIDEvent定时器标示,nElapse消息发送间隔时间,void (CALLBACK EXPORT* lpfnTimer)(HWND, UINT, UINT, DWORD)设置回调函数,如果设置则由设置的回调函数处理WM_TIMER消息,如果没有设置回调函数设为NULL,这发送的WM_TIMER消息压入消息队列,交由相关联的窗口处理(添加WM_TIMER消息处理函数OnTimer())。
afx_msg void OnTimer( UINT nIDEvent );
//响应WM_TIMER消息,nIDEvent为消息对应定时器标示(可以设置不同的定时器发送WM_TIMER消息)
问题:
1,在CCareView类中添加WM_CREATE消息响应函数OnCreate(),WM_CREATE消息是在什么时候被检查到而被响应的呢?
(猜测:添加WM_CREATE消息后,消息被压入消息队列,然后经过消息循环进行分发到具体窗口,从而进行响应)
2,现有一文本文件内容已经读入串STR中,要求在视图客户区按原先文本文件中的格式输出。
问题是,利用CDC的TextOut()来在CView类派生类窗口中输出串时,忽略了串中的TAB、回车换行等格式,无论串有多长均在一行上输出。
这其中是CDC类成员函数TextOut()忽略串中格式的,还是CView类派生类窗口设置从中做怪呢?怎么解决?