summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebKit/qt/docs/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp
blob: a6b662096c31103253992dcfd18f2a37858d55c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

void wrapInFunction()
{

//! [0]
    // ...
    QWebPage *page = new QWebPage;
    // ...

    QWebInspector *inspector = new QWebInspector;
    inspector->setPage(page);

    connect(page, SIGNAL(webInspectorTriggered(QWebElement)), inspector, SLOT(show()));
//! [0]

}