Hello,

How can I use QPainter to draw string that is not English origin?

I have a QLineEdit that accept external input from user, and then draw it using QPainter:

QPainter->drawText( QPoint( 0, 0 ), QLineEdit->text() );

If user inputs English, Spanish, German, etc, the draw is fine.

However, when user type Chinese, Japanese, or Korean that are not English origin, the QPainter doesn't draw anything...

How can I fix the problem?

Thank you for help.