Rajagopalan Srinivasan wrote: > > - The MAC and mystique styles - these are available only on the respective > platforms i suppose. are these just basically inherited from the native > implementations? > No, style engine uses native API when possible, but Qt provides special class QStyle and its subclasses for use by the application. All standard Qt's styles are available on all platforms.
> - i did a basic app with a ProgressBar widget. It is quite plain. how can i > go about changing the styles? > The simplest way is to provide -style command line option, like: ./main -style macintosh You can also try: "windows", "motif", "cde", "plastique", "windowsxp", "macintosh", or "gtk". Additional styles also can be available as plugins, for example KDE includes its own style plugin, automatically used by Qt. Another way is to use QApplication::setStyle or QWidget::setStyle operations, but they are not supported by QtAda for now. _______________________________________________ qtada-users mailing list [email protected] http://lists.qtada.com/mailman/listinfo/qtada-users_lists.qtada.com
