All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javajs.api.EventManager Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package javajs.api;

public interface EventManager {

  boolean keyPressed(int keyCode, int modifiers);

  boolean keyTyped(int keyChar, int modifiers);

  void keyReleased(int keyCode);

  void mouseEnterExit(long time, int x, int y, boolean isExit);
  
  void mouseAction(int mode, long time, int x, int y, int count,
                   int buttonMods);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy