本文整理汇总了Java中sun.lwawt.macosx.CocoaConstants.NPCocoaEventMouseEntered方法的典型用法代码示例。如果您正苦于以下问题:Java CocoaConstants.NPCocoaEventMouseEntered方法的具体用法?Java CocoaConstants.NPCocoaEventMouseEntered怎么用?Java CocoaConstants.NPCocoaEventMouseEntered使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sun.lwawt.macosx.CocoaConstants
的用法示例。
在下文中一共展示了CocoaConstants.NPCocoaEventMouseEntered方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleMouseEvent
import sun.lwawt.macosx.CocoaConstants; //导入方法依赖的package包/类
public void handleMouseEvent(int eventType, int modifierFlags, double pluginX,
double pluginY, int buttonNumber, int clickCount) {
int x = (int)pluginX;
int y = (int)pluginY;
Point locationOnScreen = getLocationOnScreen();
int screenX = locationOnScreen.x + x;
int screenY = locationOnScreen.y + y;
if (eventType == CocoaConstants.NPCocoaEventMouseEntered) {
CCursorManager.nativeSetAllowsCursorSetInBackground(true);
} else if (eventType == CocoaConstants.NPCocoaEventMouseExited) {
CCursorManager.nativeSetAllowsCursorSetInBackground(false);
}
responder.handleMouseEvent(eventType, modifierFlags, buttonNumber,
clickCount, x, y, screenX, screenY);
}
示例2: npToJavaEventType
import sun.lwawt.macosx.CocoaConstants; //导入方法依赖的package包/类
public static int npToJavaEventType(int npEventType) {
int jeventType = 0;
switch (npEventType) {
case CocoaConstants.NPCocoaEventMouseDown:
jeventType = MouseEvent.MOUSE_PRESSED;
break;
case CocoaConstants.NPCocoaEventMouseUp:
jeventType = MouseEvent.MOUSE_RELEASED;
break;
case CocoaConstants.NPCocoaEventMouseMoved:
jeventType = MouseEvent.MOUSE_MOVED;
break;
case CocoaConstants.NPCocoaEventMouseEntered:
jeventType = MouseEvent.MOUSE_ENTERED;
break;
case CocoaConstants.NPCocoaEventMouseExited:
jeventType = MouseEvent.MOUSE_EXITED;
break;
case CocoaConstants.NPCocoaEventMouseDragged:
jeventType = MouseEvent.MOUSE_DRAGGED;
break;
case CocoaConstants.NPCocoaEventKeyDown:
jeventType = KeyEvent.KEY_PRESSED;
break;
case CocoaConstants.NPCocoaEventKeyUp:
jeventType = KeyEvent.KEY_RELEASED;
break;
}
return jeventType;
}