summaryrefslogtreecommitdiffstats
path: root/src/imports/nfc/plugins.qmltypes
blob: 2151ad7da05d489c16bb8991dc40790aaec54cba (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import QtQuick.tooling 1.2

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'qmlplugindump -nonrelocatable QtNfc 5.14'

Module {
    dependencies: ["QtQuick 2.0"]
    Component {
        name: "QDeclarativeNdefFilter"
        prototype: "QObject"
        exports: ["QtNfc/NdefFilter 5.0", "QtNfc/NdefFilter 5.2"]
        exportMetaObjectRevisions: [0, 0]
        Property { name: "type"; type: "string" }
        Property { name: "typeNameFormat"; type: "QQmlNdefRecord::TypeNameFormat" }
        Property { name: "minimum"; type: "int" }
        Property { name: "maximum"; type: "int" }
    }
    Component {
        name: "QDeclarativeNdefMimeRecord"
        prototype: "QQmlNdefRecord"
        exports: ["QtNfc/NdefMimeRecord 5.0", "QtNfc/NdefMimeRecord 5.2"]
        exportMetaObjectRevisions: [0, 0]
        Property { name: "uri"; type: "string"; isReadonly: true }
    }
    Component {
        name: "QDeclarativeNdefTextRecord"
        prototype: "QQmlNdefRecord"
        exports: ["QtNfc/NdefTextRecord 5.0", "QtNfc/NdefTextRecord 5.2"]
        exportMetaObjectRevisions: [0, 0]
        Enum {
            name: "LocaleMatch"
            values: {
                "LocaleMatchedNone": 0,
                "LocaleMatchedEnglish": 1,
                "LocaleMatchedLanguage": 2,
                "LocaleMatchedLanguageAndCountry": 3
            }
        }
        Property { name: "text"; type: "string" }
        Property { name: "locale"; type: "string" }
        Property { name: "localeMatch"; type: "LocaleMatch"; isReadonly: true }
    }
    Component {
        name: "QDeclarativeNdefUriRecord"
        prototype: "QQmlNdefRecord"
        exports: ["QtNfc/NdefUriRecord 5.0", "QtNfc/NdefUriRecord 5.2"]
        exportMetaObjectRevisions: [0, 0]
        Property { name: "uri"; type: "string" }
    }
    Component {
        name: "QDeclarativeNearField"
        prototype: "QObject"
        exports: [
            "QtNfc/NearField 5.0",
            "QtNfc/NearField 5.2",
            "QtNfc/NearField 5.4",
            "QtNfc/NearField 5.5"
        ]
        exportMetaObjectRevisions: [0, 0, 0, 1]
        Property { name: "messageRecords"; type: "QQmlNdefRecord"; isList: true; isReadonly: true }
        Property { name: "filter"; type: "QDeclarativeNdefFilter"; isList: true; isReadonly: true }
        Property { name: "orderMatch"; type: "bool" }
        Property { name: "polling"; revision: 1; type: "bool" }
        Signal { name: "pollingChanged"; revision: 1 }
        Signal { name: "tagFound"; revision: 1 }
        Signal { name: "tagRemoved"; revision: 1 }
    }
    Component {
        name: "QQmlNdefRecord"
        prototype: "QObject"
        exports: ["QtNfc/NdefRecord 5.0", "QtNfc/NdefRecord 5.2"]
        exportMetaObjectRevisions: [0, 0]
        Enum {
            name: "TypeNameFormat"
            values: {
                "Empty": 0,
                "NfcRtd": 1,
                "Mime": 2,
                "Uri": 3,
                "ExternalRtd": 4,
                "Unknown": 5
            }
        }
        Property { name: "type"; type: "string" }
        Property { name: "typeNameFormat"; type: "TypeNameFormat" }
        Property { name: "record"; type: "QNdefRecord" }
    }
}