Home | History | Annotate | Download | only in win

Lines Matching refs:WebFrame

29 #include "WebFrame.h"
148 WebFrame* kit(Frame* frame)
155 return static_cast<WebFrame*>(frameLoaderClient); // eek, is there a better way than static cast?
159 Frame* core(WebFrame* webFrame)
161 if (!webFrame)
163 return webFrame->impl();
166 // This function is not in WebFrame.h because we don't want to advertise the ability to get a non-const Frame from a const WebFrame
167 Frame* core(const WebFrame* webFrame)
169 if (!webFrame)
171 return const_cast<WebFrame*>(webFrame)->impl();
228 class WebFrame::WebFramePrivate {
246 // WebFrame ----------------------------------------------------------------
248 WebFrame::WebFrame()
251 , d(new WebFrame::WebFramePrivate)
258 gClassNameCount.add("WebFrame");
261 WebFrame::~WebFrame()
266 gClassNameCount.remove("WebFrame");
269 WebFrame* WebFrame::createInstance()
271 WebFrame* instance = new WebFrame();
276 HRESULT STDMETHODCALLTYPE WebFrame::setAllowsScrolling(
286 HRESULT STDMETHODCALLTYPE WebFrame::allowsScrolling(
297 HRESULT STDMETHODCALLTYPE WebFrame::setIsDisconnected(
308 HRESULT STDMETHODCALLTYPE WebFrame::setExcludeFromTextSearch(
319 HRESULT WebFrame::reloadFromOrigin()
329 HRESULT STDMETHODCALLTYPE WebFrame::paintDocumentRectToContext(
363 HRESULT STDMETHODCALLTYPE WebFrame::QueryInterface(REFIID riid, void** ppvObject)
366 if (IsEqualGUID(riid, __uuidof(WebFrame)))
383 ULONG STDMETHODCALLTYPE WebFrame::AddRef(void)
388 ULONG STDMETHODCALLTYPE WebFrame::Release(void)
399 HRESULT STDMETHODCALLTYPE WebFrame::name(
417 HRESULT STDMETHODCALLTYPE WebFrame::webView(
428 HRESULT STDMETHODCALLTYPE WebFrame::frameView(
435 HRESULT STDMETHODCALLTYPE WebFrame::DOMDocument(
452 HRESULT STDMETHODCALLTYPE WebFrame::frameElement(
470 HRESULT STDMETHODCALLTYPE WebFrame::currentForm(
487 JSGlobalContextRef STDMETHODCALLTYPE WebFrame::globalContext()
496 JSGlobalContextRef WebFrame::globalContextForScriptWorld(IWebScriptWorld* iWorld)
509 HRESULT STDMETHODCALLTYPE WebFrame::loadRequest(
526 void WebFrame::loadData(PassRefPtr<WebCore::SharedBuffer> data, BSTR mimeType, BSTR textEncodingName, BSTR baseURL, BSTR failingURL)
550 HRESULT STDMETHODCALLTYPE WebFrame::loadData(
574 void WebFrame::loadHTMLString(BSTR string, BSTR baseURL, BSTR unreachableURL)
581 HRESULT STDMETHODCALLTYPE WebFrame::loadHTMLString(
589 HRESULT STDMETHODCALLTYPE WebFrame::loadAlternateHTMLString(
598 HRESULT STDMETHODCALLTYPE WebFrame::loadArchive(
610 HRESULT STDMETHODCALLTYPE WebFrame::dataSource(
634 HRESULT STDMETHODCALLTYPE WebFrame::provisionalDataSource(
658 KURL WebFrame::url() const
667 HRESULT STDMETHODCALLTYPE WebFrame::stopLoading( void)
674 HRESULT STDMETHODCALLTYPE WebFrame::reload( void)
684 HRESULT STDMETHODCALLTYPE WebFrame::findFrameNamed(
703 WebFrame* foundWebFrame = kit(foundFrame);
710 HRESULT STDMETHODCALLTYPE WebFrame::parentFrame(
716 if (WebFrame* webFrame = kit(coreFrame->tree()->parent()))
717 hr = webFrame->QueryInterface(IID_IWebFrame, (void**) frame);
764 WebFrame* webFrame = kit(m_curChild);
766 HRESULT hr = webFrame->QueryInterface(IID_IUnknown, (void**)&unknown);
807 HRESULT STDMETHODCALLTYPE WebFrame::childFrames(
819 HRESULT STDMETHODCALLTYPE WebFrame::renderTreeAsExternalRepresentation(
833 HRESULT STDMETHODCALLTYPE WebFrame::counterValueForElementById(
852 HRESULT STDMETHODCALLTYPE WebFrame::scrollOffset(
872 HRESULT STDMETHODCALLTYPE WebFrame::layout()
886 HRESULT STDMETHODCALLTYPE WebFrame::firstLayoutDone(
904 HRESULT STDMETHODCALLTYPE WebFrame::loadType(
922 HRESULT STDMETHODCALLTYPE WebFrame::pendingFrameUnloadEventCount(
940 HRESULT STDMETHODCALLTYPE WebFrame::fetchApplicationIcon(
965 HRESULT STDMETHODCALLTYPE WebFrame::supportsTextEncoding(
972 HRESULT STDMETHODCALLTYPE WebFrame::selectedString(
987 HRESULT STDMETHODCALLTYPE WebFrame::selectAll()
999 HRESULT STDMETHODCALLTYPE WebFrame::deselectAll()
1004 // WebFrame ---------------------------------------------------------------
1006 PassRefPtr<Frame> WebFrame::init(IWebView* webView, Page* page, HTMLFrameOwnerElement* ownerElement)
1020 Frame* WebFrame::impl()
1025 void WebFrame::invalidate()
1034 void WebFrame::setTextSizeMultiplier(float multiplier)
1041 HRESULT WebFrame::inViewSourceMode(BOOL* flag)
1058 HRESULT WebFrame::setInViewSourceMode(BOOL flag)
1068 HRESULT WebFrame::elementWithName(BSTR name, IDOMElement* form, IDOMElement** element)
1089 HRESULT WebFrame::formForElement(IDOMElement* element, IDOMElement** form)
1106 HRESULT WebFrame::elementDoesAutoComplete(IDOMElement *element, BOOL *result)
1121 HRESULT WebFrame::pauseAnimation(BSTR animationName, IDOMNode* node, double secondsFromNow, BOOL* animationWasRunning)
1144 HRESULT WebFrame::pauseTransition(BSTR propertyName, IDOMNode* node, double secondsFromNow, BOOL* transitionWasRunning)
1167 HRESULT WebFrame::pauseSVGAnimation(BSTR elementId, IDOMNode* node, double secondsFromNow, BOOL* animationWasRunning)
1195 HRESULT WebFrame::numberOfActiveAnimations(UINT* number)
1214 HRESULT WebFrame::isDisplayingStandaloneImage(BOOL* result)
1230 HRESULT WebFrame::allowsFollowingLink(BSTR url, BOOL* result)
1245 HRESULT WebFrame::controlsInForm(IDOMElement* form, IDOMElement** controls, int* cControls)
1273 HRESULT WebFrame::elementIsPassword(IDOMElement *element, bool *result)
1281 HRESULT WebFrame::searchForLabelsBeforeElement(const BSTR* labels, unsigned cLabels, IDOMElement* beforeElement, unsigned* outResultDistance, BOOL* outResultIsInCellAbove, BSTR* result)
1325 HRESULT WebFrame::matchLabelsAgainstElement(const BSTR* labels, int cLabels, IDOMElement* againstElement, BSTR* result)
1358 HRESULT WebFrame::canProvideDocumentSource(bool* result)
1364 hr = WebFrame::dataSource(&dataSource);
1381 void WebFrame::frameLoaderDestroyed()
1390 void WebFrame::makeRepresentation(DocumentLoader*)
1395 void WebFrame::forceLayoutForNonHTML()
1400 void WebFrame::setCopiesOnScroll()
1405 void WebFrame::detachedFromParent2()
1410 void WebFrame::detachedFromParent3()
1415 void WebFrame::cancelPolicyCheck()
1425 void WebFrame::dispatchWillSubmitForm(FramePolicyFunction function, PassRefPtr<FormState> formState)
1447 COMPtr<WebFrame> sourceFrame(kit(formState->sourceFrame()));
1455 void WebFrame::revertToProvisionalState(DocumentLoader*)
1460 void WebFrame::setMainFrameDocumentReady(bool)
1465 void WebFrame::willChangeTitle(DocumentLoader*)
1470 void WebFrame::didChangeTitle(DocumentLoader*)
1475 bool WebFrame::canHandleRequest(const ResourceRequest& request) const
1480 bool WebFrame::canShowMIMEType(const String& /*MIMEType*/) const
1486 bool WebFrame::representationExistsForURLScheme(const String& /*URLScheme*/) const
1492 String WebFrame::generatedMIMETypeForURLScheme(const String& /*URLScheme*/) const
1499 void WebFrame::frameLoadCompleted()
1503 void WebFrame::restoreViewState()
1507 void WebFrame::provisionalLoadStarted()
1512 bool WebFrame::shouldTreatURLAsSameAsCurrent(const KURL&) const
1518 void WebFrame::addHistoryItemForFragmentScroll()
1523 void WebFrame::didFinishLoad()
1528 void WebFrame::prepareForDataSourceReplacement()
1533 String WebFrame::userAgent(const KURL& url)
1538 void WebFrame::saveViewStateToItem(HistoryItem*)
1542 ResourceError WebFrame::cancelledError(const ResourceRequest& request)
1549 ResourceError WebFrame::blockedError(const ResourceRequest& request)
1555 ResourceError WebFrame::cannotShowURLError(const ResourceRequest& request)
1561 ResourceError WebFrame::interruptForPolicyChangeError(const ResourceRequest& request)
1567 ResourceError WebFrame::cannotShowMIMETypeError(const ResourceResponse&)
1573 ResourceError WebFrame::fileDoesNotExistError(const ResourceResponse&)
1579 ResourceError WebFrame::pluginWillHandleLoadError(const ResourceResponse& response)
1584 bool WebFrame::shouldFallBack(const ResourceError& error)
1589 COMPtr<WebFramePolicyListener> WebFrame::setUpPolicyListener(WebCore::FramePolicyFunction function)
1605 void WebFrame::receivedPolicyDecision(PolicyAction action)
1621 void WebFrame::dispatchDecidePolicyForMIMEType(FramePolicyFunction function, const String& mimeType, const ResourceRequest& request)
1638 void WebFrame::dispatchDecidePolicyForNewWindowAction(FramePolicyFunction function, const NavigationAction& action, const ResourceRequest& request, PassRefPtr<FormState> formState, const String& frameName)
1656 void WebFrame::dispatchDecidePolicyForNavigationAction(FramePolicyFunction function, const NavigationAction& action, const ResourceRequest& request, PassRefPtr<FormState> formState)
1674 void WebFrame::dispatchUnableToImplementPolicy(const ResourceError& error)
1684 void WebFrame::download(ResourceHandle* handle, const ResourceRequest& request, const ResourceRequest&, const ResourceResponse& response)
1703 bool WebFrame::dispatchDidLoadResourceFromMemoryCache(DocumentLoader*, const ResourceRequest&, const ResourceResponse&, int /*length*/)
1709 void WebFrame::dispatchDidFailProvisionalLoad(const ResourceError& error)
1719 void WebFrame::dispatchDidFailLoad(const ResourceError& error)
1729 void WebFrame::startDownload(const ResourceRequest& request)
1734 PassRefPtr<Widget> WebFrame::createJavaAppletWidget(const IntSize& pluginSize, HTMLAppletElement* element, const KURL& /*baseURL*/, const Vector<String>& paramNames, const Vector<String>& paramValues)
1756 ObjectContentType WebFrame::objectContentType(const KURL& url, const String& mimeType)
1761 String WebFrame::overrideMediaType() const
1767 void WebFrame::dispatchDidClearWindowObjectInWorld(DOMWrapperWorld* world)
1795 void WebFrame::documentElementAvailable()
1799 void WebFrame::didPerformFirstNavigation() const
1820 void WebFrame::registerForIconNotification(bool listen)
1832 void WebFrame::setPrinting(bool printing, float minPageWidth, float maxPageWidth, bool adjustViewSize)
1839 HRESULT STDMETHODCALLTYPE WebFrame::setInPrintingMode(
1877 void WebFrame::headerAndFooterHeights(float* headerHeight, float* footerHeight)
1893 IntRect WebFrame::printerMarginRect(HDC printDC)
1913 const Vector<WebCore::IntRect>& WebFrame::computePageRects(HDC printDC)
1940 HRESULT STDMETHODCALLTYPE WebFrame::getPrintedPageCount(
1967 void WebFrame::drawHeader(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, float headerHeight)
1975 void WebFrame::drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight)
1983 void WebFrame::spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount)
2044 void WebFrame::drawHeader(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, float headerHeight)
2057 void WebFrame::drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight)
2070 void WebFrame::spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount)
2121 HRESULT STDMETHODCALLTYPE WebFrame::spoolPages(
2192 HRESULT STDMETHODCALLTYPE WebFrame::isFrameSet(
2205 HRESULT STDMETHODCALLTYPE WebFrame::string(
2220 HRESULT STDMETHODCALLTYPE WebFrame::size(
2238 HRESULT STDMETHODCALLTYPE WebFrame::hasScrollBars(
2259 HRESULT STDMETHODCALLTYPE WebFrame::contentBounds(
2279 HRESULT STDMETHODCALLTYPE WebFrame::frameBounds(
2300 HRESULT STDMETHODCALLTYPE WebFrame::isDescendantOfFrame(
2309 COMPtr<WebFrame> ancestorWebFrame(Query, ancestor);
2317 HRESULT WebFrame::stringByEvaluatingJavaScriptInScriptWorld(IWebScriptWorld* iWorld, JSObjectRef globalObjectRef, BSTR script, BSTR* evaluationResult)
2362 void WebFrame::unmarkAllMisspellings()
2374 void WebFrame::unmarkAllBadGrammar()
2386 WebView* WebFrame::webView() const
2391 COMPtr<IAccessible> WebFrame::accessible() const
2409 void WebFrame::updateBackground()