summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/newwindows.qml
blob: e2ed58ffd377b99fd06cb792250b1caace28556b (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
// Demonstrates opening new WebViews from HTML
//
// Note that to open windows from JavaScript, you will need to
// allow it on WebView with settings.javascriptCanOpenWindows: true

import Qt 4.6

Row {
    id: pages
    height: 200; width: 500

    Component {
        id: webViewPage
        Rectangle {
            width: webView.width
            height: webView.height
            border.color: "gray"

            WebView {
                id: webView
                newWindowComponent: webViewPage
                newWindowParent: pages
                url: "newwindows.html"
            }
        }
    }

    Loader { sourceComponent: webViewPage }
}