Definition at line 69 of file qtextoption.h.
#include <qtextoption.h>
Public Member Functions |
|
| Tab () | |
| Tab (qreal pos, TabType tabType, QChar delim=QChar()) | |
| bool | operator== (const Tab &other) const |
| bool | operator!= (const Tab &other) const |
Public Attributes |
|
| qreal | position |
| TabType | type |
| QChar | delimiter |
| Tab | ( | ) | [inline] |
Definition at line 70 of file qtextoption.h.
: position(80), type(QTextOption::LeftTab) { }
Definition at line 71 of file qtextoption.h.
| bool operator== | ( | const Tab & | other | ) | const [inline] |
Definition at line 74 of file qtextoption.h.
{
return type == other.type
&& qFuzzyCompare(position, other.position)
&& delimiter == other.delimiter;
}
| bool operator!= | ( | const Tab & | other | ) | const [inline] |
Definition at line 80 of file qtextoption.h.
{
return !operator==(other);
}
| qreal position |
Definition at line 84 of file qtextoption.h.
Definition at line 85 of file qtextoption.h.
Definition at line 86 of file qtextoption.h.