Jean-Marc Lasgouttes wrote:
"Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes:

Abdelrazak> I really think we should get rid of iconv.

We are going to need iconv anyway to convert characters to iso-8859-x
and friends for latex output.

By the way, if we are going to encapsulate Qt unicode table we could as well encapsulate QString conversion facilities including all 8bit locales:

QString provides the following four functions that return a const char * version of the string as QByteArray: toAscii(), toLatin1(), toUtf8(), and toLocal8Bit().
toAscii() returns an ASCII encoded 8-bit string.
toLatin1() returns a Latin-1 (ISO 8859-1) encoded 8-bit string.
toUtf8() returns a UTF-8 encoded 8-bit string. UTF-8 is a superset of ASCII that supports the entire Unicode character set through multibyte sequences.
toLocal8Bit() returns an 8-bit string using the system's local encoding.

Abdel.

Reply via email to