Definition at line 593 of file qtextformat.h.
#include <qtextformat.h>

Public Types |
|
| enum | Style
{ ListDisc = -1, ListCircle = -2, ListSquare = -3, ListDecimal = -4, ListLowerAlpha = -5, ListUpperAlpha = -6, ListLowerRoman = -7, ListUpperRoman = -8, ListStyleUndefined = 0 } |
Public Member Functions |
|
| QTextListFormat () | |
| bool | isValid () const |
| void | setStyle (Style style) |
| Style | style () const |
| void | setIndent (int indent) |
| int | indent () const |
Protected Member Functions |
|
| QTextListFormat (const QTextFormat &fmt) | |
Friends |
|
| class | QTextFormat |
| enum Style |
| ListDisc | |
| ListCircle | |
| ListSquare | |
| ListDecimal | |
| ListLowerAlpha | |
| ListUpperAlpha | |
| ListLowerRoman | |
| ListUpperRoman | |
| ListStyleUndefined |
Definition at line 600 of file qtextformat.h.
{
ListDisc = -1,
ListCircle = -2,
ListSquare = -3,
ListDecimal = -4,
ListLowerAlpha = -5,
ListUpperAlpha = -6,
ListLowerRoman = -7,
ListUpperRoman = -8,
ListStyleUndefined = 0
};
| QTextListFormat | ( | ) |
| QTextListFormat | ( | const QTextFormat & | fmt | ) | [explicit, protected] |
| bool isValid | ( | ) | const [inline] |
Reimplemented from QTextFormat.
Definition at line 598 of file qtextformat.h.
{ return isListFormat(); }
| void setStyle | ( | Style | style | ) | [inline] |
Definition at line 625 of file qtextformat.h.
{ setProperty(ListStyle, astyle); }
| Style style | ( | ) | const [inline] |
Definition at line 613 of file qtextformat.h.
{ return static_cast<Style>(intProperty(ListStyle)); }
| void setIndent | ( | int | indent | ) | [inline] |
Definition at line 628 of file qtextformat.h.
{ setProperty(ListIndent, aindent); }
| int indent | ( | ) | const [inline] |
Definition at line 617 of file qtextformat.h.
{ return intProperty(ListIndent); }
friend class QTextFormat
[friend] |
Definition at line 622 of file qtextformat.h.