Lines Matching refs:WebView

146 @class WebView;
162 @param sender The WebView sending the delegate method.
164 @result The WebView for the new window.
166 - (WebView *)webView:(WebView *)sender createWebViewWithRequest:(NSURLRequest *)request;
170 @param sender The WebView sending the delegate method.
171 @abstract Show the window that contains the top level view of the WebView,
176 - (void)webViewShow:(WebView *)sender;
183 @param sender The WebView sending the delegate method.
185 @result The WebView for the new window.
187 - (WebView *)webView:(WebView *)sender createWebViewModalDialogWithRequest:(NSURLRequest *)request;
191 @param sender The WebView sending the delegate method.
192 @abstract Show the window that contains the top level view of the WebView,
197 - (void)webViewRunModal:(WebView *)sender;
202 @param sender The WebView sending the delegate method.
205 WebView. Other clients may choose to ignore this method
208 - (void)webViewClose:(WebView *)sender;
213 @param The WebView sending the delegate method.
215 also do something to focus the one corresponding to this WebView.
217 - (void)webViewFocus:(WebView *)sender;
222 @param sender The WebView sending the delegate method.
224 also do something to unfocus the one corresponding to this WebView.
226 - (void)webViewUnfocus:(WebView *)sender;
231 @param sender The WebView sending the delegate method.
233 WebView's view, if any. If the view is out of the window
238 - (NSResponder *)webViewFirstResponder:(WebView *)sender;
243 @param sender The WebView sending the delegate method.
246 subhierarchy of the top-level web view for this WebView. If the
247 WebView's top level view is currently out of the view
251 - (void)webView:(WebView *)sender makeFirstResponder:(NSResponder *)responder;
256 @param sender The WebView sending the delegate method.
259 - (void)webView:(WebView *)sender setStatusText:(NSString *)text;
264 @param sender The WebView sending the delegate method.
267 - (NSString *)webViewStatusText:(WebView *)sender;
272 @param sender The WebView sending the delegate method.
280 - (BOOL)webViewAreToolbarsVisible:(WebView *)sender;
284 @param sender The WebView sending the delegate method.
291 - (void)webView:(WebView *)sender setToolbarsVisible:(BOOL)visible;
296 @param sender The WebView sending the delegate method.
299 - (BOOL)webViewIsStatusBarVisible:(WebView *)sender;
308 - (void)webView:(WebView *)sender setStatusBarVisible:(BOOL)visible;
313 @param sender The WebView sending the delegate method.
319 - (BOOL)webViewIsResizable:(WebView *)sender;
324 @param sender The WebView sending the delegate method.
330 - (void)webView:(WebView *)sender setResizable:(BOOL)resizable;
335 @param sender The WebView sending the delegate method.
341 - (void)webView:(WebView *)sender setFrame:(NSRect)frame;
345 @param sender The WebView sending the delegate method.
349 - (NSRect)webViewFrame:(WebView *)sender;
354 @param sender The WebView sending the delegate method.
361 - (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame;
366 @param sender The WebView sending the delegate method.
374 - (BOOL)webView:(WebView *)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame;
379 @param sender The WebView sending the delegate method.
388 - (NSString *)webView:(WebView *)sender runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)defaultText initiatedByFrame:(WebFrame *)frame;
393 @param sender The WebView sending the delegate method.
401 - (BOOL)webView:(WebView *)sender runBeforeUnloadConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame;
406 @param sender The WebView sending the delegate method.
411 - (void)webView:(WebView *)sender runOpenPanelForFileButtonWithResultListener:(id<WebOpenPanelResultListener>)resultListener;
416 @param sender The WebView sending the delegate method.
422 - (void)webView:(WebView *)sender runOpenPanelForFileButtonWithResultListener:(id<WebOpenPanelResultListener>)resultListener allowMultipleFiles:(BOOL)allowMultipleFiles WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_IN_WEBKIT_VERSION_4_0);
428 @param sender The WebView sending the delegate method.
432 - (void)webView:(WebView *)sender mouseDidMoveOverElement:(NSDictionary *)elementInformation modifierFlags:(WebNSUInteger)modifierFlags;
437 @param sender The WebView sending the delegate method.
442 - (NSArray *)webView:(WebView *)sender contextMenuItemsForElement:(NSDictionary *)element defaultMenuItems:(NSArray *)defaultMenuItems;
447 @param webView The WebView sending the delegate method
449 @pararm defaultValidation Whether or not the WebView thinks the item is valid
450 @discussion This method allows the UI delegate to control WebView's validation of user interface items.
451 See WebView.h to see the methods to that WebView can currently validate. See NSUserInterfaceValidations and
454 - (BOOL)webView:(WebView *)webView validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)item defaultValidation:(BOOL)defaultValidation;
459 @param webView The WebView sending the delegate method
462 @discussion This method allows the UI delegate to control WebView's behavior when an action is being sent.
463 For example, if the action is copy:, the delegate can return YES to allow WebView to perform its default
464 copy behavior or return NO and perform copy: in some other way. See WebView.h to see the actions that
465 WebView can perform.
467 - (BOOL)webView:(WebView *)webView shouldPerformAction:(SEL)action fromSender:(id)sender;
471 @abstract Controls behavior when dragging to a WebView
472 @param webView The WebView sending the delegate method
474 @discussion This method is called periodically as something is dragged over a WebView. The UI delegate can return a mask
478 - (WebNSUInteger)webView:(WebView *)webView dragDestinationActionMaskForDraggingInfo:(id <NSDraggingInfo>)draggingInfo;
482 @abstract Informs that WebView will perform a drag destination action
483 @param webView The WebView sending the delegate method
486 @discussion This method is called after the last call to webView:dragDestinationActionMaskForDraggingInfo: after something is dropped on a WebView.
487 This method informs the UI delegate of the drag destination action that WebView will perform.
489 - (void)webView:(WebView *)webView willPerformDragDestinationAction:(WebDragDestinationAction)action forDraggingInfo:(id <NSDraggingInfo>)draggingInfo;
493 @abstract Controls behavior when dragging from a WebView
494 @param webView The WebView sending the delegate method
495 @param point The point where the drag started in the coordinates of the WebView
496 @discussion This method is called after the user has begun a drag from a WebView. The UI delegate can return a mask indicating
499 - (WebNSUInteger)webView:(WebView *)webView dragSourceActionMaskForPoint:(NSPoint)point;
503 @abstract Informs that a drag a has begun from a WebView
504 @param webView The WebView sending the delegate method
506 @param point The point where the drag started in the coordinates of the WebView
508 @discussion This method is called after webView:dragSourceActionMaskForPoint: is called after the user has begun a drag from a WebView.
512 - (void)webView:(WebView *)webView willPerformDragSourceAction:(WebDragSourceAction)action fromPoint:(NSPoint)point withPasteboard:(NSPasteboard *)pasteboard;
517 @param webView The WebView sending the delegate method
527 - (void)webView:(WebView *)sender printFrameView:(WebFrameView *)frameView;
531 @param webView The WebView sending the delegate method
536 - (float)webViewHeaderHeight:(WebView *)sender;
540 @param webView The WebView sending the delegate method
545 - (float)webViewFooterHeight:(WebView *)sender;
549 @param webView The WebView sending the delegate method
553 - (void)webView:(WebView *)sender drawHeaderInRect:(NSRect)rect;
557 @param webView The WebView sending the delegate method
561 - (void)webView:(WebView *)sender drawFooterInRect:(NSRect)rect;
565 - (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_3_0);
566 - (BOOL)webView:(WebView *)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_3_0);
567 - (NSString *)webView:(WebView *)sender runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)defaultText WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_3_0);
570 - (void)webView:(WebView *)sender setContentRect:(NSRect)frame WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_3_0);
571 - (NSRect)webViewContentRect:(WebView *)sender WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_3_0);