Searched refs:QWKPage (Results 1 – 16 of 16) sorted by relevance
63 static WebCore::ContextMenuAction contextMenuActionForWebAction(QWKPage::WebAction action) in contextMenuActionForWebAction()66 case QWKPage::OpenLink: in contextMenuActionForWebAction()68 case QWKPage::OpenLinkInNewWindow: in contextMenuActionForWebAction()70 case QWKPage::CopyLinkToClipboard: in contextMenuActionForWebAction()72 case QWKPage::OpenImageInNewWindow: in contextMenuActionForWebAction()74 case QWKPage::Cut: in contextMenuActionForWebAction()76 case QWKPage::Copy: in contextMenuActionForWebAction()78 case QWKPage::Paste: in contextMenuActionForWebAction()80 case QWKPage::SelectAll: in contextMenuActionForWebAction()89 QWKPagePrivate::QWKPagePrivate(QWKPage* qq, QWKContext* c) in QWKPagePrivate()[all …]
24 class QWEBKIT_EXPORT QWKPage : public QObject {54 ViewportAttributes(const QWKPage::ViewportAttributes& other);58 QWKPage::ViewportAttributes& operator=(const QWKPage::ViewportAttributes& other);78 friend class QWKPage; variable81 QWKPage(QWKContext*);82 virtual ~QWKPage();104 typedef QWKPage* (*CreateNewPageFn)(QWKPage*);
43 QWKPagePrivate(QWKPage*, QWKContext*);46 static QWKPagePrivate* get(QWKPage* page) { return page->d; } in get()111 void updateAction(QWKPage::WebAction action);119 QWKPage* q;125 QAction* actions[QWKPage::WebActionCount];132 QWKPage::CreateNewPageFn createNewPageFn;143 QtViewportAttributesPrivate(QWKPage::ViewportAttributes* qq) in QtViewportAttributesPrivate()147 QWKPage::ViewportAttributes* q;
34 static QWKPage* toQWKPage(const void* clientInfo) in toQWKPage()37 return reinterpret_cast<QWKPage*>(const_cast<void*>(clientInfo)); in toQWKPage()144 QWKPage* wkPage = toQWKPage(clientInfo); in qt_wk_createNewPage()146 QWKPage::CreateNewPageFn createNewPageFn = d->createNewPageFn; in qt_wk_createNewPage()151 if (QWKPage* newPage = createNewPageFn(wkPage)) { in qt_wk_createNewPage()
58 QWKPage* page;77 d->page = new QWKPage(context); in QGraphicsWKView()97 QWKPage* QGraphicsWKView::page() const in page()139 void QGraphicsWKView::triggerPageAction(QWKPage::WebAction action, bool checked) in triggerPageAction()146 page()->triggerAction(QWKPage::Back); in back()151 page()->triggerAction(QWKPage::Forward); in forward()156 page()->triggerAction(QWKPage::Reload); in reload()161 page()->triggerAction(QWKPage::Stop); in stop()
25 class QWKPage; variable77 friend class QWKPage; variable
31 QWKPage* page() const;41 void triggerPageAction(QWKPage::WebAction action, bool checked = false);
40 static QWKPage::WebAction webActionForContextMenuAction(WebCore::ContextMenuAction action) in webActionForContextMenuAction()44 return QWKPage::OpenLink; in webActionForContextMenuAction()46 return QWKPage::OpenLinkInNewWindow; in webActionForContextMenuAction()48 return QWKPage::CopyLinkToClipboard; in webActionForContextMenuAction()50 return QWKPage::OpenImageInNewWindow; in webActionForContextMenuAction()52 return QWKPage::Back; in webActionForContextMenuAction()54 return QWKPage::Forward; in webActionForContextMenuAction()56 return QWKPage::Stop; in webActionForContextMenuAction()58 return QWKPage::Reload; in webActionForContextMenuAction()60 return QWKPage::Cut; in webActionForContextMenuAction()[all …]
34 class QWKPage; variable41 static PassRefPtr<WebContextMenuProxyQt> create(QWKPage*);44 WebContextMenuProxyQt(QWKPage*);51 QWKPage* const m_page;
34 static QWKPage* newPageFunction(QWKPage* page) in newPageFunction()79 viewMenu->addAction(page()->action(QWKPage::Stop)); in BrowserWindow()80 viewMenu->addAction(page()->action(QWKPage::Reload)); in BrowserWindow()126 bar->addAction(page()->action(QWKPage::Back)); in BrowserWindow()127 bar->addAction(page()->action(QWKPage::Forward)); in BrowserWindow()128 bar->addAction(page()->action(QWKPage::Reload)); in BrowserWindow()129 bar->addAction(page()->action(QWKPage::Stop)); in BrowserWindow()157 QWKPage* BrowserWindow::page() in page()388 QWKPage* wkPage = page(); in updateUserAgentList()
48 QWKPage* page();
36 QScopedPointer<QWKPage> m_page;42 m_page.reset(new QWKPage(m_context.data())); in init()
463 (QWKPage::QWKPage): Add WKPageLoaderClient::shouldGoToHistoryItem.2765 (QWKPage::setViewportSize):3487 (QWKPage::QWKPage):4659 [Qt][WK2] Combine QWKPage::engine{Connected,Disconnected} into one signal.4662 QWKPage::engineConnectionChanged(bool connected).5275 [Qt][WK2] Add QWKPage APIs regarding engine process availability5278 QWKPage will now emit engineConnected() and engineDisconnected()5281 Also added QWKPage::isConnectedToEngine() for convenience.5287 (QWKPage::isConnectedToEngine):5686 [Qt][WK2] Add QWKPage::processCrashed() signal[all …]
357 Chrome::setStatusbarText() now correctly causes the QWKPage::statusBarMessage() signal.360 - QWKPage::toolTipChanged(const QString& toolTip) [signal]373 (QWKPage::QWKPage):647 (QWKPage::QWKPage): Added takeFocus() callback.1770 (QWKPage::QWKPage):8109 (QWKPage::viewportAttributesForSize):10955 (QWKPage::viewportAttributesForSize):10966 (QWKPage::viewportAttributesForSize): pass in a value for the document argument.12418 …[Qt] [WK2] When the context menu is empty, we should still send the signal QWKPage::showContextMen…12421 … Send the signal QWKPage::showContextMenu() with an empty menu even if the content menu generated[all …]
4693 When getting a createNewPage() callback from QWKPage, create the4709 BrowserView set its own useless createNewPage() callback on QWKPage.5228 Set a function to QWKPage::setCreateNewPageFunction() in Minibrowser so there is a way5234 (BrowserWindow::page): Added to avoid the indirect access to QWKPage spread in the class
2340 Only QWKPage has loadFinished signal so connect to it instead of BrowserWindow.