QTextFrame::iterator Class Reference

QTextFrame::iterator Class Reference

#include <qtextobject.h>

Class Description

Definition at line 144 of file qtextobject.h.

Public Member Functions

 iterator ()
 
 iterator (const iterator &o)
 
iteratoroperator= (const iterator &o)
 
QTextFrameparentFrame () const
 
QTextFramecurrentFrame () const
 
QTextBlock currentBlock () const
 
bool atEnd () const
 
bool operator== (const iterator &o) const
 
bool operator!= (const iterator &o) const
 
iteratoroperator++ ()
 
iterator operator++ (int)
 
iteratoroperator-- ()
 
iterator operator-- (int)
 

Friends

class QTextFrame
 
class QTextTableCell
 
class QTextDocumentLayoutPrivate
 

Constructor & Destructor Documentation

iterator ( )
iterator ( const iterator o)

Member Function Documentation

iterator& operator= ( const iterator o)
QTextFrame* parentFrame ( ) const
inline

Definition at line 160 of file qtextobject.h.

160 { return f; }
GLclampf f
Definition: GLee.h:9303
QTextFrame* currentFrame ( ) const
QTextBlock currentBlock ( ) const
bool atEnd ( ) const
inline

Definition at line 165 of file qtextobject.h.

165 { return !cf && cb == e; }
bool operator== ( const iterator o) const
inline

Definition at line 167 of file qtextobject.h.

167 { return f == o.f && cf == o.cf && cb == o.cb; }
GLclampf f
Definition: GLee.h:9303
bool operator!= ( const iterator o) const
inline

Definition at line 168 of file qtextobject.h.

168 { return f != o.f || cf != o.cf || cb != o.cb; }
GLclampf f
Definition: GLee.h:9303
iterator& operator++ ( )
iterator operator++ ( int  )
inline

Definition at line 170 of file qtextobject.h.

170 { iterator tmp = *this; operator++(); return tmp; }
iterator & operator++()
iterator& operator-- ( )
iterator operator-- ( int  )
inline

Definition at line 172 of file qtextobject.h.

172 { iterator tmp = *this; operator--(); return tmp; }
iterator & operator--()

Friends And Related Function Documentation

friend class QTextFrame
friend

Definition at line 151 of file qtextobject.h.

friend class QTextTableCell
friend

Definition at line 152 of file qtextobject.h.

friend class QTextDocumentLayoutPrivate
friend

Definition at line 153 of file qtextobject.h.


The documentation for this class was generated from the following file: