Class MouseDragGestureRecognizer
java.lang.Object
java.awt.dnd.DragGestureRecognizer
java.awt.dnd.MouseDragGestureRecognizer
- All Implemented Interfaces:
MouseListener, MouseMotionListener, Serializable, EventListener
public abstract class MouseDragGestureRecognizer
extends DragGestureRecognizer
implements MouseListener, MouseMotionListener
This abstract subclass of
DragGestureRecognizer
defines a DragGestureRecognizer
for mouse-based gestures.
Each platform implements its own concrete subclass of this class,
available via the Toolkit.createDragGestureRecognizer() method,
to encapsulate
the recognition of the platform dependent mouse gesture(s) that initiate
a Drag and Drop operation.
Mouse drag gesture recognizers should honor the
drag gesture motion threshold, available through
DragSource.getDragThreshold().
A drag gesture should be recognized only when the distance
in either the horizontal or vertical direction between
the location of the latest mouse dragged event and the
location of the corresponding mouse button pressed event
is greater than the drag gesture motion threshold.
Drag gesture recognizers created with
DragSource.createDefaultDragGestureRecognizer(Component, int, DragGestureListener)
follow this convention.
- See Also:
-
Field Summary
Fields declared in class DragGestureRecognizer
component, dragGestureListener, dragSource, events, sourceActionsModifier and TypeFieldDescriptionprotected ComponentTheComponentassociated with thisDragGestureRecognizer.protected DragGestureListenerTheDragGestureListenerassociated with thisDragGestureRecognizer.protected DragSourceTheDragSourceassociated with thisDragGestureRecognizer.protected ArrayList<InputEvent> The list of events (in order) that theDragGestureRecognizer"recognized" as a "gesture" that triggers a drag.protected intAnintrepresenting the type(s) of action(s) used in this Drag and Drop operation. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstruct a newMouseDragGestureRecognizergiven theDragSourcefor theComponent.protectedConstruct a newMouseDragGestureRecognizergiven theDragSourcefor theComponentc, and theComponentto observe.protectedMouseDragGestureRecognizer(DragSource ds, Component c, int act) Construct a newMouseDragGestureRecognizergiven theDragSourcefor theComponentc, theComponentto observe, and the action(s) permitted for this drag operation.protectedMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) Construct a newMouseDragGestureRecognizergiven theDragSourcefor theComponentc, theComponentto observe, the action(s) permitted for this drag operation, and theDragGestureListenerto notify when a drag gesture is detected. -
Method Summary
Modifier and TypeMethodDescriptionvoidInvoked when the mouse has been clicked on a component.voidInvoked when a mouse button is pressed on a component.voidInvoked when the mouse enters a component.voidInvoked when the mouse exits a component.voidInvoked when the mouse button has been moved on a component (with no buttons no down).voidInvoked when a mouse button has been pressed on aComponent.voidInvoked when a mouse button has been released on a component.protected voidregister this DragGestureRecognizer's Listeners with the Componentprotected voidunregister this DragGestureRecognizer's Listeners with the Component subclasses must override this methodMethods declared in class DragGestureRecognizer
addDragGestureListener, appendEvent, fireDragGestureRecognized, getComponent, getDragSource, getSourceActions, getTriggerEvent, removeDragGestureListener, resetRecognizer, setComponent, setSourceActionsModifier and TypeMethodDescriptionvoidRegister a newDragGestureListener.protected voidappendEvent(InputEvent awtie) Listeners registered on the Component by this Recognizer shall record all Events that are recognized as part of the series of Events that go to comprise a Drag and Drop initiating gesture via this API.protected voidfireDragGestureRecognized(int dragAction, Point p) Notify the DragGestureListener that a Drag and Drop initiating gesture has occurred.This method returns theComponentthat is to be "observed" by theDragGestureRecognizerfor drag initiating gestures.This method returns theDragSourcethisDragGestureRecognizerwill use in order to process the Drag and Drop operation.intThis method returns an int representing the type of action(s) this Drag and Drop operation will support.This method returns the first event in the series of events that initiated the Drag and Drop operation.voidunregister the current DragGestureListenervoidReset the Recognizer, if its currently recognizing a gesture, ignore it.voidset the Component that the DragGestureRecognizer is associated with registerListeners() and unregisterListeners() are called as a side effect as appropriate.voidsetSourceActions(int actions) This method sets the permitted source drag action(s) for this Drag and Drop operation.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, 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.toString()Returns a string representation of the object.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
-
MouseDragGestureRecognizer
Construct a newMouseDragGestureRecognizergiven theDragSourcefor theComponentc, theComponentto observe, the action(s) permitted for this drag operation, and theDragGestureListenerto notify when a drag gesture is detected.- Parameters:
ds- The DragSource for the Component cc- The Component to observeact- The actions permitted for this Dragdgl- The DragGestureListener to notify when a gesture is detected
-
MouseDragGestureRecognizer
Construct a newMouseDragGestureRecognizergiven theDragSourcefor theComponentc, theComponentto observe, and the action(s) permitted for this drag operation.- Parameters:
ds- The DragSource for the Component cc- The Component to observeact- The actions permitted for this drag
-
MouseDragGestureRecognizer
Construct a newMouseDragGestureRecognizergiven theDragSourcefor theComponentc, and theComponentto observe.- Parameters:
ds- The DragSource for the Component cc- The Component to observe
-
MouseDragGestureRecognizer
Construct a newMouseDragGestureRecognizergiven theDragSourcefor theComponent.- Parameters:
ds- The DragSource for the Component
-
-
Method Details
-
registerListeners
protected void registerListeners()register this DragGestureRecognizer's Listeners with the Component- Specified by:
registerListenersin classDragGestureRecognizer
-
unregisterListeners
protected void unregisterListeners()unregister this DragGestureRecognizer's Listeners with the Component subclasses must override this method- Specified by:
unregisterListenersin classDragGestureRecognizer
-
mouseClicked
Invoked when the mouse has been clicked on a component.- Specified by:
mouseClickedin interfaceMouseListener- Parameters:
e- theMouseEvent
-
mousePressed
Invoked when a mouse button has been pressed on aComponent.- Specified by:
mousePressedin interfaceMouseListener- Parameters:
e- theMouseEvent
-
mouseReleased
Invoked when a mouse button has been released on a component.- Specified by:
mouseReleasedin interfaceMouseListener- Parameters:
e- theMouseEvent
-
mouseEntered
Invoked when the mouse enters a component.- Specified by:
mouseEnteredin interfaceMouseListener- Parameters:
e- theMouseEvent
-
mouseExited
Invoked when the mouse exits a component.- Specified by:
mouseExitedin interfaceMouseListener- Parameters:
e- theMouseEvent
-
mouseDragged
Invoked when a mouse button is pressed on a component.- Specified by:
mouseDraggedin interfaceMouseMotionListener- Parameters:
e- theMouseEvent
-
mouseMoved
Invoked when the mouse button has been moved on a component (with no buttons no down).- Specified by:
mouseMovedin interfaceMouseMotionListener- Parameters:
e- theMouseEvent
-