Lines Matching full:page
54 #include "Page.h"
149 void QWEBKIT_EXPORT qt_drt_setFrameSetFlatteningEnabled(QWebPage* page, bool enabled)
151 QWebPagePrivate::core(page)->settings()->setFrameSetFlatteningEnabled(enabled);
154 void QWEBKIT_EXPORT qt_webpage_setGroupName(QWebPage* page, const QString& groupName)
156 page->handle()->page->setGroupName(groupName);
159 QString QWEBKIT_EXPORT qt_webpage_groupName(QWebPage* page)
161 return page->handle()->page->groupName();
414 page = new Page(chromeClient, contextMenuClient, editorClient,
417 settings = new QWebSettings(page->settings());
434 history.d = new QWebHistoryPrivate(page->backForwardList());
449 delete page;
452 WebCore::Page* QWebPagePrivate::core(QWebPage* page)
454 return page->d->page;
468 QWebFrameData frameData(page);
584 WebCore::Editor *editor = page->focusController()->focusedOrMainFrame()->editor();
591 enabled = page->canGoBackOrForward(-1);
594 enabled = page->canGoBackOrForward(1);
760 if (page->focusController()->focusedFrame()
761 && page->focusController()->focusedFrame()->document())
762 oldNode = page->focusController()->focusedFrame()->document()->focusedNode();
779 if (page->focusController()->focusedFrame()
780 && page->focusController()->focusedFrame()->document())
781 newNode = page->focusController()->focusedFrame()->document()->focusedNode();
855 WebCore::Frame* focusFrame = page->focusController()->focusedOrMainFrame();
892 Frame* frame = page->focusController()->focusedFrame();
942 the user clicks on the web page with the right mouse button. It is
1038 WebCore::Frame* frame = page->focusController()->focusedOrMainFrame();
1087 WebCore::Frame* frame = page->focusController()->focusedOrMainFrame();
1094 FocusController *focusController = page->focusController();
1106 FocusController *focusController = page->focusController();
1117 Qt::DropAction action = dragOpToDropAction(page->dragController()->dragEntered(&dragData));
1129 Qt::DropAction action = dragOpToDropAction(page->dragController()->dragEntered(&dragData));
1141 page->dragController()->dragExited(&dragData);
1150 page->dragController()->dragExited(&dragData);
1160 Qt::DropAction action = dragOpToDropAction(page->dragController()->dragUpdated(&dragData));
1172 Qt::DropAction action = dragOpToDropAction(page->dragController()->dragUpdated(&dragData));
1186 if (page->dragController()->performDrag(&dragData))
1198 if (page->dragController()->performDrag(&dragData))
1214 \brief the page's palette
1238 WebCore::Frame *frame = page->focusController()->focusedOrMainFrame();
1300 WebCore::Frame* frame = page->focusController()->focusedOrMainFrame();
1397 This method is used by the input method to query a set of properties of the page
1407 Frame* frame = d->page->focusController()->focusedFrame();
1543 return page->inspectorController();
1593 This enum describes the types of action which can be performed on the web page.
1613 \value Stop Stop loading the current page.
1614 \value Reload Reload the current page.
1615 \value ReloadAndBypassCache Reload the current page, but do not use any local cache. (Added in Qt 4.6)
1701 The loadStarted() signal is emitted when the page begins to load.The
1703 of the web page completes loading, such as an embedded image, a script,
1704 etc. Finally, the loadFinished() signal is emitted when the page has
1755 Destroys the web page.
1775 Returns the main frame of the page.
1778 want to explicitly render a web page into a given painter.
1796 return static_cast<WebCore::FrameLoaderClientQt *>(d->page->focusController()->focusedOrMainFrame()->loader()->client())->webFrame();
1826 Sets the \a view that is associated with the web page.
1848 Returns the view widget that is associated with the web page.
1945 return QMessageBox::Yes == QMessageBox::information(view(), tr("JavaScript Problem - %1").arg(mainFrame()->url().host()), tr("The script on this page appears to have a problem. Do you want to stop the script?"), QMessageBox::Yes, QMessageBox::No);
1955 If the view associated with the web page is a QWebView object, then the default implementation forwards
1968 return newView->page();
1995 if (Page* oldPage = frame->page()) {
1997 if (Page* newPage = oldPage->chrome()->createWindow(frame,
2015 WebCore::Frame *frame = d->page->focusController()->focusedOrMainFrame();
2066 d->page->goBack();
2069 d->page->goForward();
2094 d->page->inspectorController()->inspect(d->hitTestResult.d->innerNonSharedNode.get());
2123 By default, for a newly-created Web page, this property contains a size with
2156 The size affects the layout of the page in the viewport. If set to a fixed size of
2157 1024x768 for example then webkit will layout the page as if the viewport were that size
2188 The default implementation interprets the page's linkDelegationPolicy and emits linkClicked accordingly or returns true
2226 return d->page->focusController()->focusedOrMainFrame()->selectedText();
2236 triggering the corresponding action is performed on the page.
2504 \brief whether the page contains unsubmitted form data
2651 Frame *frame = d->page->focusController()->focusedFrame();
2665 If this property is enabled the contents of the page can be edited by the user through a visible
2666 cursor. If disabled (the default) only HTML elements in the web page with their
2673 d->page->setTabKeyCyclesThroughElements(!editable);
2736 custom event handlers in the web page. Returns true if the event was handled;
2739 A web page may swallow a context menu event through a custom event handler, allowing for context
2745 d->page->contextMenuController()->clearContextMenu();
2753 WebCore::Frame* focusedFrame = d->page->focusController()->focusedOrMainFrame();
2755 ContextMenu *menu = d->page->contextMenuController()->contextMenu();
2765 Updates the page's actions depending on the position \a pos. For example if \a pos is over an image
2781 WebCore::Frame* focusedFrame = d->page->focusController()->focusedOrMainFrame();
2792 if (d->page->inspectorController()->enabled())
2825 This enum describes the types of extensions that the page can support. Before using these extensions, you
2828 \value ChooseMultipleFilesExtension Whether the web page supports multiple file selection.
2860 for the error page extension.
2875 \brief The ErrorPageExtensionReturn describes the error page, which will be shown for the
2880 The ErrorPageExtensionReturn class holds the data needed for creating an error page. Some are
2884 The error page is stored in the \a content byte array, as HTML content. In order to convert a
2896 Constructs a new error page object.
2933 You can call supportsExtension() to check if an extension is supported by the page.
2955 This virtual function returns true if the web page supports \a extension; otherwise false is returned.
2970 Finds the specified string, \a subString, in the page, using the given \a options.
2973 that exist in the page. All subsequent calls will extend the highlight, rather than
2991 d->page->unmarkAllTextMatches();
2994 return d->page->markAllMatchesForText(subString, caseSensitivity, true, 0);
3002 return d->page->findString(subString, caseSensitivity, direction, shouldWrap);
3007 Returns a pointer to the page's settings object.
3338 m_totalBytes = page->progress()->totalPageAndResourceBytesToLoad();
3339 m_bytesReceived = page->progress()->totalBytesReceived();
3344 Returns the total number of bytes that were received from the network to render the current page,
3356 Returns the number of bytes that were received from the network to render the current page.
3368 This signal is emitted when a new load of the page is started.
3387 This signal is emitted when a load of the page is finished.
3410 This signal is emitted when the statusbar \a text is changed by the page.
3416 This signal is emitted whenever the page creates a new \a frame.
3441 page to \a geom. This can happen for example through JavaScript.
3468 This signal is emitted whenever the page requests the web browser window to be closed,
3475 This signal is emitted whenever the page requests the web browser to print \a frame,
3514 This signal is emitted whenever the user clicks on a link and the page's linkDelegationPolicy