PySide6.QtGui.QTextFrame¶
- class QTextFrame¶
The
QTextFrame
class represents a frame in aQTextDocument
. More_…Inherited by:
QTextTable
Synopsis¶
Methods¶
def
__init__()
def
__iter__()
def
begin()
def
childFrames()
def
end()
def
firstPosition()
def
frameFormat()
def
lastPosition()
def
parentFrame()
def
setFrameFormat()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
Text frames provide structure for the text in a document. They are used as generic containers for other document elements. Frames are usually created by using
insertFrame()
.Frames can be used to create hierarchical structures in rich text documents. Each document has a root frame (
rootFrame()
), and each frame beneath the root frame has a parent frame and a (possibly empty) list of child frames. The parent frame can be found withparentFrame()
, and thechildFrames()
function provides a list of child frames.Each frame contains at least one text block to enable text cursors to insert new document elements within. As a result, the
iterator
class is used to traverse both the blocks and child frames within a given frame. The first and last child elements in the frame can be found withbegin()
andend()
.A frame also has a format (specified using
QTextFrameFormat
) which can be set withsetFormat()
and read withformat()
.Text cursors can be obtained that point to the first and last valid cursor positions within a frame; use the
firstCursorPosition()
andlastCursorPosition()
functions for this. The frame’s extent in the document can be found withfirstPosition()
andlastPosition()
.You can iterate over a frame’s contents using the
iterator
class: this provides read-only access to its internal list of text blocks and child frames.See also
- __init__(doc)¶
- Parameters:
doc –
QTextDocument
Creates a new empty frame for the text
document
.- __iter__()¶
- Return type:
object
Returns an iterator pointing to the first document element inside the frame. Please see the document STL-style-Iterators for more information.
See also
- childFrames()¶
- Return type:
.list of QTextFrame
Returns a (possibly empty) list of the frame’s child frames.
See also
Returns an iterator pointing to the position past the last document element inside the frame. Please see the document STL-Style Iterators for more information.
See also
- firstCursorPosition()¶
- Return type:
Returns the first cursor position inside the frame.
- firstPosition()¶
- Return type:
int
Returns the first document position inside the frame.
- frameFormat()¶
- Return type:
Returns the frame’s format.
See also
- lastCursorPosition()¶
- Return type:
Returns the last cursor position inside the frame.
- lastPosition()¶
- Return type:
int
Returns the last document position inside the frame.
- parentFrame()¶
- Return type:
Returns the frame’s parent frame. If the frame is the root frame of a document, this will return 0.
See also
- setFrameFormat(format)¶
- Parameters:
format –
QTextFrameFormat
Sets the frame’s
format
.See also
- class iterator¶
The iterator class provides an iterator for reading the contents of a
QTextFrame
. More_…Synopsis¶
Methods¶
def
__init__()
def
__iter__()
def
__next__()
def
atEnd()
def
currentBlock()
def
currentFrame()
def
__ne__()
def
__iadd__()
def
__isub__()
def
__eq__()
def
parentFrame()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
A frame consists of an arbitrary sequence of
QTextBlock
s and childQTextFrame
s. This class provides a way to iterate over the child objects of a frame, and read their contents. It does not provide a way to modify the contents of the frame.- __init__()¶
Constructs an invalid iterator.
- __iter__()¶
- Return type:
object
- __next__()¶
- Return type:
object
- atEnd()¶
- Return type:
bool
Returns
true
if the current item is the last item in the text frame.- currentBlock()¶
- Return type:
Returns the current block the iterator points to. If the iterator points to a child frame, the returned block is invalid.
See also
currentFrame()
- currentFrame()¶
- Return type:
Returns the current frame pointed to by the iterator, or
None
if the iterator currently points to a block.See also
currentBlock()
Returns true if the iterator is different from the
other
iterator; otherwise returnsfalse
.Moves the iterator to the next frame or block.
See also
currentBlock()
currentFrame()
- __iadd__(arg__1)
- Parameters:
arg__1 – int
- Return type:
The postfix
++
operator (i++
) advances the iterator to the next item in the text frame, and returns an iterator to the old item.Moves the iterator to the previous frame or block.
See also
currentBlock()
currentFrame()
- __isub__(arg__1)
- Parameters:
arg__1 – int
- Return type:
The postfix
--
operator (i--
) makes the preceding item in the current frame, and returns an iterator to the old item.Returns true if the iterator is the same as the
other
iterator; otherwise returnsfalse
.- parentFrame()¶
- Return type:
Returns the parent frame of the current frame.
See also
currentFrame()
parentFrame()