⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qchar.3qt

📁 linux下GUI编程工具qt的在线连接帮助手册
💻 3QT
📖 第 1 页 / 共 2 页
字号:
\fCQChar::Separator_Line\fR - Unicode class name Zl.TP\fCQChar::Separator_Paragraph\fR - Unicode class name Zp.TP\fCQChar::Other_Control\fR - Unicode class name Cc.TP\fCQChar::Other_Format\fR - Unicode class name Cf.TP\fCQChar::Other_Surrogate\fR - Unicode class name Cs.TP\fCQChar::Other_PrivateUse\fR - Unicode class name Co.TP\fCQChar::Other_NotAssigned\fR - Unicode class name Cn.PPThe following categories are informative in Unicode:.TP\fCQChar::Letter_Uppercase\fR - Unicode class name Lu.TP\fCQChar::Letter_Lowercase\fR - Unicode class name Ll.TP\fCQChar::Letter_Titlecase\fR - Unicode class name Lt.TP\fCQChar::Letter_Modifier\fR - Unicode class name Lm.TP\fCQChar::Letter_Other\fR - Unicode class name Lo.TP\fCQChar::Punctuation_Connector\fR - Unicode class name Pc.TP\fCQChar::Punctuation_Dash\fR - Unicode class name Pd.TP\fCQChar::Punctuation_Open\fR - Unicode class name Ps.TP\fCQChar::Punctuation_Close\fR - Unicode class name Pe.TP\fCQChar::Punctuation_InitialQuote\fR - Unicode class name Pi.TP\fCQChar::Punctuation_FinalQuote\fR - Unicode class name Pf.TP\fCQChar::Punctuation_Other\fR - Unicode class name Po.TP\fCQChar::Symbol_Math\fR - Unicode class name Sm.TP\fCQChar::Symbol_Currency\fR - Unicode class name Sc.TP\fCQChar::Symbol_Modifier\fR - Unicode class name Sk.TP\fCQChar::Symbol_Other\fR - Unicode class name So.PPThere are two categories that are specific to Qt:.TP\fCQChar::NoCategory\fR - used when Qt is dazed and confused and cannot make sense of anything..TP\fCQChar::Punctuation_Dask\fR - old typo alias for Punctuation_Dash.SH "QChar::CombiningClass"This enum defines names for some of the combining classes defined in the Unicode standard. See the Unicode Standard for a more detailed description..SH "QChar::Decomposition"This enum type defines the Unicode decomposition attributes. See the Unicode Standard for a description of the values..SH "QChar::Direction"This enum type defines the Unicode direction attributes. See the Unicode Standard for a description of the values..PPIn order to conform to C/C++ naming conventions "Dir" is prepended to the codes used in the Unicode Standard..SH "QChar::Joining"This enum type defines the Unicode decomposition attributes. See the Unicode Standard for a description of the values..SH MEMBER FUNCTION DOCUMENTATION.SH "QChar::QChar ()"Constructs a null QChar (one that isNull())..SH "QChar::QChar ( char c )"Constructs a QChar corresponding to ASCII/Latin1 character \fIc\fR..SH "QChar::QChar ( uchar c )"Constructs a QChar corresponding to ASCII/Latin1 character \fIc\fR..SH "QChar::QChar ( uchar c, uchar r )"Constructs a QChar for Unicode cell \fIc\fR in row \fIr\fR..SH "QChar::QChar ( const QChar & c )"Constructs a copy of \fIc\fR. This is a deep copy, if such a lightweight object can be said to have deep copies..SH "QChar::QChar ( ushort rc )"Constructs a QChar for the character with Unicode code point \fIrc\fR..SH "QChar::QChar ( short rc )"Constructs a QChar for the character with Unicode code point \fIrc\fR..SH "QChar::QChar ( uint rc )"Constructs a QChar for the character with Unicode code point \fIrc\fR..SH "QChar::QChar ( int rc )"Constructs a QChar for the character with Unicode code point \fIrc\fR..SH "Category QChar::category () const"Returns the character category..PPSee also Category..SH "uchar QChar::cell () const"Returns the cell (least significant byte) of the Unicode character..SH "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..PPThe Qt text rendering engine uses this information to correctly position non spacing marks around a base character..SH "const QString & QChar::decomposition () const"Decomposes a character into its parts. Returns QString::null if no decomposition exists..SH "Decomposition QChar::decompositionTag () const"Returns the tag defining the composition of the character. Returns QChar::Single if no decomposition exists..SH "int QChar::digitValue () const"Returns the numeric value of the digit, or -1 if the character is not a digit..SH "Direction QChar::direction () const"Returns the character's direction..PPSee also Direction..SH "bool QChar::isDigit () const"Returns whether the character is a decimal digit (Number_DecimalDigit)..SH "bool QChar::isLetter () const"Returns whether the character is a letter (Letter_* categories)..SH "bool QChar::isLetterOrNumber () const"Returns whether the character is a letter or number (Letter_* or Number_* categories)..SH "bool QChar::isMark () const"Returns whether the character is a mark (Mark_* categories)..SH "bool QChar::isNull () const"Returns TRUE if the character is the Unicode character 0x0000, i.e., ASCII NUL..SH "bool QChar::isNumber () const"Returns whether the character is a number (of any sort - Number_* categories)..PPSee also isDigit()..SH "bool QChar::isPrint () const"Returns whether the character is a printable character. This is any character not of category Cc or Cn. Note that this gives no indication of whether the character is available in a particular font..SH "bool QChar::isPunct () const"Returns whether the character is a punctuation mark (Punctuation_* categories)..SH "bool QChar::isSpace () const"Returns whether the character is a separator character (Separator_* categories)..SH "bool QChar::isSymbol () const"Returns whether the character is a symbol (Symbol_* categories).SH "Joining QChar::joining () const"This function is not supported (it may change to use Unicode character classes)..PPReturns information about the joining properties of the character (needed for Arabic)..SH "char QChar::latin1 () const"Returns a latin-1 copy of this character, if this character is in the latin-1 character set. If not, this function returns 0..SH "QChar QChar::lower () const"Returns the lowercase equivalent if the character is uppercase, otherwise returns the character itself..SH "bool QChar::mirrored () const"Returns whether the character is a mirrored character (one that should be reversed if the text direction is reversed)..SH "QChar QChar::mirroredChar () const"Returns the mirrored char if this character is a mirrored char, otherwise returns the char itself..SH "bool QChar::networkOrdered ()\fC [static]\fR"Returns TRUE if this character is in network byte order (MSB first), and FALSE if it is not. This is a platform-dependent property, so we strongly advise against using this function in portable code..SH "QChar::operator char () const"Returns the Latin1 character equivalent to the QChar, or 0. This is mainly useful for non-internationalized software..PPSee also unicode()..SH "uchar QChar::row () const"Returns the row (most significant byte) of the Unicode character..SH "ushort QChar::unicode () const"Returns the numeric Unicode value equal to the QChar. Normally, you should use QChar objects as they are equivalent, but for some low-level tasks (e.g. indexing into an array of Unicode information), this function is useful..SH "ushort & QChar::unicode ()"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns a reference to the numeric Unicode value equal to the QChar..SH "QChar QChar::upper () const"Returns the uppercase equivalent if the character is lowercase, otherwise returns the character itself..SH RELATED FUNCTION DOCUMENTATION.SH "int operator!= ( QChar c1, QChar c2 )"Returns TRUE if \fIc1\fR and \fIc2\fR are not the same Unicode character..SH "int operator!= ( char ch, QChar c )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if \fIc\fR is not the ASCII/Latin1 character \fIch\fR..SH "int operator!= ( QChar c, char ch )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if \fIc\fR is not the ASCII/Latin1 character \fIch\fR..SH "int operator< ( QChar c1, QChar c2 )"Returns TRUE if the numeric Unicode value of \fIc1\fR is less than that of \fIc2\fR..SH "int operator< ( QChar c, char ch )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if the numeric Unicode value of \fIc\fR is less than that of the ASCII/Latin1 character \fIch\fR..SH "int operator< ( char ch, QChar c )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if the numeric Unicode value of the ASCII/Latin1 character \fIch\fR is less than that of \fIc\fR..SH "int operator<= ( QChar c1, QChar 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..SH "int operator<= ( QChar c, char ch )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if the numeric Unicode value of \fIc\fR is less than or equal to that of the ASCII/Latin1 character \fIch\fR..SH "int operator<= ( char ch, QChar c )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if the numeric Unicode value of the ASCII/Latin1 character \fIch\fR is less than or equal to that of \fIc\fR..SH "bool operator== ( QChar c1, QChar c2 )"Returns TRUE if \fIc1\fR and \fIc2\fR are the same Unicode character..SH "bool operator== ( char ch, QChar c )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if \fIc\fR is the ASCII/Latin1 character \fIch\fR..SH "bool operator== ( QChar c, char ch )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if \fIc\fR is the ASCII/Latin1 character \fIch\fR..SH "int operator> ( QChar c1, QChar c2 )"Returns TRUE if the numeric Unicode value of \fIc1\fR is greater than that of \fIc2\fR..SH "int operator> ( QChar c, char ch )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if the numeric Unicode value of \fIc\fR is greater than that of the ASCII/Latin1 character \fIch\fR..SH "int operator> ( char ch, QChar c )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if the numeric Unicode value of the ASCII/Latin1 character \fIch\fR is greater than that of \fIc\fR..SH "int operator>= ( QChar c1, QChar 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..SH "int operator>= ( QChar c, char ch )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if the numeric Unicode value of \fIc\fR is greater than or equal to that of the ASCII/Latin1 character \fIch\fR..SH "int operator>= ( char ch, QChar c )"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if the numeric Unicode value of the ASCII/Latin1character \fIch\fR is greater than or equal to that of \fIc\fR..SH "SEE ALSO".BR http://doc.trolltech.com/qchar.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qchar.3qt) and the Qtversion (3.0.0).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -