Event

  • java.lang.Object
    • processing.event.Event
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static int ALT 
      static int CTRL 
      static int KEY 
      static int META 
      static int MOUSE 
      static int SHIFT 
      static int TOUCH 
    • 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
      int getAction() 
      int getFlavor() 
      long getMillis() 
      int getModifiers() 
      java.lang.Object getNative()

      Get the platform-native event object.

      boolean isAltDown() 
      boolean isControlDown() 
      boolean isMetaDown() 
      boolean isShiftDown() 
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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()