Home | History | Annotate | Download | only in Interfaces

Lines Matching full:drag

109     @abstract Actions that the destination of a drag can perform.
111 @constant WebDragDestinationActionDHTML Allows DHTML (such as JavaScript) to handle the drag
112 @constant WebDragDestinationActionEdit Allows editable documents to be edited from the drag
113 @constant WebDragDestinationActionLoad Allows a location change from the drag
126 @abstract Actions that the source of a drag can perform.
128 @constant WebDragSourceActionDHTML Allows DHTML (such as JavaScript) to start a drag
129 @constant WebDragSourceActionImage Allows an image drag to occur
130 @constant WebDragSourceActionLink Allows a link drag to occur
131 @constant WebDragSourceActionSelection Allows a selection drag to occur
517 @param draggingInfo The dragging info of the drag
519 indicating which drag destination actions can occur, WebDragDestinationActionAny to allow any kind of action or
520 WebDragDestinationActionNone to not accept the drag.
527 @abstract Informs that WebView will perform a drag destination action
529 @param action The drag destination action
530 @param draggingInfo The dragging info of the drag
532 This method informs the UI delegate of the drag destination action that WebView will perform.
541 @param point The point where the drag started in the coordinates of the WebView
542 @discussion This method is called after the user has begun a drag from a WebView. The UI delegate can return a mask indicating
543 which drag source actions can occur, WebDragSourceActionAny to allow any kind of action or WebDragSourceActionNone to not begin a drag.
550 @abstract Informs that a drag a has begun from a WebView
552 @param action The drag source action
553 @param point The point where the drag started in the coordinates of the WebView
554 @param pasteboard The drag pasteboard
555 @discussion This method is called after webView:dragSourceActionMaskForPoint: is called after the user has begun a drag from a WebView.
556 This method informs the UI delegate of the drag source action that will be performed and gives the delegate an opportunity to modify