|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -30,54 +30,54 @@ public final class CocoaConstants {
|
30 | 30 | private CocoaConstants(){}
|
31 | 31 |
|
32 | 32 | //from the NSEvent class reference:
|
33 |
| - public static final int NSLeftMouseDown = 1; |
34 |
| - public static final int NSLeftMouseUp = 2; |
35 |
| - public static final int NSRightMouseDown = 3; |
36 |
| - public static final int NSRightMouseUp = 4; |
37 |
| - public static final int NSMouseMoved = 5; |
38 |
| - public static final int NSLeftMouseDragged = 6; |
39 |
| - public static final int NSRightMouseDragged = 7; |
40 |
| - public static final int NSMouseEntered = 8; |
41 |
| - public static final int NSMouseExited = 9; |
42 |
| - public static final int NSKeyDown = 10; |
43 |
| - public static final int NSKeyUp = 11; |
44 |
| - public static final int NSFlagsChanged = 12; |
| 33 | + public static final int NSEventTypeLeftMouseDown = 1; |
| 34 | + public static final int NSEventTypeLeftMouseUp = 2; |
| 35 | + public static final int NSEventTypeRightMouseDown = 3; |
| 36 | + public static final int NSEventTypeRightMouseUp = 4; |
| 37 | + public static final int NSEventTypeMouseMoved = 5; |
| 38 | + public static final int NSEventTypeLeftMouseDragged = 6; |
| 39 | + public static final int NSEventTypeRightMouseDragged = 7; |
| 40 | + public static final int NSEventTypeMouseEntered = 8; |
| 41 | + public static final int NSEventTypeMouseExited = 9; |
| 42 | + public static final int NSEventTypeKeyDown = 10; |
| 43 | + public static final int NSEventTypeKeyUp = 11; |
| 44 | + public static final int NSEventTypeFlagsChanged = 12; |
45 | 45 |
|
46 |
| - public static final int NSScrollWheel = 22; |
47 |
| - public static final int NSOtherMouseDown = 25; |
48 |
| - public static final int NSOtherMouseUp = 26; |
49 |
| - public static final int NSOtherMouseDragged = 27; |
| 46 | + public static final int NSEventTypeScrollWheel = 22; |
| 47 | + public static final int NSEventTypeOtherMouseDown = 25; |
| 48 | + public static final int NSEventTypeOtherMouseUp = 26; |
| 49 | + public static final int NSEventTypeOtherMouseDragged = 27; |
50 | 50 |
|
51 | 51 | public static final int AllLeftMouseEventsMask =
|
52 |
| - 1 << NSLeftMouseDown | |
53 |
| - 1 << NSLeftMouseUp | |
54 |
| - 1 << NSLeftMouseDragged; |
| 52 | + 1 << NSEventTypeLeftMouseDown | |
| 53 | + 1 << NSEventTypeLeftMouseUp | |
| 54 | + 1 << NSEventTypeLeftMouseDragged; |
55 | 55 |
|
56 | 56 | public static final int AllRightMouseEventsMask =
|
57 |
| - 1 << NSRightMouseDown | |
58 |
| - 1 << NSRightMouseUp | |
59 |
| - 1 << NSRightMouseDragged; |
| 57 | + 1 << NSEventTypeRightMouseDown | |
| 58 | + 1 << NSEventTypeRightMouseUp | |
| 59 | + 1 << NSEventTypeRightMouseDragged; |
60 | 60 |
|
61 | 61 | public static final int AllOtherMouseEventsMask =
|
62 |
| - 1 << NSOtherMouseDown | |
63 |
| - 1 << NSOtherMouseUp | |
64 |
| - 1 << NSOtherMouseDragged; |
| 62 | + 1 << NSEventTypeOtherMouseDown | |
| 63 | + 1 << NSEventTypeOtherMouseUp | |
| 64 | + 1 << NSEventTypeOtherMouseDragged; |
65 | 65 |
|
66 | 66 | /*
|
67 |
| - NSAppKitDefined = 13, |
68 |
| - NSSystemDefined = 14, |
69 |
| - NSApplicationDefined = 15, |
70 |
| - NSPeriodic = 16, |
71 |
| - NSCursorUpdate = 17, |
72 |
| - NSScrollWheel = 22, |
73 |
| - NSTabletPoint = 23, |
74 |
| - NSTabletProximity = 24, |
75 |
| - NSEventTypeGesture = 29, |
76 |
| - NSEventTypeMagnify = 30, |
77 |
| - NSEventTypeSwipe = 31, |
78 |
| - NSEventTypeRotate = 18, |
79 |
| - NSEventTypeBeginGesture = 19, |
80 |
| - NSEventTypeEndGesture = 20 |
| 67 | + NSEventTypeAppKitDefined = 13, |
| 68 | + NSEventTypeSystemDefined = 14, |
| 69 | + NSEventTypeApplicationDefined = 15, |
| 70 | + NSEventTypePeriodic = 16, |
| 71 | + NSEventTypeCursorUpdate = 17, |
| 72 | + NSEventTypeScrollWheel = 22, |
| 73 | + NSEventTypeTabletPoint = 23, |
| 74 | + NSEventTypeTabletProximity = 24, |
| 75 | + NSEventTypeGesture = 29, |
| 76 | + NSEventTypeMagnify = 30, |
| 77 | + NSEventTypeSwipe = 31, |
| 78 | + NSEventTypeRotate = 18, |
| 79 | + NSEventTypeBeginGesture = 19, |
| 80 | + NSEventTypeEndGesture = 20 |
81 | 81 | */
|
82 | 82 |
|
83 | 83 | // See http://developer.apple.com/library/mac/#documentation/Carbon/Reference/QuartzEventServicesRef/Reference/reference.html
|
|
0 commit comments