HomeSort by relevance Sort by last modified time
    Searched full:dragginginfo (Results 1 - 19 of 19) sorted by null

  /external/webkit/Tools/DumpRenderTree/win/
DraggingInfo.h 34 class DraggingInfo {
36 DraggingInfo(IDataObject* object, IDropSource* source)
45 ~DraggingInfo()
EventSender.h 32 class DraggingInfo;
41 extern DraggingInfo* draggingInfo;
EventSender.cpp 32 #include "DraggingInfo.h"
61 DraggingInfo* draggingInfo = 0;
234 if (draggingInfo) {
242 webViewDropTarget->DragEnter(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect);
245 HRESULT hr = draggingInfo->dropSource()->QueryContinueDrag(0, 0);
251 webViewDropTarget->Drop(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect);
252 draggingInfo->setPerformedDropEffect(effect);
310 if (down && draggingInfo) {
321 webViewDropTarget->DragEnter(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect)
    [all...]
UIDelegate.cpp 33 #include "DraggingInfo.h"
508 draggingInfo = new DraggingInfo(object, source);
511 if (draggingInfo) {
512 *performedEffect = draggingInfo->performedDropEffect();
513 delete draggingInfo;
514 draggingInfo = 0;
UIDelegate.h 174 /* [in] */ IDataObject *draggingInfo,
180 /* [in] */ IDataObject *draggingInfo) { return E_NOTIMPL; }
DumpRenderTree.vcproj 526 RelativePath=".\DraggingInfo.h"
  /external/webkit/Tools/DumpRenderTree/mac/
UIDelegate.mm 46 DumpRenderTreeDraggingInfo *draggingInfo = nil;
116 assert(!draggingInfo);
117 draggingInfo = [[DumpRenderTreeDraggingInfo alloc] initWithImage:anImage offset:initialOffset pasteboard:pboard source:sourceObj];
118 [sender draggingUpdated:draggingInfo];
263 [draggingInfo release];
264 draggingInfo = nil;
EventSendingController.mm 259 assert(!draggingInfo);
281 draggingInfo = [[DumpRenderTreeDraggingInfo alloc] initWithImage:nil offset:NSZeroSize pasteboard:pboard source:source];
282 [[mainFrame webView] draggingEntered:draggingInfo];
410 if (draggingInfo) {
413 NSDragOperation dragOperation = [webView draggingUpdated:draggingInfo];
416 [webView performDragOperation:draggingInfo];
418 [webView draggingExited:draggingInfo];
420 if ([[draggingInfo draggingSource] respondsToSelector:@selector(draggedImage:endedAt:operation:)])
421 [[draggingInfo draggingSource] draggedImage:[draggingInfo draggedImage] endedAt:lastMousePosition operation:dragOperation]
    [all...]
DumpRenderTreeMac.h 56 extern DumpRenderTreeDraggingInfo *draggingInfo;
DumpRenderTree.mm     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm     [all...]
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultUIDelegate.m 196 - (NSUInteger)webView:(WebView *)webView dragDestinationActionMaskForDraggingInfo:(id <NSDraggingInfo>)draggingInfo
201 - (void)webView:(WebView *)webView willPerformDragDestinationAction:(WebDragDestinationAction)action forDraggingInfo:(id <NSDraggingInfo>)draggingInfo
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_view_unittest.mm 20 // Fake DraggingInfo, fake BookmarkBarController, fake NSPasteboard...
bookmark_bar_view_unittest.mm 20 // Fake DraggingInfo, fake BookmarkBarController, fake NSPasteboard...
  /external/webkit/Source/WebKit/mac/WebView/
WebView.mm     [all...]
WebUIDelegate.h 473 @param draggingInfo The dragging info of the drag
478 - (WebNSUInteger)webView:(WebView *)webView dragDestinationActionMaskForDraggingInfo:(id <NSDraggingInfo>)draggingInfo;
485 @param draggingInfo The dragging info of the drag
489 - (void)webView:(WebView *)webView willPerformDragDestinationAction:(WebDragDestinationAction)action forDraggingInfo:(id <NSDraggingInfo>)draggingInfo;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebUIDelegate.idl 517 @param draggingInfo The dragging info of the drag
521 - (unsigned)webView:(WebView *)webView dragDestinationActionMaskForDraggingInfo:(id <NSDraggingInfo>)draggingInfo;
523 HRESULT dragDestinationActionMaskForDraggingInfo([in] IWebView* webView, [in] IDataObject* draggingInfo, [out, retval] WebDragDestinationAction* action);
530 @param draggingInfo The dragging info of the drag
533 - (void)webView:(WebView *)webView willPerformDragDestinationAction:(WebDragDestinationAction)action forDraggingInfo:(id <NSDraggingInfo>)draggingInfo;
535 HRESULT willPerformDragDestinationAction([in] IWebView* webView, [in] WebDragDestinationAction action, [in] IDataObject* draggingInfo);
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebInspectorClient.mm 475 - (NSUInteger)webView:(WebView *)sender dragDestinationActionMaskForDraggingInfo:(id <NSDraggingInfo>)draggingInfo
  /external/webkit/Tools/
ChangeLog-2009-06-16 627 (runTest): ASSERT that draggingInfo has been cleared
    [all...]

Completed in 2251 milliseconds