本文整理汇总了Java中sun.lwawt.macosx.CocoaConstants类的典型用法代码示例。如果您正苦于以下问题:Java CocoaConstants类的具体用法?Java CocoaConstants怎么用?Java CocoaConstants使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
CocoaConstants类属于sun.lwawt.macosx包,在下文中一共展示了CocoaConstants类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: nsToJavaButton
import sun.lwawt.macosx.CocoaConstants; //导入依赖的package包/类
public static int nsToJavaButton(int buttonNumber) {
int jbuttonNumber = buttonNumber + 1;
switch (buttonNumber) {
case CocoaConstants.kCGMouseButtonLeft:
jbuttonNumber = MouseEvent.BUTTON1;
break;
case CocoaConstants.kCGMouseButtonRight:
jbuttonNumber = MouseEvent.BUTTON3;
break;
case CocoaConstants.kCGMouseButtonCenter:
jbuttonNumber = MouseEvent.BUTTON2;
break;
}
return jbuttonNumber;
}
示例3: 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;
}
示例4: nsToJavaEventType
import sun.lwawt.macosx.CocoaConstants; //导入依赖的package包/类
public static int nsToJavaEventType(int nsEventType) {
int jeventType = 0;
switch (nsEventType) {
case CocoaConstants.NSLeftMouseDown:
case CocoaConstants.NSRightMouseDown:
case CocoaConstants.NSOtherMouseDown:
jeventType = MouseEvent.MOUSE_PRESSED;
break;
case CocoaConstants.NSLeftMouseUp:
case CocoaConstants.NSRightMouseUp:
case CocoaConstants.NSOtherMouseUp:
jeventType = MouseEvent.MOUSE_RELEASED;
break;
case CocoaConstants.NSMouseMoved:
jeventType = MouseEvent.MOUSE_MOVED;
break;
case CocoaConstants.NSLeftMouseDragged:
case CocoaConstants.NSRightMouseDragged:
case CocoaConstants.NSOtherMouseDragged:
jeventType = MouseEvent.MOUSE_DRAGGED;
break;
case CocoaConstants.NSMouseEntered:
jeventType = MouseEvent.MOUSE_ENTERED;
break;
case CocoaConstants.NSMouseExited:
jeventType = MouseEvent.MOUSE_EXITED;
break;
case CocoaConstants.NSScrollWheel:
jeventType = MouseEvent.MOUSE_WHEEL;
break;
case CocoaConstants.NSKeyDown:
jeventType = KeyEvent.KEY_PRESSED;
break;
case CocoaConstants.NSKeyUp:
jeventType = KeyEvent.KEY_RELEASED;
break;
}
return jeventType;
}