Definition at line 143 of file qtextobject.h.
#include <qtextobject.h>
Public Member Functions |
|
| iterator () | |
| iterator (const iterator &o) | |
| iterator & | operator= (const iterator &o) |
| QTextFrame * | parentFrame () const |
| QTextFrame * | currentFrame () const |
| QTextBlock | currentBlock () const |
| bool | atEnd () const |
| bool | operator== (const iterator &o) const |
| bool | operator!= (const iterator &o) const |
| iterator & | operator++ () |
| iterator | operator++ (int) |
| iterator & | operator-- () |
| iterator | operator-- (int) |
Friends |
|
| class | QTextFrame |
| class | QTextTableCell |
| class | QTextDocumentLayoutPrivate |
| iterator | ( | ) |
| QTextFrame* parentFrame | ( | ) | const [inline] |
| QTextFrame* currentFrame | ( | ) | const |
| QTextBlock currentBlock | ( | ) | const |
| bool atEnd | ( | ) | const [inline] |
| bool operator== | ( | const iterator & | o | ) | const [inline] |
Definition at line 166 of file qtextobject.h.
{ return f == o.f && cf == o.cf && cb == o.cb; }
| bool operator!= | ( | const iterator & | o | ) | const [inline] |
Definition at line 167 of file qtextobject.h.
{ return f != o.f || cf != o.cf || cb != o.cb; }
| iterator& operator++ | ( | ) |
| iterator operator++ | ( | int | ) | [inline] |
Definition at line 169 of file qtextobject.h.
{ iterator tmp = *this; operator++(); return tmp; }
| iterator& operator-- | ( | ) |
| iterator operator-- | ( | int | ) | [inline] |
Definition at line 171 of file qtextobject.h.
{ iterator tmp = *this; operator--(); return tmp; }
friend class QTextFrame [friend] |
Definition at line 150 of file qtextobject.h.
friend class QTextTableCell
[friend] |
Definition at line 151 of file qtextobject.h.
friend class QTextDocumentLayoutPrivate
[friend] |
Definition at line 152 of file qtextobject.h.