HomeSort by relevance Sort by last modified time
    Searched full:drag (Results 26 - 50 of 238) sorted by null

12 3 4 5 6 7 8 910

  /packages/apps/Launcher2/src/com/android/launcher2/
DropTarget.java 22 * Interface defining an object that can receive a drag.
30 * @param source DragSource where the drag started
55 * This may be called repeatedly during a drag, so any calls should return
58 * @param source DragSource where the drag started
76 * @param source DragSource where the drag started
DragSource.java 22 * Interface defining an object that can originate a drag.
  /external/webkit/WebKit/mac/WebView/
WebUIDelegate.h 83 @abstract Actions that the destination of a drag can perform.
85 @constant WebDragDestinationActionDHTML Allows DHTML (such as JavaScript) to handle the drag
86 @constant WebDragDestinationActionEdit Allows editable documents to be edited from the drag
87 @constant WebDragDestinationActionLoad Allows a location change from the drag
100 @abstract Actions that the source of a drag can perform.
102 @constant WebDragSourceActionDHTML Allows DHTML (such as JavaScript) to start a drag
103 @constant WebDragSourceActionImage Allows an image drag to occur
104 @constant WebDragSourceActionLink Allows a link drag to occur
105 @constant WebDragSourceActionSelection Allows a selection drag to occur
473 @param draggingInfo The dragging info of the drag
    [all...]
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 63 drag(test, x, x, fromY, toY, 4); method
93 drag(test, x, x, fromY, toY, 4); method
208 * @param stepCount How many move steps to include in the drag
226 * @param stepCount How many move steps to include in the drag
242 drag(test, x, x, fromY, toY, stepCount); method
446 * @param stepCount How many move steps to include in the drag
472 * @param stepCount How many move steps to include in the drag
485 drag(test, x, x, fromY, toY, stepCount); method
537 * @param deltaX Amount to drag horizontally in pixels
538 * @param deltaY Amount to drag vertically in pixel
580 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance); method
632 drag(test, fromX, toX, fromY, toY, distance); method
679 drag(test, fromX, toX, fromY, fromY, deltaX); method
726 drag(test, fromX, fromX, fromY, toY, deltaY); method
747 public static void drag(ActivityInstrumentationTestCase test, float fromX, float toX, method in class:TouchUtils
749 drag((InstrumentationTestCase) test, fromX, toX, fromY, toY, stepCount); method
762 public static void drag(InstrumentationTestCase test, float fromX, float toX, float fromY, method in class:TouchUtils
    [all...]
  /external/webkit/WebCore/manual-tests/
drag-cursor-notallowed.html 6 #dragMe {-webkit-user-drag: element; -webkit-user-select: none; background: #ff0000; width: 64px; height: 64px; color: white}
88 <p id="description">This test can be used to verify that the not-allowed cursor is shown during an invalid drag-and-drop operation.
94 Drag the red square over the drop target (demarcated by the dashed boundary). While hovering over the drop target, if the cursor
100 <div id="default-message">Drag the red square over me.<br/><br/>
drag-image-to-desktop.html 10 <ol><li>drag and drop the image below to the desktop</ol>
input-type-file-drag-drop.html 10 &lt;input type="file"&gt; should be able to support drag and drop of files. Use the above controls to demonstrate:
mail-attachments.html 12 <li>drag a file to the email (make sure to use a > 1 page file, otherwise Mail shows the contents inline)
svg-links.svg 10 <tspan x='10' dy='20'>4. Drag the link and notice a bubble appear with the correct URL</tspan>
test-iframes-loading-the-same-resource.html 15 To perform this test attempt to drag one of the apple images in the left frame while the right frame is doing loads. This test is not entirely deterministic so it should be attempted a number of times. <br />
stale-scrollbar-client-crash.html 10 Drag the scroll thumb in each of the vertical scrollbars below.
14 Each scrollbar will disappear when clicked, along with the box containing it, but the browser will not crash as you continue to drag.
drag-image-to-address-bar.html 10 Drag the image from below to the address bar, then click on the image.
text-field-autoscroll.html 13 The text field should not autoscroll its text during this drag.
  /external/webkit/WebKit/qt/WebCoreSupport/
DragClientQt.cpp 96 QDrag *drag = new QDrag(view); local
98 drag->setPixmap(qvariant_cast<QPixmap>(clipboardData->imageData()));
100 drag->setMimeData(clipboardData);
101 Qt::DropAction actualDropAction = drag->exec(dragOperationsToDropActions(dragOperationMask));
  /external/webkit/WebKit/win/Interfaces/
IWebUIDelegate.idl 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
    [all...]
  /external/webkit/WebCore/page/
DragController.h 62 // drag logic is in WebCore.
118 Document* m_dragInitiator; // The Document (if any) that initiated the drag.
124 DragOperation m_sourceDragOperation; // Set in startDrag when a drag starts from a mouse down within WebKit
DragController.cpp 137 // FIXME: This method is poorly named. We're just clearing the selection from the document this drag is exiting.
298 // We send drag events in tryDHTMLDrag and that may be the reason.
323 // If we're not over an editable region, make sure we're clearing any prior drag cursor.
417 // manually controlling drag behaviour
636 // This drag operation is not a DHTML drag and may go outside the WebView.
637 // We provide a default set of allowed drag operations that follows from:
642 // We allow DHTML/JS to set the drag image, even if its a link, image or text we're dragging.
649 bool startedDrag = true; // optimism - we almost always manage to start the drag
656 // We shouldn't be starting a drag for an image that can't provide an extension
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasDropListener.java 40 * The top view right under the drag'n'drop cursor.
41 * This can only be null during a drag'n'drop when there is no view under the cursor
48 * drag'n'drop that happens within the same instance of Eclipse.
50 * In the event that the drag and drop happens between different instances of Eclipse
58 * accept drag'n'drop so its parent layout became the target drag'n'drop receiver.
61 * This can be null if no view under the cursor accepted the drag'n'drop or if the node
95 AdtPlugin.printErrorToConsole("DEBUG", "drag enter", event);
130 "TransferType mismatch: Global=%s, drag.event=%s",
148 AdtPlugin.printErrorToConsole("DEBUG", "drag changed", event)
    [all...]
  /external/webkit/WebKit/chromium/src/
DragClientImpl.cpp 66 // We want to handle drag operations for all source types.
77 // Add a ref to the frame just in case a load occurs mid-drag.
WebViewImpl.h 271 // Start a system drag and drop operation.
356 // down. This is used by the drag client to determine what was under the
357 // mouse when the drag was initiated. We need to track this here in
359 // mouse was at when the drag was initiated, only the current point, which
361 // dragged by the time a drag is initiated.
386 // True while dispatching system drag and drop events to drag/drop targets
390 // Valid when m_dragTargetDispatch is true; the identity of the drag data
402 // The available drag operations (copy, move link...) allowed by the source.
405 // The current drag operation as negotiated by the source and destination
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.AbsoluteLayout.groovy 24 // ==== Drag'n'drop support ====
25 // The AbsoluteLayout accepts any drag'n'drop anywhere on its surface.
android.widget.FrameLayout.groovy 24 // ==== Drag'n'drop support ====
25 // The FrameLayout accepts any drag'n'drop anywhere on its surface.
  /external/webkit/WebCore/dom/
Clipboard.h 38 // State available during IE's events for drag and drop and copy/paste
43 // Is this operation a drag-drop or a copy-paste?
  /external/webkit/WebKit/mac/Misc/
WebNSPasteboardExtras.h 50 // Returns the array of drag types that _web_bestURL handles; note that the presence
51 // of one or more of these drag types on the pasteboard is not a guarantee that
  /external/webkit/WebKit/win/
WebDropSource.cpp 151 // When dragging inside a WebView and the drag is not allowed, don't show the not allowed icon,
153 // FIXME <rdar://7577595>: Custom cursors aren't supported during drag and drop (default to pointer).

Completed in 67 milliseconds

12 3 4 5 6 7 8 910