summaryrefslogtreecommitdiffstats
path: root/src/plugins/styles/mac/main.mm
blob: 722266311702428f7dd4ce5f16a73f3803fe70c7 (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
// 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 "qmacstyle_mac_p.h"

#include <QtCore/private/qcore_mac_p.h>

QT_BEGIN_NAMESPACE

class QMacStylePlugin : public QStylePlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QStyleFactoryInterface" FILE "macstyle.json")
public:
    QStyle *create(const QString &key);
};

QStyle *QMacStylePlugin::create(const QString &key)
{
    QMacAutoReleasePool pool;
    if (key.compare(QLatin1String("macos"), Qt::CaseInsensitive) == 0)
        return QMacStyle::create();

    return 0;
}

QT_END_NAMESPACE

#include "main.moc"