summaryrefslogtreecommitdiff
path: root/examples/qmlapp/qmlapp.qml
blob: 4f7aafee19fc4a60c756343f848db372fd9fe295 (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
import QtQuick 1.0
import Qt.labs.WebChannel 1.0
import QtWebKit 1.0

Rectangle {
    width: 1000
    height: 360
    WebChannel {
        id: webChannel

        onRequest: {
            var data = JSON.parse(requestData   );
            txt.text = data.a;
            response.send(JSON.stringify({b:'This is a response from QML'}));
        }
    }

    WebView {
        id: webView
        anchors.top: txt.bottom
        height: 200
        settings.localContentCanAccessRemoteUrls: true
        settings.developerExtrasEnabled: true
        url: "index.html?webchannel_baseUrl=" + webChannel.baseUrl
    }

    TextEdit {
        width: 1000
        height: 100
        id: editor
        anchors.top: parent.top
    }
    Text {
        id: txt
        anchors.top: editor.bottom
        text: "BLA"
        MouseArea {
            anchors.fill: parent
            onClicked: {
                webChannel.broadcast("incoming-call", JSON.stringify(editor.text));
            }
        }
    }
}