Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QChar Class

The QChar class provides a 16-bit Unicode character. More...

 #include <QChar>

Note: All functions in this class are reentrant.

Public Types

enum Category { Mark_NonSpacing, Mark_SpacingCombining, Mark_Enclosing, Number_DecimalDigit, ..., Symbol_Other }
enum Decomposition { NoDecomposition, Canonical, Circle, Compat, ..., Wide }
enum Direction { DirAL, DirAN, DirB, DirBN, ..., DirWS }
enum Joining { Center, Dual, OtherJoining, Right }
enum SpecialCharacter { Null, Tabulation, LineFeed, CarriageReturn, ..., LastValidCodePoint }
enum UnicodeVersion { Unicode_1_1, Unicode_2_0, Unicode_2_1_2, Unicode_3_0, ..., Unicode_Unassigned }

Public Functions

QChar()
QChar(ushort code)
QChar(uchar cell, uchar row)
QChar(short code)
QChar(uint code)
QChar(int code)
QChar(SpecialCharacter ch)
QChar(QLatin1Char ch)
QChar(char ch)
QChar(uchar ch)
Category category() const
uchar cell() const
unsigned char combiningClass() const
QString decomposition() const
Decomposition decompositionTag() const
int digitValue() const
Direction direction() const
bool hasMirrored() const
bool isDigit() const
bool isHighSurrogate() const
bool isLetter() const
bool isLetterOrNumber() const
bool isLowSurrogate() const
bool isLower() const
bool isMark() const
bool isNonCharacter() const
bool isNull() const
bool isNumber() const
bool isPrint() const
bool isPunct() const
bool isSpace() const
bool isSurrogate() const
bool isSymbol() const
bool isTitleCase() const
bool isUpper() const
Joining joining() const
QChar mirroredChar() const
uchar row() const
char toAscii() const (deprecated)
QChar toCaseFolded() const
char toLatin1() const
QChar toLower() const
QChar toTitleCase() const
QChar toUpper() const
ushort unicode() const
ushort & unicode()
UnicodeVersion unicodeVersion() const

Static Public Members

Category category(uint ucs4)
unsigned char combiningClass(uint ucs4)
UnicodeVersion currentUnicodeVersion()
QString decomposition(uint ucs4)
Decomposition decompositionTag(uint ucs4)
int digitValue(uint ucs4)
Direction direction(uint ucs4)
QChar fromAscii(char c) (deprecated)
QChar fromLatin1(char c)
bool hasMirrored(uint ucs4)
ushort highSurrogate(uint ucs4)
bool isDigit(uint ucs4)
bool isHighSurrogate(uint ucs4)
bool isLetter(uint ucs4)
bool isLetterOrNumber(uint ucs4)
bool isLowSurrogate(uint ucs4)
bool isLower(uint ucs4)
bool isMark(uint ucs4)
bool isNonCharacter(uint ucs4)
bool isNumber(uint ucs4)
bool isPrint(uint ucs4)
bool isPunct(uint ucs4)
bool isSpace(uint ucs4)
bool isSurrogate(uint ucs4)
bool isSymbol(uint ucs4)
bool isTitleCase(uint ucs4)
bool isUpper(uint ucs4)
Joining joining(uint ucs4)
ushort lowSurrogate(uint ucs4)
uint mirroredChar(uint ucs4)
bool requiresSurrogates(uint ucs4)
uint surrogateToUcs4(ushort high, ushort low)
uint surrogateToUcs4(QChar high, QChar low)
uint toCaseFolded(uint ucs4)
uint toLower(uint ucs4)
uint toTitleCase(uint ucs4)
uint toUpper(uint ucs4)
UnicodeVersion unicodeVersion(uint ucs4)

Related Non-Members

bool operator!=(QChar c1, QChar c2)
bool operator<(QChar c1, QChar c2)
QDataStream & operator<<(QDataStream & out, QChar chr)
bool operator<=(QChar c1, QChar c2)
bool operator==(QChar c1, QChar c2)
bool operator>(QChar c1, QChar c2)
bool operator>=(QChar c1, QChar c2)
QDataStream & operator>>(QDataStream & in, QChar & chr)

Detailed Description

The QChar class provides a 16-bit Unicode character.

In Qt, Unicode characters are 16-bit entities without any markup or structure. This class represents such an entity. It is lightweight, so it can be used everywhere. Most compilers treat it like a unsigned short.

QChar provides a full complement of testing/classification functions, converting to and from other formats, converting from composed to decomposed Unicode, and trying to compare and case-convert if you ask it to.

The classification functions include functions like those in the standard C++ header <cctype> (formerly <ctype.h>), but operating on the full range of Unicode characters, not just for the ASCII range. They all return true if the character is a certain type of character; otherwise they return false. These classification functions are isNull() (returns true if the character is '\0'), isPrint() (true if the character is any sort of printable character, including whitespace), isPunct() (any sort of punctation), isMark() (Unicode Mark), isLetter() (a letter), isNumber() (any sort of numeric character, not just 0-9), isLetterOrNumber(), and isDigit() (decimal digits). All of these are wrappers around category() which return the Unicode-defined category of each character. Some of these also calculate the derived properties (i.e. isSpace() returns true if the character is of category Separator_* or an exceptional code point from Other_Control category).

QChar also provides direction(), which indicates the "natural" writing direction of this character. The joining() function indicates how the character joins with it's neighbors (needed mostly for Arabic) and finally hasMirrored(), which indicates whether the character needs to be mirrored when it is printed in it's "unnatural" writing direction.

Composed Unicode characters (like ring) can be converted to decomposed Unicode ("a" followed by "ring above") by using decomposition().

In Unicode, comparison is not necessarily possible and case conversion is very difficult at best. Unicode, covering the "entire" world, also includes most of the world's case and sorting problems. operator==() and friends will do comparison based purely on the numeric Unicode value (code point) of the characters, and toUpper() and toLower() will do case changes when the character has a well-defined uppercase/lowercase equivalent. For locale-dependent comparisons, use QString::localeAwareCompare().

The conversion functions include unicode() (to a scalar), toLatin1() (to scalar, but converts all non-Latin-1 characters to 0), row() (gives the Unicode row), cell() (gives the Unicode cell), digitValue() (gives the integer value of any of the numerous digit characters), and a host of constructors.

QChar provides constructors and cast operators that make it easy to convert to and from traditional 8-bit chars. If you defined QT_NO_CAST_FROM_ASCII and QT_NO_CAST_TO_ASCII, as explained in the QString documentation, you will need to explicitly call fromLatin1(), or use QLatin1Char, to construct a QChar from an 8-bit char, and you will need to call toLatin1() to get the 8-bit value back.

For more information see "About the Unicode Character Database".

See also Unicode, QString, and QLatin1Char.

Member Type Documentation

enum QChar::Category

This enum maps the Unicode character categories.

The following characters are normative in Unicode:

ConstantValueDescription
QChar::Mark_NonSpacing0Unicode class name Mn
QChar::Mark_SpacingCombining1Unicode class name Mc
QChar::Mark_Enclosing2Unicode class name Me
QChar::Number_DecimalDigit3Unicode class name Nd
QChar::Number_Letter4Unicode class name Nl
QChar::Number_Other5Unicode class name No
QChar::Separator_Space6Unicode class name Zs
QChar::Separator_Line7Unicode class name Zl
QChar::Separator_Paragraph8Unicode class name Zp
QChar::Other_Control9Unicode class name Cc
QChar::Other_Format10Unicode class name Cf
QChar::Other_Surrogate11Unicode class name Cs
QChar::Other_PrivateUse12Unicode class name Co
QChar::Other_NotAssigned13Unicode class name Cn

The following categories are informative in Unicode:

ConstantValueDescription
QChar::Letter_Uppercase14Unicode class name Lu
QChar::Letter_Lowercase15Unicode class name Ll
QChar::Letter_Titlecase16Unicode class name Lt
QChar::Letter_Modifier17Unicode class name Lm
QChar::Letter_Other18Unicode class name Lo
QChar::Punctuation_Connector19Unicode class name Pc
QChar::Punctuation_Dash20Unicode class name Pd
QChar::Punctuation_Open21Unicode class name Ps
QChar::Punctuation_Close22Unicode class name Pe
QChar::Punctuation_InitialQuote23Unicode class name Pi
QChar::Punctuation_FinalQuote24Unicode class name Pf
QChar::Punctuation_Other25Unicode class name Po
QChar::Symbol_Math26Unicode class name Sm
QChar::Symbol_Currency27Unicode class name Sc
QChar::Symbol_Modifier28Unicode class name Sk
QChar::Symbol_Other29Unicode class name So

See also category().

enum QChar::Decomposition

This enum type defines the Unicode decomposition attributes. See the Unicode Standard for a description of the values.

ConstantValue
QChar::NoDecomposition0
QChar::Canonical1
QChar::Circle8
QChar::Compat16
QChar::Final6
QChar::Font2
QChar::Fraction17
QChar::Initial4
QChar::Isolated7
QChar::Medial5
QChar::Narrow13
QChar::NoBreak3
QChar::Small14
QChar::Square15
QChar::Sub10
QChar::Super9
QChar::Vertical11
QChar::Wide12

See also decomposition().

enum QChar::Direction

This enum type defines the Unicode direction attributes. See the Unicode Standard for a description of the values.

In order to conform to C/C++ naming conventions "Dir" is prepended to the codes used in the Unicode Standard.

ConstantValue
QChar::DirAL13
QChar::DirAN5
QChar::DirB7
QChar::DirBN18
QChar::DirCS6
QChar::DirEN2
QChar::DirES3
QChar::DirET4
QChar::DirL0
QChar::DirLRE11
QChar::DirLRO12
QChar::DirNSM17
QChar::DirON10
QChar::DirPDF16
QChar::DirR1
QChar::DirRLE14
QChar::DirRLO15
QChar::DirS8
QChar::DirWS9

See also direction().

enum QChar::Joining

This enum type defines the Unicode joining attributes. See the Unicode Standard for a description of the values.

ConstantValue
QChar::Center3
QChar::Dual1
QChar::OtherJoining0
QChar::Right2

See also joining().

enum QChar::SpecialCharacter

ConstantValueDescription
QChar::Null0x0000A QChar with this value isNull().
QChar::Tabulation0x0009Character tabulation.
QChar::LineFeed0x000a 
QChar::CarriageReturn0x000d 
QChar::Space0x0020 
QChar::Nbsp0x00a0Non-breaking space.
QChar::ReplacementCharacter0xfffdThe character shown when a font has no glyph for a certain codepoint. A special question mark character is often used. Codecs use this codepoint when input data cannot be represented in Unicode.
QChar::ObjectReplacementCharacter0xfffcUsed to represent an object such as an image when such objects cannot be presented.
QChar::ByteOrderMark0xfeff 
QChar::ByteOrderSwapped0xfffe 
QChar::ParagraphSeparator0x2029 
QChar::LineSeparator0x2028 
QChar::LastValidCodePoint0x10ffff 

enum QChar::UnicodeVersion

Specifies which version of the Unicode standard introduced a certain character.

ConstantValueDescription
QChar::Unicode_1_11Version 1.1
QChar::Unicode_2_02Version 2.0
QChar::Unicode_2_1_23Version 2.1.2
QChar::Unicode_3_04Version 3.0
QChar::Unicode_3_15Version 3.1
QChar::Unicode_3_26Version 3.2
QChar::Unicode_4_07Version 4.0
QChar::Unicode_4_18Version 4.1
QChar::Unicode_5_09Version 5.0
QChar::Unicode_Unassigned0The value is not assigned to any character in version 5.0 of Unicode.

See also unicodeVersion() and currentUnicodeVersion().

Member Function Documentation

QChar::QChar()

Constructs a null QChar ('\0').

See also isNull().

QChar::QChar(ushort code)

Constructs a QChar for the character with Unicode code point code.

QChar::QChar(uchar cell, uchar row)

Constructs a QChar for Unicode cell cell in row row.

See also cell() and row().

QChar::QChar(short code)

Constructs a QChar for the character with Unicode code point code.

QChar::QChar(uint code)

Constructs a QChar for the character with Unicode code point code.

QChar::QChar(int code)

Constructs a QChar for the character with Unicode code point code.

QChar::QChar(SpecialCharacter ch)

Constructs a QChar for the predefined character value ch.

QChar::QChar(QLatin1Char ch)

Constructs a QChar corresponding to ASCII/Latin-1 character ch.

QChar::QChar(char ch)

Constructs a QChar corresponding to ASCII/Latin-1 character ch.

QChar::QChar(uchar ch)

Constructs a QChar corresponding to ASCII/Latin-1 character ch.

Category QChar::category() const

Returns the character's category.

Category QChar::category(uint ucs4) [static]

This is an overloaded function.

Returns the category of the UCS-4-encoded character specified by ucs4.

uchar QChar::cell() const

Returns the cell (least significant byte) of the Unicode character.

See also row().

unsigned char QChar::combiningClass() const

Returns the combining class for the character as defined in the Unicode standard. This is mainly useful as a positioning hint for marks attached to a base character.

The Qt text rendering engine uses this information to correctly position non-spacing marks around a base character.

unsigned char QChar::combiningClass(uint ucs4) [static]

This is an overloaded function.

Returns the combining class for the UCS-4-encoded character specified by ucs4, as defined in the Unicode standard.

UnicodeVersion QChar::currentUnicodeVersion() [static]

Returns the most recent supported Unicode version.

QString QChar::decomposition() const

Decomposes a character into it's constituent parts. Returns an empty string if no decomposition exists.

QString QChar::decomposition(uint ucs4) [static]

This is an overloaded function.

Decomposes the UCS-4-encoded character specified by ucs4 into it's constituent parts. Returns an empty string if no decomposition exists.

Decomposition QChar::decompositionTag() const

Returns the tag defining the composition of the character. Returns QChar::NoDecomposition if no decomposition exists.

Decomposition QChar::decompositionTag(uint ucs4) [static]

This is an overloaded function.

Returns the tag defining the composition of the UCS-4-encoded character specified by ucs4. Returns QChar::NoDecomposition if no decomposition exists.

int QChar::digitValue() const

Returns the numeric value of the digit, or -1 if the character is not a digit.

int QChar::digitValue(uint ucs4) [static]

This is an overloaded function.

Returns the numeric value of the digit specified by the UCS-4-encoded character, ucs4, or -1 if the character is not a digit.

Direction QChar::direction() const

Returns the character's direction.

Direction QChar::direction(uint ucs4) [static]

This is an overloaded function.

Returns the direction of the UCS-4-encoded character specified by ucs4.

QChar QChar::fromAscii(char c) [static]

This function is deprecated.

Converts the ASCII character c to it's equivalent QChar. This is mainly useful for non-internationalized software.

An alternative is to use QLatin1Char.

See also fromLatin1() and unicode().

QChar QChar::fromLatin1(char c) [static]

Converts the Latin-1 character c to its equivalent QChar. This is mainly useful for non-internationalized software.

An alternative is to use QLatin1Char.

See also toLatin1() and unicode().

bool QChar::hasMirrored() const

Returns true if the character should be reversed if the text direction is reversed; otherwise returns false.

A bit faster equivalent of (ch.mirroredChar() != ch).

See also mirroredChar().

bool QChar::hasMirrored(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 should be reversed if the text direction is reversed; otherwise returns false.

A bit faster equivalent of (QChar::mirroredChar(ucs4) != ucs4).

This function was introduced in Qt 5.0.

See also mirroredChar().

ushort QChar::highSurrogate(uint ucs4) [static]

Returns the high surrogate part of a UCS-4-encoded code point. The returned result is undefined if ucs4 is smaller than 0x10000.

bool QChar::isDigit() const

Returns true if the character is a decimal digit (Number_DecimalDigit); otherwise returns false.

See also isNumber().

bool QChar::isDigit(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a decimal digit (Number_DecimalDigit); otherwise returns false.

This function was introduced in Qt 5.0.

See also isNumber().

bool QChar::isHighSurrogate() const

Returns true if the QChar is the high part of a UTF16 surrogate (i.e. if its code point is in range [0xd800..0xdbff]); false otherwise.

bool QChar::isHighSurrogate(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is the high part of a UTF16 surrogate (i.e. if its code point is in range [0xd800..0xdbff]); false otherwise.

bool QChar::isLetter() const

Returns true if the character is a letter (Letter_* categories); otherwise returns false.

bool QChar::isLetter(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a letter (Letter_* categories); otherwise returns false.

This function was introduced in Qt 5.0.

bool QChar::isLetterOrNumber() const

Returns true if the character is a letter or number (Letter_* or Number_* categories); otherwise returns false.

bool QChar::isLetterOrNumber(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a letter or number (Letter_* or Number_* categories); otherwise returns false.

This function was introduced in Qt 5.0.

bool QChar::isLowSurrogate() const

Returns true if the QChar is the low part of a UTF16 surrogate (i.e. if its code point is in range [0xdc00..0xdfff]); false otherwise.

bool QChar::isLowSurrogate(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is the low part of a UTF16 surrogate (i.e. if its code point is in range [0xdc00..0xdfff]); false otherwise.

bool QChar::isLower() const

Returns true if the character is a lowercase letter, i.e. category() is Letter_Lowercase.

See also isUpper(), toLower(), and toUpper().

bool QChar::isLower(uint ucs4) [static]

bool QChar::isMark() const

Returns true if the character is a mark (Mark_* categories); otherwise returns false.

See QChar::Category for more information regarding marks.

bool QChar::isMark(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a mark (Mark_* categories); otherwise returns false.

This function was introduced in Qt 5.0.

bool QChar::isNonCharacter() const

Returns true if the QChar is a non-character; false otherwise.

Unicode has a certain number of code points that are classified as "non-characters:" that is, they can be used for internal purposes in applications but cannot be used for text interchange. Those are the last two entries each Unicode Plane ([0xfffe..0xffff], [0x1fffe..0x1ffff], etc.) as well as the entries in range [0xfdd0..0xfdef].

This function was introduced in Qt 5.0.

bool QChar::isNonCharacter(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a non-character; false otherwise.

Unicode has a certain number of code points that are classified as "non-characters:" that is, they can be used for internal purposes in applications but cannot be used for text interchange. Those are the last two entries each Unicode Plane ([0xfffe..0xffff], [0x1fffe..0x1ffff], etc.) as well as the entries in range [0xfdd0..0xfdef].

This function was introduced in Qt 5.0.

bool QChar::isNull() const

Returns true if the character is the Unicode character 0x0000 ('\0'); otherwise returns false.

bool QChar::isNumber() const

Returns true if the character is a number (Number_* categories, not just 0-9); otherwise returns false.

See also isDigit().

bool QChar::isNumber(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a number (Number_* categories, not just 0-9); otherwise returns false.

This function was introduced in Qt 5.0.

See also isDigit().

bool QChar::isPrint() const

Returns true if the character is a printable character; otherwise returns false. This is any character not of category Other_*.

Note that this gives no indication of whether the character is available in a particular font.

bool QChar::isPrint(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a printable character; otherwise returns false. This is any character not of category Other_*.

Note that this gives no indication of whether the character is available in a particular font.

This function was introduced in Qt 5.0.

bool QChar::isPunct() const

Returns true if the character is a punctuation mark (Punctuation_* categories); otherwise returns false.

bool QChar::isPunct(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a punctuation mark (Punctuation_* categories); otherwise returns false.

This function was introduced in Qt 5.0.

bool QChar::isSpace() const

Returns true if the character is a separator character (Separator_* categories or certain code points from Other_Control category); otherwise returns false.

bool QChar::isSpace(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a separator character (Separator_* categories or certain code points from Other_Control category); otherwise returns false.

This function was introduced in Qt 5.0.

bool QChar::isSurrogate() const

Returns true if the QChar contains a code point that is in either the high or the low part of the UTF-16 surrogate range (i.e. if its code point is in range [0xd800..0xdfff]); false otherwise.

This function was introduced in Qt 5.0.

bool QChar::isSurrogate(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 contains a code point that is in either the high or the low part of the UTF-16 surrogate range (i.e. if its code point is in range [0xd800..0xdfff]); false otherwise.

This function was introduced in Qt 5.0.

bool QChar::isSymbol() const

Returns true if the character is a symbol (Symbol_* categories); otherwise returns false.

bool QChar::isSymbol(uint ucs4) [static]

This is an overloaded function.

Returns true if the UCS-4-encoded character specified by ucs4 is a symbol (Symbol_* categories); otherwise returns false.

This function was introduced in Qt 5.0.

bool QChar::isTitleCase() const

Returns true if the character is a titlecase letter, i.e. category() is Letter_Titlecase.

See also isLower(), toUpper(), toLower(), and toTitleCase().

bool QChar::isTitleCase(uint ucs4) [static]

bool QChar::isUpper() const

Returns true if the character is an uppercase letter, i.e. category() is Letter_Uppercase.

See also isLower(), toUpper(), and toLower().

bool QChar::isUpper(uint ucs4) [static]

Joining QChar::joining() const

Returns information about the joining properties of the character (needed for certain languages such as Arabic).

Joining QChar::joining(uint ucs4) [static]

This is an overloaded function.

Returns information about the joining properties of the UCS-4-encoded character specified by ucs4 (needed for certain languages such as Arabic).

ushort QChar::lowSurrogate(uint ucs4) [static]

Returns the low surrogate part of a UCS-4-encoded code point. The returned result is undefined if ucs4 is smaller than 0x10000.

QChar QChar::mirroredChar() const

Returns the mirrored character if this character is a mirrored character; otherwise returns the character itself.

See also hasMirrored().

uint QChar::mirroredChar(uint ucs4) [static]

This is an overloaded function.

Returns the mirrored character if the UCS-4-encoded character specified by ucs4 is a mirrored character; otherwise returns the character itself.

See also hasMirrored().

bool QChar::requiresSurrogates(uint ucs4) [static]

Returns true if the UCS-4-encoded character specified by ucs4 can be split into the high and low parts of a UTF16 surrogate (i.e. if its code point is greater than or equals to 0x10000); false otherwise.

uchar QChar::row() const

Returns the row (most significant byte) of the Unicode character.

See also cell().

uint QChar::surrogateToUcs4(ushort high, ushort low) [static]

Converts a UTF16 surrogate pair with the given high and low values to it's UCS-4-encoded code point.

uint QChar::surrogateToUcs4(QChar high, QChar low) [static]

This is an overloaded function.

Converts a UTF16 surrogate pair (high, low) to it's UCS-4-encoded code point.

char QChar::toAscii() const

This function is deprecated.

Returns the Latin-1 character value of the QChar, or 0 if the character is not representable.

The main purpose of this function is to preserve ASCII characters used in C strings. This is mainly useful for developers of non-internationalized software.

Note: It is not possible to distinguish a non-Latin 1 character from an ASCII 0 (NUL) character. Prefer to use unicode(), which does not have this ambiguity.

Note: This function does not check whether the character value is inside the valid range of US-ASCII.

See also toLatin1() and unicode().

QChar QChar::toCaseFolded() const

Returns the case folded equivalent of the character. For most Unicode characters this is the same as toLowerCase().

uint QChar::toCaseFolded(uint ucs4) [static]

This is an overloaded function.

Returns the case folded equivalent of the UCS-4-encoded character specified by ucs4. For most Unicode characters this is the same as toLowerCase().

char QChar::toLatin1() const

Returns the Latin-1 character equivalent to the QChar, or 0. This is mainly useful for non-internationalized software.

Note: It is not possible to distinguish a non-Latin-1 character from a Latin-1 0 (NUL) character. Prefer to use unicode(), which does not have this ambiguity.

See also unicode().

QChar QChar::toLower() const

Returns the lowercase equivalent if the character is uppercase or titlecase; otherwise returns the character itself.

uint QChar::toLower(uint ucs4) [static]

This is an overloaded function.

Returns the lowercase equivalent of the UCS-4-encoded character specified by ucs4 if the character is uppercase or titlecase; otherwise returns the character itself.

QChar QChar::toTitleCase() const

Returns the title case equivalent if the character is lowercase or uppercase; otherwise returns the character itself.

uint QChar::toTitleCase(uint ucs4) [static]

This is an overloaded function.

Returns the title case equivalent of the UCS-4-encoded character specified by ucs4 if the character is lowercase or uppercase; otherwise returns the character itself.

QChar QChar::toUpper() const

Returns the uppercase equivalent if the character is lowercase or titlecase; otherwise returns the character itself.

uint QChar::toUpper(uint ucs4) [static]

This is an overloaded function.

Returns the uppercase equivalent of the UCS-4-encoded character specified by ucs4 if the character is lowercase or titlecase; otherwise returns the character itself.

ushort QChar::unicode() const

Returns the numeric Unicode value of the QChar.

ushort & QChar::unicode()

Returns a reference to the numeric Unicode value of the QChar.

UnicodeVersion QChar::unicodeVersion() const

Returns the Unicode version that introduced this character.

UnicodeVersion QChar::unicodeVersion(uint ucs4) [static]

This is an overloaded function.

Returns the Unicode version that introduced the character specified in its UCS-4-encoded form as ucs4.

Related Non-Members

bool operator!=(QChar c1, QChar c2)

Returns true if c1 and c2 are not the same Unicode character; otherwise returns false.

bool operator<(QChar c1, QChar c2)

Returns true if the numeric Unicode value of c1 is less than that of c2; otherwise returns false.

QDataStream & operator<<(QDataStream & out, QChar chr)

Writes the char chr to the stream out.

See also Serializing Qt Data Types.

bool operator<=(QChar c1, QChar c2)

Returns true if the numeric Unicode value of c1 is less than or equal to that of c2; otherwise returns false.

bool operator==(QChar c1, QChar c2)

Returns true if c1 and c2 are the same Unicode character; otherwise returns false.

bool operator>(QChar c1, QChar c2)

Returns true if the numeric Unicode value of c1 is greater than that of c2; otherwise returns false.

bool operator>=(QChar c1, QChar c2)

Returns true if the numeric Unicode value of c1 is greater than or equal to that of c2; otherwise returns false.

QDataStream & operator>>(QDataStream & in, QChar & chr)

Reads a char from the stream in into char chr.

See also Serializing Qt Data Types.

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web