summaryrefslogtreecommitdiffstats
path: root/src/plugins/styles/mac/main.mm
blob: 5f4fbd9eb8efc95c09a5abaf5cf6a6d5da9421ed (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
// 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

#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 new QMacStyle();

    return 0;
}

QT_END_NAMESPACE

#include "main.moc"