aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml-type-descriptions/qtmobility-publishsubscribe.qmltypes
blob: e585a6158063938f2f8072eaeeb2a572552453b0 (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
import QtQuick.tooling 1.0

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.

Module {
    Component {
        name: "QDeclarativeValueSpacePublisher"
        prototype: "QObject"
        exports: [
            "QtMobility.publishsubscribe/ValueSpacePublisher 1.2"
        ]
        Property { name: "path"; type: "string" }
        Property { name: "hasSubscribers"; type: "bool"; isReadonly: true }
        Property { name: "keys"; type: "QStringList" }
        Property { name: "value"; type: "QVariant" }
        Property { name: "server"; type: "bool" }
        Signal { name: "subscribersChanged" }
    }
    Component {
        name: "QDeclarativeValueSpaceSubscriber"
        prototype: "QObject"
        exports: [
            "QtMobility.publishsubscribe/ValueSpaceSubscriber 1.1"
        ]
        Property { name: "path"; type: "string" }
        Property { name: "value"; type: "QVariant"; isReadonly: true }
        Property { name: "connected"; type: "bool"; isReadonly: true }
        Property { name: "subPaths"; type: "QStringList"; isReadonly: true }
        Signal { name: "contentsChanged" }
        Signal { name: "pathChanged" }
        Method {
            name: "setPath"
            Parameter { name: "path"; type: "string" }
        }
    }
}