HomeSort by relevance Sort by last modified time
    Searched refs:dnd (Results 1 - 25 of 49) sorted by null

1 2

  /external/smack/src/org/jivesoftware/smackx/pubsub/
PresenceState.java 24 chat, online, away, xa, dnd enum constant in enum:PresenceState
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DropGesture.java 19 import org.eclipse.swt.dnd.DropTargetEvent;
20 import org.eclipse.swt.dnd.DropTargetListener;
OutlineDragListener.java 19 import org.eclipse.swt.dnd.DND;
20 import org.eclipse.swt.dnd.DragSourceEvent;
21 import org.eclipse.swt.dnd.DragSourceListener;
22 import org.eclipse.swt.dnd.TextTransfer;
91 e.detail = DND.DROP_NONE;
108 e.detail = DND.DROP_NONE;
ControlPoint.java 19 import org.eclipse.swt.dnd.DragSourceEvent;
20 import org.eclipse.swt.dnd.DragSourceListener;
21 import org.eclipse.swt.dnd.DropTargetEvent;
LayoutPoint.java 21 import org.eclipse.swt.dnd.DragSourceEvent;
22 import org.eclipse.swt.dnd.DragSourceListener;
SimpleXmlTransfer.java 22 import org.eclipse.swt.dnd.ByteArrayTransfer;
23 import org.eclipse.swt.dnd.TransferData;
63 // Reference: http://www.eclipse.org/articles/Article-SWT-DND/DND-in-SWT.html
ClipboardSupport.java 37 import org.eclipse.swt.dnd.Clipboard;
38 import org.eclipse.swt.dnd.TextTransfer;
39 import org.eclipse.swt.dnd.Transfer;
40 import org.eclipse.swt.dnd.TransferData;
OutlineDropListener.java 28 import org.eclipse.swt.dnd.DND;
29 import org.eclipse.swt.dnd.DropTargetEvent;
30 import org.eclipse.swt.dnd.TransferData;
48 if (event.detail == DND.DROP_NONE && GlobalCanvasDragInfo.getInstance().isDragging()) {
49 // For some inexplicable reason, we get DND.DROP_NONE from the palette
50 // even though in its drag start we set DND.DROP_COPY, so correct that here...
51 int operation = DND.DROP_COPY;
132 boolean createNew = event.detail == DND.DROP_COPY || sourceCanvas != canvas;
137 if (event.detail == DND.DROP_MOVE)
    [all...]
GestureManager.java 29 import org.eclipse.swt.dnd.DND;
30 import org.eclipse.swt.dnd.DragSource;
31 import org.eclipse.swt.dnd.DragSourceEvent;
32 import org.eclipse.swt.dnd.DragSourceListener;
33 import org.eclipse.swt.dnd.DropTarget;
34 import org.eclipse.swt.dnd.DropTargetEvent;
35 import org.eclipse.swt.dnd.DropTargetListener;
36 import org.eclipse.swt.dnd.TextTransfer;
732 e.detail = DND.DROP_NONE
    [all...]
MoveGesture.java 34 import org.eclipse.swt.dnd.DND;
35 import org.eclipse.swt.dnd.DropTargetEvent;
36 import org.eclipse.swt.dnd.TransferData;
206 event.detail = DND.DROP_NONE;
225 if (event.detail == DND.DROP_DEFAULT) {
231 (event.operations & DND.DROP_MOVE) != 0) {
232 event.detail = DND.DROP_MOVE;
233 } else if ((event.operations & DND.DROP_COPY) != 0) {
234 event.detail = DND.DROP_COPY
    [all...]
LayoutCanvas.java 63 import org.eclipse.swt.dnd.DND;
64 import org.eclipse.swt.dnd.DragSource;
65 import org.eclipse.swt.dnd.DropTarget;
66 import org.eclipse.swt.dnd.TextTransfer;
67 import org.eclipse.swt.dnd.Transfer;
347 // DND Reference: http://www.eclipse.org/articles/Article-SWT-DND/DND-in-SWT.html
    [all...]
PaletteControl.java 66 import org.eclipse.swt.dnd.DND;
67 import org.eclipse.swt.dnd.DragSource;
68 import org.eclipse.swt.dnd.DragSourceEvent;
69 import org.eclipse.swt.dnd.DragSourceListener;
70 import org.eclipse.swt.dnd.Transfer;
678 final DragSource source = new DragSource(item, DND.DROP_COPY);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
ImageEditorPanel.java 23 import org.eclipse.swt.dnd.DND;
24 import org.eclipse.swt.dnd.DropTarget;
25 import org.eclipse.swt.dnd.DropTargetListener;
26 import org.eclipse.swt.dnd.FileTransfer;
27 import org.eclipse.swt.dnd.Transfer;
  /external/smack/src/org/jivesoftware/smack/packet/
Presence.java 49 * {@link Mode#dnd dnd} (do not disturb).
97 * {@link Mode#xa extended away} or {@link Mode#dnd do not disturb}. Use
109 * {@link Mode#dnd do not disturb}. False will be returned when the type or mode
112 * <tt>type == Type.available && (mode == Mode.away || mode == Mode.xa || mode == Mode.dnd)</tt>.
114 * @return true if the presence type is available and the presence mode is away, xa, or dnd.
117 return type == Type.available && (mode == Mode.away || mode == Mode.xa || mode == Mode.dnd);
287 * {@link Mode#dnd dnd}, etc. The presence type is only {@link #unavailable unavailable} when
356 dnd enum constant in enum:Presence.Mode
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
PasteAction.java 26 import org.eclipse.swt.dnd.Clipboard;
27 import org.eclipse.swt.dnd.TextTransfer;
CopyCutAction.java 28 import org.eclipse.swt.dnd.Clipboard;
29 import org.eclipse.swt.dnd.TextTransfer;
30 import org.eclipse.swt.dnd.Transfer;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
TableView.java 25 import org.eclipse.swt.dnd.Clipboard;
LogCatView.java 29 import org.eclipse.swt.dnd.Clipboard;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ChooseAssetTypePage.java 27 import org.eclipse.swt.dnd.Clipboard;
28 import org.eclipse.swt.dnd.TextTransfer;
29 import org.eclipse.swt.dnd.Transfer;
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 

Completed in 1059 milliseconds

1 2