Event
- java.lang.Object
-
- processing.event.Event
-
- Direct Known Subclasses:
- KeyEvent, MouseEvent, TouchEvent
public class Event extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field and Description static intALTstatic intCTRLstatic intKEYstatic intMETAstatic intMOUSEstatic intSHIFTstatic intTOUCH
-
Constructor Summary
Constructors Constructor and Description Event(java.lang.Object nativeObject, long millis, int action, int modifiers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description intgetAction()intgetFlavor()longgetMillis()intgetModifiers()java.lang.ObjectgetNative()Get the platform-native event object.
booleanisAltDown()booleanisControlDown()booleanisMetaDown()booleanisShiftDown()
-
-
-
Field Detail
-
SHIFT
public static final int SHIFT
- See Also:
- Constant Field Values
-
CTRL
public static final int CTRL
- See Also:
- Constant Field Values
-
META
public static final int META
- See Also:
- Constant Field Values
-
ALT
public static final int ALT
- See Also:
- Constant Field Values
-
KEY
public static final int KEY
- See Also:
- Constant Field Values
-
MOUSE
public static final int MOUSE
- See Also:
- Constant Field Values
-
TOUCH
public static final int TOUCH
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Event
public Event(java.lang.Object nativeObject, long millis, int action, int modifiers)
-
-
Method Detail
-
getFlavor
public int getFlavor()
-
getNative
public java.lang.Object getNative()
Get the platform-native event object. This might be the java.awt event on the desktop, though if you're using OpenGL on the desktop it'll be a NEWT event that JOGL uses. Android events are something else altogether. Bottom line, use this only if you know what you're doing, and don't make assumptions about the class type.
-
getMillis
public long getMillis()
-
getAction
public int getAction()
-
getModifiers
public int getModifiers()
-
isShiftDown
public boolean isShiftDown()
-
isControlDown
public boolean isControlDown()
-
isMetaDown
public boolean isMetaDown()
-
isAltDown
public boolean isAltDown()
-
-