summaryrefslogtreecommitdiff
path: root/examples/standalone/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'examples/standalone/index.html')
-rw-r--r--examples/standalone/index.html58
1 files changed, 58 insertions, 0 deletions
diff --git a/examples/standalone/index.html b/examples/standalone/index.html
new file mode 100644
index 0000000..5efee77
--- /dev/null
+++ b/examples/standalone/index.html
@@ -0,0 +1,58 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <script type="text/javascript" src="../../src/webchannel/webchannel.js"></script>
+ <script type="text/javascript" src="../../src/webchannel/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() {
+ document.getElementById("send").onclick = function() {
+ var input = document.getElementById("input");
+ var text = input.value;
+ if (!text) {
+ return;
+ }
+ var output = document.getElementById("output");
+ output.innerHTML = output.innerHTML + "Send message: " + text + "\n";
+ input.value = "";
+ dialog.receiveText(text);
+ }
+
+ dialog.sendText.connect(function(text) {
+ var output = document.getElementById("output");
+ output.innerHTML = output.innerHTML + "Received message: " + text + "\n";
+ });
+ });
+ });
+
+ window.onload = function() {
+ }
+ //END SETUP
+ </script>
+ <style type="text/css">
+ html {
+ height: 100%;
+ width: 100%;
+ }
+ #input {
+ width: 400px;
+ margin: 0 10px 0 0;
+ }
+ #send {
+ width: 90px;
+ margin: 0;
+ }
+ #output {
+ width: 500px;
+ height: 300px;
+ }
+ </style>
+ </head>
+ <body>
+ <textarea id="output"></textarea><br />
+ <input id="input" /><input type="submit" id="send" value="Send" onclick="javascript:click();" />
+ </body>
+</html>