summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/newwindows.qml
blob: 59e3b3e834f0315635cf4bce9e6542387d2d7848 (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
// 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
    resources: [
        Component {
            id: webViewPage
                Rectangle {
                    width: webView.width
                    height: webView.height
                    WebView {
                        id: webView
                        newWindowComponent: webViewPage
                        newWindowParent: pages
                        url: "newwindows.html"
                    }
                }
        }
    ]
    width: 500
    Loader { sourceComponent: webViewPage }
}