Searched refs:SunDropTargetEvent (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDropTargetEvent.java32 public class SunDropTargetEvent extends MouseEvent { class in inherits:MouseEvent
38 public SunDropTargetEvent(Component source, int id, int x, int y, method in class:SunDropTargetEvent
H A DSunDropTargetContextPeer.java76 * SunDropTargetEvent is processed and return the status back
301 SunDropTargetEvent.MOUSE_ENTERED,
309 protected void processEnterMessage(SunDropTargetEvent event) {
360 SunDropTargetEvent.MOUSE_EXITED,
368 protected void processExitMessage(SunDropTargetEvent event) {
427 SunDropTargetEvent.MOUSE_DRAGGED,
435 protected void processMotionMessage(SunDropTargetEvent event,
500 SunDropTargetEvent.MOUSE_DROPPED,
508 protected void processDropMessage(SunDropTargetEvent event) {
569 SunDropTargetEvent even
[all...]
H A DSunDragSourceContextPeer.java374 if (!(mouseEvent instanceof SunDropTargetEvent)) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDropTargetContextPeer.java41 import sun.awt.dnd.SunDropTargetEvent;
84 protected void eventProcessed(SunDropTargetEvent e, int returnValue,
163 protected void processEnterMessage(SunDropTargetEvent event) {
169 protected void processExitMessage(SunDropTargetEvent event) {
175 protected void processMotionMessage(SunDropTargetEvent event,
182 protected void processDropMessage(SunDropTargetEvent event) {
191 private boolean processSunDropTargetEvent(SunDropTargetEvent event) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDropTargetContextPeer.java31 import sun.awt.dnd.SunDropTargetEvent;
94 protected void processMotionMessage(SunDropTargetEvent event, boolean operationChanged) {
119 protected void processDropMessage(SunDropTargetEvent event) {
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDropTargetContextPeer.java36 import sun.awt.dnd.SunDropTargetEvent;
95 protected void eventPosted(final SunDropTargetEvent e) {
96 if (e.getID() != SunDropTargetEvent.MOUSE_DROPPED) {
103 // dispatched after this SunDropTargetEvent, but before the next
/openjdk7/jdk/src/share/classes/java/awt/
H A DContainer.java61 import sun.awt.dnd.SunDropTargetEvent;
4414 if (e instanceof SunDropTargetEvent) {
4416 SunDropTargetEvent sdde = (SunDropTargetEvent) e;
4532 private boolean processDropTargetEvent(SunDropTargetEvent e) {
4539 * It is possible that SunDropTargetEvent's Point is outside of the
4562 case SunDropTargetEvent.MOUSE_ENTERED:
4563 case SunDropTargetEvent.MOUSE_EXITED:
4583 if (e instanceof SunDropTargetEvent &&
4669 !(e instanceof SunDropTargetEvent)
[all...]
H A DEventQueue.java40 import sun.awt.dnd.SunDropTargetEvent;
375 if (e instanceof SunDropTargetEvent) {
376 // SunDropTargetEvent should not coalesce with MouseEvent
458 if(entry.event instanceof SunDropTargetEvent) {
459 // Do not cache SunDropTargetEvent, it should not coalesce
H A DComponent.java75 import sun.awt.dnd.SunDropTargetEvent;
4715 if (e instanceof SunDropTargetEvent) {
4716 ((SunDropTargetEvent)e).dispatch();

Completed in 100 milliseconds