Definition at line 59 of file qtexttable.h.
#include <qtexttable.h>
Public Member Functions |
|
| QTextTableCell () | |
| ~QTextTableCell () | |
| QTextTableCell (const QTextTableCell &o) | |
| QTextTableCell & | operator= (const QTextTableCell &o) |
| void | setFormat (const QTextCharFormat &format) |
| QTextCharFormat | format () const |
| int | row () const |
| int | column () const |
| int | rowSpan () const |
| int | columnSpan () const |
| bool | isValid () const |
| QTextCursor | firstCursorPosition () const |
| QTextCursor | lastCursorPosition () const |
| int | firstPosition () const |
| int | lastPosition () const |
| bool | operator== (const QTextTableCell &other) const |
| bool | operator!= (const QTextTableCell &other) const |
| QTextFrame::iterator | begin () const |
| QTextFrame::iterator | end () const |
| int | tableCellFormatIndex () const |
Friends |
|
| class | QTextTable |
| QTextTableCell | ( | ) | [inline] |
Definition at line 62 of file qtexttable.h.
: table(0) {}
| ~QTextTableCell | ( | ) | [inline] |
Definition at line 63 of file qtexttable.h.
{}
| QTextTableCell | ( | const QTextTableCell & | o | ) | [inline] |
Definition at line 64 of file qtexttable.h.
: table(o.table), fragment(o.fragment) {}
| QTextTableCell& operator= | ( | const QTextTableCell & | o | ) | [inline] |
Definition at line 65 of file qtexttable.h.
{ table = o.table; fragment = o.fragment; return *this; }
| void setFormat | ( | const QTextCharFormat & | format | ) |
| QTextCharFormat format | ( | ) | const |
| int row | ( | ) | const |
| int column | ( | ) | const |
| int rowSpan | ( | ) | const |
| int columnSpan | ( | ) | const |
| bool isValid | ( | ) | const [inline] |
| QTextCursor firstCursorPosition | ( | ) | const |
| QTextCursor lastCursorPosition | ( | ) | const |
| int firstPosition | ( | ) | const |
| int lastPosition | ( | ) | const |
| bool operator== | ( | const QTextTableCell & | other | ) | const [inline] |
Definition at line 84 of file qtexttable.h.
{ return table == other.table && fragment == other.fragment; }
| bool operator!= | ( | const QTextTableCell & | other | ) | const [inline] |
Definition at line 86 of file qtexttable.h.
{ return !operator==(other); }
| QTextFrame::iterator begin | ( | ) | const |
| QTextFrame::iterator end | ( | ) | const |
| int tableCellFormatIndex | ( | ) | const |
friend class QTextTable [friend] |
Definition at line 95 of file qtexttable.h.