- java.lang.Object
-
- java.util.EventObject
-
- java.awt.dnd.DragSourceEvent
-
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- DragSourceDragEvent, DragSourceDropEvent
public class DragSourceEvent extends EventObject
This class is the base class forDragSourceDragEvent
andDragSourceDropEvent
.DragSourceEvent
s 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 generatedDragSourceEvent
specifies the mouse cursor location in screen coordinates at the moment this event occured.In a multi-screen environment without a virtual device, the cursor location is specified in the coordinate system of the initiator
GraphicsConfiguration
. The initiatorGraphicsConfiguration
is theGraphicsConfiguration
of theComponent
on which the drag gesture for the current drag operation was recognized. If the cursor location is outside the bounds of the initiatorGraphicsConfiguration
, the reported coordinates are clipped to fit within the bounds of thatGraphicsConfiguration
.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:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor and Description DragSourceEvent(DragSourceContext dsc)
Construct aDragSourceEvent
given a specifiedDragSourceContext
.DragSourceEvent(DragSourceContext dsc, int x, int y)
Construct aDragSourceEvent
given a specifiedDragSourceContext
, and coordinates of the cursor location.
-
Method Summary
Methods Modifier and Type Method and Description DragSourceContext
getDragSourceContext()
This method returns theDragSourceContext
that originated the event.Point
getLocation()
This method returns aPoint
indicating the cursor location in screen coordinates at the moment this event occured, ornull
if the cursor location is not specified for this event.int
getX()
This method returns the horizontal coordinate of the cursor location in screen coordinates at the moment this event occured, or zero if the cursor location is not specified for this event.int
getY()
This method returns the vertical coordinate of the cursor location in screen coordinates at the moment this event occured, or zero if the cursor location is not specified for this event.
-
-
-
Constructor Detail
-
DragSourceEvent
public DragSourceEvent(DragSourceContext dsc)
Construct aDragSourceEvent
given a specifiedDragSourceContext
. The coordinates for thisDragSourceEvent
are not specified, sogetLocation
will returnnull
for this event.- Parameters:
dsc
- theDragSourceContext
- Throws:
- ifIllegalArgumentException
dsc
isnull
.- See Also:
getLocation()
-
DragSourceEvent
public DragSourceEvent(DragSourceContext dsc, int x, int y)
Construct aDragSourceEvent
given a specifiedDragSourceContext
, and coordinates of the cursor location.- Parameters:
dsc
- theDragSourceContext
x
- the horizontal coordinate for the cursor locationy
- the vertical coordinate for the cursor location- Throws:
- ifIllegalArgumentException
dsc
isnull
.- Since:
- 1.4
-
-
Method Detail
-
getDragSourceContext
public DragSourceContext getDragSourceContext()
This method returns theDragSourceContext
that originated the event.- Returns:
- the
DragSourceContext
that originated the event
-
getLocation
public Point getLocation()
This method returns aPoint
indicating the cursor location in screen coordinates at the moment this event occured, ornull
if the cursor location is not specified for this event.- Returns:
- the
Point
indicating the cursor location ornull
if 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 occured, 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 occured, 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
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/awt/dnd/DragSourceEvent.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.