1/****************************************************************************
2**
3** Copyright (C) 2016 The Qt Company Ltd.
4** Contact: https://www.qt.io/licensing/
5**
6** This file is part of the QtNfc module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see https://www.qt.io/terms-conditions. For further
15** information use the contact form at https://www.qt.io/contact-us.
16**
17** GNU Lesser General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU Lesser
19** General Public License version 3 as published by the Free Software
20** Foundation and appearing in the file LICENSE.LGPL3 included in the
21** packaging of this file. Please review the following information to
22** ensure the GNU Lesser General Public License version 3 requirements
23** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
24**
25** GNU General Public License Usage
26** Alternatively, this file may be used under the terms of the GNU
27** General Public License version 2.0 or (at your option) the GNU General
28** Public license version 3 or any later version approved by the KDE Free
29** Qt Foundation. The licenses are as published by the Free Software
30** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
31** included in the packaging of this file. Please review the following
32** information to ensure the GNU General Public License requirements will
33** be met: https://www.gnu.org/licenses/gpl-2.0.html and
34** https://www.gnu.org/licenses/gpl-3.0.html.
35**
36** $QT_END_LICENSE$
37**
38****************************************************************************/
39
40#include <QtQml/QQmlEngine>
41#include <QtQml/QQmlExtensionPlugin>
42
43#include "qqmlndefrecord.h"
44#include "qdeclarativenearfield_p.h"
45#include "qdeclarativendeffilter_p.h"
46#include "qdeclarativendeftextrecord_p.h"
47#include "qdeclarativendefurirecord_p.h"
48#include "qdeclarativendefmimerecord_p.h"
49
50QT_USE_NAMESPACE
51
52class QNfcQmlPlugin : public QQmlExtensionPlugin
53{
54 Q_OBJECT
55 Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
56
57public:
58 QNfcQmlPlugin(QObject *parent = 0) : QQmlExtensionPlugin(parent) { }
59 void registerTypes(const char *uri)
60 {
61 Q_ASSERT(uri == QStringLiteral("QtNfc"));
62
63 // @uri QtNfc
64
65 // Register the 5.0 types
66 int major = 5;
67 int minor = 0;
68
69 qmlRegisterType<QDeclarativeNearField>(uri, versionMajor: major, versionMinor: minor, qmlName: "NearField");
70 qmlRegisterType<QDeclarativeNdefFilter>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefFilter");
71 qmlRegisterType<QQmlNdefRecord>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefRecord");
72 qmlRegisterType<QDeclarativeNdefTextRecord>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefTextRecord");
73 qmlRegisterType<QDeclarativeNdefUriRecord>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefUriRecord");
74 qmlRegisterType<QDeclarativeNdefMimeRecord>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefMimeRecord");
75
76 // Register the 5.2 types
77 minor = 2;
78 qmlRegisterType<QDeclarativeNearField>(uri, versionMajor: major, versionMinor: minor, qmlName: "NearField");
79 qmlRegisterType<QDeclarativeNdefFilter>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefFilter");
80 qmlRegisterType<QQmlNdefRecord>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefRecord");
81 qmlRegisterType<QDeclarativeNdefTextRecord>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefTextRecord");
82 qmlRegisterType<QDeclarativeNdefUriRecord>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefUriRecord");
83 qmlRegisterType<QDeclarativeNdefMimeRecord>(uri, versionMajor: major, versionMinor: minor, qmlName: "NdefMimeRecord");
84
85 // Register the 5.4 types
86 // introduces 5.4 version, other existing 5.2 exports become automatically available under 5.2-5.4l
87 minor = 4;
88 qmlRegisterType<QDeclarativeNearField>(uri, versionMajor: major, versionMinor: minor, qmlName: "NearField");
89
90 // Register the 5.5 types
91 minor = 5;
92 qmlRegisterType<QDeclarativeNearField, 1>(uri, versionMajor: major, versionMinor: minor, qmlName: "NearField");
93
94
95 // Register the latest Qt version as QML type version
96 qmlRegisterModule(uri, QT_VERSION_MAJOR, QT_VERSION_MINOR);
97 }
98};
99
100#include "plugin.moc"
101
102

source code of qtconnectivity/src/imports/nfc/plugin.cpp