blob: e94f512b0fb4481d7b472ead5a49965ed1f81e83 [file] [log] [blame]
/*
* Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package sun.lwawt.macosx;
public final class CocoaConstants {
private CocoaConstants(){}
//from the NSEvent class reference:
public final static int NSLeftMouseDown = 1;
public final static int NSLeftMouseUp = 2;
public final static int NSRightMouseDown = 3;
public final static int NSRightMouseUp = 4;
public final static int NSMouseMoved = 5;
public final static int NSLeftMouseDragged = 6;
public final static int NSRightMouseDragged = 7;
public final static int NSMouseEntered = 8;
public final static int NSMouseExited = 9;
public final static int NSKeyDown = 10;
public final static int NSKeyUp = 11;
public final static int NSFlagsChanged = 12;
public final static int NSScrollWheel = 22;
public final static int NSOtherMouseDown = 25;
public final static int NSOtherMouseUp = 26;
public final static int NSOtherMouseDragged = 27;
public final static int AllLeftMouseEventsMask =
1 << NSLeftMouseDown |
1 << NSLeftMouseUp |
1 << NSLeftMouseDragged;
public final static int AllRightMouseEventsMask =
1 << NSRightMouseDown |
1 << NSRightMouseUp |
1 << NSRightMouseDragged;
public final static int AllOtherMouseEventsMask =
1 << NSOtherMouseDown |
1 << NSOtherMouseUp |
1 << NSOtherMouseDragged;
/*
NSAppKitDefined = 13,
NSSystemDefined = 14,
NSApplicationDefined = 15,
NSPeriodic = 16,
NSCursorUpdate = 17,
NSScrollWheel = 22,
NSTabletPoint = 23,
NSTabletProximity = 24,
NSEventTypeGesture = 29,
NSEventTypeMagnify = 30,
NSEventTypeSwipe = 31,
NSEventTypeRotate = 18,
NSEventTypeBeginGesture = 19,
NSEventTypeEndGesture = 20
*/
// See http://developer.apple.com/library/mac/#documentation/Carbon/Reference/QuartzEventServicesRef/Reference/reference.html
public final static int kCGMouseButtonLeft = 0;
public final static int kCGMouseButtonRight = 1;
public final static int kCGMouseButtonCenter = 2;
// See https://wiki.mozilla.org/NPAPI:CocoaEventModel
public final static int NPCocoaEventDrawRect = 1;
public final static int NPCocoaEventMouseDown = 2;
public final static int NPCocoaEventMouseUp = 3;
public final static int NPCocoaEventMouseMoved = 4;
public final static int NPCocoaEventMouseEntered = 5;
public final static int NPCocoaEventMouseExited = 6;
public final static int NPCocoaEventMouseDragged = 7;
public final static int NPCocoaEventKeyDown = 8;
public final static int NPCocoaEventKeyUp = 9;
public final static int NPCocoaEventFlagsChanged = 10;
public final static int NPCocoaEventFocusChanged = 11;
public final static int NPCocoaEventWindowFocusChanged = 12;
public final static int NPCocoaEventScrollWheel = 13;
public final static int NPCocoaEventTextInput = 14;
}