PDA

View Full Version : ClearType in a QT app



Lele
18th December 2007, 08:26
Hi all,
is it possible to force a qt application to use ClearType ? (the font rendering on Windows XP)
I've seen a better font rendering when activating this option, but I would like to restrict it only to my app.

thanks in advance

bye

high_flyer
19th December 2007, 11:02
How about QApplication::setFont() (http://doc.trolltech.com/4.3/qapplication.html#setFont)

marcel
19th December 2007, 11:04
How about QApplication::setFont() (http://doc.trolltech.com/4.3/qapplication.html#setFont)
ClearType is just a technology Windows uses to smooth fonts on LCD panels. It is some kind of anti-aliasing. I does not actually have to do with fonts.

high_flyer
19th December 2007, 11:06
Learned something new :)