summaryrefslogtreecommitdiffstats
path: root/src/imports/serviceframework/plugins.qmltypes
blob: 646b19539940f08d991f8b0e8e8f49c09009e1ac (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import QtQuick.tooling 1.1

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated with the command 'qmlplugindump -notrelocatable QtServiceFramework 5.0'.

Module {
    Component {
        name: "QDeclarativeService"
        prototype: "QObject"
        exports: ["QtServiceFramework/Service 5.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "interfaceName"; type: "string" }
        Property { name: "serviceName"; type: "string" }
        Property { name: "majorVersion"; type: "int" }
        Property { name: "minorVersion"; type: "int" }
        Property { name: "valid"; type: "bool"; isReadonly: true }
        Property { name: "serviceObject"; type: "QObject"; isReadonly: true; isPointer: true }
        Property { name: "error"; type: "string"; isReadonly: true }
        Signal {
            name: "error"
            Parameter { name: "errorString"; type: "string" }
        }
    }
    Component {
        name: "QDeclarativeServiceDescriptor"
        prototype: "QObject"
        exports: ["QtServiceFramework/ServiceDescriptor 5.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "serviceName"; type: "string"; isReadonly: true }
        Property { name: "interfaceName"; type: "string"; isReadonly: true }
        Property { name: "majorVersion"; type: "int"; isReadonly: true }
        Property { name: "minorVersion"; type: "int"; isReadonly: true }
        Property { name: "valid"; type: "bool"; isReadonly: true }
    }
    Component {
        name: "QDeclarativeServiceFilter"
        prototype: "QObject"
        exports: ["QtServiceFramework/ServiceFilter 5.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "serviceName"; type: "string" }
        Property { name: "interfaceName"; type: "string" }
        Property { name: "majorVersion"; type: "int" }
        Property { name: "minorVersion"; type: "int" }
        Property { name: "exactVersionMatching"; type: "bool" }
        Property { name: "monitorServiceRegistrations"; type: "bool" }
        Property {
            name: "serviceDescriptions"
            type: "QDeclarativeServiceDescriptor"
            isList: true
            isReadonly: true
        }
        Signal {
            name: "serviceNameChanged"
            Parameter { name: "arg"; type: "string" }
        }
        Signal {
            name: "interfaceNameChanged"
            Parameter { name: "arg"; type: "string" }
        }
        Signal {
            name: "majorVersionChanged"
            Parameter { name: "arg"; type: "int" }
        }
        Signal {
            name: "minorVersionChanged"
            Parameter { name: "arg"; type: "int" }
        }
        Signal {
            name: "exactVersionMatchingChanged"
            Parameter { name: "arg"; type: "bool" }
        }
        Signal {
            name: "monitorServiceRegistrationsChanged"
            Parameter { name: "arg"; type: "bool" }
        }
        Method {
            name: "setServiceName"
            Parameter { name: "arg"; type: "string" }
        }
        Method {
            name: "setInterfaceName"
            Parameter { name: "arg"; type: "string" }
        }
        Method {
            name: "setMajorVersion"
            Parameter { name: "arg"; type: "int" }
        }
        Method {
            name: "setMinorVersion"
            Parameter { name: "arg"; type: "int" }
        }
        Method {
            name: "setExactVersionMatching"
            Parameter { name: "arg"; type: "bool" }
        }
        Method {
            name: "setMonitorServiceRegistrations"
            Parameter { name: "updates"; type: "bool" }
        }
    }
    Component {
        name: "QDeclarativeServiceList"
        prototype: "QObject"
        exports: ["QtServiceFramework/ServiceList 5.0"]
        exportMetaObjectRevisions: [0]
        Enum {
            name: "MatchRule"
            values: {
                "Minimum": 0,
                "Exact": 1
            }
        }
        Property { name: "serviceName"; type: "string" }
        Property { name: "interfaceName"; type: "string" }
        Property { name: "majorVersion"; type: "int" }
        Property { name: "minorVersion"; type: "int" }
        Property { name: "monitorServiceRegistrations"; type: "bool" }
        Property { name: "services"; type: "QDeclarativeService"; isList: true; isReadonly: true }
        Property { name: "versionMatch"; type: "MatchRule" }
        Signal { name: "resultsChanged" }
        Signal {
            name: "servicesChanged"
            Parameter { type: "QDeclarativeService"; isList: true }
        }
    }
    Component {
        name: "QDeclarativeServiceLoader"
        prototype: "QObject"
        exports: ["QtServiceFramework/ServiceLoader 5.0"]
        exportMetaObjectRevisions: [0]
        Enum {
            name: "Status"
            values: {
                "Null": 0,
                "Ready": 1,
                "Loading": 2,
                "Error": 3
            }
        }
        Property { name: "interfaceName"; type: "string" }
        Property { name: "serviceDescriptor"; type: "QDeclarativeServiceDescriptor"; isPointer: true }
        Property { name: "status"; type: "Status"; isReadonly: true }
        Property { name: "asynchronous"; type: "bool" }
        Property { name: "serviceObject"; type: "QObject"; isReadonly: true; isPointer: true }
        Signal {
            name: "interfaceNameChanged"
            Parameter { name: "arg"; type: "string" }
        }
        Signal {
            name: "serviceDescriptorChanged"
            Parameter { name: "arg"; type: "QServiceInterfaceDescriptor"; isPointer: true }
        }
        Signal {
            name: "statusChanged"
            Parameter { name: "arg"; type: "Status" }
        }
        Signal {
            name: "asynchronousChanged"
            Parameter { name: "arg"; type: "bool" }
        }
        Signal {
            name: "serviceObjectChanged"
            Parameter { name: "arg"; type: "QObject"; isPointer: true }
        }
        Method {
            name: "setInterfaceName"
            Parameter { name: "arg"; type: "string" }
        }
        Method {
            name: "setServiceDescriptor"
            Parameter { name: "arg"; type: "QDeclarativeServiceDescriptor"; isPointer: true }
        }
        Method {
            name: "setAsynchronous"
            Parameter { name: "arg"; type: "bool" }
        }
        Method { name: "errorString"; type: "string" }
    }
}