Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qtquickcontrols2imaginestyleplugin.cpp
Go to the documentation of this file.
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
6
7#include <QtCore/qloggingcategory.h>
8#include <QtQml/qqml.h>
9#include <QtQuickControls2/private/qquickstyleplugin_p.h>
10
12
15
17{
18 Q_OBJECT
19 Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
20
21public:
23
24 QString name() const override;
25 void initializeTheme(QQuickTheme *theme) override;
26
28};
29
30QtQuickControls2ImagineStylePlugin::QtQuickControls2ImagineStylePlugin(QObject *parent) : QQuickStylePlugin(parent)
31{
32 volatile auto registration = &qml_register_types_QtQuick_Controls_Imagine;
33 Q_UNUSED(registration);
34}
35
37{
38 return QStringLiteral("Imagine");
39}
40
42{
43 this->theme.initialize(theme);
44}
45
46QT_END_NAMESPACE
47
48#include "qtquickcontrols2imaginestyleplugin.moc"
Combined button and popup list for selecting options.
QT_BEGIN_NAMESPACE void qml_register_types_QtQuick_Controls_Imagine()
Q_GHS_KEEP_REFERENCE(qml_register_types_QtQuick_Controls_Imagine)