/external/webkit/WebCore/page/ |
D | DragController.cpp | 627 DragImageRef dragImage = 0; in startDrag() local 632 dragImage = clipboard->createDragImage(dragImageOffset); in startDrag() 636 if (dragImage) { in startDrag() 659 if (!dragImage) { in startDrag() 665 doSystemDrag(dragImage, dragLoc, dragOrigin, clipboard, src, false); in startDrag() 684 if (!dragImage) { in startDrag() 685 dragImage = m_client->createDragImageForLink(linkURL, dragSource.textContent(), src); in startDrag() 686 IntSize size = dragImageSize(dragImage); in startDrag() 690 doSystemDrag(dragImage, dragLoc, mouseDraggedPoint, clipboard, src, true); in startDrag() 697 if (!dragImage) { in startDrag() [all …]
|
D | DragClient.h | 64 …virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& ev…
|
D | DragController.h | 109 …bool doDrag(Frame* src, Clipboard* clipboard, DragImageRef dragImage, const KURL& linkURL, const K…
|
/external/webkit/WebKit/mac/Misc/ |
D | WebNSViewExtras.m | 162 NSImage *dragImage; 170 dragImage = [[image copy] autorelease]; 171 [dragImage setScalesWhenResized:YES]; 172 [dragImage setSize:originalSize]; 174 [dragImage _web_scaleToMaxSize:WebMaxDragImageSize]; 175 NSSize newSize = [dragImage size]; 177 [dragImage _web_dissolveToFraction:WebDragImageAlpha]; 188 dragImage = [[NSWorkspace sharedWorkspace] iconForFileType:extension]; 189 …NSSize offset = NSMakeSize([dragImage size].width - WebDragIconRightInset, -WebDragIconBottomInset… 201 …[self dragImage:dragImage at:origin offset:NSZeroSize event:event pasteboard:pasteboard source:sou…
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
D | WebDragClient.mm | 85 void WebDragClient::startDrag(DragImageRef dragImage, const IntPoint& at, const IntPoint& eventPos,… 101 NSImage *dragNSImage = dragImage.get(); 105 … SEL selector = @selector(webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:); 109 …[delegate webView:m_webView dragImage:dragNSImage at:at offset:NSZeroSize event:event pasteboard:p… 114 …[delegate webView:m_webView dragImage:dragNSImage at:at offset:NSZeroSize event:event pasteboard:p… 116 …[topHTMLView dragImage:dragNSImage at:at offset:NSZeroSize event:event pasteboard:pasteboard sourc…
|
D | WebDragClient.h | 38 …virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragPos, const We…
|
/external/webkit/WebCore/platform/mac/ |
D | DragImageMac.mm | 80 RetainPtr<NSImage> dragImage(AdoptNS, [image->getNSImage() copy]); 81 [dragImage.get() setSize:(NSSize)(image->size())]; 82 return dragImage;
|
/external/webkit/WebKit/haiku/WebCoreSupport/ |
D | DragClientHaiku.cpp | 62 void DragClientHaiku::startDrag(DragImageRef dragImage, const IntPoint&, const IntPoint&, Clipboard… in startDrag() argument
|
D | DragClientHaiku.h | 40 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin,
|
/external/webkit/WebKit/wx/WebKitSupport/ |
D | DragClientWx.cpp | 61 void DragClientWx::startDrag(DragImageRef dragImage, in startDrag() argument
|
D | DragClientWx.h | 41 …virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, …
|
/external/webkit/WebKit/android/WebCoreSupport/ |
D | DragClientAndroid.h | 43 …virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& ev…
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
D | DragClientQt.h | 39 …virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& ev…
|
/external/webkit/WebKit/gtk/WebCoreSupport/ |
D | DragClientGtk.h | 44 …virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, …
|
/external/webkit/WebCore/platform/gtk/ |
D | ClipboardGtk.h | 54 CachedImage* dragImage() const;
|
D | ClipboardGtk.cpp | 85 CachedImage* ClipboardGtk::dragImage() const in dragImage() function in WebCore::ClipboardGtk
|
/external/webkit/WebCore/platform/haiku/ |
D | ClipboardHaiku.h | 55 CachedImage* dragImage() const;
|
D | ClipboardHaiku.cpp | 147 CachedImage* ClipboardHaiku::dragImage() const in dragImage() function in WebCore::ClipboardHaiku
|
/external/webkit/WebCore/platform/wx/ |
D | ClipboardWx.h | 53 CachedImage* dragImage() const;
|
D | ClipboardWx.cpp | 87 CachedImage* ClipboardWx::dragImage() const in dragImage() function in WebCore::ClipboardWx
|
/external/webkit/WebCore/dom/ |
D | Clipboard.h | 61 CachedImage* dragImage() const { return m_dragImage.get(); } in dragImage() function
|
/external/webkit/WebKit/mac/WebView/ |
D | WebUIDelegatePrivate.h | 104 - (void)webView:(WebView *)sender dragImage:(NSImage *)anImage at:(NSPoint)viewLocation offset:(NSS…
|
D | WebHTMLView.mm | 1658 NSImage *dragImage = [[[NSImage alloc] initWithSize: imageSize] autorelease]; 1659 [dragImage lockFocus]; 1690 [dragImage unlockFocus]; 1692 return dragImage; 1861 NSImage *dragImage = core([self _frame])->selectionImage(); 1862 [dragImage _web_dissolveToFraction:WebDragImageAlpha]; 1863 return dragImage; 3367 - (void)dragImage:(NSImage *)dragImage 3376 …[super dragImage:dragImage at:at offset:offset event:event pasteboard:pasteboard source:source sli…
|
/external/webkit/WebKit/mac/DefaultDelegates/ |
D | WebDefaultUIDelegate.m | 191 … *)webView shouldBeginDragForElement:(NSDictionary *)element dragImage:(NSImage *)dragImage mouseD…
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
D | UIDelegate.mm | 96 - (void)webView:(WebView *)sender dragImage:(NSImage *)anImage at:(NSPoint)viewLocation offset:(NSS…
|