2011年5月19日星期四

  QTextEdit和QTextDocument(二)

QTextFrame:

组成QTextDocument的树结构,rootframe()得到根节点。只有一系列遍历的方法和设置格式TextFrameFormat的方法。

QTextBlock:

组成QTextDocument的列表结构。

QTextBlock表示QTextDocument中的一个片断。它提供了其中的一个只读的block/paragraph. 它主要用来遍历text document来实现定制的layout或者重写一个新的document. 可以通过text()和length()(包括了格式化的字符)得到文件内容的信息。

它的格式和QTextBlockFormat,QTehextCharFormat,QTextLayout都有关系。

如果要改变document的内容,请用QTextCursor接口。

QTextFragment:

最小的同一个格式的text片断,charFormat()得到QTextCharForamt。可以看作是QTextBlock的组成元素,通过begin()得到iterator来遍历。也是QTextCursor.selection()所返回的类型。

总而言之,根据文档http://doc.qt.nokia.com/4.7/richtext.html

QTextDocument有两种编辑方式,liner和document tree。 liner这种主要就是通过QTextCursor 来操作。

没有评论:

发表评论