#include <qstring.h>
Public Member Functions |
|
| operator QChar () const | |
| QCharRef & | operator= (const QChar &c) |
| QT_ASCII_CAST_WARN QCharRef & | operator= (char c) |
| QT_ASCII_CAST_WARN QCharRef & | operator= (uchar c) |
| QCharRef & | operator= (const QCharRef &c) |
| QCharRef & | operator= (ushort rc) |
| QCharRef & | operator= (short rc) |
| QCharRef & | operator= (uint rc) |
| QCharRef & | operator= (int rc) |
| bool | isNull () const |
| bool | isPrint () const |
| bool | isPunct () const |
| bool | isSpace () const |
| bool | isMark () const |
| bool | isLetter () const |
| bool | isNumber () const |
| bool | isLetterOrNumber () |
| bool | isDigit () const |
| bool | isLower () const |
| bool | isUpper () const |
| bool | isTitleCase () const |
| int | digitValue () const |
| QChar | toLower () const |
| QChar | toUpper () const |
| QChar | toTitleCase () const |
| QChar::Category | category () const |
| QChar::Direction | direction () const |
| QChar::Joining | joining () const |
| bool | hasMirrored () const |
| QChar | mirroredChar () const |
| QString | decomposition () const |
| QChar::Decomposition | decompositionTag () const |
| uchar | combiningClass () const |
| QChar::UnicodeVersion | unicodeVersion () const |
| uchar | cell () const |
| uchar | row () const |
| void | setCell (uchar cell) |
| void | setRow (uchar row) |
| char | toAscii () const |
| char | toLatin1 () const |
| ushort | unicode () const |
| ushort & | unicode () |
Friends |
|
| class | QString |
| operator QChar | ( | ) | const [inline] |
| QT_ASCII_CAST_WARN QCharRef& operator= | ( | char | c | ) | [inline] |
Definition at line 807 of file qstring.h.
{ return operator=(QChar::fromAscii(c)); }
| QT_ASCII_CAST_WARN QCharRef& operator= | ( | uchar | c | ) | [inline] |
Definition at line 809 of file qstring.h.
{ return operator=(QChar::fromAscii(c)); }
| QCharRef& operator= | ( | ushort | rc | ) | [inline] |
| QCharRef& operator= | ( | short | rc | ) | [inline] |
| QCharRef& operator= | ( | uint | rc | ) | [inline] |
| QCharRef& operator= | ( | int | rc | ) | [inline] |
| bool isNull | ( | ) | const [inline] |
| bool isPrint | ( | ) | const [inline] |
| bool isPunct | ( | ) | const [inline] |
| bool isSpace | ( | ) | const [inline] |
| bool isMark | ( | ) | const [inline] |
| bool isLetter | ( | ) | const [inline] |
| bool isNumber | ( | ) | const [inline] |
| bool isLetterOrNumber | ( | ) | [inline] |
Definition at line 826 of file qstring.h.
{ return QChar(*this).isLetterOrNumber(); }
| bool isDigit | ( | ) | const [inline] |
| bool isLower | ( | ) | const [inline] |
| bool isUpper | ( | ) | const [inline] |
| bool isTitleCase | ( | ) | const [inline] |
Definition at line 830 of file qstring.h.
{ return QChar(*this).isTitleCase(); }
| int digitValue | ( | ) | const [inline] |
Definition at line 832 of file qstring.h.
{ return QChar(*this).digitValue(); }
| QChar toLower | ( | ) | const [inline] |
| QChar toUpper | ( | ) | const [inline] |
| QChar toTitleCase | ( | ) | const [inline] |
Definition at line 835 of file qstring.h.
{ return QChar(*this).toTitleCase(); }
| QChar::Category category | ( | ) | const [inline] |
| QChar::Direction direction | ( | ) | const [inline] |
| QChar::Joining joining | ( | ) | const [inline] |
| bool hasMirrored | ( | ) | const [inline] |
Definition at line 840 of file qstring.h.
{ return QChar(*this).hasMirrored(); }
| QChar mirroredChar | ( | ) | const [inline] |
Definition at line 841 of file qstring.h.
{ return QChar(*this).mirroredChar(); }
| QString decomposition | ( | ) | const [inline] |
Definition at line 842 of file qstring.h.
{ return QChar(*this).decomposition(); }
| QChar::Decomposition decompositionTag | ( | ) | const [inline] |
Definition at line 843 of file qstring.h.
{ return QChar(*this).decompositionTag(); }
| uchar combiningClass | ( | ) | const [inline] |
Definition at line 844 of file qstring.h.
{ return QChar(*this).combiningClass(); }
| QChar::UnicodeVersion unicodeVersion | ( | ) | const [inline] |
Definition at line 846 of file qstring.h.
{ return QChar(*this).unicodeVersion(); }
| uchar cell | ( | ) | const [inline] |
| uchar row | ( | ) | const [inline] |
| void setCell | ( | uchar | cell | ) | [inline] |
| void setRow | ( | uchar | row | ) | [inline] |
| char toAscii | ( | ) | const [inline] |
| char toLatin1 | ( | ) | const [inline] |
| ushort unicode | ( | ) | const [inline] |
| ushort& unicode | ( | ) | [inline] |
friend class QString [friend] |