Home | History | Annotate | Download | only in Interfaces

Lines Matching full:frame

43     When a data source of a frame starts to load, the data source is considered "provisional".
45 so the contents of the frame will not be lost if the new data source fails to successfully load.
59 @abstract Notifies the delegate that the provisional load of a frame has started
61 @param frame The frame for which the provisional load has started
62 @discussion This method is called after the provisional data source of a frame
64 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame;
66 HRESULT didStartProvisionalLoadForFrame([in] IWebView* webView, [in] IWebFrame* frame);
72 @param frame The frame for which the redirect occurred
73 - (void)webView:(WebView *)sender didReceiveServerRedirectForProvisionalLoadForFrame:(WebFrame *)frame;
75 HRESULT didReceiveServerRedirectForProvisionalLoadForFrame([in] IWebView* webView, [in] IWebFrame* frame);
82 @param frame The frame for which the error occurred
84 The frame will continue to display the contents of the committed data source if there is one.
85 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame;
87 HRESULT didFailProvisionalLoadWithError([in] IWebView* webView, [in] IWebError* error, [in] IWebFrame* frame);
93 @param frame The frame for which the load has committed
101 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame;
103 HRESULT didCommitLoadForFrame([in] IWebView* webView, [in] IWebFrame* frame);
107 @abstract Notifies the delegate that the page title for a frame has been received
110 @param frame The frame for which the title has been received
112 - (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame;
114 HRESULT didReceiveTitle([in] IWebView* webView, [in] BSTR title, [in] IWebFrame* frame);
118 @abstract Notifies the delegate that a page icon image for a frame has been received
121 @param frame The frame for which a page icon has been received
122 - (void)webView:(WebView *)sender didReceiveIcon:(NSImage *)image forFrame:(WebFrame *)frame;
124 HRESULT didReceiveIcon([in] IWebView* webView, [in] OLE_HANDLE hBitmap, [in] IWebFrame* frame);
128 @abstract Notifies the delegate that the committed load of a frame has completed
130 @param frame The frame that finished loading
131 @discussion This method is called after the committed data source of a frame has successfully loaded
134 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
136 HRESULT didFinishLoadForFrame([in] IWebView* webView, [in] IWebFrame* frame);
140 @abstract Notifies the delegate that the committed load of a frame has failed
143 @param frame The frame that failed to load
145 - (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame;
151 @abstract Notifies the delegate that the scroll position in a frame has changed
153 @param frame The frame that scrolled
155 - (void)webView:(WebView *)sender didChangeLocationWithinPageForFrame:(WebFrame *)frame;
157 HRESULT didChangeLocationWithinPageForFrame([in] IWebView* webView, [in] IWebFrame* frame);
161 @abstract Notifies the delegate that a frame will perform a client-side redirect
166 @param frame The frame on which the redirect will occur
169 - (void)webView:(WebView *)sender willPerformClientRedirectToURL:(NSURL *)URL delay:(NSTimeInterval)seconds fireDate:(NSDate *)date forFrame:(WebFrame *)frame;
171 HRESULT willPerformClientRedirectToURL([in] IWebView* webView, [in] BSTR url, [in] double delaySeconds, [in] DATE fireDate, [in] IWebFrame* frame);
177 @param frame The frame for which the pending redirect was cancelled
178 @discussion A client-side redirect can be cancelled if a frame changes location before the timeout.
179 - (void)webView:(WebView *)sender didCancelClientRedirectForFrame:(WebFrame *)frame;
181 HRESULT didCancelClientRedirectForFrame([in] IWebView* webView, [in] IWebFrame* frame);
185 @abstract Notifies the delegate that a frame will be closed
187 @param frame The frame that will be closed
188 @discussion This method is called right before WebKit is done with the frame
190 - (void)webView:(WebView *)sender willCloseFrame:(WebFrame *)frame;
192 HRESULT willCloseFrame([in] IWebView* webView, [in] IWebFrame* frame);
204 [local] HRESULT didClearWindowObject([in] IWebView* webView, [in] JSContextRef context, [in] JSObjectRef windowScriptObject, [in] IWebFrame* frame);