Searched refs:targetActions (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragSourceDragEvent.java116 targetActions = action;
166 targetActions = action;
186 return targetActions;
243 return targetActions & getDragSourceContext().getSourceActions();
255 private int targetActions = DnDConstants.ACTION_NONE; field in class:DragSourceDragEvent
/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDragSourceContextPeer.java277 private void dragEnter(final int targetActions, argument
280 postDragSourceDragEvent(targetActions, modifiers, x, y, DISPATCH_ENTER);
287 private void dragMotion(final int targetActions, argument
290 postDragSourceDragEvent(targetActions, modifiers, x, y, DISPATCH_MOTION);
297 private void operationChanged(final int targetActions, argument
300 postDragSourceDragEvent(targetActions, modifiers, x, y, DISPATCH_CHANGED);
323 private void dragMouseMoved(final int targetActions, argument
326 postDragSourceDragEvent(targetActions, modifiers, x, y,
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCDragSource.m604 jint targetActions = fSourceActions;
605 if ([CDropTarget currentDropTarget]) targetActions = [[CDropTarget currentDropTarget] currentJavaActions];
612 JNFCallVoidMethod(env, fDragSourceContextPeer, operationChangedMethod, targetActions, modifiedModifiers, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
676 jint targetActions = fSourceActions;
677 if ([CDropTarget currentDropTarget]) targetActions = [[CDropTarget currentDropTarget] currentJavaActions];
684 JNFCallVoidMethod(env, fDragSourceContextPeer, dragMotionMethod, targetActions, (jint) fModifiers, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
688 JNFCallVoidMethod(env, fDragSourceContextPeer, dragMouseMovedMethod, targetActions, (jint) fModifiers, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
707 jint targetActions = fSourceActions;
708 if ([CDropTarget currentDropTarget]) targetActions = [[CDropTarget currentDropTarget] currentJavaActions];
713 JNFCallVoidMethod(env, fDragSourceContextPeer, dragEnterMethod, targetActions, (jin
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDS.h129 static void call_dSCenter(JNIEnv* env, jobject self, jint targetActions,
132 jint targetActions, jint modifiers,
135 jint targetActions, jint modifiers,
138 jint targetActions, jint modifiers,
H A Dawt_DnDDS.cpp1160 AwtDragSource::call_dSCenter(JNIEnv* env, jobject self, jint targetActions, argument
1164 env->CallVoidMethod(self, dSCenter, targetActions, modifiers, x, y);
1172 AwtDragSource::call_dSCmotion(JNIEnv* env, jobject self, jint targetActions, argument
1176 env->CallVoidMethod(self, dSCmotion, targetActions, modifiers, x, y);
1184 AwtDragSource::call_dSCchanged(JNIEnv* env, jobject self, jint targetActions, argument
1189 env->CallVoidMethod(self, dSCchanged, targetActions, modifiers, x, y);
1220 AwtDragSource::call_dSCmouseMoved(JNIEnv* env, jobject self, jint targetActions, argument
1225 env->CallVoidMethod(self, dSCmouseMoved, targetActions, modifiers, x, y);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDragSourceContextPeer.java415 private void dragMouseMoved(final int targetActions, argument
431 dragEnter(targetActions, modifiers, x, y);
436 postDragSourceDragEvent(targetActions, modifiers, x, y,
443 private void dragEnter(final int targetActions, argument
448 postDragSourceDragEvent(targetActions, modifiers, x, y, DISPATCH_ENTER);

Completed in 50 milliseconds