Lines Matching refs:point

514     DLog3(@"  - event point (window) %f, %f", [dragEvent locationInWindow].x, [dragEvent locationInWindow].y);
515 DLog3(@" - drag point (view) %f, %f", dragOrigin.x, dragOrigin.y);
549 NSPoint point = [self mapNSScreenPointToJavaWithOffset:sDraggingLocation];
567 DLog3(@" -> posting dragDropFinished, point %f, %f", point.x, point.y);
568 JNFCallVoidMethod(env, fDragSourceContextPeer, dragDropFinishedMethod, success, dragOp, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
607 NSPoint point = [self mapNSScreenPointToJavaWithOffset:sDraggingLocation];
608 DLog3(@" -> posting operationChanged, point %f, %f", point.x, point.y);
612 JNFCallVoidMethod(env, fDragSourceContextPeer, operationChangedMethod, targetActions, modifiedModifiers, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
674 NSPoint point = [self mapNSScreenPointToJavaWithOffset:screenPoint];
682 DLog3(@" -> posting dragMotion, point %f, %f", point.x, point.y);
684 JNFCallVoidMethod(env, fDragSourceContextPeer, dragMotionMethod, targetActions, (jint) fModifiers, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
686 DLog3(@" -> posting dragMouseMoved, point %f, %f", point.x, point.y);
688 JNFCallVoidMethod(env, fDragSourceContextPeer, dragMouseMovedMethod, targetActions, (jint) fModifiers, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
710 NSPoint point = [self mapNSScreenPointToJavaWithOffset:sDraggingLocation];
711 DLog3(@" -> posting dragEnter, point %f, %f", point.x, point.y);
713 JNFCallVoidMethod(env, fDragSourceContextPeer, dragEnterMethod, targetActions, (jint) fModifiers, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
720 NSPoint point = [self mapNSScreenPointToJavaWithOffset:sDraggingLocation];
721 DLog3(@" -> posting dragExit, point %f, %f", point.x, point.y);
723 JNFCallVoidMethod(env, fDragSourceContextPeer, dragExitMethod, (jint) point.x, (jint) point.y); // AWT_THREADING Safe (event)
736 NSPoint point = NSMakePoint(screenPoint.x, mainR.size.height - (screenPoint.y));
738 // Adjust the point with the drag image offset to get the real mouse hotspot:
739 // The point should remain in screen coordinates (as per DragSourceEvent.getLocation() documentation)
740 point.x -= fDragImageOffset.x;
741 point.y -= ([fDragImage size].height + fDragImageOffset.y);
743 return point;