blob: 74fa450c928b0ca54915e15e9be7b2c1987709b6 (
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
|
// Copyright (C) 2017 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
// Qt-Security score:significant reason:default
#include <QtWidgets/qstyleplugin.h>
#include "qandroidstyle_p.h"
QT_BEGIN_NAMESPACE
class QAndroidStylePlugin : public QStylePlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QStyleFactoryInterface" FILE "androidstyle.json")
public:
QStyle *create(const QString &key);
};
QStyle *QAndroidStylePlugin::create(const QString &key)
{
if (key.compare(QLatin1String("android"), Qt::CaseInsensitive) == 0)
return new QAndroidStyle();
return 0;
}
QT_END_NAMESPACE
#include "main.moc"
|