1 | // Copyright (C) 2016 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QSTYLEPLUGIN_H |
5 | #define QSTYLEPLUGIN_H |
6 | |
7 | #include <QtWidgets/qtwidgetsglobal.h> |
8 | #include <QtCore/qplugin.h> |
9 | #include <QtCore/qfactoryinterface.h> |
10 | |
11 | QT_BEGIN_NAMESPACE |
12 | |
13 | |
14 | class QStyle; |
15 | |
16 | #define QStyleFactoryInterface_iid "org.qt-project.Qt.QStyleFactoryInterface" |
17 | |
18 | class Q_WIDGETS_EXPORT QStylePlugin : public QObject |
19 | { |
20 | Q_OBJECT |
21 | public: |
22 | explicit QStylePlugin(QObject *parent = nullptr); |
23 | ~QStylePlugin(); |
24 | |
25 | virtual QStyle *create(const QString &key) = 0; |
26 | }; |
27 | |
28 | QT_END_NAMESPACE |
29 | |
30 | #endif // QSTYLEPLUGIN_H |
31 | |