Lines Matching full:page
36 The inspector allows you to see a page current hierarchy and loading
47 \o page() is null
97 Calling with \a page as null will break the current association, if any.
99 If \a page is already associated to another QWebInspector, the association
100 will be replaced and the previous QWebInspector will have no page
103 \sa page()
105 void QWebInspector::setPage(QWebPage* page)
107 if (d->page) {
109 d->page->d->setInspector(0);
111 if (page && page->d->inspector && page->d->inspector != this) {
113 page->d->inspector->setPage(0);
116 d->page = page;
118 if (page) {
120 page->d->setInspector(this);
126 If no web page is currently associated, a null pointer is returned.
128 QWebPage* QWebInspector::page() const
130 return d->page;
156 if (d->page)
157 d->page->d->inspectorController()->show();
170 if (d->page)
171 d->page->d->inspectorController()->setWindowVisible(false);