iterator 类

( QTextFrame::iterator )

iterator 类提供迭代器用于读取内容从 QTextFrame . 更多...

头: #include <iterator>
qmake: QT += gui

公共函数

iterator ()
iterator (const iterator & other )
iterator (iterator && other )
bool atEnd () const
QTextBlock currentBlock () const
QTextFrame * currentFrame () const
QTextFrame * parentFrame () const
bool operator!= (const iterator & other ) const
iterator & operator++ ()
iterator operator++ ( int )
iterator & operator-- ()
iterator operator-- ( int )
iterator & operator= (const iterator & other )
iterator & operator= (iterator && other )
bool operator== (const iterator & other ) const

详细描述

iterator 类提供迭代器用于读取内容从 QTextFrame .

A frame consists of an arbitrary sequence of QTextBlock s and child QTextFrame 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.

成员函数文档编制

iterator:: iterator ()

构造无效迭代器。

iterator:: iterator (const iterator & other )

Copy constructor. Constructs a copy of the other iterator.

iterator:: iterator ( iterator && other )

移动拷贝构造函数。

bool iterator:: atEnd () const

返回 true if the current item is the last item in the text frame.

QTextBlock iterator:: currentBlock () const

Returns the current block the iterator points to. If the iterator points to a child frame, the returned block is invalid.

另请参阅 currentFrame ().

QTextFrame *iterator:: currentFrame () const

Returns the current frame pointed to by the iterator, or 0 if the iterator currently points to a block.

另请参阅 currentBlock ().

QTextFrame *iterator:: parentFrame () const

返回当前帧的父级帧。

另请参阅 currentFrame () 和 QTextFrame::parentFrame ().

bool iterator:: operator!= (const iterator & other ) const

Retuns true if the iterator is different from the other iterator; otherwise returns false .

iterator &iterator:: operator++ ()

将迭代器移到下一帧或块。

另请参阅 currentBlock () 和 currentFrame ().

iterator iterator:: operator++ ( int )

The postfix ++ operator ( i++ ) advances the iterator to the next item in the text frame, and returns an iterator to the old item.

iterator &iterator:: operator-- ()

将迭代器移到上一帧或块。

另请参阅 currentBlock () 和 currentFrame ().

iterator iterator:: operator-- ( int )

The postfix -- operator ( i-- ) makes the preceding item in the current frame, and returns an iterator to the old item.

iterator &iterator:: operator= (const iterator & other )

赋值 other to this iterator and returns a reference to this iterator.

iterator &iterator:: operator= ( iterator && other )

移动赋值运算符。

bool iterator:: operator== (const iterator & other ) const

Retuns true if the iterator is the same as the other iterator; otherwise returns false .