summaryrefslogtreecommitdiff
path: root/tests/qml/data/property.html
blob: 1a8360aa79e4777a33acb580a9a59cd1b921d44d (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
<html>
    <head>
        <script type="text/javascript" src="qrc:///qwebchannel/webchannel.js"></script>
        <script type="text/javascript" src="qrc:///qwebchannel/qobject.js"></script>
        <script type="text/javascript">
            //BEGIN SETUP
            var baseUrl = (/[?&]webChannelBaseUrl=([A-Za-z0-9\-:/\.]+)/.exec(location.search)[1]);
            new QWebChannel(baseUrl, function(channel) {
                setupQObjectWebChannel(channel, function() {
                    channel.exec({label: "init", value: myObj.myProperty()});
                    myObj.myPropertyChanged.connect(function() {
                        channel.exec({label: "changed", value: myObj.myProperty()});
                    });
                    channel.subscribe("setProperty", function(newValue) {
                        myObj.myProperty = newValue;
                    });
                });
            });
            //END SETUP
        </script>
    </head>
    <body>
    </body>
</html>