Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/QtWidgets/qstylefactory.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // Copyright (C) 2016 The Qt Company Ltd.
0002 // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
0003 
0004 #ifndef QSTYLEFACTORY_H
0005 #define QSTYLEFACTORY_H
0006 
0007 #include <QtWidgets/qtwidgetsglobal.h>
0008 #include <QtCore/qstringlist.h>
0009 
0010 QT_BEGIN_NAMESPACE
0011 
0012 
0013 class QStyle;
0014 
0015 class Q_WIDGETS_EXPORT QStyleFactory
0016 {
0017 public:
0018     static QStringList keys();
0019     static QStyle *create(const QString&);
0020 };
0021 
0022 QT_END_NAMESPACE
0023 
0024 #endif // QSTYLEFACTORY_H