QApplication::setStyle(QStyleFactory::create("plastique"));
QStyle * QStyleFactory::create ( const QString & key ) [static]
使用QApplication::setStyle可以改变应用程序的外观, QStyleFactory中提供了几种经典的外观.
The valid keys can be retrieved using the keys() function. Typically they include "windows", "motif", "cde", "plastique" and "cleanlooks". Depending on the platform, "windowsxp", "windowsvista" and "macintosh" may be available. Note that keys are case insensitive.
另外还可以创建自己的外观风格, 这个是相当的复杂, 然后使用如 QApplication::setStyle(new NorwegianWoodStyle) 来进行加载使用外观. Demo中的widgets/styles例子创建了一个新的NorwegianWoodStyle外观.