aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/windows/qtquickcontrols2windowsstyleplugin.cpp
blob: a3431af9214987726050dd66290dfdbc7eba3899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include <QtQml/qqml.h>
#include <QtQuickControls2/private/qquickstyleplugin_p.h>
#include <QtQuickControls2/qquickstyle.h>

QT_BEGIN_NAMESPACE

extern void qml_register_types_QtQuick_Controls_Windows();
Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Controls_Windows);

class QtQuickControls2WindowsStylePlugin : public QQuickStylePlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)

public:
    QtQuickControls2WindowsStylePlugin(QObject *parent = nullptr);
    QString name() const override;
    void initializeTheme(QQuickTheme *theme) override;
};

QtQuickControls2WindowsStylePlugin::QtQuickControls2WindowsStylePlugin(QObject *parent):
    QQuickStylePlugin(parent)
{
    volatile auto registration = &qml_register_types_QtQuick_Controls_Windows;
    Q_UNUSED(registration);
}

QString QtQuickControls2WindowsStylePlugin::name() const
{
    return QStringLiteral("Windows");
}

void QtQuickControls2WindowsStylePlugin::initializeTheme(QQuickTheme * /*theme*/)
{
}

QT_END_NAMESPACE

#include "qtquickcontrols2windowsstyleplugin.moc"