Class DragSourceEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DragSourceDragEvent, DragSourceDropEvent
DragSourceDragEvent and
DragSourceDropEvent.
DragSourceEvents are generated whenever the drag enters, moves
over, or exits a drop site, when the drop action changes, and when the drag
ends. The location for the generated DragSourceEvent specifies
the mouse cursor location in screen coordinates at the moment this event
occurred.
In a multi-screen environment without a virtual device, the cursor location is
specified in the coordinate system of the initiator
GraphicsConfiguration. The initiator
GraphicsConfiguration is the GraphicsConfiguration
of the Component on which the drag gesture for the current drag
operation was recognized. If the cursor location is outside the bounds of
the initiator GraphicsConfiguration, the reported coordinates are
clipped to fit within the bounds of that GraphicsConfiguration.
In a multi-screen environment with a virtual device, the location is specified in the corresponding virtual coordinate system. If the cursor location is outside the bounds of the virtual device the reported coordinates are clipped to fit within the bounds of the virtual device.
- Since:
- 1.2
- See Also:
-
Field Summary
Fields declared in class EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionConstruct aDragSourceEventgiven a specifiedDragSourceContext.DragSourceEvent(DragSourceContext dsc, int x, int y) Construct aDragSourceEventgiven a specifiedDragSourceContext, and coordinates of the cursor location. -
Method Summary
Modifier and TypeMethodDescriptionThis method returns theDragSourceContextthat originated the event.This method returns aPointindicating the cursor location in screen coordinates at the moment this event occurred, ornullif the cursor location is not specified for this event.intgetX()This method returns the horizontal coordinate of the cursor location in screen coordinates at the moment this event occurred, or zero if the cursor location is not specified for this event.intgetY()This method returns the vertical coordinate of the cursor location in screen coordinates at the moment this event occurred, or zero if the cursor location is not specified for this event.Methods declared in class EventObject
getSource, toStringMethods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
DragSourceEvent
Construct aDragSourceEventgiven a specifiedDragSourceContext. The coordinates for thisDragSourceEventare not specified, sogetLocationwill returnnullfor this event.- Parameters:
dsc- theDragSourceContext- Throws:
IllegalArgumentException- ifdscisnull.- See Also:
-
DragSourceEvent
Construct aDragSourceEventgiven a specifiedDragSourceContext, and coordinates of the cursor location.- Parameters:
dsc- theDragSourceContextx- the horizontal coordinate for the cursor locationy- the vertical coordinate for the cursor location- Throws:
IllegalArgumentException- ifdscisnull.- Since:
- 1.4
-
-
Method Details
-
getDragSourceContext
This method returns theDragSourceContextthat originated the event.- Returns:
- the
DragSourceContextthat originated the event
-
getLocation
This method returns aPointindicating the cursor location in screen coordinates at the moment this event occurred, ornullif the cursor location is not specified for this event.- Returns:
- the
Pointindicating the cursor location ornullif the cursor location is not specified - Since:
- 1.4
-
getX
public int getX()This method returns the horizontal coordinate of the cursor location in screen coordinates at the moment this event occurred, or zero if the cursor location is not specified for this event.- Returns:
- an integer indicating the horizontal coordinate of the cursor location or zero if the cursor location is not specified
- Since:
- 1.4
-
getY
public int getY()This method returns the vertical coordinate of the cursor location in screen coordinates at the moment this event occurred, or zero if the cursor location is not specified for this event.- Returns:
- an integer indicating the vertical coordinate of the cursor location or zero if the cursor location is not specified
- Since:
- 1.4
-