Searched refs:dgl (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragGestureRecognizer.java114 * @param dgl the <code>DragGestureRecognizer</code>
121 protected DragGestureRecognizer(DragSource ds, Component c, int sa, DragGestureListener dgl) { argument
131 if (dgl != null) addDragGestureListener(dgl);
312 * @param dgl the <code>DragGestureListener</code> to register
319 public synchronized void addDragGestureListener(DragGestureListener dgl) throws TooManyListenersException { argument
323 dragGestureListener = dgl;
332 * @param dgl the <code>DragGestureListener</code> to unregister
336 * dgl is not (equal to) the currently registered <code>DragGestureListener</code>.
339 public synchronized void removeDragGestureListener(DragGestureListener dgl) { argument
[all...]
H A DMouseDragGestureRecognizer.java81 * @param dgl The DragGestureListener to notify when a gesture is detected
85 protected MouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument
86 super(ds, c, act, dgl);
H A DDragSource.java446 * @param dgl The <code>DragGestureEvent</code> that triggered the
461 * @throws NullPointerException if <code>dgl</code> is <code>null</code>
476 protected DragSourceContext createDragSourceContext(DragSourceContextPeer dscp, DragGestureEvent dgl, Cursor dragCursor, Image dragImage, Point imageOffset, Transferable t, DragSourceListener dsl) { argument
477 return new DragSourceContext(dscp, dgl, dragCursor, dragImage, imageOffset, t, dsl);
501 * @param dgl the <code>DragGestureListener</code> to notify
513 DragGestureListener dgl)
515 return Toolkit.getDefaultToolkit().createDragGestureRecognizer(recognizerAbstractClass, this, c, actions, dgl);
533 * @param dgl the <code>DragGestureListener</code> to notify
542 public DragGestureRecognizer createDefaultDragGestureRecognizer(Component c, int actions, DragGestureListener dgl) { argument
543 return Toolkit.getDefaultToolkit().createDragGestureRecognizer(MouseDragGestureRecognizer.class, this, c, actions, dgl);
511 createDragGestureRecognizer(Class<T> recognizerAbstractClass, Component c, int actions, DragGestureListener dgl) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCMouseDragGestureRecognizer.java56 protected CMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument
57 super(ds, c, act, dgl);
H A DLWCToolkit.java598 public <T extends DragGestureRecognizer> T createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) { argument
603 dgr = new CMouseDragGestureRecognizer(ds, c, srcActions, dgl);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWMouseDragGestureRecognizer.java78 * @param dgl The DragGestureRecognizer to notify when a gesture is detected
82 protected WMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument
83 super(ds, c, act, dgl);
H A DWToolkit.java776 DragGestureListener dgl)
779 return (T)new WMouseDragGestureRecognizer(ds, c, srcActions, dgl);
774 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
/openjdk7/jdk/test/java/awt/xembed/server/
H A DJavaClient.java76 final DragGestureListener dgl = new DragGestureListener() {
81 ds.createDefaultDragGestureRecognizer(tf, DnDConstants.ACTION_COPY, dgl);
H A DTestXEmbedServer.java80 final DragGestureListener dgl = new DragGestureListener() {
85 ds.createDefaultDragGestureRecognizer(tf, DnDConstants.ACTION_COPY, dgl);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMouseDragGestureRecognizer.java81 * @param dgl The DragGestureRecognizer to notify when a gesture is detected
85 protected XMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument
86 super(ds, c, act, dgl);
H A DXToolkit.java887 DragGestureListener dgl)
890 return (T)new XMouseDragGestureRecognizer(ds, c, srcActions, dgl);
883 createDragGestureRecognizer(Class<T> recognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHToolkit.java243 int srcActions, DragGestureListener dgl)
241 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
H A DHeadlessToolkit.java265 int srcActions, DragGestureListener dgl)
263 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMToolkit.java527 DragGestureListener dgl)
530 // return (T)new MMouseDragGestureRecognizer(ds, c, srcActions, dgl);
525 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTransferHandler.java1653 SwingDragGestureRecognizer(DragGestureListener dgl) { argument
1654 super(DragSource.getDefaultDragSource(), null, NONE, dgl);
/openjdk7/jdk/src/share/classes/java/awt/
H A DToolkit.java1752 * @param dgl The DragGestureListener
1761 DragGestureListener dgl)
1759 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument

Completed in 262 milliseconds