PySide.QtGui.QTextBlock class provides a container for text fragments in a PySide.QtGui.QTextDocument .
文本块将块或文本段落封装在 PySide.QtGui.QTextDocument . PySide.QtGui.QTextBlock provides read-only access to the block/paragraph structure of QTextDocuments. It is mainly of use if you want to implement your own layouts for the visual representation of a PySide.QtGui.QTextDocument , or if you want to iterate over a document and write out the contents in your own custom format.
Text blocks are created by their parent documents. If you need to create a new text block, or modify the contents of a document while examining its contents, use the cursor-based interface provided by PySide.QtGui.QTextCursor 代替。
各文本块位于特定 PySide.QtGui.QTextBlock.position() 在 PySide.QtGui.QTextBlock.document() . The contents of the block can be obtained by using the PySide.QtGui.QTextBlock.text() function. The PySide.QtGui.QTextBlock.length() function determines the block's size within the document (including formatting characters). The visual properties of the block are determined by its text PySide.QtGui.QTextBlock.layout() , its PySide.QtGui.QTextBlock.charFormat() , and its PySide.QtGui.QTextBlock.blockFormat() .
PySide.QtGui.QTextBlock.next() and PySide.QtGui.QTextBlock.previous() functions enable iteration over consecutive valid blocks in a document under the condition that the document is not modified by other means during the iteration process. Note that, although blocks are returned in sequence, adjacent blocks may come from different places in the document structure. The validity of a block can be determined by calling PySide.QtGui.QTextBlock.isValid() .
PySide.QtGui.QTextBlock provides comparison operators to make it easier to work with blocks: PySide.QtGui.QTextBlock.operator==() compares two block for equality, PySide.QtGui.QTextBlock.operator!=() compares two blocks for inequality, and PySide.QtGui.QTextBlock.operator<() determines whether a block precedes another in the same document.
| 参数: | o – PySide.QtGui.QTextBlock |
|---|
拷贝 other 文本块的属性到此文本块。
| 返回类型: | PyObject |
|---|
| 返回类型: | PySide.QtGui.QTextBlock::iterator |
|---|
Returns a text block iterator pointing to the beginning of the text block.
| 返回类型: | PySide.QtGui.QTextBlockFormat |
|---|
返回 PySide.QtGui.QTextBlockFormat that describes block-specific properties.
| 返回类型: | PySide.QtCore.int |
|---|
Returns an index into the document's internal list of block formats for the text block's format.
| 返回类型: | PySide.QtCore.int |
|---|
返回此块的编号,或 -1 若块无效。
| 返回类型: | PySide.QtGui.QTextCharFormat |
|---|
返回 PySide.QtGui.QTextCharFormat that describes the block's character format. The block's character format is used when inserting text into an empty block.
| 返回类型: | PySide.QtCore.int |
|---|
Returns an index into the document's internal list of character formats for the text block's character format.
清零 PySide.QtGui.QTextLayout 所用布局并显示块内容。
| 参数: | position – PySide.QtCore.int |
|---|---|
| 返回类型: | PySide.QtCore.bool |
Returns true if the given position is located within the text block; otherwise returns false.
| 返回类型: | PySide.QtGui.QTextDocument |
|---|
Returns the text document this text block belongs to, or 0 if the text block does not belong to any document.
| 返回类型: | PySide.QtGui.QTextBlock::iterator |
|---|
返回指向文本块末尾的文本块迭代器。
| 返回类型: | PySide.QtCore.int |
|---|
Returns the first line number of this block, or -1 if the block is invalid. Unless the layout supports it, the line number is identical to the block number.
| 返回类型: | PySide.QtCore.int |
|---|
| 返回类型: | PySide.QtCore.bool |
|---|
Returns true if this text block is valid; otherwise returns false.
| 返回类型: | PySide.QtCore.bool |
|---|
Returns true if the block is visible; otherwise returns false.
| 返回类型: | PySide.QtGui.QTextLayout |
|---|
返回 PySide.QtGui.QTextLayout 所用布局并显示块内容。
注意:返回的 PySide.QtGui.QTextLayout object can only be modified from the documentChanged implementation of a PySide.QtGui.QAbstractTextDocumentLayout subclass. Any changes applied from the outside cause undefined behavior.
| 返回类型: | PySide.QtCore.int |
|---|
返回块的长度 (以字符为单位)。
注意
The length returned includes all formatting characters, for example, newline.
| 返回类型: | PySide.QtCore.int |
|---|
Returns the line count. Not all document layouts support this feature.
| 返回类型: | PySide.QtGui.QTextBlock |
|---|
返回此块之后的文档文本块;或空文本块若这是最后一个。
注意:下一个块可能与此块位于不同的框架 (或表格) 中。
| 参数: | o – PySide.QtGui.QTextBlock |
|---|---|
| 返回类型: | PySide.QtCore.bool |
Returns true if this text block is different from the other 文本块。
| 参数: | o – PySide.QtGui.QTextBlock |
|---|---|
| 返回类型: | PySide.QtCore.bool |
Returns true if this text block occurs before the other 文本块在文档中。
| 参数: | o – PySide.QtGui.QTextBlock |
|---|---|
| 返回类型: | PySide.QtCore.bool |
Returns true if this text block is the same as the other 文本块。
| 返回类型: | PySide.QtCore.int |
|---|
返回文档块首字符的索引。
| 返回类型: | PySide.QtGui.QTextBlock |
|---|
Returns the text block in the document before this block, or an empty text block if this is the first one.
注意:下一个块可能与此块位于不同的框架 (或表格) 中。
| 返回类型: | PySide.QtCore.int |
|---|
返回块修订。
| 参数: | count – PySide.QtCore.int |
|---|
把行数设为 count .
| 参数: | rev – PySide.QtCore.int |
|---|
把块修订设为 rev .
| 参数: | data – PySide.QtGui.QTextBlockUserData |
|---|
附加给定 data 对象到文本块。
PySide.QtGui.QTextBlockUserData can be used to store custom settings. The ownership is passed to the underlying text document, i.e. the provided PySide.QtGui.QTextBlockUserData object will be deleted if the corresponding text block gets deleted. The user data object is not stored in the undo history, so it will not be available after undoing the deletion of a text block.
For example, if you write a programming editor in an IDE, you may want to let your user set breakpoints visually in your code for an integrated debugger. In a programming editor a line of text usually corresponds to one PySide.QtGui.QTextBlock 。 PySide.QtGui.QTextBlockUserData interface allows the developer to store data for each PySide.QtGui.QTextBlock , like for example in which lines of the source code the user has a breakpoint set. Of course this could also be stored externally, but by storing it inside the PySide.QtGui.QTextDocument , it will for example be automatically deleted when the user deletes the associated line. It's really just a way to store custom information in the PySide.QtGui.QTextDocument without using custom properties in PySide.QtGui.QTextFormat which would affect the undo/redo stack.
| 参数: | state – PySide.QtCore.int |
|---|
存储指定 state integer value in the text block. This may be useful for example in a syntax highlighter to store a text parsing state.
| 参数: | visible – PySide.QtCore.bool |
|---|
把块的可见性设为 visible .
| 返回类型: | unicode |
|---|
以纯文本形式返回块内容。
| 返回类型: | PySide.QtCore.Qt.LayoutDirection |
|---|
返回解析文本方向。
If the block has no explicit direction set, it will resolve the direction from the blocks content. Returns either Qt.LeftToRight or Qt.RightToLeft .
另请参阅
QTextFormat.layoutDirection() QString.isRightToLeft() Qt.LayoutDirection
| 返回类型: | PySide.QtGui.QTextList |
|---|
If the block represents a list item, returns the list that the item belongs to; otherwise returns 0.
| 返回类型: | PySide.QtGui.QTextBlockUserData |
|---|
返回指针指向 PySide.QtGui.QTextBlockUserData object if previously set with PySide.QtGui.QTextBlock.setUserData() or a null pointer.
| 返回类型: | PySide.QtCore.int |
|---|
返回先前设置的整数值采用 PySide.QtGui.QTextBlock.setUserState() or -1.