home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / include / qstylefactory.h < prev    next >
C/C++ Source or Header  |  2001-09-20  |  352b  |  25 lines

  1. #ifndef QSTYLEFACTORY_H
  2. #define QSTYLEFACTORY_H
  3.  
  4. #ifndef QT_H
  5. #include "qstringlist.h"
  6. #endif // QT_H
  7.  
  8. #ifndef QT_NO_STYLE
  9.  
  10. class QString;
  11. class QStyle;
  12.  
  13. class Q_EXPORT QStyleFactory
  14. {
  15. public:
  16. #ifndef QT_NO_STRINGLIST
  17.     static QStringList keys();
  18. #endif
  19.     static QStyle *create( const QString& );
  20. };
  21.  
  22. #endif //QT_NO_STYLE
  23.  
  24. #endif //QSTYLEFACTORY_H
  25.