1 | // Copyright (C) 2017 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 QQUICKSTYLE_H |
5 | #define QQUICKSTYLE_H |
6 | |
7 | #include <QtCore/qurl.h> |
8 | #include <QtCore/qstring.h> |
9 | #include <QtQuickControls2/qtquickcontrols2global.h> |
10 | |
11 | QT_BEGIN_NAMESPACE |
12 | |
13 | class Q_QUICKCONTROLS2_EXPORT QQuickStyle |
14 | { |
15 | public: |
16 | static QString name(); |
17 | static void setStyle(const QString &style); |
18 | static void setFallbackStyle(const QString &style); |
19 | }; |
20 | |
21 | QT_END_NAMESPACE |
22 | |
23 | #endif // QQUICKSTYLE_H |
24 | |