summaryrefslogtreecommitdiff
path: root/tests/qml/data/property.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qml/data/property.html')
-rw-r--r--tests/qml/data/property.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/qml/data/property.html b/tests/qml/data/property.html
new file mode 100644
index 0000000..1a8360a
--- /dev/null
+++ b/tests/qml/data/property.html
@@ -0,0 +1,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>