summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqchar.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqchar.3qt')
-rw-r--r--doc/man/man3/tqchar.3qt64
1 files changed, 32 insertions, 32 deletions
diff --git a/doc/man/man3/tqchar.3qt b/doc/man/man3/tqchar.3qt
index 032b30141..ca8f15cac 100644
--- a/doc/man/man3/tqchar.3qt
+++ b/doc/man/man3/tqchar.3qt
@@ -209,7 +209,7 @@ Unicode characters are (so far) 16-bit entities without any markup or structure.
.PP
TQChar 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.
.PP
-The classification functions include functions like those in ctype.h, but operating on the full range of Unicode characters. 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 U+0000), 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), isLetterOrNumber(), and isDigit() (decimal digits). All of these are wrappers around category() which return the Unicode-defined category of each character.
+The classification functions include functions like those in ctype.h, but operating on the full range of Unicode characters. 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 U+0000), 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), isLetterOrNumber(), and isDigit() (decimal digits). All of these are wrappers around category() which return the Unicode-defined category of each character.
.PP
TQChar further provides direction(), which indicates the "natural" writing direction of this character. The joining() function indicates how the character joins with its neighbors (needed mostly for Arabic) and finally mirrored(), which indicates whether the character needs to be mirrored when it is printed in its" unnatural" writing direction.
.PP
@@ -347,29 +347,29 @@ Returns the character's direction.
.PP
See also Direction.
.SH "bool TQChar::isDigit () const"
-Returns TRUE if the character is a decimal digit (Number_DecimalDigit); otherwise returns FALSE.
+Returns true if the character is a decimal digit (Number_DecimalDigit); otherwise returns false.
.SH "bool TQChar::isLetter () const"
-Returns TRUE if the character is a letter (Letter_* categories); otherwise returns FALSE.
+Returns true if the character is a letter (Letter_* categories); otherwise returns false.
.SH "bool TQChar::isLetterOrNumber () const"
-Returns TRUE if the character is a letter or number (Letter_* or Number_* categories); otherwise returns FALSE.
+Returns true if the character is a letter or number (Letter_* or Number_* categories); otherwise returns false.
.SH "bool TQChar::isMark () const"
-Returns TRUE if the character is a mark (Mark_* categories); otherwise returns FALSE.
+Returns true if the character is a mark (Mark_* categories); otherwise returns false.
.SH "bool TQChar::isNull () const"
-Returns TRUE if the character is the Unicode character 0x0000 (ASCII NUL); otherwise returns FALSE.
+Returns true if the character is the Unicode character 0x0000 (ASCII NUL); otherwise returns false.
.SH "bool TQChar::isNumber () const"
-Returns TRUE if the character is a number (of any sort - Number_* categories); otherwise returns FALSE.
+Returns true if the character is a number (of any sort - Number_* categories); otherwise returns false.
.PP
See also isDigit().
.SH "bool TQChar::isPrint () const"
-Returns TRUE if the character is a printable character; otherwise returns FALSE. This is any character not of category Cc or Cn.
+Returns true if the character is a printable character; otherwise returns false. This is any character not of category Cc or Cn.
.PP
Note that this gives no indication of whether the character is available in a particular font.
.SH "bool TQChar::isPunct () const"
-Returns TRUE if the character is a punctuation mark (Punctuation_* categories); otherwise returns FALSE.
+Returns true if the character is a punctuation mark (Punctuation_* categories); otherwise returns false.
.SH "bool TQChar::isSpace () const"
-Returns TRUE if the character is a separator character (Separator_* categories); otherwise returns FALSE.
+Returns true if the character is a separator character (Separator_* categories); otherwise returns false.
.SH "bool TQChar::isSymbol () const"
-Returns TRUE if the character is a symbol (Symbol_* categories); otherwise returns FALSE.
+Returns true if the character is a symbol (Symbol_* categories); otherwise returns false.
.SH "Joining TQChar::joining () const"
\fBWarning:\fR This function is not supported (it may change to use Unicode character classes).
.PP
@@ -379,13 +379,13 @@ Returns the Latin-1 value of this character, or 0 if it cannot be represented in
.SH "TQChar TQChar::lower () const"
Returns the lowercase equivalent if the character is uppercase; otherwise returns the character itself.
.SH "bool TQChar::mirrored () const"
-Returns TRUE if the character is a mirrored character (one that should be reversed if the text direction is reversed); otherwise returns FALSE.
+Returns true if the character is a mirrored character (one that should be reversed if the text direction is reversed); otherwise returns false.
.SH "TQChar TQChar::mirroredChar () const"
Returns the mirrored character if this character is a mirrored character, otherwise returns the character itself.
.SH "bool TQChar::networkOrdered ()\fC [static]\fR"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
-Returns TRUE if this character is in network byte order (MSB first); otherwise returns FALSE. This is platform dependent.
+Returns true if this character is in network byte order (MSB first); otherwise returns false. This is platform dependent.
.SH "TQChar::operator char () const"
Returns the Latin-1 character equivalent to the TQChar, or 0. This is mainly useful for non-internationalized software.
.PP
@@ -402,67 +402,67 @@ Returns a reference to the numeric Unicode value equal to the TQChar.
Returns the uppercase equivalent if the character is lowercase; otherwise returns the character itself.
.SH RELATED FUNCTION DOCUMENTATION
.SH "int operator!= ( TQChar c1, TQChar c2 )"
-Returns TRUE if \fIc1\fR and \fIc2\fR are not the same Unicode character; otherwise returns FALSE.
+Returns true if \fIc1\fR and \fIc2\fR are not the same Unicode character; otherwise returns false.
.SH "int operator!= ( char ch, TQChar c )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if \fIc\fR is not the ASCII/Latin-1 character \fIch\fR; otherwise returns FALSE.
+Returns true if \fIc\fR is not the ASCII/Latin-1 character \fIch\fR; otherwise returns false.
.SH "int operator!= ( TQChar c, char ch )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if \fIc\fR is not the ASCII/Latin-1 character \fIch\fR; otherwise returns FALSE.
+Returns true if \fIc\fR is not the ASCII/Latin-1 character \fIch\fR; otherwise returns false.
.SH "int operator< ( TQChar c1, TQChar c2 )"
-Returns TRUE if the numeric Unicode value of \fIc1\fR is less than that of \fIc2\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of \fIc1\fR is less than that of \fIc2\fR; otherwise returns false.
.SH "int operator< ( TQChar c, char ch )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if the numeric Unicode value of \fIc\fR is less than that of the ASCII/Latin-1 character \fIch\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of \fIc\fR is less than that of the ASCII/Latin-1 character \fIch\fR; otherwise returns false.
.SH "int operator< ( char ch, TQChar c )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if the numeric Unicode value of the ASCII/Latin-1 character \fIch\fR is less than that of \fIc\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of the ASCII/Latin-1 character \fIch\fR is less than that of \fIc\fR; otherwise returns false.
.SH "int operator<= ( TQChar c1, TQChar c2 )"
-Returns TRUE if the numeric Unicode value of \fIc1\fR is less than that of \fIc2\fR, or they are the same Unicode character; otherwise returns FALSE.
+Returns true if the numeric Unicode value of \fIc1\fR is less than that of \fIc2\fR, or they are the same Unicode character; otherwise returns false.
.SH "int operator<= ( TQChar c, char ch )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if the numeric Unicode value of \fIc\fR is less than or equal to that of the ASCII/Latin-1 character \fIch\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of \fIc\fR is less than or equal to that of the ASCII/Latin-1 character \fIch\fR; otherwise returns false.
.SH "int operator<= ( char ch, TQChar c )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if the numeric Unicode value of the ASCII/Latin-1 character \fIch\fR is less than or equal to that of \fIc\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of the ASCII/Latin-1 character \fIch\fR is less than or equal to that of \fIc\fR; otherwise returns false.
.SH "bool operator== ( TQChar c1, TQChar c2 )"
-Returns TRUE if \fIc1\fR and \fIc2\fR are the same Unicode character; otherwise returns FALSE.
+Returns true if \fIc1\fR and \fIc2\fR are the same Unicode character; otherwise returns false.
.SH "bool operator== ( char ch, TQChar c )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if \fIc\fR is the ASCII/Latin-1 character \fIch\fR; otherwise returns FALSE.
+Returns true if \fIc\fR is the ASCII/Latin-1 character \fIch\fR; otherwise returns false.
.SH "bool operator== ( TQChar c, char ch )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if \fIc\fR is the ASCII/Latin-1 character \fIch\fR; otherwise returns FALSE.
+Returns true if \fIc\fR is the ASCII/Latin-1 character \fIch\fR; otherwise returns false.
.SH "int operator> ( TQChar c1, TQChar c2 )"
-Returns TRUE if the numeric Unicode value of \fIc1\fR is greater than that of \fIc2\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of \fIc1\fR is greater than that of \fIc2\fR; otherwise returns false.
.SH "int operator> ( TQChar c, char ch )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if the numeric Unicode value of \fIc\fR is greater than that of the ASCII/Latin-1 character \fIch\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of \fIc\fR is greater than that of the ASCII/Latin-1 character \fIch\fR; otherwise returns false.
.SH "int operator> ( char ch, TQChar c )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if the numeric Unicode value of the ASCII/Latin-1 character \fIch\fR is greater than that of \fIc\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of the ASCII/Latin-1 character \fIch\fR is greater than that of \fIc\fR; otherwise returns false.
.SH "int operator>= ( TQChar c1, TQChar c2 )"
-Returns TRUE if the numeric Unicode value of \fIc1\fR is greater than that of \fIc2\fR, or they are the same Unicode character; otherwise returns FALSE.
+Returns true if the numeric Unicode value of \fIc1\fR is greater than that of \fIc2\fR, or they are the same Unicode character; otherwise returns false.
.SH "int operator>= ( TQChar c, char ch )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if the numeric Unicode value of \fIc\fR is greater than or equal to that of the ASCII/Latin-1 character \fIch\fR; otherwise returns FALSE.
+Returns true if the numeric Unicode value of \fIc\fR is greater than or equal to that of the ASCII/Latin-1 character \fIch\fR; otherwise returns false.
.SH "int operator>= ( char ch, TQChar c )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
-Returns TRUE if the numeric Unicode value of the ASCII/Latin-1
+Returns true if the numeric Unicode value of the ASCII/Latin-1
character \fIch\fR is greater than or equal to that of \fIc\fR;
-otherwise returns FALSE.
+otherwise returns false.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/tqchar.html